summaryrefslogtreecommitdiff
path: root/tools/utils.h
blob: 4f5418f27e39dfa1d1257e7ded2c99991b4d5659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <string>
#include <list>

std::string basename(const std::string path);
int prefix(const std::string shorter, const std::string longer);
std::string time_out(const int _ttt);

std::string toLower(const std::string a);
std::string purify(const std::string arg);
std::string ltrim(const std::string foo,
        const std::string strip = " \t\r\n");

std::string rtrim(const std::string foo,
        const std::string strip = " \t\r\n");

std::string trim(const std::string foo,
        const std::string strip = " \t\r\n");

typedef const char cc;
typedef cc* str;

class argParser{
public:
  std::list<str> argv;
  std::string current_arg;

  argParser(const int _argc, const str _argv[])
  {
    for (int ii=0; ii < _argc; ii++) {
      argv.push_back(_argv[ii]);
    }
  }
  std::string shift() {
    using namespace std;
    string rslt = argv.front();
    argv.pop_front();
    return rslt;
  }
  void next(){
    current_arg = shift();
  }
  size_t size() const {
    return argv.size();
  }
  int prefix(const std::string longer, const size_t required = 0){
    using namespace std;
    if (argv.size() < required) {
      if (required==1)
        cerr << "Option '" << current_arg
          << "' requires an argument." << endl;
      else
        cerr << "Option '" << current_arg
          << "' requires " << required << " arguments." << endl;
      throw int(1);
    }
    return current_arg == longer.substr(0, current_arg.length());
  }
};