autotier
Automatic Tiering Fuse Filesystem
tools.hpp
1 /*
2  * Copyright (C) 2019-2021 Joshua Boudreau <jboudreau@45drives.com>
3  *
4  * This file is part of autotier.
5  *
6  * autotier is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * autotier is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with autotier. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
20 #pragma once
21 
22 #include <boost/filesystem.hpp>
23 #include <sstream>
24 #include <string>
25 #include <vector>
26 namespace fs = boost::filesystem;
27 
32 enum command_enum {
33  ONESHOT,
34  PIN,
35  UNPIN,
36  STATUS,
37  CONFIG,
38  HELP,
39  LPIN,
40  LPOP,
41  WHICHTIER,
42  NUM_COMMANDS
43 };
44 
52 int get_command_index(const std::string &cmd);
53 
59 void sanitize_paths(std::list<std::string> &paths);
60 
66 class AdHoc {
67 public:
68  int cmd_;
69  std::vector<std::string> args_;
70 
76  AdHoc(int cmd, const std::vector<std::string> &args) {
77  cmd_ = cmd;
78  for (const std::string &s : args) {
79  args_.emplace_back(s);
80  }
81  }
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();
91  ++itr) {
92  args_.emplace_back(*itr);
93  }
94  }
99  ~AdHoc(void) = default;
100 };
101 
106 void fs_usage(void);
107 
112 void cli_usage(void);
AdHoc
Representation of an ad hoc command with the command index and arguments.
Definition: tools.hpp:66
AdHoc::args_
std::vector< std::string > args_
Arguments passed to command.
Definition: tools.hpp:69
AdHoc::AdHoc
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
AdHoc::cmd_
int cmd_
Index of command in comman_enum.
Definition: tools.hpp:68
AdHoc::~AdHoc
~AdHoc(void)=default
Destroy the Ad Hoc object.
AdHoc::AdHoc
AdHoc(const std::vector< std::string > &work_req)
Construct a new Ad Hoc object from list of strings.
Definition: tools.hpp:87