2014-05-12 12:41:46 -04:00
|
|
|
/*
|
2016-01-14 16:50:22 -05:00
|
|
|
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.
|
2014-05-12 12:41:46 -04:00
|
|
|
*/
|
|
|
|
|
2017-06-30 11:15:20 -04:00
|
|
|
#pragma once
|
2014-05-12 12:41:46 -04:00
|
|
|
|
2018-10-20 23:40:02 -04:00
|
|
|
#include "branch.hpp"
|
2015-06-25 17:55:16 -04:00
|
|
|
#include "category.hpp"
|
2018-10-12 11:04:33 -04:00
|
|
|
#include "fs.hpp"
|
2014-05-12 12:41:46 -04:00
|
|
|
|
2018-10-12 11:04:33 -04:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-02-12 19:16:04 -05:00
|
|
|
|
2019-01-06 12:52:55 -05:00
|
|
|
class Policy
|
2014-05-12 12:41:46 -04:00
|
|
|
{
|
2019-01-06 12:52:55 -05:00
|
|
|
public:
|
|
|
|
struct Enum
|
2014-05-12 12:41:46 -04:00
|
|
|
{
|
2019-01-06 12:52:55 -05:00
|
|
|
enum Type
|
2015-06-25 17:55:16 -04:00
|
|
|
{
|
2019-01-06 12:52:55 -05:00
|
|
|
invalid = -1,
|
|
|
|
BEGIN = 0,
|
|
|
|
all = BEGIN,
|
|
|
|
epall,
|
|
|
|
epff,
|
|
|
|
eplfs,
|
|
|
|
eplus,
|
|
|
|
epmfs,
|
|
|
|
eprand,
|
|
|
|
erofs,
|
|
|
|
ff,
|
|
|
|
lfs,
|
|
|
|
lus,
|
|
|
|
mfs,
|
2020-07-16 21:52:06 -04:00
|
|
|
msplfs,
|
|
|
|
msplus,
|
|
|
|
mspmfs,
|
2019-01-06 12:52:55 -05:00
|
|
|
newest,
|
|
|
|
rand,
|
|
|
|
END
|
2015-06-25 17:55:16 -04:00
|
|
|
};
|
|
|
|
|
2019-01-06 12:52:55 -05:00
|
|
|
static size_t begin() { return BEGIN; }
|
|
|
|
static size_t end() { return END; }
|
|
|
|
};
|
2015-06-23 22:24:55 -04:00
|
|
|
|
2019-01-06 12:52:55 -05:00
|
|
|
struct Func
|
|
|
|
{
|
|
|
|
typedef std::string string;
|
|
|
|
typedef std::vector<string> strvec;
|
|
|
|
typedef const string cstring;
|
|
|
|
typedef const uint64_t cuint64_t;
|
|
|
|
typedef const strvec cstrvec;
|
|
|
|
typedef const Category::Enum::Type CType;
|
|
|
|
|
2019-09-24 10:27:46 -04:00
|
|
|
typedef int (*Ptr)(CType,const Branches &,const char *,cuint64_t,strvec *);
|
2019-01-06 12:52:55 -05:00
|
|
|
|
|
|
|
template <CType T>
|
|
|
|
class Base
|
2014-05-27 21:21:45 -04:00
|
|
|
{
|
2019-01-06 12:52:55 -05:00
|
|
|
public:
|
2019-09-24 10:27:46 -04:00
|
|
|
Base(const Policy &p_)
|
|
|
|
: func(p_._func)
|
|
|
|
{}
|
|
|
|
|
|
|
|
Base(const Policy *p_)
|
|
|
|
: func(p_->_func)
|
2019-01-06 12:52:55 -05:00
|
|
|
{}
|
2014-05-12 12:41:46 -04:00
|
|
|
|
2019-01-06 12:52:55 -05:00
|
|
|
int
|
2019-09-24 10:27:46 -04:00
|
|
|
operator()(const Branches &b,const char *c,cuint64_t d,strvec *e)
|
2019-01-06 12:52:55 -05:00
|
|
|
{
|
|
|
|
return func(T,b,c,d,e);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2019-09-24 10:27:46 -04:00
|
|
|
operator()(const Branches &b,const string &c,cuint64_t d,strvec *e)
|
2019-01-06 12:52:55 -05:00
|
|
|
{
|
|
|
|
return func(T,b,c.c_str(),d,e);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
operator()(const Branches &b,const char *c,cuint64_t d,string *e)
|
|
|
|
{
|
|
|
|
int rv;
|
2019-09-24 10:27:46 -04:00
|
|
|
strvec v;
|
2019-01-06 12:52:55 -05:00
|
|
|
|
2019-09-24 10:27:46 -04:00
|
|
|
rv = func(T,b,c,d,&v);
|
2019-01-06 12:52:55 -05:00
|
|
|
if(!v.empty())
|
2019-09-24 10:27:46 -04:00
|
|
|
*e = v[0];
|
2019-01-06 12:52:55 -05:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Ptr func;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef Base<Category::Enum::action> Action;
|
|
|
|
typedef Base<Category::Enum::create> Create;
|
|
|
|
typedef Base<Category::Enum::search> Search;
|
|
|
|
|
2019-09-24 10:27:46 -04:00
|
|
|
static int invalid(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int all(CType,const Branches&,const char*,cuint64_t,strvec*);
|
|
|
|
static int epall(CType,const Branches&,const char*,cuint64_t,strvec*);
|
|
|
|
static int epff(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int eplfs(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int eplus(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int epmfs(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int eprand(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int erofs(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int ff(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int lfs(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int lus(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int mfs(CType,const Branches&,const char *,cuint64_t,strvec*);
|
2020-07-16 21:52:06 -04:00
|
|
|
static int msplfs(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int msplus(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int mspmfs(CType,const Branches&,const char *,cuint64_t,strvec*);
|
2019-09-24 10:27:46 -04:00
|
|
|
static int newest(CType,const Branches&,const char *,cuint64_t,strvec*);
|
|
|
|
static int rand(CType,const Branches&,const char *,cuint64_t,strvec*);
|
2014-05-12 12:41:46 -04:00
|
|
|
};
|
2019-01-06 12:52:55 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
Enum::Type _enum;
|
|
|
|
std::string _str;
|
|
|
|
Func::Ptr _func;
|
|
|
|
bool _path_preserving;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Policy()
|
|
|
|
: _enum(invalid),
|
|
|
|
_str(invalid),
|
|
|
|
_func(invalid),
|
|
|
|
_path_preserving(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Policy(const Enum::Type enum_,
|
|
|
|
const std::string &str_,
|
|
|
|
const Func::Ptr func_,
|
|
|
|
const bool path_preserving_)
|
|
|
|
: _enum(enum_),
|
|
|
|
_str(str_),
|
|
|
|
_func(func_),
|
|
|
|
_path_preserving(path_preserving_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
path_preserving() const
|
|
|
|
{
|
|
|
|
return _path_preserving;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
operator const Enum::Type() const { return _enum; }
|
|
|
|
operator const std::string&() const { return _str; }
|
|
|
|
operator const Func::Ptr() const { return _func; }
|
|
|
|
operator const Policy*() const { return this; }
|
2019-09-24 10:27:46 -04:00
|
|
|
const std::string& to_string() const { return _str; }
|
2019-01-06 12:52:55 -05:00
|
|
|
|
|
|
|
bool operator==(const Enum::Type enum_) const
|
|
|
|
{ return _enum == enum_; }
|
|
|
|
bool operator==(const std::string &str_) const
|
|
|
|
{ return _str == str_; }
|
|
|
|
bool operator==(const Func::Ptr func_) const
|
|
|
|
{ return _func == func_; }
|
|
|
|
|
|
|
|
bool operator!=(const Policy &r) const
|
|
|
|
{ return _enum != r._enum; }
|
|
|
|
|
|
|
|
bool operator<(const Policy &r) const
|
|
|
|
{ return _enum < r._enum; }
|
|
|
|
|
|
|
|
public:
|
|
|
|
static const Policy &find(const std::string&);
|
|
|
|
static const Policy &find(const Enum::Type);
|
|
|
|
|
|
|
|
public:
|
2019-09-24 10:27:46 -04:00
|
|
|
|
2019-01-06 12:52:55 -05:00
|
|
|
static const std::vector<Policy> _policies_;
|
|
|
|
static const Policy * const policies;
|
|
|
|
|
|
|
|
static const Policy &invalid;
|
|
|
|
static const Policy &all;
|
|
|
|
static const Policy &epall;
|
|
|
|
static const Policy &epff;
|
|
|
|
static const Policy &eplfs;
|
|
|
|
static const Policy ⩱
|
|
|
|
static const Policy &epmfs;
|
|
|
|
static const Policy &eprand;
|
|
|
|
static const Policy &erofs;
|
|
|
|
static const Policy &ff;
|
|
|
|
static const Policy &lfs;
|
|
|
|
static const Policy &lus;
|
|
|
|
static const Policy &mfs;
|
2020-07-16 21:52:06 -04:00
|
|
|
static const Policy &msplfs;
|
|
|
|
static const Policy &msplus;
|
|
|
|
static const Policy &mspmfs;
|
2019-01-06 12:52:55 -05:00
|
|
|
static const Policy &newest;
|
|
|
|
static const Policy &rand;
|
|
|
|
};
|
2019-09-24 10:27:46 -04:00
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
static
|
|
|
|
inline
|
|
|
|
string
|
|
|
|
to_string(const Policy &p_)
|
|
|
|
{
|
|
|
|
return p_.to_string();
|
|
|
|
}
|
|
|
|
}
|