com.google.appengine.api.files.dev
Class BlobstoreFile
java.lang.Object
com.google.appengine.api.files.dev.FileMetadata
com.google.appengine.api.files.dev.BlobstoreFile
public class BlobstoreFile
- extends FileMetadata
Represents a file in the local file service that is stored in the BlobStore.
For each BlobStore file there are two instances of this class: one
corresponding to the creation-handle which is write-only, and one
corresponding to the blob key which is read-only. Each instance will
eventually contain both the creation handle and the blob key Strings so that
it is possible to find one from the other.
Methods inherited from class com.google.appengine.api.files.dev.FileMetadata |
append, checkParameters, copy, getAppendName, getContentType, getLockState, getOpenState, isFinalized, isOpenInDifferentSession, lock, newReadableInstance, read, setState |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FILE_SYSTEM
public static final java.lang.String FILE_SYSTEM
CREATION_HANDLE_PREFIX
public static final java.lang.String CREATION_HANDLE_PREFIX
- See Also:
- Constant Field Values
buildFullPath
public static java.lang.String buildFullPath(java.lang.String namePart)
create
public static FileMetadata create(LocalFileService localFileService,
Clock clock,
java.lang.String fileName,
java.lang.String randomString,
ContentType contentType,
java.util.Map<java.lang.String,java.lang.String> parameters)
- Creates a new instance for a non-finalized file.
newFinalizedInstance
public static FileMetadata newFinalizedInstance(LocalFileService localFileService,
Clock clock,
ParsedFileName parsedName)
- Given a
ParsedFileName
for a Blobstore file that is expected to
have been finalized, this method will attempt to construct and return a new
FileMetadata
instance for the file. If the file name represents a
blob key, then an instance will be returned wrapping the blob key. If the
name represents a creation handle then this method will query the datastore
in order to find a blob key corresponding to the creation handle. If one is
found then an instance will be returned. Otherwise null
will be
returned.
- Returns:
- An instance of
FileMetadata
or null
if no
corresponding entity could be found in the datastore.
setFinalized
public void setFinalized()
- Overrides:
setFinalized
in class FileMetadata
getOutputStream
protected java.io.OutputStream getOutputStream()
throws java.io.IOException
- Specified by:
getOutputStream
in class FileMetadata
- Throws:
java.io.IOException
getInputStream
protected java.io.InputStream getInputStream()
throws java.io.IOException
- Specified by:
getInputStream
in class FileMetadata
- Throws:
java.io.IOException