MRPT
2.0.1
lib_mrpt_config_INI_file_format.h
Go to the documentation of this file.
1
/* +---------------------------------------------------------------------------+
2
| Mobile Robot Programming Toolkit (MRPT) |
3
| https://www.mrpt.org/ |
4
| |
5
| Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6
| See: https://www.mrpt.org/Authors - All rights reserved. |
7
| Released under BSD License. See details in https://www.mrpt.org/License |
8
+---------------------------------------------------------------------------+
9
*/
10
11
/** \defgroup config_file_format Configuration file format in MRPT
12
* \ingroup mrpt_config_grp
13
14
Configuration ("INI"-like) file format in MRPT
15
16
# Description
17
18
Plain text configuration files in MRPT follows a custom version of the [INI
19
file](https://en.wikipedia.org/wiki/INI_file) standard format, comprising
20
"sections", "properties" (or "keys") with associated "values" and, optionally,
21
comments.
22
23
The following C++ classes are provided to read and write such files:
24
- mrpt::config::CConfigFile: Access to physical files.
25
- mrpt::config::CConfigFileMemory: Wrapper around a configuration file "in
26
memory", without an associated physical file.
27
28
See also:
29
- mrpt::config::CConfigFileBase: The base, virtual class underlying the two
30
classes above. Users normally inkove the API exposed in this base class.
31
- mrpt::config::CConfigFilePrefixer: A proxy class to manipulate an object of
32
the two classes above such that all accesses to sections and/or properties are
33
*mapped* to modified versions of their names.
34
35
36
# Format specifications
37
38
- There exists only one level of hierarchy, i.e. only "toplevel" sections exist,
39
there is no support for nested sections. A possible workaround to this
40
limitation is using mrpt::config::CConfigFilePrefixer.
41
- Sections are formatted like: `[section_name]`
42
- Key/values pair follow the format: `key = value`. Whitespaces are ignored
43
before and after the `=` sign, up to the first non-blank character of the value.
44
- API methods exist to read and write different elementary data types
45
(`int`,`double`,`std::string`) and also vectors, matrices and even `enum`s.
46
- Comments can be included in different formats:
47
- Lines starting with `;`. Example: `; Comment line`
48
- Lines starting with `#`. Example: `# Comment line`
49
- After a value, with `//`. Example: `key = value // Explanation of this
50
value`
51
- An exception to the rule above is hard-coded to allow URLs, e.g. `key =
52
http://www.google.com` is not considered to contain a comment.
53
- Preprocessor:
54
- Just like in C/C++, lines can be ended in a backslash (`\`) to mean "line
55
continuation". [New in MRPT 1.5.0]
56
- C preprocessor-like `#define`s are available as `@define VARNAME VALUE`,
57
then using variables as `${VARNAME}` or math expressions as `$eval{...}`. See
58
the example below: [New in MRPT 1.5.0]. \code
59
@define MAXSPEED 10
60
@define MAXDIST $eval{exp(2*MAXSPEED)}
61
[test]
62
var1=${MAXSPEED}
63
var2=$eval{1+2*MAXSPEED}
64
var3=$env{MY_ENV_VARIABLE}
65
\endcode
66
67
# Examples
68
69
There are dozens of examples in the subdirectory
70
[MRPT/share/mrpt/config_files](https://github.com/MRPT/mrpt/tree/master/share/mrpt/config_files).
71
72
*/
Page generated by
Doxygen 1.8.14
for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020