Package org.openjdk.jmc.flightrecorder
Class JfrLoaderToolkit
- java.lang.Object
-
- org.openjdk.jmc.flightrecorder.JfrLoaderToolkit
-
public class JfrLoaderToolkit extends java.lang.ObjectA collection of methods used to load binary JFR data intoIItemCollectionimplementations.
-
-
Constructor Summary
Constructors Constructor Description JfrLoaderToolkit()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IItemCollectionloadEvents(java.io.File file)Loads a potentially zipped or gzipped file using the parser extensions loaded from the java service loaderstatic IItemCollectionloadEvents(java.io.InputStream stream)Loads a potentially zipped or gzipped input stream using the parser extensions loaded from the java service loaderstatic IItemCollectionloadEvents(java.io.InputStream stream, java.util.List<? extends IParserExtension> extensions)Loads a potentially zipped or gzipped input stream using the parser extensions loaded from the java service loaderstatic IItemCollectionloadEvents(java.util.List<java.io.File> files)Loads a recording from a sequence of potentially zipped or gzipped files using the parser extensions loaded from the java service loaderstatic IItemCollectionloadEvents(java.util.List<java.io.File> files, java.util.List<? extends IParserExtension> extensions)Loads a recording from a sequence of potentially zipped or gzipped file using the supplied parser extensions
-
-
-
Method Detail
-
loadEvents
public static IItemCollection loadEvents(java.io.InputStream stream) throws java.io.IOException, CouldNotLoadRecordingException
Loads a potentially zipped or gzipped input stream using the parser extensions loaded from the java service loader- Parameters:
stream- the input stream to read the recording from- Returns:
- the events in the recording
- Throws:
java.io.IOExceptionCouldNotLoadRecordingException
-
loadEvents
public static IItemCollection loadEvents(java.io.InputStream stream, java.util.List<? extends IParserExtension> extensions) throws CouldNotLoadRecordingException, java.io.IOException
Loads a potentially zipped or gzipped input stream using the parser extensions loaded from the java service loader- Parameters:
stream- the input stream to read the recording fromextensions- the extensions to use when parsing the file- Returns:
- the events in the recording
- Throws:
CouldNotLoadRecordingExceptionjava.io.IOException
-
loadEvents
public static IItemCollection loadEvents(java.io.File file) throws java.io.IOException, CouldNotLoadRecordingException
Loads a potentially zipped or gzipped file using the parser extensions loaded from the java service loader- Parameters:
file- the file to read the recording from- Returns:
- the events in the recording
- Throws:
java.io.IOExceptionCouldNotLoadRecordingException
-
loadEvents
public static IItemCollection loadEvents(java.util.List<java.io.File> files) throws java.io.IOException, CouldNotLoadRecordingException
Loads a recording from a sequence of potentially zipped or gzipped files using the parser extensions loaded from the java service loader- Parameters:
files- the files to read the recording from- Returns:
- the events in the recording
- Throws:
java.io.IOExceptionCouldNotLoadRecordingException
-
loadEvents
public static IItemCollection loadEvents(java.util.List<java.io.File> files, java.util.List<? extends IParserExtension> extensions) throws java.io.IOException, CouldNotLoadRecordingException
Loads a recording from a sequence of potentially zipped or gzipped file using the supplied parser extensions- Parameters:
files- the files to read the recording fromextensions- the extensions to use when parsing the file- Returns:
- the events in the recording
- Throws:
java.io.IOExceptionCouldNotLoadRecordingException
-
-