firebase:: storage:: StorageReference
#include <storage_reference.h>
Represents a reference to a Cloud Storage object.
Summary
Developers can upload and download objects, get/set object metadata, and delete an object at a specified path.
Constructors and Destructors |
|
---|---|
StorageReference()
Default constructor.
|
|
StorageReference(const StorageReference & reference)
Copy constructor.
|
|
StorageReference(StorageReference && other)
Move constructor.
|
|
~StorageReference()
|
Public functions |
|
---|---|
Child(const char *path) const
|
Gets a reference to a location relative to this one.
|
Child(const std::string & path) const
|
Gets a reference to a location relative to this one.
|
Delete()
|
Future< void >
Deletes the object at the current path.
|
DeleteLastResult()
|
Future< void >
Returns the result of the most recent call to RemoveValue();.
|
GetBytes(void *buffer, size_t buffer_size, Listener *listener, Controller *controller_out)
|
Future< size_t >
Asynchronously downloads the object from this StorageReference.
|
GetBytesLastResult()
|
Future< size_t >
Returns the result of the most recent call to GetBytes();.
|
GetDownloadUrl()
|
Future< std::string >
Asynchronously retrieves a long lived download URL with a revokable token.
|
GetDownloadUrlLastResult()
|
Future< std::string >
Returns the result of the most recent call to GetDownloadUrl();.
|
GetFile(const char *path, Listener *listener, Controller *controller_out)
|
Future< size_t >
Asynchronously downloads the object from this StorageReference.
|
GetFileLastResult()
|
Future< size_t >
Returns the result of the most recent call to GetFile();.
|
GetMetadata()
|
Retrieves metadata associated with an object at this StorageReference.
|
GetMetadataLastResult()
|
Returns the result of the most recent call to GetMetadata();.
|
GetParent()
|
Returns a new instance of StorageReference pointing to the parent location or null if this instance references the root location.
|
PutBytes(const void *buffer, size_t buffer_size, Listener *listener, Controller *controller_out)
|
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
|
PutBytes(const void *buffer, size_t buffer_size, const Metadata & metadata, Listener *listener, Controller *controller_out)
|
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
|
PutBytesLastResult()
|
Returns the result of the most recent call to PutBytes();.
|
PutFile(const char *path, Listener *listener, Controller *controller_out)
|
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
|
PutFile(const char *path, const Metadata & metadata, Listener *listener, Controller *controller_out)
|
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
|
PutFileLastResult()
|
Returns the result of the most recent call to PutFile();.
|
UpdateMetadata(const Metadata & metadata)
|
Updates the metadata associated with this StorageReference.
|
UpdateMetadataLastResult()
|
Returns the result of the most recent call to UpdateMetadata();.
|
bucket()
|
std::string
Return the Google Cloud Storage bucket that holds this object.
|
full_path()
|
std::string
Return the full path of the storage reference, not including the Google Cloud Storage bucket.
|
is_valid() const
|
bool
Returns true if this StorageReference is valid, false if it is not valid.
|
name()
|
std::string
Returns the short name of this object.
|
operator=(const StorageReference & reference)
|
Copy assignment operator.
|
operator=(StorageReference && other)
|
Move assignment operator.
|
storage()
|
Storage *
Gets the firebase::storage::Storage instance to which we refer.
|
Public functions
Child
StorageReference Child( const char *path ) const
Gets a reference to a location relative to this one.
Details | |||
---|---|---|---|
Parameters |
|
||
Returns |
Child relative to this location.
|
Child
StorageReference Child( const std::string & path ) const
Gets a reference to a location relative to this one.
Details | |||
---|---|---|---|
Parameters |
|
||
Returns |
Child relative to this location.
|
Delete
Future< void > Delete()
DeleteLastResult
Future< void > DeleteLastResult()
Returns the result of the most recent call to RemoveValue();.
Details | |
---|---|
Returns |
The result of the most recent call to RemoveValue();
|
GetBytes
Future< size_t > GetBytes( void *buffer, size_t buffer_size, Listener *listener, Controller *controller_out )
Asynchronously downloads the object from this StorageReference.
A byte array will be allocated large enough to hold the entire file in memory. Therefore, using this method will impact memory usage of your process.
Details | |||||||||
---|---|---|---|---|---|---|---|---|---|
Parameters |
|
||||||||
Returns |
A future that returns the number of bytes read.
|
GetBytesLastResult
Future< size_t > GetBytesLastResult()
Returns the result of the most recent call to GetBytes();.
Details | |
---|---|
Returns |
The result of the most recent call to GetBytes();
|
GetDownloadUrl
Future< std::string > GetDownloadUrl()
Asynchronously retrieves a long lived download URL with a revokable token.
This can be used to share the file with others, but can be revoked by a developer in the Firebase Console if desired.
Details | |
---|---|
Returns |
GetDownloadUrlLastResult
Future< std::string > GetDownloadUrlLastResult()
Returns the result of the most recent call to GetDownloadUrl();.
Details | |
---|---|
Returns |
The result of the most recent call to GetDownloadUrl();
|
GetFile
Future< size_t > GetFile( const char *path, Listener *listener, Controller *controller_out )
Asynchronously downloads the object from this StorageReference.
A byte array will be allocated large enough to hold the entire file in memory. Therefore, using this method will impact memory usage of your process.
Details | |||||||
---|---|---|---|---|---|---|---|
Parameters |
|
||||||
Returns |
A future that returns the number of bytes read.
|
GetFileLastResult
Future< size_t > GetFileLastResult()
GetMetadata
Future< Metadata > GetMetadata()
Retrieves metadata associated with an object at this StorageReference.
Details | |
---|---|
Returns |
GetMetadataLastResult
Future< Metadata > GetMetadataLastResult()
Returns the result of the most recent call to GetMetadata();.
Details | |
---|---|
Returns |
The result of the most recent call to GetMetadata();
|
GetParent
StorageReference GetParent()
Returns a new instance of StorageReference pointing to the parent location or null if this instance references the root location.
Details | |
---|---|
Returns |
The parent StorageReference.
|
PutBytes
Future< Metadata > PutBytes( const void *buffer, size_t buffer_size, Listener *listener, Controller *controller_out )
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
Details | |||||||||
---|---|---|---|---|---|---|---|---|---|
Parameters |
|
||||||||
Returns |
A future that returns the Metadata.
|
PutBytes
Future< Metadata > PutBytes( const void *buffer, size_t buffer_size, const Metadata & metadata, Listener *listener, Controller *controller_out )
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
Details | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Parameters |
|
||||||||||
Returns |
A future that returns the Metadata.
|
PutBytesLastResult
Future< Metadata > PutBytesLastResult()
Returns the result of the most recent call to PutBytes();.
Details | |
---|---|
Returns |
The result of the most recent call to PutBytes();
|
PutFile
Future< Metadata > PutFile( const char *path, Listener *listener, Controller *controller_out )
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
Details | |||||||
---|---|---|---|---|---|---|---|
Parameters |
|
||||||
Returns |
A future that returns the Metadata.
|
PutFile
Future< Metadata > PutFile( const char *path, const Metadata & metadata, Listener *listener, Controller *controller_out )
Asynchronously uploads data to the currently specified StorageReference, without additional metadata.
Details | |||||||||
---|---|---|---|---|---|---|---|---|---|
Parameters |
|
||||||||
Returns |
A future that returns the Metadata.
|
StorageReference
StorageReference()
Default constructor.
This creates an invalid StorageReference. Attempting to perform any operations on this reference will fail unless a valid StorageReference has been assigned to it.
StorageReference
StorageReference( const StorageReference & reference )
Copy constructor.
It's totally okay (and efficient) to copy StorageReference instances, as they simply point to the same location.
Details | |||
---|---|---|---|
Parameters |
|
StorageReference
StorageReference( StorageReference && other )
Move constructor.
Moving is an efficient operation for StorageReference instances.
Details | |||
---|---|---|---|
Parameters |
|
UpdateMetadata
Future< Metadata > UpdateMetadata( const Metadata & metadata )
Updates the metadata associated with this StorageReference.
Details | |
---|---|
Returns |
UpdateMetadataLastResult
Future< Metadata > UpdateMetadataLastResult()
Returns the result of the most recent call to UpdateMetadata();.
Details | |
---|---|
Returns |
The result of the most recent call to UpdateMetadata();
|
bucket
std::string bucket()
Return the Google Cloud Storage bucket that holds this object.
Details | |
---|---|
Returns |
The bucket.
|
full_path
std::string full_path()
Return the full path of the storage reference, not including the Google Cloud Storage bucket.
Details | |
---|---|
Returns |
Full path to the storage reference, not including GCS bucket. For example, for the reference "gs://bucket/path/to/object.txt", the full path would be "path/to/object.txt".
|
is_valid
bool is_valid() const
Returns true if this StorageReference is valid, false if it is not valid.
An invalid StorageReference indicates that the reference is uninitialized (created with the default constructor) or that there was an error retrieving the reference.
Details | |
---|---|
Returns |
true if this StorageReference is valid, false if this StorageReference is invalid.
|
name
std::string name()
Returns the short name of this object.
Details | |
---|---|
Returns |
the short name of this object.
|
operator=
StorageReference & operator=( const StorageReference & reference )
Copy assignment operator.
It's totally okay (and efficient) to copy StorageReference instances, as they simply point to the same location.
Details | |||
---|---|---|---|
Parameters |
|
||
Returns |
Reference to the destination StorageReference.
|
operator=
StorageReference & operator=( StorageReference && other )
Move assignment operator.
Moving is an efficient operation for StorageReference instances.
Details | |||
---|---|---|---|
Parameters |
|
||
Returns |
Reference to the destination StorageReference.
|
storage
Storage * storage()
Gets the firebase::storage::Storage instance to which we refer.
The pointer will remain valid indefinitely.
Details | |
---|---|
Returns |
The firebase::storage::Storage instance that this StorageReference refers to.
|
~StorageReference
~StorageReference()