mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-26 10:13:50 +08:00
183 lines
4.7 KiB
C++
183 lines
4.7 KiB
C++
/*
|
|
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 "fs_statvfs_cache.hpp"
|
|
#include "policy.hpp"
|
|
#include "policy_error.hpp"
|
|
|
|
#include <limits>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
using std::string;
|
|
using std::vector;
|
|
|
|
namespace eplfs
|
|
{
|
|
static
|
|
int
|
|
create(const Branches &branches_,
|
|
const char *fusepath,
|
|
const uint64_t minfreespace,
|
|
vector<const string*> &paths)
|
|
{
|
|
int rv;
|
|
int error;
|
|
uint64_t eplfs;
|
|
fs::info_t info;
|
|
const Branch *branch;
|
|
const string *eplfsbasepath;
|
|
|
|
error = ENOENT;
|
|
eplfs = std::numeric_limits<uint64_t>::max();
|
|
eplfsbasepath = NULL;
|
|
for(size_t i = 0, ei = branches_.size(); i != ei; i++)
|
|
{
|
|
branch = &branches_[i];
|
|
|
|
if(!fs::exists(branch->path,fusepath))
|
|
error_and_continue(error,ENOENT);
|
|
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.spaceavail > eplfs)
|
|
continue;
|
|
|
|
eplfs = info.spaceavail;
|
|
eplfsbasepath = &branch->path;
|
|
}
|
|
|
|
if(eplfsbasepath == NULL)
|
|
return (errno=error,-1);
|
|
|
|
paths.push_back(eplfsbasepath);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static
|
|
int
|
|
action(const Branches &branches_,
|
|
const char *fusepath,
|
|
vector<const string*> &paths)
|
|
{
|
|
int rv;
|
|
int error;
|
|
uint64_t eplfs;
|
|
fs::info_t info;
|
|
const Branch *branch;
|
|
const string *eplfsbasepath;
|
|
|
|
error = ENOENT;
|
|
eplfs = std::numeric_limits<uint64_t>::max();
|
|
eplfsbasepath = NULL;
|
|
for(size_t i = 0, ei = branches_.size(); i != ei; i++)
|
|
{
|
|
branch = &branches_[i];
|
|
|
|
if(!fs::exists(branch->path,fusepath))
|
|
error_and_continue(error,ENOENT);
|
|
if(branch->ro())
|
|
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 > eplfs)
|
|
continue;
|
|
|
|
eplfs = info.spaceavail;
|
|
eplfsbasepath = &branch->path;
|
|
}
|
|
|
|
if(eplfsbasepath == NULL)
|
|
return (errno=error,-1);
|
|
|
|
paths.push_back(eplfsbasepath);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static
|
|
int
|
|
search(const Branches &branches_,
|
|
const char *fusepath,
|
|
vector<const string*> &paths)
|
|
{
|
|
int rv;
|
|
uint64_t eplfs;
|
|
uint64_t spaceavail;
|
|
const Branch *branch;
|
|
const string *eplfsbasepath;
|
|
|
|
eplfs = std::numeric_limits<uint64_t>::max();
|
|
eplfsbasepath = NULL;
|
|
for(size_t i = 0, ei = branches_.size(); i != ei; i++)
|
|
{
|
|
branch = &branches_[i];
|
|
|
|
if(!fs::exists(branch->path,fusepath))
|
|
continue;
|
|
rv = fs::statvfs_cache_spaceavail(branch->path,&spaceavail);
|
|
if(rv == -1)
|
|
continue;
|
|
if(spaceavail > eplfs)
|
|
continue;
|
|
|
|
eplfs = spaceavail;
|
|
eplfsbasepath = &branch->path;
|
|
}
|
|
|
|
if(eplfsbasepath == NULL)
|
|
return (errno=ENOENT,-1);
|
|
|
|
paths.push_back(eplfsbasepath);
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int
|
|
Policy::Func::eplfs(const Category::Enum::Type type,
|
|
const Branches &branches_,
|
|
const char *fusepath,
|
|
const uint64_t minfreespace,
|
|
vector<const string*> &paths)
|
|
{
|
|
switch(type)
|
|
{
|
|
case Category::Enum::create:
|
|
return eplfs::create(branches_,fusepath,minfreespace,paths);
|
|
case Category::Enum::action:
|
|
return eplfs::action(branches_,fusepath,paths);
|
|
case Category::Enum::search:
|
|
default:
|
|
return eplfs::search(branches_,fusepath,paths);
|
|
}
|
|
}
|