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.
94 lines
2.6 KiB
94 lines
2.6 KiB
/*
|
|
Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
|
|
|
|
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.
|
|
*/
|
|
|
|
#include "errno.hpp"
|
|
#include "fs.hpp"
|
|
#include "fs_exists.hpp"
|
|
#include "fs_info.hpp"
|
|
#include "fs_path.hpp"
|
|
#include "policy.hpp"
|
|
#include "policy_error.hpp"
|
|
|
|
#include <limits>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using std::string;
|
|
using std::vector;
|
|
using mergerfs::Category;
|
|
|
|
namespace lus
|
|
{
|
|
static
|
|
int
|
|
create(const Branches &branches_,
|
|
const uint64_t minfreespace,
|
|
vector<const string*> &paths)
|
|
{
|
|
int rv;
|
|
int error;
|
|
uint64_t lus;
|
|
fs::info_t info;
|
|
const Branch *branch;
|
|
const string *lusbasepath;
|
|
|
|
error = ENOENT;
|
|
lus = std::numeric_limits<uint64_t>::max();
|
|
lusbasepath = NULL;
|
|
for(size_t i = 0, ei = branches_.size(); i != ei; i++)
|
|
{
|
|
branch = &branches_[i];
|
|
|
|
if(branch->ro_or_nc())
|
|
error_and_continue(error,EROFS);
|
|
rv = fs::info(&branch->path,&info);
|
|
if(rv == -1)
|
|
error_and_continue(error,ENOENT);
|
|
if(info.readonly)
|
|
error_and_continue(error,EROFS);
|
|
if(info.spaceavail < minfreespace)
|
|
error_and_continue(error,ENOSPC);
|
|
if(info.spaceused >= lus)
|
|
continue;
|
|
|
|
lus = info.spaceused;
|
|
lusbasepath = &branch->path;
|
|
}
|
|
|
|
if(lusbasepath == NULL)
|
|
return (errno=error,-1);
|
|
|
|
paths.push_back(lusbasepath);
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
namespace mergerfs
|
|
{
|
|
int
|
|
Policy::Func::lus(const Category::Enum::Type type,
|
|
const Branches &branches_,
|
|
const char *fusepath,
|
|
const uint64_t minfreespace,
|
|
vector<const string*> &paths)
|
|
{
|
|
if(type == Category::Enum::create)
|
|
return lus::create(branches_,minfreespace,paths);
|
|
|
|
return Policy::Func::eplus(type,branches_,fusepath,minfreespace,paths);
|
|
}
|
|
}
|