Package com.iizix.server.app
Class XJarFileResource
java.lang.Object
org.eclipse.jetty.util.resource.Resource
com.iizix.server.app.XJarFileResource
- All Implemented Interfaces:
Closeable
,AutoCloseable
,org.eclipse.jetty.util.resource.ResourceFactory
public class XJarFileResource extends org.eclipse.jetty.util.resource.Resource
Jetty resource located inside an XJarFile that already is loaded into memory.
- Author:
- Christopher Mindus
Field Summary
Fields inherited from class org.eclipse.jetty.util.resource.Resource
__defaultUseCaches
Constructor Summary
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.jetty.util.resource.Resource
Returns the resource contained inside the current resource with the given name.void
close()
Release any temporary resources held by the resource.boolean
delete()
Deletes the given resourceboolean
Checks if two are equal.boolean
exists()
protected void
finalize()
getFile()
File representing the given resource.Input stream to the resourcegetName()
The name of the resource.Readable ByteChannel for the resource.getURI()
URI representing the resource.int
hashCode()
Hash code.boolean
isContainedIn
(org.eclipse.jetty.util.resource.Resource r) boolean
long
Time resource was last modified.long
length()
Length of the resource.String[]
list()
list of resource names contained in the given resource.boolean
renameTo
(org.eclipse.jetty.util.resource.Resource dest) Rename the given resourceMethods inherited from class org.eclipse.jetty.util.resource.Resource
copyTo, fromList, fromList, getAlias, getAllResources, getAssociate, getDefaultUseCaches, getListHTML, getResource, getWeakETag, getWeakETag, isAlias, isContainedIn, isSame, newClassPathResource, newClassPathResource, newResource, newResource, newResource, newResource, newResource, newResource, newSystemResource, resolveAlias, setAssociate, setDefaultUseCaches, toURL
Constructor Details
XJarFileResource
Constructor.- Parameters:
url
- The URL.data
- The byte array.lastModified
- Last modified.
Method Details
finalize
protected void finalize()isContainedIn
public boolean isContainedIn(org.eclipse.jetty.util.resource.Resource r) - Specified by:
isContainedIn
in classorg.eclipse.jetty.util.resource.Resource
close
public void close()Release any temporary resources held by the resource.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classorg.eclipse.jetty.util.resource.Resource
exists
public boolean exists()- Specified by:
exists
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- true if the represented resource exists.
isDirectory
public boolean isDirectory()- Specified by:
isDirectory
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- true if the represented resource is a container/directory. if the resource is not a file, resources ending with "/" are considered directories.
lastModified
public long lastModified()Time resource was last modified.- Specified by:
lastModified
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- the last modified time as milliseconds since unix epoch
length
public long length()Length of the resource.- Specified by:
length
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- the length of the resource
getURI
URI representing the resource.- Specified by:
getURI
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- an URI representing the given resource
getFile
File representing the given resource.- Specified by:
getFile
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- an File representing the given resource or NULL if this is not possible.
getName
The name of the resource.- Specified by:
getName
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- the name of the resource
getInputStream
Input stream to the resource- Specified by:
getInputStream
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- an input stream to the resource
getReadableByteChannel
Readable ByteChannel for the resource.- Specified by:
getReadableByteChannel
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- an readable bytechannel to the resource or null if one is not available.
delete
Deletes the given resource- Specified by:
delete
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- true if resource was found and successfully deleted, false if resource didn't exist or was unable to be deleted.
- Throws:
SecurityException
- Always: Delete not supported.
renameTo
Rename the given resource- Specified by:
renameTo
in classorg.eclipse.jetty.util.resource.Resource
- Parameters:
dest
- the destination name for the resource- Returns:
- true if the resource was renamed, false if the resource didn't exist or was unable to be renamed.
- Throws:
SecurityException
- Always: RenameTo not supported.
list
list of resource names contained in the given resource.- Specified by:
list
in classorg.eclipse.jetty.util.resource.Resource
- Returns:
- null: not supported.
addPath
Returns the resource contained inside the current resource with the given name.- Specified by:
addPath
in classorg.eclipse.jetty.util.resource.Resource
- Parameters:
path
- The path segment to add, which is not encoded- Returns:
- the Resource for the resolved path within this Resource.
- Throws:
IOException
- if unable to resolve the path
hashCode
public int hashCode()Hash code.equals
Checks if two are equal.