summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/CodeGenerationKit/CommandLine.hpp
blob: 1d77e8ea026aaa4cf92c1d7786302c1a19fa2f33 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// file      : CCF/CodeGenerationKit/CommandLine.hpp
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#ifndef COMMAND_LINE_HPP
#define COMMAND_LINE_HPP

#include <algorithm>
#include <vector>
#include <string>

//@@ this stuff needs proper reimplementation

class CommandLine
{
public:
  CommandLine ()
  {
  }

  // Option constrain checking
public:

  bool
  require (std::string option) const throw ()
  {
    return std::find_if (options.begin (),
                         options.end (),
                         OptionNamePredicat (option)) != options.end ();
  }

  bool
  depends (std::string dependant,
           std::string principal) const throw ()
  {
    Options::const_iterator begin = options.begin ();
    Options::const_iterator end   = options.end ();

    if (std::find_if (begin, end, OptionNamePredicat (dependant)) != end)
    {
      return std::find_if (begin, end, OptionNamePredicat (principal)) != end;
    }
    else
    {
      return true;
    }
  }

  bool
  inconsistent (std::string a,
                std::string b) const throw ()
  {
    Options::const_iterator begin = options.begin ();
    Options::const_iterator end   = options.end ();

    if (std::find_if (begin, end, OptionNamePredicat (a)) != end)
    {
      return std::find_if (begin, end, OptionNamePredicat (b)) == end;
    }
    else
    {
      return true;
    }
  }

  std::string
  get_value (std::string name, std::string const& not_found_value) const
  {
    Options::const_iterator i = std::find_if (
      options.begin (),
      options.end (),
      OptionNamePredicat (name));

    if (i != options.end () && !(i->value ().empty ()))
    {
      return i->value ();
    }
    else
    {
      return not_found_value;
    }
  }

  // @@ the option should probably be searched in reverse order
  //

  std::string
  get_value (std::string name, char const* not_found_value) const
  {
    Options::const_iterator i = std::find_if (
      options.begin (),
      options.end (),
      OptionNamePredicat (name));

    if (i != options.end () && !(i->value ().empty ()))
    {
      return i->value ();
    }
    else
    {
      return std::string (not_found_value);
    }
  }

  bool
  get_value (std::string name, bool not_found_value) const
  {
    Options::const_iterator i = std::find_if (
      options.begin (),
      options.end (),
      OptionNamePredicat (name));

    if (i != options.end ())
    {
      return true;
    }
    else
    {
      return not_found_value;
    }
  }
  
  bool 
  get_all_values (std::string name, std::vector<std::string> &values)
  {
    Options::iterator i (options.begin ());
    
    while ((i = std::find_if (i, 
                              options.end (), 
                              OptionNamePredicat (name))) != options.end ())
      {
        values.push_back (i->value ());
        ++i;
      }
    
    return values.size () != 0;
  }
  
  struct Option
  {
    Option (std::string const& name)
        : name_ (name)
    {
    }

    Option (std::string const& name,
            std::string const& value)
        : name_ (name),
          value_ (value)
    {
    }

    std::string const&
    name () const
    {
      return name_;
    }

    std::string const&
    value () const
    {
      return value_;
    }

  private:
    std::string name_;
    std::string value_;
  };

  typedef
  std::vector<Option>
  Options;

  typedef
  Options::const_iterator
  OptionsIterator;

  OptionsIterator
  options_begin () const
  {
    return options.begin ();
  }

  OptionsIterator
  options_end () const
  {
    return options.end ();
  }

  // Arguments
  //
  //

  typedef
  std::vector<std::string>
  Arguments;

  typedef
  Arguments::const_iterator
  ArgumentsIterator;

  ArgumentsIterator
  arguments_begin () const
  {
    return arguments.begin ();
  }

  ArgumentsIterator
  arguments_end () const
  {
    return arguments.end ();
  }

public:

  struct OptionNamePredicat
  {
    OptionNamePredicat (std::string const& name)
        : name_ (name)
    {
    }

    bool operator ()(Option const& option) throw ()
    {
      return name_ == option.name ();
    }

  private:
    std::string const name_;
  };

  std::string command;
  Options     options;
  Arguments   arguments;
};

#endif  // COMMAND_LINE_HPP