Class FileHandler
A class that manages persistence of an associated FileBased object.
Instances of this class can be used to load and save arbitrary objects implementing the FileBased interface
in a convenient way from and to various locations. At construction time the FileBased object to manage is
passed in. Basically, this object is assigned a location from which it is loaded and to which it can be saved. The
following possibilities exist to specify such a location:
- URLs: With the method
setURL()a full URL to the configuration source can be specified. This is the most flexible way. Note that thesave()methods support only file: URLs. - Files: The
setFile()method allows to specify the configuration source as a file. This can be either a relative or an absolute file. In the former case the file is resolved based on the current directory. - As file paths in string form: With the
setPath()method a full path to a configuration file can be provided as a string. - Separated as base path and file name: The base path is a string defining either a local directory or a URL. It
can be set using the
setBasePath()method. The file name, non surprisingly, defines the name of the configuration file.
An instance stores a location. The load() and save() methods that do not take an argument make use of
this internal location. Alternatively, it is also possible to use overloaded variants of load() and
save() which expect a location. In these cases the location specified takes precedence over the internal one;
the internal location is not changed.
The actual position of the file to be loaded is determined by a FileLocationStrategy based on the location
information that has been provided. By providing a custom location strategy the algorithm for searching files can be
adapted. Save operations require more explicit information. They cannot rely on a location strategy because the file
to be written may not yet exist. So there may be some differences in the way location information is interpreted by
load and save operations. In order to avoid this, the following approach is recommended:
- Use the desired
setXXX()methods to define the location of the file to be loaded. - Call the
locate()method. This method resolves the referenced file (if possible) and fills out all supported location information. - Later on,
save()can be called. This method now has sufficient information to store the file at the correct location.
When loading or saving a FileBased object some additional functionality is performed if the object implements
one of the following interfaces:
FileLocatorAware: In this case an object with the current file location is injected before the load or save operation is executed. This is useful forFileBasedobjects that depend on their current location, e.g. to resolve relative path names.SynchronizerSupport: If this interface is implemented, load and save operations obtain a write lock on theFileBasedobject before they access it. (In case of a save operation, a read lock would probably be sufficient, but because of the possible injection of aFileLocatorobject it is not allowed to perform multiple save operations in parallel; therefore, by obtaining a write lock, we are on the safe side.)
This class is thread-safe.
- Since:
- 2.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate classAn internal class that performs all update operations of the handler'sFileLocatorin a safe way even if there is concurrent access. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final FileBasedThe file-based object managed by this handler.private static final SynchronizerSupportA dummy implementation ofSynchronizerSupport.private static final StringConstant for the URI scheme for files.private static final StringConstant for the URI scheme for files with slashes.private final AtomicReference<FileLocator> A reference to the currentFileLocatorobject.private final List<FileHandlerListener> A collection with the registered listeners. -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreates a new instance ofFileHandlerwhich is not associated with aFileBasedobject and thus does not have a content.FileHandler(FileBased obj) Creates a new instance ofFileHandlerand sets the managedFileBasedobject.FileHandler(FileBased obj, FileHandler c) Creates a new instance ofFileHandlerwhich is associated with the givenFileBasedobject and the location defined for the givenFileHandlerobject.privateFileHandler(FileBased obj, FileLocator locator) Creates a new instance ofFileHandlerbased on the givenFileBasedandFileLocatorobjects. -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds a listener to thisFileHandler.private voidChecks whether a content object is available.private FileLocatorChecks whether a content object is available and returns the currentFileLocator.private static FileHandlerHelper method for checking a file handler which is to be copied.voidClears the location of thisFileHandler.private static voidcloseSilent(Closeable cl) A helper method for closing a stream.private static FilecreateFile(FileLocator loc) Creates aFileobject from the content of the givenFileLocatorobject.private FileLocatorcreateLocatorWithFileName(String fileName, FileLocator locator) Creates aFileLocatorwhich is a copy of the passed in one, but has the given file name set to reference the target file.private static FileLocatorCreates an uninitialized file locator.private SynchronizerSupportObtains aSynchronizerSupportfor the current content.private voidNotifies the registered listeners about a completed load operation.private voidNotifies the registered listeners about the start of a load operation.private voidNotifies the registered listeners about a property update.private voidNotifies the registered listeners about a completed save operation.private voidNotifies the registered listeners about the start of a save operation.static FileHandlerCreates a newFileHandlerinstance from properties stored in a map.Gets the base path.final FileBasedGets theFileBasedobject associated with thisFileHandler.Gets the encoding of the associated file.getFile()Gets the location of the associated file as aFileobject.Gets aFileLocatorobject with the specification of the file stored by thisFileHandler.Gets the name of the file.Gets theFileSystemto be used by this object when locating files.Gets theFileLocationStrategyto be applied when accessing the associated file.getPath()Gets the full path to the associated file.getURL()Gets the location of the associated file as a URL.private voidinjectFileLocator(URL url) Injects aFileLocatorpointing to the specified URL if the currentFileBasedobject implements theFileLocatorAwareinterface.private voidChecks whether the associatedFileBasedobject implements theFileLocatorAwareinterface.booleanTests whether a location is defined for thisFileHandler.voidload()Loads the associated file from the underlying location.voidLoads the associated file from the specifiedFile.voidload(InputStream in) Loads the associated file from the specified stream, using the encoding returned bygetEncoding().voidload(InputStream in, String encoding) Loads the associated file from the specified stream, using the specified encoding.private voidload(InputStream in, FileLocator locator) Internal helper method for loading a file from the given input stream.voidLoads the associated file from the specified reader.voidLoads the associated file from the given file name.private voidload(String fileName, FileLocator locator) Internal helper method for loading a file from a file name.voidLoads the associated file from the specified URL.private voidload(URL url, FileLocator locator) Internal helper method for loading a file from the given URL.private voidload(FileLocator locator) Internal helper method for loading the associated file from the location specified in the givenFileLocator.private voidloadFromReader(Reader in) Internal helper method for loading a file from the given reader.private voidloadFromStream(InputStream in, String encoding, URL url) Internal helper method for loading a file from an input stream.private voidLoads data from an input stream if the associatedFileBasedobject implements theInputStreamSupportinterface.private voidloadFromTransformedStream(InputStream in, String encoding) Internal helper method for transforming an input stream to a reader and reading its content.booleanlocate()Locates the referenced file if necessary and ensures that the associatedFileLocatoris fully initialized.private static StringnormalizeFileURL(String fileName) Normalizes URLs to files.private FileLocator.FileLocatorBuilderPrepares a builder for aFileLocatorwhich does not have a defined file location.voidRemoves the specified listener from this object.voidResets theFileSystemused by this object.voidsave()Saves the associated file to the current location set for this object.voidSaves the associated file to the specifiedFile.private voidsave(File file, FileLocator locator) Internal helper method for saving data to the givenFile.voidsave(OutputStream out) Saves the associated file to the specified stream using the encoding returned bygetEncoding().voidsave(OutputStream out, String encoding) Saves the associated file to the specified stream using the specified encoding.private voidsave(OutputStream out, FileLocator locator) Internal helper method for saving a file to the given output stream.voidSaves the associated file to the givenWriter.voidSaves the associated file to the specified file name.private voidsave(String fileName, FileLocator locator) Internal helper method for saving data to the given file name.voidSaves the associated file to the specified URL.private voidsave(URL url, FileLocator locator) Internal helper method for saving data to the given URL.private voidsave(FileLocator locator) Internal helper method for saving data to the internal location stored for this object.private voidsaveToStream(OutputStream out, String encoding, URL url) Internal helper method for saving a file to the given stream.private voidsaveToWriter(Writer out) Internal helper method for saving a file into the given writer.voidsetBasePath(String basePath) Sets the base path.voidsetEncoding(String encoding) Sets the encoding of the associated file.voidSets the location of the associated file as aFileobject.voidsetFileLocator(FileLocator locator) Sets the file to be accessed by thisFileHandleras aFileLocatorobject.voidsetFileName(String fileName) Sets the name of the file.voidsetFileSystem(FileSystem fileSystem) Sets theFileSystemto be used by this object when locating files.voidsetLocationStrategy(FileLocationStrategy strategy) Sets theFileLocationStrategyto be applied when accessing the associated file.voidSets the location of the associated file as a full or relative path name.voidSets the location of the associated file as a URL.voidsetURL(URL url, URLConnectionOptions urlConnectionOptions) Sets the location of the associated file as a URL.
-
Field Details
-
FILE_SCHEME
Constant for the URI scheme for files.- See Also:
-
FILE_SCHEME_SLASH
Constant for the URI scheme for files with slashes.- See Also:
-
DUMMY_SYNC_SUPPORT
A dummy implementation ofSynchronizerSupport. This object is used when the file handler's content does not implement theSynchronizerSupportinterface. All methods are just empty dummy implementations. -
The file-based object managed by this handler.
-
fileLocator
A reference to the currentFileLocatorobject. -
listeners
A collection with the registered listeners.
-
-
Constructor Details
-
FileHandler
public FileHandler()Creates a new instance ofFileHandlerwhich is not associated with aFileBasedobject and thus does not have a content. Objects of this kind can be used to define a file location, but it is not possible to actually load or save data. -
FileHandler
Creates a new instance ofFileHandlerand sets the managedFileBasedobject.- Parameters:
obj- the file-based object to manage
-
FileHandler
Creates a new instance ofFileHandlerwhich is associated with the givenFileBasedobject and the location defined for the givenFileHandlerobject. A copy of the location of the givenFileHandleris created. This constructor is a possibility to associate a file location with aFileBasedobject.- Parameters:
obj- theFileBasedobject to managec- theFileHandlerfrom which to copy the location (must not be null)- Throws:
IllegalArgumentException- if theFileHandleris null
-
FileHandler
Creates a new instance ofFileHandlerbased on the givenFileBasedandFileLocatorobjects.- Parameters:
obj- theFileBasedobject to managelocator- theFileLocator
-
-
Method Details
-
checkSourceHandler
Helper method for checking a file handler which is to be copied. Throws an exception if the handler is null.- Parameters:
c- theFileHandlerfrom which to copy the location- Returns:
- the same
FileHandler
-
closeSilent
A helper method for closing a stream. Occurring exceptions will be ignored.- Parameters:
cl- the stream to be closed (may be null)
-
createFile
Creates aFileobject from the content of the givenFileLocatorobject. If the locator is not defined, result is null.- Parameters:
loc- theFileLocator- Returns:
- a
Fileobject pointing to the associated file
-
emptyFileLocator
Creates an uninitialized file locator.- Returns:
- the locator
-
fromMap
Creates a newFileHandlerinstance from properties stored in a map. This method tries to extract aFileLocatorfrom the map. A newFileHandleris created based on thisFileLocator.- Parameters:
map- the map (may be null)- Returns:
- the newly created
FileHandler - See Also:
-
normalizeFileURL
Normalizes URLs to files. Ensures that file URLs start with the correct protocol.- Parameters:
fileName- the string to be normalized- Returns:
- the normalized file URL
-
addFileHandlerListener
Adds a listener to thisFileHandler. It is notified about property changes and IO operations.- Parameters:
l- the listener to be added (must not be null)- Throws:
IllegalArgumentException- if the listener is null
-
checkContent
Checks whether a content object is available. If not, an exception is thrown. This method is called whenever the content object is accessed.- Throws:
ConfigurationException- if not content object is defined
-
checkContentAndGetLocator
Checks whether a content object is available and returns the currentFileLocator. If there is no content object, an exception is thrown. This is a typical operation to be performed before a load() or save() operation.- Returns:
- the current
FileLocatorto be used for the calling operation - Throws:
ConfigurationException- if not content object is defined
-
clearLocation
public void clearLocation()Clears the location of thisFileHandler. Afterwards this handler does not point to any valid file. -
createLocatorWithFileName
Creates aFileLocatorwhich is a copy of the passed in one, but has the given file name set to reference the target file.- Parameters:
fileName- the file namelocator- theFileLocatorto copy- Returns:
- the manipulated
FileLocatorwith the file name
-
fetchSynchronizerSupport
Obtains aSynchronizerSupportfor the current content. If the content implements this interface, it is returned. Otherwise, result is a dummy object. This method is called before load and save operations. The returned object is used for synchronization.- Returns:
- the
SynchronizerSupportfor synchronization
-
fireLoadedEvent
private void fireLoadedEvent()Notifies the registered listeners about a completed load operation. -
fireLoadingEvent
private void fireLoadingEvent()Notifies the registered listeners about the start of a load operation. -
fireLocationChangedEvent
private void fireLocationChangedEvent()Notifies the registered listeners about a property update. -
fireSavedEvent
private void fireSavedEvent()Notifies the registered listeners about a completed save operation. -
fireSavingEvent
private void fireSavingEvent()Notifies the registered listeners about the start of a save operation. -
getBasePath
Gets the base path. If no base path is defined, but a URL, the base path is derived from there.- Returns:
- the base path
-
getContent
Gets theFileBasedobject associated with thisFileHandler.- Returns:
- the associated
FileBasedobject
-
getEncoding
Gets the encoding of the associated file. Result can be null if no encoding has been set.- Returns:
- the encoding of the associated file
-
getFile
Gets the location of the associated file as aFileobject. If the base path is a URL with a protocol different than "file", or the file is within a compressed archive, the return value will not point to a valid file object.- Returns:
- the location as
Fileobject; this can be null
-
getFileLocator
Gets aFileLocatorobject with the specification of the file stored by thisFileHandler. Note that this method returns the internal data managed by thisFileHandleras it was defined. This is not necessarily the same as the data returned by the single access methods likegetFileName()orgetURL(): These methods try to derive missing data from other values that have been set.- Returns:
- a
FileLocatorwith the referenced file
-
getFileName
Gets the name of the file. If only a URL is defined, the file name is derived from there.- Returns:
- the file name
-
getFileSystem
Gets theFileSystemto be used by this object when locating files. Result is never null; if no file system has been set, the default file system is returned.- Returns:
- the used
FileSystem
-
getLocationStrategy
Gets theFileLocationStrategyto be applied when accessing the associated file. This method never returns null. If aFileLocationStrategyhas been set, it is returned. Otherwise, result is the defaultFileLocationStrategy.- Returns:
- the
FileLocationStrategyto be used
-
getPath
Gets the full path to the associated file. The return value is a validFilepath only if this location is based on a file on the local disk. If the file was loaded from a packed archive, the returned value is the string form of the URL from which the file was loaded.- Returns:
- the full path to the associated file
-
getURL
Gets the location of the associated file as a URL. If a URL is set, it is directly returned. Otherwise, an attempt to locate the referenced file is made.- Returns:
- a URL to the associated file; can be null if the location is unspecified
-
injectFileLocator
Injects aFileLocatorpointing to the specified URL if the currentFileBasedobject implements theFileLocatorAwareinterface.- Parameters:
url- the URL for the locator
-
injectNullFileLocator
private void injectNullFileLocator()Checks whether the associatedFileBasedobject implements theFileLocatorAwareinterface. If this is the case, aFileLocatorinstance is injected which returns only null values. This method is called if no file location is available (e.g. if data is to be loaded from a stream). The encoding of the injected locator is derived from this object. -
isLocationDefined
public boolean isLocationDefined()Tests whether a location is defined for thisFileHandler.- Returns:
- true if a location is defined, false otherwise
-
load
Loads the associated file from the underlying location. If no location has been set, an exception is thrown.- Throws:
ConfigurationException- if loading of the configuration fails
-
load
Loads the associated file from the specifiedFile.- Parameters:
file- the file to load- Throws:
ConfigurationException- if an error occurs
-
load
Internal helper method for loading the associated file from the location specified in the givenFileLocator.- Parameters:
locator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs
-
load
Loads the associated file from the specified stream, using the encoding returned bygetEncoding().- Parameters:
in- the input stream- Throws:
ConfigurationException- if an error occurs during the load operation
-
load
Internal helper method for loading a file from the given input stream.- Parameters:
in- the input streamlocator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs
-
load
Loads the associated file from the specified stream, using the specified encoding. If the encoding is null, the default encoding is used.- Parameters:
in- the input streamencoding- the encoding used,nullto use the default encoding- Throws:
ConfigurationException- if an error occurs during the load operation
-
load
Loads the associated file from the specified reader.- Parameters:
in- the reader- Throws:
ConfigurationException- if an error occurs during the load operation
-
load
Loads the associated file from the given file name. The file name is interpreted in the context of the already set location (e.g. if it is a relative file name, a base path is applied if available). The underlying location is not changed.- Parameters:
fileName- the name of the file to be loaded- Throws:
ConfigurationException- if an error occurs
-
load
Internal helper method for loading a file from a file name.- Parameters:
fileName- the file namelocator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs
-
load
Loads the associated file from the specified URL. The location stored in this object is not changed.- Parameters:
url- the URL of the file to be loaded- Throws:
ConfigurationException- if an error occurs
-
load
Internal helper method for loading a file from the given URL.- Parameters:
url- the URLlocator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs
-
loadFromReader
Internal helper method for loading a file from the given reader.- Parameters:
in- the reader- Throws:
ConfigurationException- if an error occurs
-
loadFromStream
Internal helper method for loading a file from an input stream.- Parameters:
in- the input streamencoding- the encodingurl- the URL of the file to be loaded (if known)- Throws:
ConfigurationException- if an error occurs
-
loadFromStreamDirectly
Loads data from an input stream if the associatedFileBasedobject implements theInputStreamSupportinterface.- Parameters:
in- the input stream- Throws:
ConfigurationException- if an error occurs
-
loadFromTransformedStream
private void loadFromTransformedStream(InputStream in, String encoding) throws ConfigurationException Internal helper method for transforming an input stream to a reader and reading its content.- Parameters:
in- the input streamencoding- the encoding- Throws:
ConfigurationException- if an error occurs
-
locate
public boolean locate()Locates the referenced file if necessary and ensures that the associatedFileLocatoris fully initialized. When accessing the referenced file the information stored in the associatedFileLocatoris used. If this information is incomplete (e.g. only the file name is set), an attempt to locate the file may have to be performed on each access. By calling this method such an attempt is performed once, and the results of a successful localization are stored. Hence, later access to the referenced file can be more efficient. Also, all properties pointing to the referenced file in this object'sFileLocatorare set (i.e. the URL, the base path, and the file name). If the referenced file cannot be located, result is false. This means that the information in the currentFileLocatoris insufficient or wrong. If theFileLocatoris already fully defined, it is not changed.- Returns:
- a flag whether the referenced file could be located successfully
- See Also:
-
prepareNullLocatorBuilder
Prepares a builder for aFileLocatorwhich does not have a defined file location. Other properties (e.g. encoding or file system) are initialized from theFileLocatorassociated with this object.- Returns:
- the initialized builder for a
FileLocator
-
removeFileHandlerListener
Removes the specified listener from this object.- Parameters:
l- the listener to be removed
-
resetFileSystem
public void resetFileSystem()Resets theFileSystemused by this object. It is set to the default file system. -
save
Saves the associated file to the current location set for this object. Before this method can be called a valid location must have been set.- Throws:
ConfigurationException- if an error occurs or no location has been set yet
-
save
Saves the associated file to the specifiedFile. The file is created automatically if it doesn't exist. This does not change the location of this object (usesetFile(java.io.File)if you need it).- Parameters:
file- the target file- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Internal helper method for saving data to the givenFile.- Parameters:
file- the target filelocator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Internal helper method for saving data to the internal location stored for this object.- Parameters:
locator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Saves the associated file to the specified stream using the encoding returned bygetEncoding().- Parameters:
out- the output stream- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Internal helper method for saving a file to the given output stream.- Parameters:
out- the output streamlocator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Saves the associated file to the specified stream using the specified encoding. If the encoding is null, the default encoding is used.- Parameters:
out- the output streamencoding- the encoding to be used,nullto use the default encoding- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Saves the associated file to the specified file name. This does not change the location of this object (usesetFileName(String)if you need it).- Parameters:
fileName- the file name- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Internal helper method for saving data to the given file name.- Parameters:
fileName- the path to the target filelocator- the currentFileLocator- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Saves the associated file to the specified URL. This does not change the location of this object (usesetURL(URL)if you need it).- Parameters:
url- the URL- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Internal helper method for saving data to the given URL.- Parameters:
url- the target URLlocator- theFileLocator- Throws:
ConfigurationException- if an error occurs during the save operation
-
save
Saves the associated file to the givenWriter.- Parameters:
out- theWriter- Throws:
ConfigurationException- if an error occurs during the save operation
-
saveToStream
Internal helper method for saving a file to the given stream.- Parameters:
out- the output streamencoding- the encodingurl- the URL of the output file if known- Throws:
ConfigurationException- if an error occurs
-
saveToWriter
Internal helper method for saving a file into the given writer.- Parameters:
out- the writer- Throws:
ConfigurationException- if an error occurs
-
setBasePath
Sets the base path. The base path is typically either a path to a directory or a URL. Together with the value passed to thesetFileName()method it defines the location of the configuration file to be loaded. The strategies for locating the file are quite tolerant. For instance if the file name is already an absolute path or a fully defined URL, the base path will be ignored. The base path can also be a URL, in which case the file name is interpreted in this URL's context. If other methods are used for determining the location of the associated file (e.g.setFile()orsetURL()), the base path is automatically set. Setting the base path using this method automatically sets the URL to null because it has to be determined anew based on the file name and the base path.- Parameters:
basePath- the base path.
-
setEncoding
Sets the encoding of the associated file. The encoding applies if binary files are loaded. Note that in this case setting an encoding is recommended; otherwise the platform's default encoding is used.- Parameters:
encoding- the encoding of the associated file
-
setFile
Sets the location of the associated file as aFileobject. The passed inFileis made absolute if it is not yet. Then the file's path component becomes the base path and its name component becomes the file name.- Parameters:
file- the location of the associated file
-
setFileLocator
Sets the file to be accessed by thisFileHandleras aFileLocatorobject.- Parameters:
locator- theFileLocatorwith the definition of the file to be accessed (must not be null- Throws:
IllegalArgumentException- if theFileLocatoris null
-
setFileName
Sets the name of the file. The passed in file name can contain a relative path. It must be used when referring files with relative paths from classpath. UsesetPath()to set a full qualified file name. The URL is set to null as it has to be determined anew based on the file name and the base path.- Parameters:
fileName- the name of the file
-
setFileSystem
Sets theFileSystemto be used by this object when locating files. If a null value is passed in, the file system is reset to the default file system.- Parameters:
fileSystem- theFileSystem
-
setLocationStrategy
Sets theFileLocationStrategyto be applied when accessing the associated file. The strategy is stored in the underlyingFileLocator. The argument can be null; this causes the defaultFileLocationStrategyto be used.- Parameters:
strategy- theFileLocationStrategy- See Also:
-
setPath
Sets the location of the associated file as a full or relative path name. The passed in path should represent a valid file name on the file system. It must not be used to specify relative paths for files that exist in classpath, either plain file system or compressed archive, because this method expands any relative path to an absolute one which may end in an invalid absolute path for classpath references.- Parameters:
path- the full path name of the associated file
-
setURL
Sets the location of the associated file as a URL. For loading this can be an arbitrary URL with a supported protocol. If the file is to be saved, too, a URL with the "file" protocol should be provided. This method sets the file name and the base path to null. They have to be determined anew based on the new URL.- Parameters:
url- the location of the file as URL
-
setURL
Sets the location of the associated file as a URL. For loading this can be an arbitrary URL with a supported protocol. If the file is to be saved, too, a URL with the "file" protocol should be provided. This method sets the file name and the base path to null. They have to be determined anew based on the new URL.- Parameters:
url- the location of the file as URLurlConnectionOptions- URL connection options- Since:
- 2.8.0
-