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.
44 lines
940 B
44 lines
940 B
#include "func_statx_factory.hpp"
|
|
|
|
#include "func_statx_cdfo.hpp"
|
|
#include "func_statx_cdco.hpp"
|
|
#include "func_statx_ff.hpp"
|
|
#include "func_statx_newest.hpp"
|
|
|
|
#include "policies.hpp"
|
|
|
|
bool
|
|
Func2::StatxFactory::valid(const std::string str_)
|
|
{
|
|
if(str_ == "cdfo")
|
|
return true;
|
|
if(str_ == "cdco")
|
|
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::StatxBase>
|
|
Func2::StatxFactory::make(const std::string_view str_)
|
|
{
|
|
if(str_ == "cdfo")
|
|
return std::make_shared<Func2::StatxCDFO>();
|
|
if(str_ == "cdco")
|
|
return std::make_shared<Func2::StatxCDCO>();
|
|
if(str_ == "ff")
|
|
return std::make_shared<Func2::StatxFF>();
|
|
if(str_ == "newest")
|
|
return std::make_shared<Func2::StatxNewest>();
|
|
|
|
if(Policies::Search::find(str_))
|
|
return std::make_shared<Func2::StatxCDFO>();
|
|
|
|
return {};
|
|
}
|