| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- //
- // Copyright (c) 2008-2017 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #pragma once
- #include "../Container/ArrayPtr.h"
- #include "../Core/Object.h"
- #include "../IO/AbstractFile.h"
- #ifdef __ANDROID__
- struct SDL_RWops;
- #endif
- namespace Atomic
- {
- #ifdef __ANDROID__
- extern const char* APK;
- // Macro for checking if a given pathname is inside APK's assets directory
- #define ATOMIC_IS_ASSET(p) p.StartsWith(APK)
- // Macro for truncating the APK prefix string from the asset pathname and at the same time patching the directory name components (see custom_rules.xml)
- #ifdef ASSET_DIR_INDICATOR
- #define ATOMIC_ASSET(p) p.Substring(5).Replaced("/", ASSET_DIR_INDICATOR "/").CString()
- #else
- #define ATOMIC_ASSET(p) p.Substring(5).CString()
- #endif
- #endif
- /// File open mode.
- enum FileMode
- {
- FILE_READ = 0,
- FILE_WRITE,
- FILE_READWRITE,
- // ATOMIC BEGIN
- FILE_APPEND
- // ATOMIC END
- };
- class PackageFile;
- /// %File opened either through the filesystem or from within a package file.
- class ATOMIC_API File : public Object, public AbstractFile
- {
- ATOMIC_OBJECT(File, Object);
- public:
- /// Construct.
- File(Context* context);
- /// Construct and open a filesystem file.
- File(Context* context, const String& fileName, FileMode mode = FILE_READ);
- /// Construct and open from a package file.
- File(Context* context, PackageFile* package, const String& fileName);
- /// Destruct. Close the file if open.
- virtual ~File();
- /// Read bytes from the file. Return number of bytes actually read.
- virtual unsigned Read(void* dest, unsigned size);
- /// Set position from the beginning of the file.
- virtual unsigned Seek(unsigned position);
- /// Write bytes to the file. Return number of bytes actually written.
- virtual unsigned Write(const void* data, unsigned size);
- /// Return the file name.
- virtual const String& GetName() const { return fileName_; }
- /// Return a checksum of the file contents using the SDBM hash algorithm.
- virtual unsigned GetChecksum();
- /// Open a filesystem file. Return true if successful.
- bool Open(const String& fileName, FileMode mode = FILE_READ);
- /// Open from within a package file. Return true if successful.
- bool Open(PackageFile* package, const String& fileName);
- /// Close the file.
- void Close();
- /// Flush any buffered output to the file.
- void Flush();
- /// Change the file name. Used by the resource system.
- void SetName(const String& name);
- /// Return the open mode.
- FileMode GetMode() const { return mode_; }
- /// Return whether is open.
- bool IsOpen() const;
- /// Return the file handle.
- void* GetHandle() const { return handle_; }
- /// Return whether the file originates from a package.
- bool IsPackaged() const { return offset_ != 0; }
- // ATOMIC BEGIN
- /// Reads a text file, ensuring data from file is 0 terminated
- virtual void ReadText(String& text);
- /// Reads a text file, ensuring data from file is 0 terminated
- virtual String ReadText() { String retValue; ReadText(retValue); return retValue; }
- /// Return the fullpath to the file
- const String& GetFullPath() const { return fullPath_; }
- /// Copy a file from a source file, must be opened and FILE_WRITE
- /// Unlike FileSystem.Copy this copy works when the source file is in a package file
- bool Copy(File* srcFile);
- // ATOMIC END
- private:
- /// Open file internally using either C standard IO functions or SDL RWops for Android asset files. Return true if successful.
- bool OpenInternal(const String& fileName, FileMode mode, bool fromPackage = false);
- /// Perform the file read internally using either C standard IO functions or SDL RWops for Android asset files. Return true if successful. This does not handle compressed package file reading.
- bool ReadInternal(void* dest, unsigned size);
- /// Seek in file internally using either C standard IO functions or SDL RWops for Android asset files.
- void SeekInternal(unsigned newPosition);
- /// File name.
- String fileName_;
- /// Open mode.
- FileMode mode_;
- /// File handle.
- void* handle_;
- #ifdef __ANDROID__
- /// SDL RWops context for Android asset loading.
- SDL_RWops* assetHandle_;
- #endif
- /// Read buffer for Android asset or compressed file loading.
- SharedArrayPtr<unsigned char> readBuffer_;
- /// Decompression input buffer for compressed file loading.
- SharedArrayPtr<unsigned char> inputBuffer_;
- /// Read buffer position.
- unsigned readBufferOffset_;
- /// Bytes in the current read buffer.
- unsigned readBufferSize_;
- /// Start position within a package file, 0 for regular files.
- unsigned offset_;
- /// Content checksum.
- unsigned checksum_;
- /// Compression flag.
- bool compressed_;
- /// Synchronization needed before read -flag.
- bool readSyncNeeded_;
- /// Synchronization needed before write -flag.
- bool writeSyncNeeded_;
- // ATOMIC BEGIN
- /// Full path to file
- String fullPath_;
- // ATOMIC END
- };
- }
|