mirror of https://github.com/trapexit/mergerfs.git
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.
47 lines
785 B
47 lines
785 B
#include "branches2.hpp"
|
|
|
|
#include "fs_clonepath.hpp"
|
|
|
|
#include "fmt/core.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <errno.h>
|
|
|
|
Branches2::Branches2()
|
|
{
|
|
|
|
}
|
|
|
|
Branches2::Branches2(toml::value const &v_)
|
|
{
|
|
auto const &tiers = toml::find(v_,"tier");
|
|
|
|
for(auto const &tier : tiers.as_array())
|
|
{
|
|
_branches.emplace_back(tier);
|
|
}
|
|
}
|
|
|
|
int
|
|
Branches2::clonepath(ghc::filesystem::path basepath_,
|
|
ghc::filesystem::path relpath_)
|
|
{
|
|
int rv;
|
|
|
|
for(auto const &tier : _branches)
|
|
{
|
|
for(auto const &branch : tier)
|
|
{
|
|
if(branch.path == basepath_)
|
|
continue;
|
|
rv = fs::clonepath(branch.path,basepath_,relpath_);
|
|
if(rv < 0)
|
|
continue;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
errno = ENOENT;
|
|
return -1;
|
|
}
|