123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /****************************************************************************
- Copyright (c) 2010-2012 cocos2d-x.org
- Copyright (c) 2013-2017 Chukong Technologies Inc.
- http://www.cocos2d-x.org
- 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.
- ****************************************************************************/
- #ifndef __CC_FILEUTILS_WIN32_H__
- #define __CC_FILEUTILS_WIN32_H__
- #include "platform/CCPlatformConfig.h"
- #if CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
- #include "platform/CCFileUtils.h"
- #include "platform/CCPlatformMacros.h"
- #include "base/ccTypes.h"
- #include <string>
- #include <vector>
- NS_CC_BEGIN
- /**
- * @addtogroup platform
- * @{
- */
- //! @brief Helper class to handle file operations
- class CC_DLL FileUtilsWin32 : public FileUtils
- {
- friend class FileUtils;
- protected:
- FileUtilsWin32();
- public:
- /* override functions */
- bool init();
- virtual std::string getWritablePath() const override;
- virtual bool isAbsolutePath(const std::string& strPath) const override;
- virtual std::string getSuitableFOpen(const std::string& filenameUtf8) const override;
- virtual long getFileSize(const std::string &filepath);
- protected:
- virtual bool isFileExistInternal(const std::string& strFilePath) const override;
- /**
- * 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(const std::string &path, const std::string &oldname, const std::string &name) override;
- /**
- * Renames a file under the given directory.
- *
- * @param oldfullpath The current path + name of the file.
- * @param newfullpath The new path + name of the file.
- * @return True if the file have been renamed successfully, false if not.
- */
- virtual bool renameFile(const std::string &oldfullpath, const std::string &newfullpath) override;
- /**
- * 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(const std::string& dirPath) const override;
- /**
- * 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(const std::string &filepath) override;
- /**
- * 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(const std::string& dirPath) override;
- /**
- * 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(const std::string& dirPath) override;
- virtual FileUtils::Status getContents(const std::string& filename, ResizableBuffer* buffer) override;
- /**
- * Gets full path for filename, resolution directory and search path.
- *
- * @param filename The file name.
- * @param resolutionDirectory The resolution directory.
- * @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(const std::string& filename, const std::string& resolutionDirectory, const std::string& searchPath) const override;
- /**
- * 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 getFullPathForDirectoryAndFilename(const std::string& directory, const std::string& filename) const override;
- };
- // end of platform group
- /// @}
- NS_CC_END
- #endif // CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
- #endif // __CC_FILEUTILS_WIN32_H__
|