lokinet/llarp/util/fs.hpp
Jason Rhinelander ac1486d0be Replace absl::optional with optional-lite
Step 1 of removing abseil from lokinet.

For the most part this is a drop-in replacement, but there are also a
few changes here to the JSONRPC layer that were needed to work around
current gcc 10 dev snapshot:

- JSONRPC returns a json now instead of an optional<json>.  It doesn't
  make any sense to have a json rpc call that just closes the connection
  with returning anything.  Invoked functions can return a null (default
  constructed) result now if they don't have anything to return (such a
  null value won't be added as "result").
2020-02-19 18:21:25 -04:00

79 lines
1.7 KiB
C++

#ifndef LLARP_FS_HPP
#define LLARP_FS_HPP
#include <functional>
#if defined(WIN32) || defined(_WIN32)
#define PATH_SEP "\\"
#else
#define PATH_SEP "/"
#endif
#include <ghc/filesystem.hpp>
namespace fs = ghc::filesystem;
#ifndef _MSC_VER
#include <dirent.h>
#endif
#include <nonstd/optional.hpp>
namespace llarp
{
namespace util
{
using error_code_t = std::error_code;
/// Ensure that a file exists and has correct permissions
/// return any error code or success
error_code_t
EnsurePrivateFile(fs::path pathname);
/// open a stream to a file and ensure it exists before open
/// sets any permissions on creation
template < typename T >
nonstd::optional< T >
OpenFileStream(fs::path pathname, std::ios::openmode mode)
{
if(EnsurePrivateFile(pathname))
return {};
std::string f = pathname.string();
return T{pathname, mode};
}
using PathVisitor = std::function< bool(const fs::path &) >;
using PathIter = std::function< void(const fs::path &, PathVisitor) >;
static PathIter IterDir = [](const fs::path &path, PathVisitor visit) {
#ifdef _MSC_VER
for(auto &p : fs::directory_iterator(path))
{
if(!visit(p.path()))
{
break;
}
}
#else
DIR *d = opendir(path.string().c_str());
if(d == nullptr)
return;
struct dirent *ent = nullptr;
do
{
ent = readdir(d);
if(!ent)
break;
if(ent->d_name[0] == '.')
continue;
fs::path p = path / fs::path(ent->d_name);
if(!visit(p))
break;
} while(ent);
closedir(d);
#endif
};
} // namespace util
} // namespace llarp
#endif // end LLARP_FS_HPP