Class JarContent
- All Implemented Interfaces:
Content
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static classprivate static class -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final intprivate static final Stringprivate static final Stringprivate final Mapprivate final Fileprivate final booleanprivate final Loggerprivate Mapprivate final Objectprivate final Fileprivate final WeakZipFileFactoryprivate final WeakZipFileFactory.WeakZipFile -
Constructor Summary
ConstructorsConstructorDescriptionJarContent(Logger logger, Map configMap, WeakZipFileFactory zipFactory, Object revisionLock, File rootDir, File file, WeakZipFileFactory.WeakZipFile zipFile) -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()This method must be called when the content is no longer needed so that any resourses being used (e.g., open files) can be closed.private voidextractEmbeddedJar(String jarPath) This method extracts an embedded JAR file from the bundle's JAR file.protected voidfinalize()Returns an enumeration of entry names as String objects.byte[]getEntryAsBytes(String name) This method returns the named entry as an array of bytes.getEntryAsContent(String entryName) This method returns the named entry as an IContent Typically, this method only makes sense for entries that correspond to some form of aggregated resource (e.g., an embedded JAR file or directory), but implementations are free to interpret this however makes sense.getEntryAsNativeLibrary(String entryName) This method returns the named entry as a file in the file system for use as a native library.getEntryAsStream(String name) This method returns the named entry as an input stream.getEntryAsURL(String name) This method allows retrieving an entry as a local URL.getFile()booleanThis method determines if the specified named entry is contained in the associated content.toString()
-
Field Details
-
BUFSIZE
private static final int BUFSIZE- See Also:
-
EMBEDDED_DIRECTORY
- See Also:
-
LIBRARY_DIRECTORY
- See Also:
-
m_logger
-
m_configMap
-
m_zipFactory
-
m_revisionLock
-
m_rootDir
-
m_file
-
m_zipFile
-
m_isZipFileOwner
private final boolean m_isZipFileOwner -
m_nativeLibMap
-
-
Constructor Details
-
JarContent
public JarContent(Logger logger, Map configMap, WeakZipFileFactory zipFactory, Object revisionLock, File rootDir, File file, WeakZipFileFactory.WeakZipFile zipFile)
-
-
Method Details
-
finalize
-
close
public void close()Description copied from interface:ContentThis method must be called when the content is no longer needed so that any resourses being used (e.g., open files) can be closed. Once this method is called, the content is no longer usable. If the content is already closed, then calls on this method should have no effect.
-
hasEntry
Description copied from interface:ContentThis method determines if the specified named entry is contained in the associated content. The entry name is a relative path with '/' separators.
- Specified by:
hasEntryin interfaceContent- Parameters:
name- The name of the entry to find.- Returns:
- true if a corresponding entry was found, false otherwise.
- Throws:
IllegalStateException
-
getEntries
Description copied from interface:ContentReturns an enumeration of entry names as String objects. An entry name is a path constructed with '/' as path element separators and is relative to the root of the content. Entry names for entries that represent directories should end with the '/' character.
- Specified by:
getEntriesin interfaceContent
-
getEntryAsBytes
Description copied from interface:ContentThis method returns the named entry as an array of bytes.
- Specified by:
getEntryAsBytesin interfaceContent- Parameters:
name- The name of the entry to retrieve as a byte array.- Returns:
- An array of bytes if the corresponding entry was found, null otherwise.
- Throws:
IllegalStateException
-
getEntryAsStream
Description copied from interface:ContentThis method returns the named entry as an input stream.
- Specified by:
getEntryAsStreamin interfaceContent- Parameters:
name- The name of the entry to retrieve as an input stream.- Returns:
- An input stream if the corresponding entry was found, null otherwise.
- Throws:
IllegalStateExceptionIOException
-
getEntryAsURL
Description copied from interface:ContentThis method allows retrieving an entry as a local URL.
- Specified by:
getEntryAsURLin interfaceContent- Parameters:
name- The name of the entry to retrieve as a URL- Returns:
- A URL using a local protocol such as file, jar or null if not possible.
-
getEntryAsContent
Description copied from interface:ContentThis method returns the named entry as an IContent Typically, this method only makes sense for entries that correspond to some form of aggregated resource (e.g., an embedded JAR file or directory), but implementations are free to interpret this however makes sense. This method should return a new IContent instance for every invocation and the caller is responsible for opening and closing the returned content object.
- Specified by:
getEntryAsContentin interfaceContent- Parameters:
entryName- The name of the entry to retrieve as an IContent.- Returns:
- An IContent instance if a corresponding entry was found, null otherwise.
-
getEntryAsNativeLibrary
Description copied from interface:ContentThis method returns the named entry as a file in the file system for use as a native library. It may not be possible for all content implementations (e.g., memory only) to implement this method, in which case it is acceptable to return null. Since native libraries can only be associated with a single class loader, this method should return a unique file per request.
- Specified by:
getEntryAsNativeLibraryin interfaceContent- Parameters:
entryName- The name of the entry to retrieve as a file.- Returns:
- A string corresponding to the absolute path of the file if a corresponding entry was found, null otherwise.
-
toString
-
getFile
-
extractEmbeddedJar
This method extracts an embedded JAR file from the bundle's JAR file.- Parameters:
jarPath- the path to the embedded JAR file inside the bundle JAR file.id- the identifier of the bundle that owns the embedded JAR file.- Throws:
Exception
-