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.
39 lines
834 B
39 lines
834 B
#include "func_getattr_factory.hpp"
|
|
|
|
#include "func_getattr_combine.hpp"
|
|
#include "func_getattr_ff.hpp"
|
|
#include "func_getattr_newest.hpp"
|
|
|
|
#include "policies.hpp"
|
|
|
|
bool
|
|
Func2::GetAttrFactory::valid(const std::string str_)
|
|
{
|
|
if(str_ == "combined")
|
|
return true;
|
|
if(str_ == "ff")
|
|
return true;
|
|
if(str_ == "newest")
|
|
return true;
|
|
|
|
if(Policies::Search::find(str_))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
std::shared_ptr<Func2::GetAttrBase>
|
|
Func2::GetAttrFactory::make(const std::string str_)
|
|
{
|
|
if(str_ == "combine")
|
|
return std::make_shared<Func2::GetAttrCombine>();
|
|
if(str_ == "ff")
|
|
return std::make_shared<Func2::GetAttrFF>();
|
|
if(str_ == "newest")
|
|
return std::make_shared<Func2::GetAttrNewest>();
|
|
|
|
if(Policies::Search::find(str_))
|
|
return std::make_shared<Func2::GetAttrCombine>();
|
|
|
|
return {};
|
|
}
|