com.helger.photon.io.WebFileIO Maven / Gradle / Ivy
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[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.helger.photon.io;
import java.io.File;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.GuardedBy;
import javax.annotation.concurrent.ThreadSafe;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.annotation.Nonempty;
import com.helger.commons.concurrent.SimpleReadWriteLock;
import com.helger.commons.io.relative.FileRelativeIO;
import com.helger.commons.io.relative.IFileRelativeIO;
import com.helger.commons.io.relative.IPathRelativeIO;
import com.helger.commons.io.relative.PathRelativeIO;
/**
* Abstract for accessing files inside the web application. It differentiates
* between the data path (where the runtime data is stored) and the servlet
* context path (for accessing files inside the web application). The default
* operations in this class work on the data path!
*
* @author Philip Helger
*/
@ThreadSafe
public final class WebFileIO
{
private static final Logger LOGGER = LoggerFactory.getLogger (WebFileIO.class);
private static final SimpleReadWriteLock RW_LOCK = new SimpleReadWriteLock ();
@GuardedBy ("RW_LOCK")
private static IFileRelativeIO s_aDataPath;
@GuardedBy ("RW_LOCK")
private static IPathRelativeIO s_aServletContextPath;
@GuardedBy ("RW_LOCK")
private static boolean s_bSilentMode = false;
private WebFileIO ()
{}
public static boolean setSilentMode (final boolean bSilentMode)
{
return RW_LOCK.writeLockedBoolean ( () -> {
final boolean bOld = s_bSilentMode;
s_bSilentMode = bSilentMode;
return bOld;
});
}
public static boolean isSilentMode ()
{
return RW_LOCK.readLockedBoolean ( () -> s_bSilentMode);
}
public static void initPaths (@Nonnull final File aDataPath,
@Nonnull @Nonempty final String sServletContextPath,
final boolean bCheckFileAccess)
{
ValueEnforcer.notNull (aDataPath, "DataPath");
ValueEnforcer.notEmpty (sServletContextPath, "ServletContextPath");
RW_LOCK.writeLock ().lock ();
try
{
if (s_aDataPath != null)
throw new IllegalStateException ("Another data path is already present: " + s_aDataPath);
if (s_aServletContextPath != null)
throw new IllegalStateException ("Another servlet context path is already present: " + s_aServletContextPath);
final boolean bLog = !isSilentMode ();
if (bLog)
LOGGER.info ("Using '" + aDataPath + "' as the data path");
s_aDataPath = new FileRelativeIO (aDataPath);
if (bCheckFileAccess)
FileRelativeIO.internalCheckAccessRights (aDataPath);
if (bLog)
LOGGER.info ("Using '" + sServletContextPath + "' as the servlet context path");
s_aServletContextPath = new PathRelativeIO (sServletContextPath);
}
finally
{
RW_LOCK.writeLock ().unlock ();
}
}
/**
* Reset the base paths - no matter if they were initialized or not.
*/
public static void resetPaths ()
{
RW_LOCK.writeLocked ( () -> {
s_aDataPath = null;
s_aServletContextPath = null;
});
}
/**
* @return true
if the base path was initialized,
* false
otherwise
*/
public static boolean isInited ()
{
return RW_LOCK.readLockedBoolean ( () -> s_aDataPath != null);
}
/**
* @return data IO provider.
* @throws IllegalStateException
* if no data path was provided. Call
* {@link #initPaths(File, String, boolean)} first.
*/
@Nonnull
public static IFileRelativeIO getDataIO ()
{
final IFileRelativeIO ret = RW_LOCK.readLockedGet ( () -> s_aDataPath);
if (ret == null)
throw new IllegalStateException ("Data path was not initialized!");
return ret;
}
/**
* @return The servlet context IO provider. This is read-only because it makes
* no sense to modify the contents of the servlet context directory.
* @throws IllegalStateException
* if no servlet context path was provided. Call
* {@link #initPaths(File, String, boolean)} first.
*/
@Nonnull
public static IPathRelativeIO getServletContextIO ()
{
final IPathRelativeIO ret = RW_LOCK.readLockedGet ( () -> s_aServletContextPath);
if (ret == null)
throw new IllegalStateException ("Servlet context path was not initialized!");
return ret;
}
}