axmol/core/platform/FileUtils.h

910 lines
38 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2013 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md).
2019-11-23 20:27:39 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2019-11-23 20:27:39 +08:00
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.
****************************************************************************/
2022-07-16 10:43:05 +08:00
#ifndef __AX_FILEUTILS_H__
#define __AX_FILEUTILS_H__
2019-11-23 20:27:39 +08:00
#include <string>
#include <vector>
#include <unordered_map>
#include <type_traits>
#include <mutex>
#include <memory>
2019-11-23 20:27:39 +08:00
#include "platform/IFileStream.h"
#include "platform/PlatformMacros.h"
#include "base/Types.h"
#include "base/Value.h"
#include "base/Data.h"
#include "base/AsyncTaskPool.h"
#include "base/Scheduler.h"
#include "base/Director.h"
2019-11-23 20:27:39 +08:00
#define AX_CONTENT_DIR "Content/"
#define AX_CONTENT_DIR_LEN (sizeof("Content/") - 1)
2022-04-28 11:43:59 +08:00
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
/**
* @addtogroup platform
* @{
*/
2021-12-25 10:04:45 +08:00
class ResizableBuffer
{
2019-11-23 20:27:39 +08:00
public:
virtual ~ResizableBuffer() {}
virtual void resize(size_t size) = 0;
2021-12-25 10:04:45 +08:00
virtual void* buffer() const = 0;
virtual size_t size() const = 0;
2019-11-23 20:27:39 +08:00
};
2022-05-14 17:47:47 +08:00
template <typename T, typename Enable = void>
struct is_resizable_container : std::false_type
{};
template <typename... Ts>
struct is_resizable_container_helper
{};
template <typename T>
struct is_resizable_container<T,
std::conditional_t<false,
is_resizable_container_helper<typename T::value_type,
decltype(std::declval<T>().size()),
decltype(std::declval<T>().resize(0)),
decltype(std::declval<T>().data())>,
void>> : public std::true_type
{};
template <typename _T>
inline constexpr bool is_resizable_container_v = is_resizable_container<_T>::value;
2021-12-25 10:04:45 +08:00
template <typename T>
class ResizableBufferAdapter : public ResizableBuffer
2021-12-25 10:04:45 +08:00
{
T* _buffer;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
public:
explicit ResizableBufferAdapter(T* buffer) : _buffer(buffer) {}
virtual void resize(size_t size) override
2021-12-25 10:04:45 +08:00
{
_buffer->resize((size + sizeof(typename T::value_type) - 1) / sizeof(typename T::value_type));
2019-11-23 20:27:39 +08:00
}
virtual void* buffer() const override { return _buffer->data(); }
virtual size_t size() const override { return _buffer->size() * sizeof(typename T::value_type); }
2019-11-23 20:27:39 +08:00
};
/** Helper class to handle file operations. */
2022-07-16 10:43:05 +08:00
class AX_DLL FileUtils
2019-11-23 20:27:39 +08:00
{
public:
/**
* Gets the instance of FileUtils.
*/
static FileUtils* getInstance();
/**
* Destroys the instance of FileUtils.
*/
static void destroyInstance();
/**
* You can inherit from platform dependent implementation of FileUtils, such as FileUtilsAndroid,
* and use this function to set delegate, then FileUtils will invoke delegate's implementation.
* For example, your resources are encrypted, so you need to decrypt it after reading data from
* resources, then you can implement all getXXX functions, and engine will invoke your own getXX
* functions when reading data of resources.
*
* If you don't want to system default implementation after setting delegate, you can just pass nullptr
* to this function.
*
* @warning It will delete previous delegate
* @lua NA
*/
2021-12-25 10:04:45 +08:00
static void setDelegate(FileUtils* delegate);
2019-11-23 20:27:39 +08:00
/**
* The destructor of FileUtils.
* @js NA
* @lua NA
*/
virtual ~FileUtils();
/**
* Purges full path caches.
*/
virtual void purgeCachedEntries();
/**
* Gets string from a file.
*/
virtual std::string getStringFromFile(std::string_view filename) const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Gets string from a file, async off the main cocos thread
*
* @param path filepath for the string to be read. Can be relative or absolute path
2021-12-25 10:04:45 +08:00
* @param callback Function that will be called when file is read. Will be called
2019-11-23 20:27:39 +08:00
* on the main cocos thread.
*/
virtual void getStringFromFile(std::string_view path, std::function<void(std::string)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* Creates binary data from a file.
* @return A data object.
*/
virtual Data getDataFromFile(std::string_view filename) const;
2019-11-23 20:27:39 +08:00
/**
* Gets a binary data object from a file, async off the main cocos thread.
*
* @param filename filepath for the data to be read. Can be relative or absolute path
2021-12-25 10:04:45 +08:00
* @param callback Function that will be called when file is read. Will be called
2019-11-23 20:27:39 +08:00
* on the main cocos thread.
*/
virtual void getDataFromFile(std::string_view filename, std::function<void(Data)> callback) const;
2019-11-23 20:27:39 +08:00
enum class Status
{
2021-12-25 10:04:45 +08:00
OK = 0,
NotExists = 1, // File not exists
OpenFailed = 2, // Open file failed.
ReadFailed = 3, // Read failed
NotInitialized = 4, // FileUtils is not initializes
TooLarge = 5, // The file is too large (great than 2^32-1)
ObtainSizeFailed = 6, // Failed to obtain the file size.
NotRegularFileType = 7 // File type is not S_IFREG
2019-11-23 20:27:39 +08:00
};
/**
* Gets whole file contents as string from a file.
*
* Unlike getStringFromFile, these getContents methods:
* - read file in binary mode (does not convert CRLF to LF).
2021-12-25 10:04:45 +08:00
* - does not truncate the string when '\0' is found (returned string of getContents may have '\0' in the
* middle.).
2019-11-23 20:27:39 +08:00
*
2022-08-08 18:02:17 +08:00
* The template version of can accept ax::Data, std::basic_string and std::vector.
2019-11-23 20:27:39 +08:00
*
* @code
* std::string sbuf;
* FileUtils::getInstance()->getContents("path/to/file", &sbuf);
*
* std::vector<int> vbuf;
* FileUtils::getInstance()->getContents("path/to/file", &vbuf);
*
* Data dbuf;
* FileUtils::getInstance()->getContents("path/to/file", &dbuf);
* @endcode
*
* Note: if you read to std::vector<T> and std::basic_string<T> where T is not 8 bit type,
* you may get 0 ~ sizeof(T)-1 bytes padding.
*
* - To write a new buffer class works with getContents, just extend ResizableBuffer.
2021-12-25 10:04:45 +08:00
* - To write a adapter for existing class, write a specialized ResizableBufferAdapter for that class, see follow
* code.
2019-11-23 20:27:39 +08:00
*
* @code
* NS_AX_BEGIN // ResizableBufferAdapter needed in cocos2d namespace.
2019-11-23 20:27:39 +08:00
* template<>
* class ResizableBufferAdapter<AlreadyExistsBuffer> : public ResizableBuffer {
* public:
* ResizableBufferAdapter(AlreadyExistsBuffer* buffer) {
* // your code here
* }
* virtual void resize(size_t size) override {
* // your code here
* }
* virtual void* buffer() const override {
* // your code here
* }
* NS_AX_END
2019-11-23 20:27:39 +08:00
* @endcode
*
* @param[in] filename The resource file name which contains the path.
* @param[out] buffer The buffer where the file contents are store to.
* @return Returns:
* - Status::OK when there is no error, the buffer is filled with the contents of file.
* - Status::NotExists when file not exists, the buffer will not changed.
* - Status::OpenFailed when cannot open file, the buffer will not changed.
* - Status::ReadFailed when read end up before read whole, the buffer will fill with already read bytes.
* - Status::NotInitialized when FileUtils is not initializes, the buffer will not changed.
* - Status::TooLarge when there file to be read is too large (> 2^32-1), the buffer will not changed.
* - Status::ObtainSizeFailed when failed to obtain the file size, the buffer will not changed.
*/
2022-05-14 17:47:47 +08:00
template <typename T, typename Enable = std::enable_if_t<is_resizable_container_v<T>>>
Status getContents(std::string_view filename, T* buffer) const
2021-12-25 10:04:45 +08:00
{
2019-11-23 20:27:39 +08:00
ResizableBufferAdapter<T> buf(buffer);
return getContents(filename, static_cast<ResizableBuffer*>(&buf));
2019-11-23 20:27:39 +08:00
}
virtual Status getContents(std::string_view filename, ResizableBuffer* buffer) const;
2019-11-23 20:27:39 +08:00
/** Returns the fullpath for a given filename.
First it will try to get a new filename from the "filenameLookup" dictionary.
If a new filename can't be found on the dictionary, it will use the original filename.
2021-12-25 10:04:45 +08:00
Then it will try to obtain the full path of the filename using the FileUtils search rules: resolutions, and search
paths. The file search is based on the array element order of search paths and resolution directories.
2019-11-23 20:27:39 +08:00
For instance:
We set two elements("/mnt/sdcard/", "internal_dir/") to search paths vector by setSearchPaths,
2021-12-25 10:04:45 +08:00
If we have a file named 'sprite.png', the mapping in fileLookup dictionary contains `key: sprite.png -> value:
sprite.pvr.gz`. Firstly, it will replace 'sprite.png' with 'sprite.pvr.gz', then searching the file sprite.pvr.gz
as follows:
2019-11-23 20:27:39 +08:00
/mnt/sdcard/resources-ipadhd/sprite.pvr.gz (if not found, search next)
/mnt/sdcard/resources-ipad/sprite.pvr.gz (if not found, search next)
/mnt/sdcard/resources-iphonehd/sprite.pvr.gz (if not found, search next)
/mnt/sdcard/sprite.pvr.gz (if not found, search next)
internal_dir/resources-ipadhd/sprite.pvr.gz (if not found, search next)
internal_dir/resources-ipad/sprite.pvr.gz (if not found, search next)
internal_dir/resources-iphonehd/sprite.pvr.gz (if not found, search next)
internal_dir/sprite.pvr.gz (if not found, return "sprite.png")
If the filename contains relative path like "gamescene/uilayer/sprite.png",
2021-12-25 10:04:45 +08:00
and the mapping in fileLookup dictionary contains `key: gamescene/uilayer/sprite.png -> value:
gamescene/uilayer/sprite.pvr.gz`. The file search order will be:
2019-11-23 20:27:39 +08:00
/mnt/sdcard/gamescene/uilayer/resources-ipadhd/sprite.pvr.gz (if not found, search next)
/mnt/sdcard/gamescene/uilayer/resources-ipad/sprite.pvr.gz (if not found, search next)
/mnt/sdcard/gamescene/uilayer/resources-iphonehd/sprite.pvr.gz (if not found, search next)
/mnt/sdcard/gamescene/uilayer/sprite.pvr.gz (if not found, search next)
internal_dir/gamescene/uilayer/resources-ipadhd/sprite.pvr.gz (if not found, search next)
internal_dir/gamescene/uilayer/resources-ipad/sprite.pvr.gz (if not found, search next)
internal_dir/gamescene/uilayer/resources-iphonehd/sprite.pvr.gz (if not found, search next)
2021-12-25 10:04:45 +08:00
internal_dir/gamescene/uilayer/sprite.pvr.gz (if not found, return
"gamescene/uilayer/sprite.png")
2019-11-23 20:27:39 +08:00
If the new file can't be found on the file system, it will return the parameter filename directly.
2021-12-25 10:04:45 +08:00
This method was added to simplify multiplatform support. Whether you are using cocos2d-js or any cross-compilation
toolchain like StellaSDK or Apportable, you might need to load different resources for a given file in the
different platforms.
2019-11-23 20:27:39 +08:00
@since v2.1
*/
virtual std::string fullPathForFilename(std::string_view filename) const;
2019-11-23 20:27:39 +08:00
/**
* Gets full path from a file name and the path of the relative file.
* @param filename The file name.
* @param relativeFile The path of the relative file.
* @return The full path.
* e.g. filename: hello.png, pszRelativeFile: /User/path1/path2/hello.plist
2021-12-25 10:04:45 +08:00
* Return: /User/path1/path2/hello.pvr (If there a a key(hello.png)-value(hello.pvr) in FilenameLookup
* dictionary. )
2019-11-23 20:27:39 +08:00
*
*/
virtual std::string fullPathFromRelativeFile(std::string_view filename, std::string_view relativeFile) const;
2019-11-23 20:27:39 +08:00
/**
* Sets the array of search paths.
*
* You can use this array to modify the search path of the resources.
2021-12-25 10:04:45 +08:00
* If you want to use "themes" or search resources in the "cache", you can do it easily by adding new entries in
* this array.
2019-11-23 20:27:39 +08:00
*
* @note This method could access relative path and absolute path.
2021-12-25 10:04:45 +08:00
* If the relative path was passed to the vector, FileUtils will add the default resource directory before
* the relative path. For instance: On Android, the default resource root path is "assets/". If "/mnt/sdcard/" and
* "resources-large" were set to the search paths vector, "resources-large" will be converted to
* "assets/resources-large" since it was a relative path.
2019-11-23 20:27:39 +08:00
*
* @param searchPaths The array contains search paths.
* @see fullPathForFilename(const char*)
* @since v2.1
* In js:var setSearchPaths(var jsval);
* @lua NA
*/
virtual void setSearchPaths(const std::vector<std::string>& searchPaths);
/**
* Get default resource root path.
*/
const std::string& getDefaultResourceRootPath() const;
2019-11-23 20:27:39 +08:00
/**
* Set default resource root path.
*/
void setDefaultResourceRootPath(std::string_view path);
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* Add search path.
*
* @since v2.1
*/
void addSearchPath(std::string_view path, const bool front = false);
2019-11-23 20:27:39 +08:00
/**
* Gets the array of search paths.
*
2021-12-25 10:04:45 +08:00
* @return The array of search paths which may contain the prefix of default resource root path.
2019-11-23 20:27:39 +08:00
* @note In best practise, getter function should return the value of setter function passes in.
2021-12-25 10:04:45 +08:00
* But since we should not break the compatibility, we keep using the old logic.
2019-11-23 20:27:39 +08:00
* Therefore, If you want to get the original search paths, please call 'getOriginalSearchPaths()' instead.
* @see fullPathForFilename(const char*).
* @lua NA
*/
virtual const std::vector<std::string>& getSearchPaths() const;
2019-11-23 20:27:39 +08:00
/**
* Gets the original search path array set by 'setSearchPaths' or 'addSearchPath'.
* @return The array of the original search paths
*/
virtual const std::vector<std::string>& getOriginalSearchPaths() const;
2019-11-23 20:27:39 +08:00
/**
* Gets the writable path that may not be in the format of an absolute path
2019-11-23 20:27:39 +08:00
* @return The path that can be write/read a file in
* @note This may return the same value as getNativeWritableAbsolutePath(). If you require the absolute path
* to the underlying file system, then call getNativeWritableAbsolutePath() instead.
2019-11-23 20:27:39 +08:00
*/
virtual std::string getWritablePath() const = 0;
/**
* Gets the writable path in the native file-system format
* @return The path that can be write/read a file in
*/
virtual std::string getNativeWritableAbsolutePath() const = 0;
#if AX_TARGET_PLATFORM == AX_PLATFORM_WIN32 || AX_TARGET_PLATFORM == AX_PLATFORM_LINUX
/*
* Gets application executable root directory
* @Note: Only present on targets: win32 and linux
*/
static std::string& getAppRoot() { return s_exeDir; }
#endif
2019-11-23 20:27:39 +08:00
/**
* Sets writable path.
*/
virtual void setWritablePath(std::string_view writablePath);
2019-11-23 20:27:39 +08:00
/**
* Sets whether to pop-up a message box when failed to load an image.
*/
virtual void setPopupNotify(bool notify);
/** Checks whether to pop up a message box when failed to load an image.
* @return True if pop up a message box when failed to load an image, false if not.
*/
virtual bool isPopupNotify() const;
/**
* Converts the contents of a file to a ValueMap.
* @param filename The filename of the file to gets content.
* @return ValueMap of the file contents.
* @note This method is used internally.
*/
virtual ValueMap getValueMapFromFile(std::string_view filename) const;
2019-11-23 20:27:39 +08:00
/** Converts the contents of a file to a ValueMap.
* This method is used internally.
*/
virtual ValueMap getValueMapFromData(const char* filedata, int filesize) const;
/**
2021-12-25 10:04:45 +08:00
* write a ValueMap into a plist file
*
*@param dict the ValueMap want to save
*@param fullPath The full path to the file you want to save a string
*@return bool
*/
virtual bool writeToFile(const ValueMap& dict, std::string_view fullPath) const;
2019-11-23 20:27:39 +08:00
/**
* write a string into a file
*
* @param dataStr the string want to save
* @param fullPath The full path to the file you want to save a string
* @return bool True if write success
*/
virtual bool writeStringToFile(std::string_view dataStr, std::string_view fullPath) const;
2019-11-23 20:27:39 +08:00
/**
* Write a string to a file, done async off the main cocos thread
* Use this function if you need file access without blocking the main thread.
*
* This function takes a std::string by value on purpose, to leverage move sematics.
* If you want to avoid a copy of your datastr, use std::move/std::forward if appropriate
*
* @param dataStr the string want to save
* @param fullPath The full path to the file you want to save a string
* @param callback The function called once the string has been written to a file. This
2021-12-25 10:04:45 +08:00
* function will be executed on the main cocos thread. It will have on boolean argument
2019-11-23 20:27:39 +08:00
* signifying if the write was successful.
*/
2021-12-25 10:04:45 +08:00
virtual void writeStringToFile(std::string dataStr,
std::string_view fullPath,
2021-12-25 10:04:45 +08:00
std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* write Data into a file
*
*@param data the data want to save
*@param fullPath The full path to the file you want to save a string
*@return bool
*/
virtual bool writeDataToFile(const Data& data, std::string_view fullPath) const;
/**
2021-12-25 10:04:45 +08:00
* save data to file
*/
static bool writeBinaryToFile(const void* data, size_t dataSize, std::string_view fullPath);
2021-12-25 10:04:45 +08:00
/**
* Write Data into a file, done async off the main cocos thread.
*
* Use this function if you need to write Data while not blocking the main cocos thread.
*
* This function takes Data by value on purpose, to leverage move sematics.
* If you want to avoid a copy of your data, use std::move/std::forward if appropriate
*
*@param data The data that will be written to disk
*@param fullPath The absolute file path that the data will be written to
*@param callback The function that will be called when data is written to disk. This
* function will be executed on the main cocos thread. It will have on boolean argument
* signifying if the write was successful.
*/
virtual void writeDataToFile(Data data, std::string_view fullPath, std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* write ValueMap into a plist file
*
*@param dict the ValueMap want to save
*@param fullPath The full path to the file you want to save a string
*@return bool
*/
virtual bool writeValueMapToFile(const ValueMap& dict, std::string_view fullPath) const;
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* Write a ValueMap into a file, done async off the main cocos thread.
*
* Use this function if you need to write a ValueMap while not blocking the main cocos thread.
*
* This function takes ValueMap by value on purpose, to leverage move sematics.
* If you want to avoid a copy of your dict, use std::move/std::forward if appropriate
*
*@param dict The ValueMap that will be written to disk
*@param fullPath The absolute file path that the data will be written to
*@param callback The function that will be called when dict is written to disk. This
* function will be executed on the main cocos thread. It will have on boolean argument
* signifying if the write was successful.
*/
virtual void writeValueMapToFile(ValueMap dict,
std::string_view fullPath,
2021-12-25 10:04:45 +08:00
std::function<void(bool)> callback) const;
/**
* write ValueVector into a plist file
*
*@param vecData the ValueVector want to save
*@param fullPath The full path to the file you want to save a string
*@return bool
*/
virtual bool writeValueVectorToFile(const ValueVector& vecData, std::string_view fullPath) const;
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* Write a ValueVector into a file, done async off the main cocos thread.
*
* Use this function if you need to write a ValueVector while not blocking the main cocos thread.
*
* This function takes ValueVector by value on purpose, to leverage move sematics.
* If you want to avoid a copy of your dict, use std::move/std::forward if appropriate
*
*@param vecData The ValueVector that will be written to disk
*@param fullPath The absolute file path that the data will be written to
*@param callback The function that will be called when vecData is written to disk. This
* function will be executed on the main cocos thread. It will have on boolean argument
* signifying if the write was successful.
*/
virtual void writeValueVectorToFile(ValueVector vecData,
std::string_view fullPath,
2021-12-25 10:04:45 +08:00
std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
// Converts the contents of a file to a ValueVector.
// This method is used internally.
virtual ValueVector getValueVectorFromFile(std::string_view filename) const;
2019-11-23 20:27:39 +08:00
/**
* Checks whether a file exists.
*
* @note If a relative path was passed in, it will be inserted a default root path at the beginning.
* @param filename The path of the file, it could be a relative or absolute path.
* @return True if the file exists, false if not.
*/
virtual bool isFileExist(std::string_view filename) const;
2019-11-23 20:27:39 +08:00
/**
* Checks if a file exists, done async off the main cocos thread.
2021-12-25 10:04:45 +08:00
*
2019-11-23 20:27:39 +08:00
* Use this function if you need to check if a file exists while not blocking the main cocos thread.
*
* @note If a relative path was passed in, it will be inserted a default root path at the beginning.
* @param filename The path of the file, it could be a relative or absolute path.
* @param callback The function that will be called when the operation is complete. Will have one boolean
* argument, true if the file exists, false otherwise.
*/
virtual void isFileExist(std::string_view filename, std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* Gets filename extension is a suffix (separated from the base filename by a dot) in lower case.
* Examples of filename extensions are .png, .jpeg, .exe, .dmg and .txt.
* @param filePath The path of the file, it could be a relative or absolute path.
* @return suffix for filename in lower case or empty if a dot not found.
*/
virtual std::string getFileExtension(std::string_view filePath) const;
2019-11-23 20:27:39 +08:00
2020-08-01 19:25:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* Gets filename shotName
* @param filePath The path of the file, it could be a relative or absolute path.
* @return fileName.Extension without path
*/
static std::string getFileShortName(std::string_view filePath);
2020-08-01 19:25:39 +08:00
2019-11-23 20:27:39 +08:00
/**
* Checks whether the path is an absolute path.
*
2021-12-25 10:04:45 +08:00
* @note On Android, if the parameter passed in is relative to "assets/", this method will treat it as an absolute
* path. Also on Blackberry, path starts with "app/native/Resources/" is treated as an absolute path.
2019-11-23 20:27:39 +08:00
*
* @param path The path that needs to be checked.
* @return True if it's an absolute path, false if not.
*/
virtual bool isAbsolutePath(std::string_view path) const;
2019-11-23 20:27:39 +08:00
static bool isAbsolutePathInternal(std::string_view path);
2019-11-23 20:27:39 +08:00
/**
* Checks whether the path is a directory.
*
* @param dirPath The path of the directory, it could be a relative or an absolute path.
* @return True if the directory exists, false if not.
*/
virtual bool isDirectoryExist(std::string_view dirPath) const;
2019-11-23 20:27:39 +08:00
/**
* Checks whether the absoulate path is a directory, async off of the main cocos thread.
*
* @param dirPath The path of the directory, it must be an absolute path
2021-12-25 10:04:45 +08:00
* @param callback that will accept a boolean, true if the file exists, false otherwise.
2019-11-23 20:27:39 +08:00
* Callback will happen on the main cocos thread.
*/
virtual void isDirectoryExist(std::string_view fullPath, std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* Creates a directory.
*
* @param dirPath The path of the directory, it must be an absolute path.
* @return True if the directory have been created successfully, false if not.
*/
virtual bool createDirectory(std::string_view dirPath) const;
2019-11-23 20:27:39 +08:00
/**
* Create a directory, async off the main cocos thread.
*
* @param dirPath the path of the directory, it must be an absolute path
* @param callback The function that will be called when the operation is complete. Will have one boolean
* argument, true if the directory was successfully, false otherwise.
*/
virtual void createDirectory(std::string_view dirPath, std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* Removes a directory.
*
* @param dirPath The full path of the directory, it must be an absolute path.
* @return True if the directory have been removed successfully, false if not.
*/
virtual bool removeDirectory(std::string_view dirPath) const;
2019-11-23 20:27:39 +08:00
/**
* Removes a directory, async off the main cocos thread.
*
* @param dirPath the path of the directory, it must be an absolute path
* @param callback The function that will be called when the operation is complete. Will have one boolean
* argument, true if the directory was successfully removed, false otherwise.
*/
virtual void removeDirectory(std::string_view dirPath, std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* Removes a file.
*
* @param filepath The full path of the file, it must be an absolute path.
* @return True if the file have been removed successfully, false if not.
*/
virtual bool removeFile(std::string_view filepath) const;
2019-11-23 20:27:39 +08:00
/**
* Removes a file, async off the main cocos thread.
*
* @param filepath the path of the file to remove, it must be an absolute path
* @param callback The function that will be called when the operation is complete. Will have one boolean
* argument, true if the file was successfully removed, false otherwise.
*/
virtual void removeFile(std::string_view filepath, std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* Renames a file under the given directory.
*
* @param path The parent directory path of the file, it must be an absolute path.
* @param oldname The current name of the file.
* @param name The new name of the file.
* @return True if the file have been renamed successfully, false if not.
*/
virtual bool renameFile(std::string_view path, std::string_view oldname, std::string_view name) const;
2019-11-23 20:27:39 +08:00
/**
* Renames a file under the given directory, async off the main cocos thread.
*
* @param path The parent directory path of the file, it must be an absolute path.
* @param oldname The current name of the file.
* @param name The new name of the file.
* @param callback The function that will be called when the operation is complete. Will have one boolean
* argument, true if the file was successfully renamed, false otherwise.
*/
virtual void renameFile(std::string_view path,
std::string_view oldname,
std::string_view name,
2021-12-25 10:04:45 +08:00
std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* Renames a file under the given directory.
*
* @param oldfullpath The current fullpath of the file. Includes path and name.
* @param newfullpath The new fullpath of the file. Includes path and name.
* @return True if the file have been renamed successfully, false if not.
*/
virtual bool renameFile(std::string_view oldfullpath, std::string_view newfullpath) const;
2019-11-23 20:27:39 +08:00
/**
* Renames a file under the given directory, async off the main cocos thread.
*
* @param oldfullpath The current fullpath of the file. Includes path and name.
* @param newfullpath The new fullpath of the file. Includes path and name.
* @param callback The function that will be called when the operation is complete. Will have one boolean
* argument, true if the file was successfully renamed, false otherwise.
*/
virtual void renameFile(std::string_view oldfullpath,
std::string_view newfullpath,
2021-12-25 10:04:45 +08:00
std::function<void(bool)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* Retrieve the file size.
*
* @note If a relative path was passed in, it will be inserted a default root path at the beginning.
* @param filepath The path of the file, it could be a relative or absolute path.
* @return The file size.
*/
virtual int64_t getFileSize(std::string_view filepath) const;
2019-11-23 20:27:39 +08:00
/**
* Retrieve the file size, async off the main cocos thread.
*
* @note If a relative path was passed in, it will be inserted a default root path at the beginning.
* @param filepath The path of the file, it could be a relative or absolute path.
* @param callback The function that will be called when the operation is complete. Will have one long
* argument, the file size.
*/
virtual void getFileSize(std::string_view filepath, std::function<void(int64_t)> callback) const;
2019-11-23 20:27:39 +08:00
/**
* List all files in a directory.
*
* @param dirPath The path of the directory, it could be a relative or an absolute path.
* @return File paths in a string vector
*/
virtual std::vector<std::string> listFiles(std::string_view dirPath) const;
2019-11-23 20:27:39 +08:00
/**
* List all files in a directory async, off of the main cocos thread.
*
* @param dirPath The path of the directory, it could be a relative or an absolute path.
2021-12-25 10:04:45 +08:00
* @param callback The callback to be called once the list operation is complete. Will be called on the main cocos
* thread.
2019-11-23 20:27:39 +08:00
* @js NA
* @lua NA
*/
virtual void listFilesAsync(std::string_view dirPath, std::function<void(std::vector<std::string>)> callback) const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* List all files recursively in a directory.
*
* @param dirPath The path of the directory, it could be a relative or an absolute path.
* @return File paths in a string vector
*/
virtual void listFilesRecursively(std::string_view dirPath, std::vector<std::string>* files) const;
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* List all files recursively in a directory, async off the main cocos thread.
*
* @param dirPath The path of the directory, it could be a relative or an absolute path.
* @param callback The callback to be called once the list operation is complete.
* Will be called on the main cocos thread.
* @js NA
* @lua NA
*/
virtual void listFilesRecursivelyAsync(std::string_view dirPath,
2021-12-25 10:04:45 +08:00
std::function<void(std::vector<std::string>)> callback) const;
2019-11-23 20:27:39 +08:00
/** Returns the full path cache. */
const hlookup::string_map<std::string> getFullPathCache() const { return _fullPathCache; }
2019-11-23 20:27:39 +08:00
/**
* Checks whether a file exists without considering search paths and resolution orders.
* @param filename The file (with absolute path) to look up for
* @return Returns true if the file found at the given absolute path, otherwise returns false
*/
virtual bool isFileExistInternal(std::string_view filename) const = 0;
/**
* Checks whether a directory exists without considering search paths and resolution orders.
* @param dirPath The directory (with absolute path) to look up for
* @return Returns true if the directory found at the given absolute path, otherwise returns false
*/
virtual bool isDirectoryExistInternal(std::string_view dirPath) const;
/**
* Open a FileStream based on the implementation provided in openFileStream or its overrides
* @param filePath The path to the file
* @param mode The mode to open the file in, being READ | WRITE | APPEND
* @return Returns a pointer to the file stream
*/
virtual std::unique_ptr<IFileStream> openFileStream(std::string_view filePath, IFileStream::Mode mode);
2019-11-23 20:27:39 +08:00
protected:
/**
* The default constructor.
*/
FileUtils();
/**
2022-11-01 06:47:36 +08:00
* Initializes the instance of FileUtils. It will set _searchPathArray.
2021-12-25 10:04:45 +08:00
* values.
2019-11-23 20:27:39 +08:00
*
* @note When you are porting Cocos2d-x to a new platform, you may need to take care of this method.
2021-12-25 10:04:45 +08:00
* You could assign a default value to _defaultResRootPath in the subclass of FileUtils(e.g.
* FileUtilsAndroid). Then invoke the FileUtils::init().
2019-11-23 20:27:39 +08:00
* @return true if succeed, otherwise it returns false.
*
*/
virtual bool init();
/**
* Gets full path for filename, resolution directory and search path.
*
* @param filename The file name.
* @param searchPath The search path.
* @return The full path of the file. It will return an empty string if the full path of the file doesn't exist.
*/
virtual std::string getPathForFilename(std::string_view filename, std::string_view searchPath) const;
2021-12-25 10:04:45 +08:00
virtual std::string getPathForDirectory(std::string_view dir, std::string_view searchPath) const;
2019-11-23 20:27:39 +08:00
/**
* Gets full path for the directory and the filename.
*
* @note Only iOS and Mac need to override this method since they are using
* `[[NSBundle mainBundle] pathForResource: ofType: inDirectory:]` to make a full path.
* Other platforms will use the default implementation of this method.
* @param directory The directory contains the file we are looking for.
* @param filename The name of the file.
* @return The full path of the file, if the file can't be found, it will return an empty string.
*/
virtual std::string getFullPathForFilenameWithinDirectory(std::string_view directory,
std::string_view filename) const;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
/**
* Returns the fullpath for a given dirname.
* @since 3.17.1
*/
virtual std::string fullPathForDirectory(std::string_view dirname) const;
2019-11-23 20:27:39 +08:00
/**
2021-12-25 10:04:45 +08:00
* mutex used to protect fields.
*/
2019-11-23 20:27:39 +08:00
mutable std::recursive_mutex _mutex;
/**
* The vector contains search paths.
* The lower index of the element in this vector, the higher priority for this search path.
*/
std::vector<std::string> _searchPathArray;
/**
* The search paths which was set by 'setSearchPaths' / 'addSearchPath'.
*/
std::vector<std::string> _originalSearchPaths;
/**
* The default root path of resources.
* If the default root path of resources needs to be changed, do it in the `init` method of FileUtils's subclass.
* For instance:
* On Android, the default root path of resources will be assigned with "assets/" in FileUtilsAndroid::init().
* Similarly on Blackberry, we assign "app/native/Resources/" to this variable in FileUtilsBlackberry::init().
*/
std::string _defaultResRootPath;
/**
* The full path cache for normal files. When a file is found, it will be added into this cache.
* This variable is used for improving the performance of file search.
*/
mutable hlookup::string_map<std::string> _fullPathCache;
2019-11-23 20:27:39 +08:00
/**
* The full path cache for directories. When a diretory is found, it will be added into this cache.
* This variable is used for improving the performance of file search.
*/
mutable hlookup::string_map<std::string> _fullPathCacheDir;
2019-11-23 20:27:39 +08:00
/**
* Writable path.
*/
std::string _writablePath;
#if AX_TARGET_PLATFORM == AX_PLATFORM_WIN32 || AX_TARGET_PLATFORM == AX_PLATFORM_LINUX
/*
* The dir of executable file, only present targets: win32, linux
*/
static std::string s_exeDir;
#endif
2019-11-23 20:27:39 +08:00
/**
* The singleton pointer of FileUtils.
*/
static FileUtils* s_sharedFileUtils;
/**
* Remove null value key (for iOS)
*/
virtual void valueMapCompact(ValueMap& valueMap) const;
virtual void valueVectorCompact(ValueVector& valueVector) const;
2021-12-25 10:04:45 +08:00
template <typename T, typename R, typename... ARGS>
static void performOperationOffthread(T&& action, R&& callback, ARGS&&... args)
2019-11-23 20:27:39 +08:00
{
// As axmol uses c++17+, we will use std::bind to leverage move sematics to
2021-12-25 10:04:45 +08:00
// move our arguments into our lambda, to potentially avoid copying.
auto lambda = std::bind(
[](const T& actionIn, const R& callbackIn, const ARGS&... argsIn) {
Director::getInstance()->getScheduler()->runOnAxmolThread(std::bind(callbackIn, actionIn(argsIn...)));
2021-12-25 10:04:45 +08:00
},
std::forward<T>(action), std::forward<R>(callback), std::forward<ARGS>(args)...);
AsyncTaskPool::getInstance()->enqueue(
AsyncTaskPool::TaskType::TASK_IO, [](void*) {}, nullptr, std::move(lambda));
2019-11-23 20:27:39 +08:00
}
};
// end of support group
/** @} */
NS_AX_END
2019-11-23 20:27:39 +08:00
2022-07-16 10:43:05 +08:00
#endif // __AX_FILEUTILS_H__