Package pulse.io.readers
Class ReaderManager
- java.lang.Object
-
- pulse.io.readers.ReaderManager
-
public class ReaderManager extends Object
AReaderManager
is a single class that manages most input operations.ReaderManager
can dynamically access all available readers using theirReflexive
interfaces. It can also dynamically assign a file with a recognised format to a specific reader. Note that MetaFilePopulator is not covered by this class, as there is only oneMetadata
format which is internal toPULsE
.This class heavily relies on the stream API from the Java SDK.
- See Also:
Reflexive
,CurveReader
,DatasetReader
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<CurveReader>
curveReaders()
Finds all classes assignable fromCurveReader
within this package.static List<DatasetReader>
datasetReaders()
Finds all classes assignable fromDatasetReader
within this package.static List<CurveReader>
findCurveReaders(String pckgname)
Finds all classes assignable fromCurveReader
within thepckgname
package.static List<DatasetReader>
findDatasetReaders(String pckgname)
Finds all classes assignable fromDatasetReader
within thepckgname
package.static List<PulseDataReader>
findPulseReaders(String pckgname)
static List<String>
getCurveExtensions()
Returns a list of extensions recognised by the availableCurveReader
s.static List<String>
getDatasetExtensions()
Returns a list of extensions recognised by the availableDatasetReader
s.static List<String>
getPulseExtensions()
static <T> Set<T>
load(AbstractReader<T> reader, String location, String listName)
This method is specifically introduced to handle multiple files in a resources folder enclosed within thejar
archive.static List<PulseDataReader>
pulseReaders()
static <T> T
read(List<? extends AbstractReader<T>> readers, File file)
Attempts to find aDatasetReader
for processingfile
.static <T> Set<T>
readDirectory(List<AbstractReader<T>> readers, File directory)
Obtains a set of files indirectory
and attemps to convert each file toT
usingreaders
.static Version
readVersion()
-
-
-
Method Detail
-
getCurveExtensions
public static List<String> getCurveExtensions()
Returns a list of extensions recognised by the availableCurveReader
s.- Returns:
- a
List
of {
-
getDatasetExtensions
public static List<String> getDatasetExtensions()
Returns a list of extensions recognised by the availableDatasetReader
s.- Returns:
- a
List
of {
-
findCurveReaders
public static List<CurveReader> findCurveReaders(String pckgname)
Finds all classes assignable fromCurveReader
within thepckgname
package.- Parameters:
pckgname
- the name of the package to conduct search in.- Returns:
- a list of
CurveReader
s inpckgname
-
findPulseReaders
public static List<PulseDataReader> findPulseReaders(String pckgname)
-
curveReaders
public static List<CurveReader> curveReaders()
Finds all classes assignable fromCurveReader
within this package.- Returns:
- a list of
CurveReader
s in this package
-
pulseReaders
public static List<PulseDataReader> pulseReaders()
-
findDatasetReaders
public static List<DatasetReader> findDatasetReaders(String pckgname)
Finds all classes assignable fromDatasetReader
within thepckgname
package.- Parameters:
pckgname
- the name of the package to conduct search in.- Returns:
- a list of
DatasetReader
s inpckgname
-
datasetReaders
public static List<DatasetReader> datasetReaders()
Finds all classes assignable fromDatasetReader
within this package.- Returns:
- a list of
DatasetReader
s in this package
-
read
public static <T> T read(List<? extends AbstractReader<T>> readers, File file)
Attempts to find aDatasetReader
for processingfile
.- Type Parameters:
T
-- Parameters:
readers
-file
- the target file supposedly containing data for anInterpolationDataset
.- Returns:
- an
InterpolationDataset
extracted from { - Throws:
IllegalArgumentException
- if the file has an unsupported extension
-
readDirectory
public static <T> Set<T> readDirectory(List<AbstractReader<T>> readers, File directory) throws IllegalArgumentException
Obtains a set of files indirectory
and attemps to convert each file toT
usingreaders
.- Type Parameters:
T
- a type recognised byreaders
- Parameters:
readers
- a list ofAbstractReader
s capable of processingT
directory
- a directory- Returns:
- the set of converted
T
objects - Throws:
IllegalArgumentException
- if second argument is not a directory
-
load
public static <T> Set<T> load(AbstractReader<T> reader, String location, String listName)
This method is specifically introduced to handle multiple files in a resources folder enclosed within thejar
archive. A list of files is required to be included in the same location, which is scanned and each entry is added to a temporary list of names. A combination of these names with the relativelocation
allows reading separate files and collating the result in a uniqueSet
.- Type Parameters:
T
- a type recognised by thereader
- Parameters:
reader
- the reader specifically targetted atT
location
- the relative location of fileslistName
- the name of the list-file- Returns:
- a unique
Set
ofT
-
readVersion
public static Version readVersion()
-
-