|
ezString128 | GetFilePathAbsolute () const |
| Returns the absolute path with which the file was opened (including the prefix of the data directory).
|
|
ezString128 | GetFilePathRelative () const |
| Returns the relative path of the file within its data directory (excluding the prefix of the data directory).
|
|
ezDataDirectoryType * | GetDataDirectory () const |
| Returns the ezDataDirectoryType over which this file has been opened.
|
|
bool | IsOpen () const |
| Returns true, if the file is currently open.
|
|
ezUInt64 | GetFileSize () const |
| Returns the current total size of the file.
|
|
| ezStreamWriter () |
| Constructor.
|
|
virtual | ~ezStreamWriter () |
| Virtual destructor to ensure correct cleanup.
|
|
virtual ezResult | WriteBytes (const void *pWriteBuffer, ezUInt64 uiBytesToWrite)=0 |
| Writes a raw number of bytes from the buffer, this is the only method which has to be implemented to fully implement the interface.
|
|
virtual ezResult | Flush () |
| Flushes the stream, may be implemented (not necessary to implement the interface correctly) so that user code can ensure that content is written.
|
|
template<typename T > |
ezResult | WriteWordValue (const T *pWordValue) |
| Helper method to write a word value correctly (copes with potentially different endianess)
|
|
template<typename T > |
ezResult | WriteDWordValue (const T *pDWordValue) |
| Helper method to write a dword value correctly (copes with potentially different endianess)
|
|
template<typename T > |
ezResult | WriteQWordValue (const T *pQWordValue) |
| Helper method to write a qword value correctly (copes with potentially different endianess)
|
|
EZ_ALWAYS_INLINE void | WriteVersion (ezTypeVersion version) |
| Writes a type version to the stream.
|
|
template<typename ArrayType , typename ValueType > |
ezResult | WriteArray (const ezArrayBase< ValueType, ArrayType > &array) |
| Writes an array of elements to the stream.
|
|
template<typename ValueType , ezUInt16 uiSize> |
ezResult | WriteArray (const ezSmallArrayBase< ValueType, uiSize > &array) |
| Writes a small array of elements to the stream.
|
|
template<typename ValueType , ezUInt32 uiSize> |
ezResult | WriteArray (const ValueType(&array)[uiSize]) |
| Writes a C style fixed array.
|
|
template<typename KeyType , typename Comparer > |
ezResult | WriteSet (const ezSetBase< KeyType, Comparer > &set) |
| Writes a set.
|
|
template<typename KeyType , typename ValueType , typename Comparer > |
ezResult | WriteMap (const ezMapBase< KeyType, ValueType, Comparer > &map) |
| Writes a map.
|
|
template<typename KeyType , typename ValueType , typename Hasher > |
ezResult | WriteHashTable (const ezHashTableBase< KeyType, ValueType, Hasher > &hashTable) |
| Writes a hash table (note that the entry order might change on read)
|
|
ezResult | WriteString (const ezStringView sStringView) |
| Writes a string.
|
|
The base class for all file writers. Provides access to ezFileSystem::GetFileWriter, which is necessary to get access to the streams that ezDataDirectoryType's provide. Derive from this class if you want to implement different policies on how to write files. E.g. the default writer (ezFileWriter) implements a buffered write policy (using an internal cache).