| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- #include "CmFileSystem.h"
- #include "CmDataStream.h"
- #include "CmPath.h"
- #include "CmException.h"
- #include <boost/filesystem.hpp>
- #include <sys/types.h>
- #include <sys/stat.h>
- #if CM_PLATFORM == CM_PLATFORM_LINUX || CM_PLATFORM == CM_PLATFORM_APPLE || \
- CM_PLATFORM == CM_PLATFORM_SYMBIAN || CM_PLATFORM == CM_PLATFORM_IPHONE
- # include <sys/param.h>
- # define MAX_PATH MAXPATHLEN
- #endif
- #if CM_PLATFORM == CM_PLATFORM_WIN32
- # define WIN32_LEAN_AND_MEAN
- # if !defined(NOMINMAX) && defined(_MSC_VER)
- # define NOMINMAX // required to stop windows.h messing up std::min
- # endif
- # include <windows.h>
- # include <direct.h>
- # include <io.h>
- #endif
- namespace CamelotFramework
- {
- DataStreamPtr FileSystem::open(const String& fullPath, bool readOnly)
- {
- // Use filesystem to determine size
- // (quicker than streaming to the end and back)
- struct stat tagStat;
- int ret = stat(fullPath.c_str(), &tagStat);
- assert(ret == 0 && "Problem getting file size" );
- (void)ret; // Silence warning
- // Always open in binary mode
- // Also, always include reading
- std::ios::openmode mode = std::ios::in | std::ios::binary;
- std::shared_ptr<std::istream> baseStream = 0;
- std::shared_ptr<std::ifstream> roStream = 0;
- std::shared_ptr<std::fstream> rwStream = 0;
- if (!readOnly)
- {
- mode |= std::ios::out;
- rwStream = cm_shared_ptr<std::fstream, ScratchAlloc>();
- rwStream->open(fullPath.c_str(), mode);
- baseStream = rwStream;
- }
- else
- {
- roStream = cm_shared_ptr<std::ifstream, ScratchAlloc>();
- roStream->open(fullPath.c_str(), mode);
- baseStream = roStream;
- }
- // Should check ensure open succeeded, in case fail for some reason.
- if (baseStream->fail())
- CM_EXCEPT(FileNotFoundException, "Cannot open file: " + fullPath);
- /// Construct return stream, tell it to delete on destroy
- FileDataStream* stream = 0;
- if (rwStream)
- {
- // use the writeable stream
- stream = cm_new<FileDataStream, ScratchAlloc>(fullPath, rwStream, (size_t)tagStat.st_size, true);
- }
- else
- {
- // read-only stream
- stream = cm_new<FileDataStream, ScratchAlloc>(fullPath, roStream, (size_t)tagStat.st_size, true);
- }
- return cm_shared_ptr<FileDataStream, ScratchAlloc>(stream);
- }
- DataStreamPtr FileSystem::create(const String& fullPath)
- {
- // Always open in binary mode
- // Also, always include reading
- std::ios::openmode mode = std::ios::out | std::ios::binary;
- std::shared_ptr<std::fstream> rwStream = cm_shared_ptr<std::fstream, ScratchAlloc>();
- rwStream->open(fullPath.c_str(), mode);
- // Should check ensure open succeeded, in case fail for some reason.
- if (rwStream->fail())
- CM_EXCEPT(FileNotFoundException, "Cannot open file: " + fullPath);
- /// Construct return stream, tell it to delete on destroy
- return cm_shared_ptr<FileDataStream, ScratchAlloc>(fullPath, rwStream, 0, true);
- }
- void FileSystem::remove(const String& fullPath)
- {
- ::remove(fullPath.c_str());
- }
- bool FileSystem::fileExists(const String& fullPath)
- {
- if(boost::filesystem::exists(fullPath) && !boost::filesystem::is_directory(fullPath))
- return true;
- return false;
- }
- bool FileSystem::dirExists(const String& fullPath)
- {
- if(boost::filesystem::exists(fullPath) && boost::filesystem::is_directory(fullPath))
- return true;
- return false;
- }
- void FileSystem::createDir(const String& fullPath)
- {
- boost::filesystem::create_directory(fullPath);
- }
- void FileSystem::deleteDir(const String& fullPath)
- {
- boost::filesystem::remove_all(fullPath);
- }
- vector<String>::type FileSystem::getFiles(const String& dirPath)
- {
- boost::filesystem::directory_iterator dirIter(dirPath);
- vector<String>::type foundFiles;
-
- while(dirIter != boost::filesystem::directory_iterator())
- {
- if(boost::filesystem::is_regular_file(dirIter->path()))
- foundFiles.push_back(dirIter->path().string());
- dirIter++;
- }
- return foundFiles;
- }
- String FileSystem::getCurrentPath()
- {
- return boost::filesystem::current_path().string();
- }
- bool FileSystem::isValidFileName(const String& name)
- {
- return boost::filesystem::portable_file_name(name);
- }
- String FileSystem::getDirectoryPath(const String& path)
- {
- boost::filesystem::path p(path);
- if(!is_directory(p))
- {
- boost::filesystem::path dir = p.parent_path();
- return dir.string();
- }
- return path;
- }
- }
|