aboutsummaryrefslogtreecommitdiffstats
path: root/common/core/Configuration.h
blob: 57bc48e1bdf864b56f59ae01bf1bc91554198116 (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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/* Copyright (C) 2002-2005 RealVNC Ltd.  All Rights Reserved.
 * Copyright 2011-2025 Pierre Ossman for Cendio AB
 * 
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this software; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
 * USA.
 */

// -=- Configuration.h
//
// This header defines a set of classes used to represent configuration
// parameters of different types.  Instances of the different parameter
// types are associated with instances of the Configuration class, and
// are each given a unique name.  The Configuration class provides a
// generic API through which parameters may be located by name and their
// value set, thus removing the need to write platform-specific code.
// Simply defining a new parameter and associating it with a Configuration
// will allow it to be configured by the user.
//
// If no Configuration is specified when creating a Parameter, then the
// global Configuration will be assumed.
//
// Configurations can be "chained" into groups.  Each group has a root
// Configuration, a pointer to which should be passed to the constructors
// of the other group members.  set() and get() operations called on the
// root will iterate through all of the group's members.
//
// NB: On platforms that support Threading, locking is performed to protect
//     complex parameter types from concurrent access (e.g. strings).
// NB: NO LOCKING is performed when linking Configurations to groups
//     or when adding Parameters to Configurations.

#ifndef __CORE_CONFIGURATION_H__
#define __CORE_CONFIGURATION_H__

#include <limits.h>
#include <stdint.h>

#include <list>
#include <set>
#include <string>
#include <vector>

namespace core {

  class VoidParameter;

  // -=- Configuration
  //     Class used to access parameters.

  class Configuration {
  public:
    // - Create a new Configuration object
    Configuration() {}

    // - Set named parameter to value
    bool set(const char* param, const char* value, bool immutable=false);

    // - Get named parameter
    VoidParameter* get(const char* param);

    // - List the parameters of this Configuration group
    void list(int width=79, int nameWidth=10);

    // - Remove a parameter from this Configuration group
    bool remove(const char* param);

    // - handleArg
    //   Parse a command line argument into a parameter, returning how
    //   many arguments were consumed
    int handleArg(int argc, char* argv[], int index);


    // - Iterate over all parameters
    std::list<VoidParameter*>::iterator begin() { return params.begin(); }
    std::list<VoidParameter*>::iterator end() { return params.end(); }


    // - Get the Global Configuration object
    //   NB: This call does NOT lock the Configuration system.
    //       ALWAYS ensure that if you have ANY global Parameters,
    //       then they are defined as global objects, to ensure that
    //       global() is called when only the main thread is running.
    static Configuration* global();

    // - Container for process-wide Global parameters
    static bool setParam(const char* param, const char* value, bool immutable=false) {
      return global()->set(param, value, immutable);
    }
    static VoidParameter* getParam(const char* param) { return global()->get(param); }
    static void listParams(int width=79, int nameWidth=10) {
      global()->list(width, nameWidth);
    }
    static bool removeParam(const char* param) {
      return global()->remove(param);
    }
    static int handleParamArg(int argc, char* argv[], int index) {
      return global()->handleArg(argc, argv, index);
    }

  private:
    friend class VoidParameter;

    // - List of Parameters
    std::list<VoidParameter*> params;

    // The process-wide, Global Configuration object
    static Configuration* global_;
  };

  // -=- VoidParameter
  //     Configuration parameter base-class.

  class VoidParameter {
  public:
    VoidParameter(const char* name_, const char* desc_);
    virtual  ~VoidParameter();
    const char* getName() const;
    const char* getDescription() const;

    virtual bool setParam(const char* value)  = 0;
    virtual bool setParam();
    virtual std::string getDefaultStr() const = 0;
    virtual std::string getValueStr() const = 0;

    virtual bool isDefault() const;

    virtual void setImmutable();

  protected:
    friend class Configuration;

    VoidParameter* _next;
    bool immutable;
    const char* name;
    const char* description;
  };

  class AliasParameter : public VoidParameter {
  public:
    AliasParameter(const char* name_, const char* desc_,VoidParameter* param_);
    bool setParam(const char* value) override;
    bool setParam() override;
    std::string getDefaultStr() const override;
    std::string getValueStr() const override;
    void setImmutable() override;
  private:
    VoidParameter* param;
  };

  class BoolParameter : public VoidParameter {
  public:
    BoolParameter(const char* name_, const char* desc_, bool v);
    bool setParam(const char* value) override;
    bool setParam() override;
    virtual void setParam(bool b);
    std::string getDefaultStr() const override;
    std::string getValueStr() const override;
    operator bool() const;
  protected:
    bool value;
    bool def_value;
  };

  class IntParameter : public VoidParameter {
  public:
    IntParameter(const char* name_, const char* desc_, int v,
                 int minValue=INT_MIN, int maxValue=INT_MAX);
    using VoidParameter::setParam;
    bool setParam(const char* value) override;
    virtual bool setParam(int v);
    std::string getDefaultStr() const override;
    std::string getValueStr() const override;
    operator int() const;
  protected:
    int value;
    int def_value;
    int minValue, maxValue;
  };

  class StringParameter : public VoidParameter {
  public:
    StringParameter(const char* name_, const char* desc_, const char* v);
    bool setParam(const char* value) override;
    std::string getDefaultStr() const override;
    std::string getValueStr() const override;
    operator const char*() const;
  protected:
    std::string value;
    std::string def_value;
  };

  class EnumParameter : public VoidParameter {
  public:
    EnumParameter(const char* name_, const char* desc_,
                  const std::set<const char*>& enums, const char* v);
    bool setParam(const char* value) override;
    std::string getDefaultStr() const override;
    std::string getValueStr() const override;
    bool operator==(const char* other) const;
    bool operator==(const std::string& other) const;
    bool operator!=(const char* other) const;
    bool operator!=(const std::string& other) const;
    // operator const char*() omitted on purpose to force usage of above
    // comparison operators
  protected:
    std::string value;
    std::string def_value;
    std::set<std::string> enums;
  };

  class BinaryParameter : public VoidParameter {
  public:
    BinaryParameter(const char* name_, const char* desc_,
                    const uint8_t* v, size_t l);
    using VoidParameter::setParam;
    ~BinaryParameter() override;
    bool setParam(const char* value) override;
    virtual void setParam(const uint8_t* v, size_t l);
    std::string getDefaultStr() const override;
    std::string getValueStr() const override;

    std::vector<uint8_t> getData() const;

  protected:
    uint8_t* value;
    size_t length;
    uint8_t* def_value;
    size_t def_length;
  };

  template<typename ValueType>
  class ListParameter : public VoidParameter {
  public:
    typedef std::list<ValueType> ListType;
    typedef typename ListType::const_iterator const_iterator;

    ListParameter(const char* name_, const char* desc_,
                  const ListType& v);
    using VoidParameter::setParam;
    bool setParam(const char* value) override;
    virtual bool setParam(const ListType& v);
    std::string getDefaultStr() const override;
    std::string getValueStr() const override;

    const_iterator begin() const;
    const_iterator end() const;

  protected:
    virtual bool decodeEntry(const char* entry, ValueType* out) const = 0;
    virtual std::string encodeEntry(const ValueType& entry) const = 0;
    virtual bool validateEntry(const ValueType& entry) const;
    virtual ValueType normaliseEntry(const ValueType& entry) const;

  protected:
    ListType value;
    ListType def_value;
  };

  class IntListParameter : public ListParameter<int> {
  public:
    IntListParameter(const char* name_, const char* desc_,
                     const ListType& v,
                     int minValue=INT_MIN, int maxValue=INT_MAX);
  protected:
    bool decodeEntry(const char* entry, int* out) const override;
    std::string encodeEntry(const int& entry) const override;
    bool validateEntry(const int& entry) const override;

  protected:
    int minValue, maxValue;
  };

  class StringListParameter : public ListParameter<std::string> {
  public:
    StringListParameter(const char* name_, const char* desc_,
                        const std::list<const char*>& v);

    class const_iterator :  public ListType::const_iterator {
    public:
      const_iterator(const ListType::const_iterator& it) : ListType::const_iterator(it) {}
      const char* operator*() const { return (ListType::const_iterator::operator*()).c_str(); }
    };

    const_iterator begin() const;
    const_iterator end() const;

  protected:
    bool decodeEntry(const char* entry, std::string* out) const override;
    std::string encodeEntry(const std::string& entry) const override;
  };

  class EnumListEntry {
  public:
    EnumListEntry(const std::string& v);
    std::string getValueStr() const;
    bool operator==(const char* other) const;
    bool operator==(const std::string& other) const;
    bool operator!=(const char* other) const;
    bool operator!=(const std::string& other) const;
    // operator const char*() omitted on purpose to force usage of above
    // comparison operators
  protected:
    std::string value;
  };

  class EnumListParameter : public ListParameter<std::string> {
  public:
    EnumListParameter(const char* name_, const char* desc_,
                      const std::set<const char*>& enums,
                      const std::list<const char*>& v);

    class const_iterator :  public ListType::const_iterator {
    public:
      const_iterator(const ListType::const_iterator& it) : ListType::const_iterator(it) {}
      const EnumListEntry operator*() const { return EnumListEntry(ListType::const_iterator::operator*()); }
      const EnumListEntry operator->() const { return EnumListEntry(*ListType::const_iterator::operator->()); }
    };

    const_iterator begin() const;
    const_iterator end() const;

  protected:
    bool decodeEntry(const char* entry, std::string* out) const override;
    std::string encodeEntry(const std::string& entry) const override;
    bool validateEntry(const std::string& entry) const override;
    std::string normaliseEntry(const std::string& entry) const override;

  protected:
    std::set<std::string> enums;
  };

};

#endif // __CORE_CONFIGURATION_H__