autotier
Automatic Tiering Fuse Filesystem
|
22 #include <boost/filesystem.hpp>
26 namespace fs = boost::filesystem;
52 int get_command_index(
const std::string &cmd);
59 void sanitize_paths(std::list<std::string> &paths);
76 AdHoc(
int cmd,
const std::vector<std::string> &args) {
78 for (
const std::string &s : args) {
79 args_.emplace_back(s);
87 AdHoc(
const std::vector<std::string> &work_req) {
88 cmd_ = get_command_index(work_req.front());
89 for (std::vector<std::string>::const_iterator itr = std::next(work_req.begin());
90 itr != work_req.end();
92 args_.emplace_back(*itr);
112 void cli_usage(
void);
Representation of an ad hoc command with the command index and arguments.
Definition: tools.hpp:66
std::vector< std::string > args_
Arguments passed to command.
Definition: tools.hpp:69
AdHoc(int cmd, const std::vector< std::string > &args)
Construct a new Ad Hoc object from command_enum and list of args.
Definition: tools.hpp:76
int cmd_
Index of command in comman_enum.
Definition: tools.hpp:68
~AdHoc(void)=default
Destroy the Ad Hoc object.
AdHoc(const std::vector< std::string > &work_req)
Construct a new Ad Hoc object from list of strings.
Definition: tools.hpp:87