You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

129 lines
2.6 KiB

#include "mergerfs_api.hpp"
#include "fs_xattr.hpp"
#include "fs_exists.hpp"
#include "fs_xattr.hpp"
#include "str.hpp"
#include "scope_guard.hpp"
#include <array>
#include <cstring>
static
std::string
_mergerfs_config_file(const fs::path &mount_)
{
return mount_ / ".mergerfs";
}
bool
mergerfs::api::is_mergerfs(const fs::path &mountpoint_)
{
fs::path cfgfile;
cfgfile = ::_mergerfs_config_file(mountpoint_);
return fs::exists(cfgfile);
}
int
mergerfs::api::get_kvs(const fs::path &mountpoint_,
std::map<std::string,std::string> *kvs_)
{
int rv;
fs::path cfgfile;
std::map<std::string,std::string> kvs;
cfgfile = ::_mergerfs_config_file(mountpoint_);
rv = fs::xattr::get(cfgfile,&kvs);
if(rv < 0)
return rv;
for(auto &[k,v] : kvs)
{
std::string key;
key = str::remove_prefix(k,"user.mergerfs.");
kvs_->insert({key,v});
}
return 0;
}
std::string
get_kv(const fs::path &mountpoint_,
const std::string &key_,
std::string *val_)
{
std::string val;
fs::path cfgfile;
cfgfile = ::_mergerfs_config_file(mountpoint_);
fs::xattr::get(cfgfile,key_,&val);
return val;
}
int
mergerfs::api::set_kv(const fs::path &mountpoint_,
const std::string &key_,
const std::string &val_)
{
fs::path cfgfile;
std::string xattr_key;
cfgfile = ::_mergerfs_config_file(mountpoint_);
xattr_key = "user.mergerfs." + key_;
return fs::xattr::set(cfgfile,xattr_key,val_,0);
}
int
mergerfs::api::allpaths(const std::string &input_path_,
std::vector<std::string> *output_paths_)
{
int rv;
std::string val;
rv = fs::xattr::get(input_path_,
"user.mergerfs.allpaths",
&val);
if(rv < 0)
return rv;
str::split_on_null(val,output_paths_);
return 0;
}
int
mergerfs::api::basepath(const std::string &input_path_,
std::string *basepath_)
{
return fs::xattr::get(input_path_,
"user.mergerfs.basepath",
basepath_);
}
int
mergerfs::api::relpath(const std::string &input_path_,
std::string *relpath_)
{
return fs::xattr::get(input_path_,
"user.mergerfs.relpath",
relpath_);
}
int
mergerfs::api::fullpath(const std::string &input_path_,
std::string *fullpath_)
{
return fs::xattr::get(input_path_,
"user.mergerfs.fullpath",
fullpath_);
}