com.phloc.commons.io.resourceprovider.FileSystemResourceProvider Maven / Gradle / Ivy
/**
* Copyright (C) 2006-2015 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.phloc.commons.io.resourceprovider;
import java.io.File;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.phloc.commons.ValueEnforcer;
import com.phloc.commons.equals.EqualsUtils;
import com.phloc.commons.hash.HashCodeGenerator;
import com.phloc.commons.io.IReadableResource;
import com.phloc.commons.io.IWritableResource;
import com.phloc.commons.io.IWritableResourceProvider;
import com.phloc.commons.io.file.FileUtils;
import com.phloc.commons.io.resource.ClassPathResource;
import com.phloc.commons.io.resource.FileSystemResource;
import com.phloc.commons.io.resource.URLResource;
import com.phloc.commons.string.StringHelper;
import com.phloc.commons.string.ToStringGenerator;
/**
* Simple resource provider that only uses files.
*
* @author Philip Helger
*/
@Immutable
public final class FileSystemResourceProvider implements IWritableResourceProvider
{
private static final Logger LOG = LoggerFactory.getLogger (FileSystemResourceProvider.class);
private final File m_aBasePath;
public FileSystemResourceProvider ()
{
this ((File) null);
}
public FileSystemResourceProvider (@Nonnull final String sBasePath)
{
this (new File (sBasePath));
}
public FileSystemResourceProvider (@Nullable final File aBasePath)
{
if (aBasePath != null)
{
if (!aBasePath.exists ())
throw new IllegalArgumentException ("Passed base path '" + aBasePath + "' does not exist!"); //$NON-NLS-1$ //$NON-NLS-2$
if (!aBasePath.isDirectory ())
throw new IllegalArgumentException ("Passed base path '" + aBasePath + "' is not a directory!"); //$NON-NLS-1$ //$NON-NLS-2$
if (!FileUtils.canRead (aBasePath))
LOG.warn ("Cannot read passed base path '" + aBasePath + "'!"); //$NON-NLS-1$ //$NON-NLS-2$
if (!FileUtils.canWrite (aBasePath))
LOG.warn ("Cannot write passed base path '" + aBasePath + "'!"); //$NON-NLS-1$ //$NON-NLS-2$
if (!FileUtils.canExecute (aBasePath))
LOG.warn ("Cannot execute in passed base path '" + aBasePath + "'!"); //$NON-NLS-1$ //$NON-NLS-2$
}
this.m_aBasePath = aBasePath;
}
@Nullable
public File getBasePath ()
{
return this.m_aBasePath;
}
@Nonnull
private File _getFile (@Nonnull final String sName)
{
ValueEnforcer.notNull (sName, "Name"); //$NON-NLS-1$
// Don't add special handling for absolute paths here!
// Breaks Unix handling!
return this.m_aBasePath == null ? new File (sName) : new File (this.m_aBasePath, sName);
}
@Override
public boolean supportsReading (@Nullable final String sName)
{
if (ClassPathResource.isExplicitClassPathResource (sName))
return false;
if (URLResource.isExplicitURLResource (sName))
return false;
return StringHelper.hasText (sName) && _getFile (sName).isAbsolute ();
}
@Override
public boolean supportsWriting (@Nullable final String sName)
{
if (ClassPathResource.isExplicitClassPathResource (sName))
return false;
if (URLResource.isExplicitURLResource (sName))
return false;
return StringHelper.hasText (sName);
}
@Override
@Nonnull
public IReadableResource getReadableResource (@Nonnull final String sName)
{
return new FileSystemResource (_getFile (sName));
}
@Override
@Nonnull
public IWritableResource getWritableResource (@Nonnull final String sName)
{
return new FileSystemResource (_getFile (sName));
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (!(o instanceof FileSystemResourceProvider))
return false;
final FileSystemResourceProvider rhs = (FileSystemResourceProvider) o;
return EqualsUtils.equals (this.m_aBasePath, rhs.m_aBasePath);
}
@Override
public int hashCode ()
{
return new HashCodeGenerator (this).append (this.m_aBasePath).getHashCode ();
}
@Override
public String toString ()
{
return new ToStringGenerator (this).appendIfNotNull ("basePath", this.m_aBasePath).toString (); //$NON-NLS-1$
}
}