/* Copyright (c) 2016, Antonio SJ Musumeci Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #ifndef __FS_HPP__ #define __FS_HPP__ #include #include #include namespace fs { using std::string; using std::vector; bool exists(const string &path, struct stat &st); bool exists(const string &path); bool info(const string &path, bool &readonly, uint64_t &spaceavail, uint64_t &spaceused); bool readonly(const string &path); bool spaceavail(const string &path, uint64_t &spaceavail); bool spaceused(const string &path, uint64_t &spaceavail); void findallfiles(const vector &srcmounts, const char *fusepath, vector &paths); int findonfs(const vector &srcmounts, const char *fusepath, const int fd, string &basepath); void glob(const vector &patterns, vector &strs); void realpathize(vector &strs); int getfl(const int fd); int mfs(const vector &srcs, const uint64_t minfreespace, string &path); }; #endif // __FS_HPP__