//////////////////////////////////////////////////////////////////////////////// /// DISCLAIMER /// /// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany /// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany /// /// Licensed under the Apache License, Version 2.0 (the "License"); /// you may not use this file except in compliance with the License. /// You may obtain a copy of the License at /// /// http://www.apache.org/licenses/LICENSE-2.0 /// /// Unless required by applicable law or agreed to in writing, software /// distributed under the License is distributed on an "AS IS" BASIS, /// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. /// See the License for the specific language governing permissions and /// limitations under the License. /// /// Copyright holder is ArangoDB GmbH, Cologne, Germany /// /// @author Dr. Frank Celler //////////////////////////////////////////////////////////////////////////////// #ifndef LIB_BASICS_FILE_UTILS_H #define LIB_BASICS_FILE_UTILS_H 1 #include "Basics/Common.h" #include "Basics/files.h" namespace arangodb { namespace basics { class StringBuffer; //////////////////////////////////////////////////////////////////////////////// /// @brief collection of file functions //////////////////////////////////////////////////////////////////////////////// namespace FileUtils { //////////////////////////////////////////////////////////////////////////////// /// @brief removes trailing path separators from path /// /// path will be modified in-place //////////////////////////////////////////////////////////////////////////////// std::string removeTrailingSeparator(std::string const& name); //////////////////////////////////////////////////////////////////////////////// /// @brief normalizes path /// /// path will be modified in-place //////////////////////////////////////////////////////////////////////////////// void normalizePath(std::string& name); //////////////////////////////////////////////////////////////////////////////// /// @brief creates a filename //////////////////////////////////////////////////////////////////////////////// std::string buildFilename(char const* path, char const* name); //////////////////////////////////////////////////////////////////////////////// /// @brief creates a filename //////////////////////////////////////////////////////////////////////////////// std::string buildFilename(std::string const& path, std::string const& name); //////////////////////////////////////////////////////////////////////////////// /// @brief throws a read error //////////////////////////////////////////////////////////////////////////////// void throwFileReadError(int fd, std::string const& filename); //////////////////////////////////////////////////////////////////////////////// /// @brief throws a write error //////////////////////////////////////////////////////////////////////////////// void throwFileWriteError(int fd, std::string const& filename); //////////////////////////////////////////////////////////////////////////////// /// @brief reads file into string //////////////////////////////////////////////////////////////////////////////// std::string slurp(std::string const& filename); //////////////////////////////////////////////////////////////////////////////// /// @brief reads file into string buffer //////////////////////////////////////////////////////////////////////////////// void slurp(std::string const& filename, StringBuffer&); //////////////////////////////////////////////////////////////////////////////// /// @brief creates file and writes string to it //////////////////////////////////////////////////////////////////////////////// void spit(std::string const& filename, char const* ptr, size_t len); //////////////////////////////////////////////////////////////////////////////// /// @brief creates file and writes string to it //////////////////////////////////////////////////////////////////////////////// void spit(std::string const& filename, std::string const& content); //////////////////////////////////////////////////////////////////////////////// /// @brief creates file and writes string to it //////////////////////////////////////////////////////////////////////////////// void spit(std::string const& filename, StringBuffer const& content); //////////////////////////////////////////////////////////////////////////////// /// @brief returns true if a file could be removed //////////////////////////////////////////////////////////////////////////////// bool remove(std::string const& fileName, int* errorNumber = 0); //////////////////////////////////////////////////////////////////////////////// /// @brief returns true if a file could be renamed //////////////////////////////////////////////////////////////////////////////// bool rename(std::string const& oldName, std::string const& newName, int* errorNumber = 0); //////////////////////////////////////////////////////////////////////////////// /// @brief creates a new directory //////////////////////////////////////////////////////////////////////////////// bool createDirectory(std::string const& name, int* errorNumber = 0); //////////////////////////////////////////////////////////////////////////////// /// @brief creates a new directory with mask //////////////////////////////////////////////////////////////////////////////// bool createDirectory(std::string const& name, int mask, int* errorNumber = 0); //////////////////////////////////////////////////////////////////////////////// /// @brief copies directories / files recursive //////////////////////////////////////////////////////////////////////////////// bool copyRecursive(std::string const& source, std::string const& target, std::string& error); //////////////////////////////////////////////////////////////////////////////// /// @brief copies directories / files recursive; start source node has to be a /// directory. //////////////////////////////////////////////////////////////////////////////// bool copyDirectoryRecursive(std::string const& source, std::string const& target, std::string& error); //////////////////////////////////////////////////////////////////////////////// /// @brief returns list of files //////////////////////////////////////////////////////////////////////////////// std::vector listFiles(std::string const& directory); //////////////////////////////////////////////////////////////////////////////// /// @brief checks if path is a directory //////////////////////////////////////////////////////////////////////////////// bool isDirectory(std::string const& path); //////////////////////////////////////////////////////////////////////////////// /// @brief checks if path is a symbolic link //////////////////////////////////////////////////////////////////////////////// bool isSymbolicLink(std::string const& path); //////////////////////////////////////////////////////////////////////////////// /// @brief checks if path is a regular file //////////////////////////////////////////////////////////////////////////////// bool isRegularFile(std::string const& path); //////////////////////////////////////////////////////////////////////////////// /// @brief checks if path exists //////////////////////////////////////////////////////////////////////////////// bool exists(std::string const& path); //////////////////////////////////////////////////////////////////////////////// /// @brief returns the size of a file. will return 0 for non-existing files /// /// the caller should check first if the file exists via the exists() method //////////////////////////////////////////////////////////////////////////////// off_t size(std::string const& path); //////////////////////////////////////////////////////////////////////////////// /// @brief strip extension //////////////////////////////////////////////////////////////////////////////// std::string stripExtension(std::string const& path, std::string const& extension); //////////////////////////////////////////////////////////////////////////////// /// @brief changes into directory //////////////////////////////////////////////////////////////////////////////// bool changeDirectory(std::string const& path); //////////////////////////////////////////////////////////////////////////////// /// @brief returns the current directory //////////////////////////////////////////////////////////////////////////////// std::string currentDirectory(int* errorNumber = 0); //////////////////////////////////////////////////////////////////////////////// /// @brief returns the home directory //////////////////////////////////////////////////////////////////////////////// std::string homeDirectory(); } } } #endif