PropertyDefinition.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package ArmarXCore::core
19  * @author Jan Issac (jan dot issac at gmx dot de)
20  * @date 2011
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 
26 #pragma once
27 
28 
29 #include <functional>
30 #include <map>
31 #include <memory>
32 #include <string>
33 #include <type_traits>
34 
35 #include <Ice/Handle.h>
36 
43 
44 namespace Ice
45 {
46  class Properties;
47  class LocalObject;
49 } // namespace Ice
50 
52 {
53  template <class T, class = void>
54  struct GetPropertyPlugin : std::false_type
55  {
56  };
57 
58  template <class T, class = void>
59  struct DefinePropertyPlugin : std::false_type
60  {
61  };
62 
63  template <class T, class = void>
64  struct MapPropertyValuePlugin : std::false_type
65  {
66  };
67 
68  template <class T, class = void>
69  struct DefaultAsStringPlugin : std::false_type
70  {
71  };
72 
73  template <class T, class = void>
74  struct PDInitHookPlugin : std::false_type
75  {
76  };
77 } // namespace armarx::meta::properties
78 
79 namespace armarx
80 {
81  /**
82  * @ingroup properties
83  *
84  * @class PropertyDefinition
85  * @brief PropertyDefinition defines a property that will be available
86  * within the PropertyUser
87  *
88  * PropertyDefinition provides the definition and description of a
89  * property that may be definined in a config file or passed via command
90  * line as an option. Depending which constructor is used a property
91  * is either required or optional. In the latter case a default value has
92  * to be specified.
93  *
94  * The property specific value type (@em PropertyType) can be arbitrary, yet
95  * it is devided into these three groups which are handled internally
96  * differently:
97  * - String values
98  * - Arithmetic values (integral & floating point types)
99  * - Custom objects (Classes, Structs, Enums)
100  *
101  * @section fluentinterface Fluent Interface
102  *
103  * All setters are self referential and therefor can be chained to
104  * simplify the implementation and increase the readability.
105  *
106  * @subsection fluentinterface_example Example
107  * @code
108  * PropertyDefinition<float> frameRateDef("MyFrameRate", "Capture frame rate");
109  *
110  * frameRateDef
111  * .setMatchRegex("\\d+(.\\d*)?")
112  * .setMin(0.0f)
113  * .setMax(60.0f);
114  * @endcode
115  */
116  template <typename PropertyType>
118  {
119  public:
120  using PropertyTypePtr = std::shared_ptr<PropertyType>;
121  using ValueEntry = std::pair<std::string, PropertyType>;
122  using PropertyValuesMap = std::map<std::string, ValueEntry>;
123  typedef std::function<PropertyType(std::string)> PropertyFactoryFunction;
124 
125  /**
126  * Constructs a property definition of a required property
127  *
128  * @param setterRef Setter
129  * @param propertyName Name of the property used in config files
130  * @param description Mandatory property description
131  */
132  PropertyDefinition(PropertyType* setterRef,
133  const std::string& propertyName,
134  const std::string& description,
137 
138 
139  /**
140  * Constructs a property definition of an optional property
141  *
142  * @param setterRef Setter
143  * @param propertyName Name of the property used in config files
144  * @param defaultValue Property default value of the type
145  * @em PropertyType
146  * @param description Mandatory property description
147  */
148  PropertyDefinition(PropertyType* setterRef,
149  const std::string& propertyName,
150  PropertyType defaultValue,
151  const std::string& description,
154 
155  /**
156  * Maps a string value onto a value of the specified template type
157  *
158  * @param valueString Property string value key
159  * @param value Property value
160  *
161  * @return self reference
162  */
163  PropertyDefinition<PropertyType>& map(const std::string& valueString, PropertyType value);
164 
165 
166  PropertyDefinition<PropertyType>& map(const std::map<std::string, PropertyType>& values);
167 
168  template <class T>
169  std::enable_if_t<std::is_same_v<T, PropertyType> && !std::is_same_v<T, std::string>,
171  map(const std::map<T, std::string>& values);
172 
173  template <class T>
176  map(const T& values)
177  {
179  }
180 
181  /**
182  * Sets the factory function that creates the specified template type from the actual string value
183  *
184  * @param func the factory function
185  *
186  * @return self reference
187  */
189 
190  /**
191  * Sets whether the property value matching is case insensitive.
192  *
193  * @param isCaseInsensitive Case sensitivity state
194  *
195  * @return self reference
196  */
198 
199  /**
200  * Sets whether for string values environment varbiale expanding should be considered.
201  *
202  * @param expand Expand entries like '${ENV_VAR}' to the according values of the
203  * environment.
204  *
205  * @return self reference
206  */
208 
209  /**
210  * Sets whether for string values leading and trailing quotes should be removed.
211  *
212  * @param removeQuotes The indicator.
213  *
214  * @return self reference
215  */
217 
218  /**
219  * Sets the regular expression which the value has to be matched with.
220  *
221  * @param expr Value regular expression
222  *
223  * @return self reference
224  */
225  PropertyDefinition<PropertyType>& setMatchRegex(const std::string& expr);
226 
227  /**
228  * Sets the min allowed numeric value
229  *
230  * @param min Min. allowed value
231  *
232  * @return self reference
233  */
235 
236  template <class T = PropertyType>
238  setMin(std::array<T, 1> min)
239  {
240  return setMin(min.at(0));
241  }
242 
243  /**
244  * Sets the max allowed numeric value
245  *
246  * @param max Max. allowed value
247  *
248  * @return self reference
249  */
251 
252  template <class T = PropertyType>
254  setMax(std::array<T, 1> max)
255  {
256  return setMax(max.at(0));
257  }
258 
259  bool isCaseInsensitive() const;
260  bool expandEnvironmentVariables() const;
261  bool removeQuotes() const;
262  std::string getMatchRegex() const;
263  double getMin() const;
264  double getMax() const;
265  std::string getPropertyName() const;
267  PropertyType getDefaultValue();
269  std::string getDefaultAsString() override;
270 
271  PropertyType getValue(const std::string& prefix, Ice::PropertiesPtr);
272  bool isSet(const std::string& prefix, Ice::PropertiesPtr iceProperties) const;
273 
274  virtual void writeValueToSetter(const std::string& prefix, Ice::PropertiesPtr) override;
275 
276  //! Checks first and last character of input and in case both are quotes, they are removed and the remaining result is stored in output
277  static void removeQuotes(const std::string& input, std::string& output);
278 
279  /**
280  * @see PropertyDefinitionBase::toString()
281  */
282  std::string toString(PropertyDefinitionFormatter& formatter,
283  const std::string& value) override;
284 
285  std::string getDescription() const;
286 
287  protected:
288  /**
289  * Main property map
290  */
292 
293  /**
294  * Property name
295  */
296  std::string propertyName;
297 
298  /**
299  * Property description
300  */
301  std::string description;
302 
303  /**
304  * Fallback/Default property value
305  */
306  PropertyType defaultValue;
307 
308  /**
309  * Reference to a variable to set
310  */
311  PropertyType* setterRef;
312 
313  /**
314  * Builder function
315  */
317 
318  /**
319  * Regular expression to approve a required value pattern
320  */
321  std::string regex;
322 
323  /**
324  * Case sensitivity indicator
325  */
327 
328  /**
329  * Exand environments variables indicator (standard: true)
330  */
332 
333  /**
334  * Remove leading and trailing quotes indicator (standard: true)
335  * First and last character of a string property value are checked for quotes.
336  * E.g.
337  * "test" -> test
338  * 'test' -> test
339  */
341 
342  /**
343  * Upper bound of numeric values (used for numeric value retrieval
344  * without mapping)
345  */
346  double max;
347 
348  /**
349  * Lower bound of numeric values (used for numeric value retrieval
350  * without mapping)
351  */
352  double min;
353 
354  private:
355  void initHook();
356 
357  /**
358  * @brief Get a required value.
359  * @throw armarx::exceptions::local::ValueRangeExceededException
360  * @throw armarx::exceptions::local::InvalidPropertyValueException
361  */
362  PropertyType getValueRequired(const std::string& prefix, Ice::PropertiesPtr iceProperties);
363  /**
364  * @brief Get an optional value.
365  * @throw armarx::exceptions::local::ValueRangeExceededException
366  * @throw armarx::exceptions::local::InvalidPropertyValueException
367  */
368  PropertyType getValueOptional(const std::string& prefix, Ice::PropertiesPtr iceProperties);
369 
370  /**
371  * Returns the property string value. This function adapts the value
372  * case according to the case sensitivity state. If no case sensitivity
373  * is required, the return value will always be transformed to lower
374  * case. This is mainly used to generate the value keys used in mapping.
375  *
376  * @return lower or mixed case eof th raw string value
377  */
378  std::string getPropertyValue(const std::string& prefix,
379  Ice::PropertiesPtr iceProperties) const;
380 
381  /**
382  * Returns the raw string value of this property.
383  *
384  * @return raw string value.
385  */
386  std::string getRawPropertyValue(const std::string& prefix,
387  Ice::PropertiesPtr iceProperties) const;
388 
389  /**
390  * Checks if this property is required and throws an exception if the
391  * property is not specified.
392  *
393  * @throw armarx::exceptions::local::MissingRequiredPropertyException
394  */
395  void checkRequirement(const std::string& prefix, Ice::PropertiesPtr iceProperties);
396 
397  /**
398  * Checks whether the a passed string matches a specified regular
399  * expression.
400  *
401  * @param value The value to check
402  *
403  * @return true if the string matches, otherwise false
404  */
405  bool matchRegex(const std::string& value) const;
406 
407  /// Return `value`.
408  template <typename T>
409  T processMappedValue(const T& value);
410 
411  /// @brief Expand environment variables and removes quotes, if set respectively.
412  std::string processMappedValue(const std::string& value);
413 
414  /**
415  * Verifies that the passed numericValue is within the defined
416  * limits.
417  *
418  * @param numericValue The numeric value of the property
419  *
420  * @throw armarx::exceptions::local::ValueRangeExceededException
421  */
422  void checkLimits(const std::string& prefix, PropertyType numericValue) const;
423 
424  static bool expandEnvironmentVariables(const std::string& input, std::string& output);
425  };
426 
427  // Helper functions to prevent boost include files
428  std::string PropertyDefinition_lexicalCastToString(double input);
432  std::string PropertyDefinition_lexicalCastToString(unsigned long input);
433  std::string PropertyDefinition_lexicalCastToString(unsigned int input);
434  std::string PropertyDefinition_lexicalCastToString(std::string const& input);
435 
436  template <typename T>
437  T PropertyDefinition_lexicalCastTo(std::string const& input);
438 
439  template <>
440  double PropertyDefinition_lexicalCastTo<double>(std::string const& input);
441  template <>
442  float PropertyDefinition_lexicalCastTo<float>(std::string const& input);
443  template <>
444  long PropertyDefinition_lexicalCastTo<long>(std::string const& input);
445  template <>
446  int PropertyDefinition_lexicalCastTo<int>(std::string const& input);
447  template <>
448  unsigned long PropertyDefinition_lexicalCastTo<unsigned long>(std::string const& input);
449  template <>
450  unsigned int PropertyDefinition_lexicalCastTo<unsigned int>(std::string const& input);
451  template <>
452  char PropertyDefinition_lexicalCastTo<char>(std::string const& input);
453  template <>
454  unsigned char PropertyDefinition_lexicalCastTo<unsigned char>(std::string const& input);
455  template <>
456  bool PropertyDefinition_lexicalCastTo<bool>(std::string const& input);
457 
458 
459  extern template class PropertyDefinition<int>;
460  extern template class PropertyDefinition<float>;
461  extern template class PropertyDefinition<double>;
462  extern template class PropertyDefinition<std::string>;
463  extern template class PropertyDefinition<bool>;
464 } // namespace armarx
armarx::PropertyDefinition::getValue
PropertyType getValue(const std::string &prefix, Ice::PropertiesPtr)
Definition: PropertyDefinition.hpp:451
armarx::PropertyDefinition::expandEnvVars
bool expandEnvVars
Exand environments variables indicator (standard: true)
Definition: PropertyDefinition.h:331
armarx::PropertyDefinition_lexicalCastTo< float >
float PropertyDefinition_lexicalCastTo< float >(std::string const &input)
Definition: PropertyDefinition.cpp:233
armarx::PropertyDefinition::getMatchRegex
std::string getMatchRegex() const
Definition: PropertyDefinition.hpp:260
armarx::PropertyDefinition_lexicalCastTo< unsigned long >
unsigned long PropertyDefinition_lexicalCastTo< unsigned long >(std::string const &input)
Definition: PropertyDefinition.cpp:255
armarx::PropertyDefinitionBase
Common interface of any property definition.
Definition: PropertyDefinitionInterface.h:51
armarx::PropertyDefinition::getValueMap
PropertyValuesMap & getValueMap()
Definition: PropertyDefinition.hpp:295
armarx::PropertyDefinition_lexicalCastTo
T PropertyDefinition_lexicalCastTo(std::string const &input)
armarx::meta::properties::MapPropertyValuePlugin
Definition: PropertyDefinition.h:64
armarx::PropertyDefinitionBase::PropertyConstness
PropertyConstness
Definition: PropertyDefinitionInterface.h:54
armarx::meta::properties::DefinePropertyPlugin
Definition: PropertyDefinition.h:59
armarx::meta::properties
Definition: PluginCfgStruct.h:43
armarx::PropertyDefinition::getMax
double getMax() const
Definition: PropertyDefinition.hpp:274
armarx::PropertyDefinition::setterRef
PropertyType * setterRef
Reference to a variable to set.
Definition: PropertyDefinition.h:311
armarx::PropertyDefinition::stringRemoveQuotes
bool stringRemoveQuotes
Remove leading and trailing quotes indicator (standard: true) First and last character of a string pr...
Definition: PropertyDefinition.h:340
armarx::PropertyDefinition::setMax
PropertyDefinition< PropertyType > & setMax(std::array< T, 1 > max)
Definition: PropertyDefinition.h:254
armarx::VariantType::Map
const VariantContainerType Map
Definition: StringValueMap.h:263
armarx::PropertyDefinition::getPropertyName
std::string getPropertyName() const
Definition: PropertyDefinition.hpp:281
armarx::PropertyDefinition::PropertyValuesMap
std::map< std::string, ValueEntry > PropertyValuesMap
Definition: PropertyDefinition.h:122
InvalidPropertyValueException.h
ProsthesisInterface.values
values
Definition: ProsthesisInterface.py:190
armarx::PropertyDefinition::PropertyDefinition
PropertyDefinition(PropertyType *setterRef, const std::string &propertyName, const std::string &description, PropertyDefinitionBase::PropertyConstness constness=PropertyDefinitionBase::eConstant)
Constructs a property definition of a required property.
Definition: PropertyDefinition.hpp:46
PropertyDefinitionFormatter.h
armarx::PropertyDefinition::setExpandEnvironmentVariables
PropertyDefinition< PropertyType > & setExpandEnvironmentVariables(bool expand)
Sets whether for string values environment varbiale expanding should be considered.
Definition: PropertyDefinition.hpp:178
armarx::PropertyDefinition_lexicalCastTo< long >
long PropertyDefinition_lexicalCastTo< long >(std::string const &input)
Definition: PropertyDefinition.cpp:241
armarx::PropertyDefinition::setMin
PropertyDefinition< PropertyType > & setMin(double min)
Sets the min allowed numeric value.
Definition: PropertyDefinition.hpp:203
armarx::PropertyDefinition::isCaseInsensitive
bool isCaseInsensitive() const
Definition: PropertyDefinition.hpp:239
armarx::PropertyDefinition::min
double min
Lower bound of numeric values (used for numeric value retrieval without mapping)
Definition: PropertyDefinition.h:352
IceInternal::Handle<::Ice::Properties >
armarx::PropertyDefinition::caseInsensitive
bool caseInsensitive
Case sensitivity indicator.
Definition: PropertyDefinition.h:326
armarx::meta::properties::PDInitHookPlugin
Definition: PropertyDefinition.h:74
PropertyDefinitionInterface.h
ValueRangeExceededException.h
cxxopts::value
std::shared_ptr< Value > value()
Definition: cxxopts.hpp:855
armarx::PropertyDefinition::ValueEntry
std::pair< std::string, PropertyType > ValueEntry
Definition: PropertyDefinition.h:121
armarx::PropertyDefinition::map
std::enable_if_t< meta::properties::MapPropertyValuePlugin< T >::value, PropertyDefinition< PropertyType > & > map(const T &values)
Definition: PropertyDefinition.h:176
armarx::PropertyDefinition_lexicalCastTo< int >
int PropertyDefinition_lexicalCastTo< int >(std::string const &input)
Definition: PropertyDefinition.cpp:248
armarx::PropertyDefinition::getFactory
PropertyFactoryFunction getFactory() const
Definition: PropertyDefinition.hpp:317
armarx::PropertyDefinition::setRemoveQuotes
PropertyDefinition< PropertyType > & setRemoveQuotes(bool removeQuotes)
Sets whether for string values leading and trailing quotes should be removed.
Definition: PropertyDefinition.hpp:186
armarx::PropertyDefinition::max
double max
Upper bound of numeric values (used for numeric value retrieval without mapping)
Definition: PropertyDefinition.h:346
armarx::PropertyDefinition::factory
PropertyFactoryFunction factory
Builder function.
Definition: PropertyDefinition.h:316
armarx::aron::input
ReaderT::InputType & input
Definition: rw.h:12
armarx::PropertyDefinition_lexicalCastToString
std::string PropertyDefinition_lexicalCastToString(float input)
Definition: PropertyDefinition.cpp:180
armarx::PropertyDefinition_lexicalCastTo< bool >
bool PropertyDefinition_lexicalCastTo< bool >(std::string const &input)
Definition: PropertyDefinition.cpp:283
armarx::PropertyDefinition::toString
std::string toString(PropertyDefinitionFormatter &formatter, const std::string &value) override
Definition: PropertyDefinition.hpp:324
armarx::PropertyDefinition_lexicalCastTo< unsigned char >
unsigned char PropertyDefinition_lexicalCastTo< unsigned char >(std::string const &input)
Definition: PropertyDefinition.cpp:276
armarx::PropertyDefinition::expandEnvironmentVariables
bool expandEnvironmentVariables() const
Definition: PropertyDefinition.hpp:246
armarx::PropertyDefinition::getDefaultValue
PropertyType getDefaultValue()
Definition: PropertyDefinition.hpp:302
MissingRequiredPropertyException.h
armarx::PropertyDefinition::getDescription
std::string getDescription() const
Definition: PropertyDefinition.hpp:288
armarx::PropertyDefinition::defaultValue
PropertyType defaultValue
Fallback/Default property value.
Definition: PropertyDefinition.h:306
Ice
Definition: DBTypes.cpp:63
armarx::PropertyDefinition::isSet
bool isSet(const std::string &prefix, Ice::PropertiesPtr iceProperties) const
Definition: PropertyDefinition.hpp:688
armarx::PropertyDefinition::setMin
PropertyDefinition< PropertyType > & setMin(std::array< T, 1 > min)
Definition: PropertyDefinition.h:238
armarx::PropertyDefinition::setMatchRegex
PropertyDefinition< PropertyType > & setMatchRegex(const std::string &expr)
Sets the regular expression which the value has to be matched with.
Definition: PropertyDefinition.hpp:194
UnmappedValueException.h
armarx::PropertyDefinition::removeQuotes
bool removeQuotes() const
Definition: PropertyDefinition.hpp:253
armarx::PropertyDefinition::PropertyTypePtr
std::shared_ptr< PropertyType > PropertyTypePtr
Definition: PropertyDefinition.h:120
armarx::PropertyDefinition::propertyName
std::string propertyName
Property name.
Definition: PropertyDefinition.h:296
armarx::PropertyDefinition::getDefaultAsString
std::string getDefaultAsString() override
Definition: PropertyDefinition.hpp:356
armarx::meta::properties::DefaultAsStringPlugin
Definition: PropertyDefinition.h:69
armarx::PropertyDefinitionBase::constness
PropertyConstness constness
Definition: PropertyDefinitionInterface.h:107
armarx::PropertyDefinition::setCaseInsensitive
PropertyDefinition< PropertyType > & setCaseInsensitive(bool isCaseInsensitive)
Sets whether the property value matching is case insensitive.
Definition: PropertyDefinition.hpp:144
armarx::PropertyDefinition::regex
std::string regex
Regular expression to approve a required value pattern.
Definition: PropertyDefinition.h:321
T
float T
Definition: UnscentedKalmanFilterTest.cpp:38
armarx::PropertyDefinition::setFactory
PropertyDefinition< PropertyType > & setFactory(const PropertyFactoryFunction &func)
Sets the factory function that creates the specified template type from the actual string value.
Definition: PropertyDefinition.hpp:135
armarx::PropertyDefinition_lexicalCastTo< unsigned int >
unsigned int PropertyDefinition_lexicalCastTo< unsigned int >(std::string const &input)
Definition: PropertyDefinition.cpp:262
armarx::PropertyDefinition_lexicalCastTo< char >
char PropertyDefinition_lexicalCastTo< char >(std::string const &input)
Definition: PropertyDefinition.cpp:269
armarx::PropertyDefinition::setMax
PropertyDefinition< PropertyType > & setMax(double max)
Sets the max allowed numeric value.
Definition: PropertyDefinition.hpp:221
armarx::PropertyDefinitionFormatter
PropertyDefinitionFormatter is the base class for all formatters of PropertyDefinitions.
Definition: PropertyDefinitionFormatter.h:38
armarx::PropertyDefinition::description
std::string description
Property description.
Definition: PropertyDefinition.h:301
armarx::PropertyDefinition::getMin
double getMin() const
Definition: PropertyDefinition.hpp:267
armarx::PropertyDefinition::propertyValuesMap
PropertyValuesMap propertyValuesMap
Main property map.
Definition: PropertyDefinition.h:291
armarx::PropertyDefinition
PropertyDefinition defines a property that will be available within the PropertyUser.
Definition: PropertyDefinition.h:117
armarx::PropertyDefinition::PropertyFactoryFunction
std::function< PropertyType(std::string)> PropertyFactoryFunction
Definition: PropertyDefinition.h:123
armarx::meta::properties::GetPropertyPlugin
Definition: PropertyDefinition.h:54
armarx::PropertyDefinition::writeValueToSetter
virtual void writeValueToSetter(const std::string &prefix, Ice::PropertiesPtr) override
Definition: PropertyDefinition.hpp:460
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::PropertyDefinition::map
PropertyDefinition< PropertyType > & map(const std::string &valueString, PropertyType value)
Maps a string value onto a value of the specified template type.
Definition: PropertyDefinition.hpp:93
armarx::PropertyDefinition_lexicalCastTo< double >
double PropertyDefinition_lexicalCastTo< double >(std::string const &input)
Definition: PropertyDefinition.cpp:225
armarx::PropertyDefinitionBase::eConstant
@ eConstant
Definition: PropertyDefinitionInterface.h:56