|
Yate
|
Configuration file handling. More...
#include <yatengine.h>
Public Member Functions | |
| Configuration () | |
| Configuration (const char *filename, bool warn=true) | |
| Configuration & | operator= (const String &value) |
| unsigned int | sections () const |
| unsigned int | count () const |
| NamedList * | getSection (unsigned int index) const |
| NamedList * | getSection (const String §) const |
| NamedString * | getKey (const String §, const String &key) const |
| const char * | getValue (const String §, const String &key, const char *defvalue=0) const |
| int | getIntValue (const String §, const String &key, int defvalue=0, int minvalue=INT_MIN, int maxvalue=INT_MAX, bool clamp=true) const |
| int | getIntValue (const String §, const String &key, const TokenDict *tokens, int defvalue=0) const |
| int64_t | getInt64Value (const String §, const String &key, int64_t defvalue=0, int64_t minvalue=LLONG_MIN, int64_t maxvalue=LLONG_MAX, bool clamp=true) const |
| double | getDoubleValue (const String §, const String &key, double defvalue=0.0) const |
| bool | getBoolValue (const String §, const String &key, bool defvalue=false) const |
| void | clearSection (const char *sect=0) |
| NamedList * | createSection (const String §) |
| void | clearKey (const String §, const String &key) |
| void | addValue (const String §, const char *key, const char *value=0) |
| void | setValue (const String §, const char *key, const char *value=0) |
| void | setValue (const String §, const char *key, int value) |
| void | setValue (const String §, const char *key, bool value) |
| bool | load (bool warn=true) |
| bool | save () const |
Public Member Functions inherited from String | |
| String () | |
| String (const char *value, int len=-1) | |
| String (char value, unsigned int repeat=1) | |
| String (int32_t value) | |
| String (uint32_t value) | |
| String (int64_t value) | |
| String (uint64_t value) | |
| String (bool value) | |
| String (double value) | |
| String (const String &value) | |
| String (const String *value) | |
| virtual | ~String () |
| virtual void * | getObject (const String &name) const |
| const char * | c_str () const |
| const char * | safe () const |
| const char * | safe (const char *defStr) const |
| unsigned int | length () const |
| bool | null () const |
| int | lenUtf8 (uint32_t maxChar=0x10ffff, bool overlong=false) const |
| int | fixUtf8 (const char *replace=0, uint32_t maxChar=0x10ffff, bool overlong=false) |
| unsigned int | encodeFlags (const TokenDict *tokens) const |
| uint64_t | encodeFlags (const TokenDict64 *tokens) const |
| const String & | decodeFlags (unsigned int flags, const TokenDict *tokens, bool unknownflag=true) |
| const String & | decodeFlags (uint64_t flags, const TokenDict64 *tokens, bool unknownflag=true) |
| bool | checkBOM () const |
| bool | stripBOM () |
| unsigned int | hash () const |
| void | clear () |
| char | at (int index) const |
| String | substr (int offs, int len=-1) const |
| String & | trimBlanks () |
| String & | trimSpaces () |
| virtual const String & | toString () const |
| int | toInteger (int defvalue=0, int base=0, int minvalue=INT_MIN, int maxvalue=INT_MAX, bool clamp=true) const |
| int | toInteger (const TokenDict *tokens, int defvalue=0, int base=0) const |
| long int | toLong (long int defvalue=0, int base=0, long int minvalue=LONG_MIN, long int maxvalue=LONG_MAX, bool clamp=true) const |
| int64_t | toInt64 (int64_t defvalue=0, int base=0, int64_t minvalue=LLONG_MIN, int64_t maxvalue=LLONG_MAX, bool clamp=true) const |
| uint64_t | toUInt64 (uint64_t defvalue=0, int base=0, uint64_t minvalue=0, uint64_t maxvalue=ULLONG_MAX, bool clamp=true) const |
| double | toDouble (double defvalue=0.0) const |
| bool | toBoolean (bool defvalue=false) const |
| bool | isBoolean () const |
| String & | toUpper () |
| String & | toLower () |
| char | operator[] (signed int index) const |
| char | operator[] (unsigned int index) const |
| operator const char * () const | |
| String & | assign (const char *value, int len=-1) |
| String & | assign (char value, unsigned int repeat=1) |
| String & | hexify (void *data, unsigned int len, char sep=0, bool upCase=false) |
| String & | operator= (const String &value) |
| String & | operator= (const String *value) |
| String & | operator= (const char *value) |
| String & | operator= (char value) |
| String & | operator= (int32_t value) |
| String & | operator= (uint32_t value) |
| String & | operator= (int64_t value) |
| String & | operator= (uint64_t value) |
| String & | operator= (bool value) |
| String & | operator= (double value) |
| String & | operator+= (const char *value) |
| String & | operator+= (char value) |
| String & | operator+= (int32_t value) |
| String & | operator+= (uint32_t value) |
| String & | operator+= (int64_t value) |
| String & | operator+= (uint64_t value) |
| String & | operator+= (bool value) |
| String & | operator+= (double value) |
| bool | operator== (const char *value) const |
| bool | operator!= (const char *value) const |
| bool | operator== (const String &value) const |
| bool | operator!= (const String &value) const |
| bool | operator&= (const char *value) const |
| bool | operator|= (const char *value) const |
| String & | operator<< (const char *value) |
| String & | operator<< (char value) |
| String & | operator<< (int32_t value) |
| String & | operator<< (uint32_t value) |
| String & | operator<< (int64_t value) |
| String & | operator<< (uint64_t value) |
| String & | operator<< (bool value) |
| String & | operator<< (double value) |
| String & | operator>> (const char *skip) |
| String & | operator>> (char &store) |
| String & | operator>> (UChar &store) |
| String & | operator>> (int &store) |
| String & | operator>> (unsigned int &store) |
| String & | operator>> (bool &store) |
| String & | append (const char *value, int len) |
| String & | append (const char *value, const char *separator=0, bool force=false) |
| String & | append (const ObjList *list, const char *separator=0, bool force=false) |
| String & | append (const ObjList &list, const char *separator=0, bool force=false) |
| String & | append (double value, unsigned int decimals=3) |
| String & | printf (const char *format,...) |
| String & | printf (unsigned int length, const char *format,...) |
| String & | appendFixed (unsigned int fixedLength, const char *str, unsigned int len=-1, char fill=' ', int align=Left) |
| String & | appendFixed (unsigned int fixedLength, const String &str, char fill=' ', int align=Left) |
| int | find (char what, unsigned int offs=0) const |
| int | find (const char *what, unsigned int offs=0) const |
| int | rfind (char what) const |
| int | rfind (const char *what) const |
| bool | startsWith (const char *what, bool wordBreak=false, bool caseInsensitive=false) const |
| bool | endsWith (const char *what, bool wordBreak=false, bool caseInsensitive=false) const |
| bool | startSkip (const char *what, bool wordBreak=true, bool caseInsensitive=false) |
| String & | extractTo (const char *sep, String &store) |
| String & | extractTo (const char *sep, bool &store) |
| String & | extractTo (const char *sep, int &store, int base=0) |
| String & | extractTo (const char *sep, int &store, const TokenDict *tokens, int base=0) |
| String & | extractTo (const char *sep, double &store) |
| virtual bool | matches (const String &value) const |
| bool | matches (const Regexp &rexp) |
| int | matchOffset (int index=0) const |
| int | matchLength (int index=0) const |
| String | matchString (int index=0) const |
| String | replaceMatches (const String &templ) const |
| int | matchCount () const |
| ObjList * | split (char separator, bool emptyOK=true) const |
| ObjList * | split (const Regexp ®, bool emptyOK=true) const |
| String | msgEscape (char extraEsc=0) const |
| String | msgUnescape (int *errptr=0, char extraEsc=0) const |
| String | sqlEscape (char extraEsc=0) const |
| String | uriEscape (char extraEsc=0, const char *noEsc=0) const |
| String | uriUnescape (int *errptr=0) const |
Public Member Functions inherited from GenObject | |
| GenObject () | |
| virtual | ~GenObject () |
| virtual bool | alive () const |
| virtual void | destruct () |
| virtual const String & | traceId () const |
| NamedCounter * | getObjCounter () const |
| NamedCounter * | setObjCounter (NamedCounter *counter) |
Additional Inherited Members | |
Public Types inherited from String | |
| enum | Align { Left = 0 , Center , Right } |
Static Public Member Functions inherited from String | |
| static const String & | empty () |
| static const char * | boolText (bool value) |
| static int | lenUtf8 (const char *value, uint32_t maxChar=0x10ffff, bool overlong=false) |
| static bool | checkBOM (const char *str) |
| static bool | stripBOM (const char *&str) |
| static bool | stripBOM (char *&str) |
| static unsigned int | hash (const char *value, unsigned int h=0) |
| static String | msgEscape (const char *str, char extraEsc=0) |
| static String | msgUnescape (const char *str, int *errptr=0, char extraEsc=0) |
| static String | sqlEscape (const char *str, char extraEsc=0) |
| static String | uriEscape (const char *str, char extraEsc=0, const char *noEsc=0) |
| static String | uriEscape (const char *str, const char *extraEsc, const char *noEsc=0) |
| static String | uriUnescape (const char *str, int *errptr=0) |
| static const String * | atom (const String *&str, const char *val) |
Static Public Member Functions inherited from GenObject | |
| static void * | getObject (const String &name, const GenObject *obj) |
| static bool | getObjCounting () |
| static void | setObjCounting (bool enable) |
| static NamedCounter * | getObjCounter (const String &name, bool create=true) |
| static ObjList & | getObjCounters () |
Protected Member Functions inherited from String | |
| virtual void | changed () |
Configuration file handling.
A class for parsing and quickly accessing INI style configuration files
| Configuration | ( | ) |
Create an empty configuration
Referenced by operator=().
|
explicit |
Create a configuration from a file
| filename | Name of file to initialize from |
| warn | True to warn if the configuration could not be loaded |
| void addValue | ( | const String & | sect, |
| const char * | key, | ||
| const char * | value = 0 ) |
Add the value of a key in a section.
| sect | Name of the section, will be created if missing |
| key | Name of the key to add in the section |
| value | Value to set in the key |
References String::String().
Deletes a key/value pair
| sect | Name of section |
| key | Name of the key to delete |
References String::String().
| void clearSection | ( | const char * | sect = 0 | ) |
Deletes an entire section
| sect | Name of section to delete, NULL to delete all |
|
inline |
Get the number of non null sections
Makes sure a section with a given name exists, creates if required
| sect | Name of section to check or create |
References String::String().
Retrieve the boolean value of a key in a section.
| sect | Name of the section |
| key | Name of the key in section |
| defvalue | Default value to return if not found |
References String::String().
Retrieve the floating point value of a key in a section.
| sect | Name of the section |
| key | Name of the key in section |
| defvalue | Default value to return if not found |
References String::String().
| int64_t getInt64Value | ( | const String & | sect, |
| const String & | key, | ||
| int64_t | defvalue = 0, | ||
| int64_t | minvalue = LLONG_MIN, | ||
| int64_t | maxvalue = LLONG_MAX, | ||
| bool | clamp = true ) const |
Retrieve the 64-bit numeric value of a key in a section.
| sect | Name of the section |
| key | Name of the key in section |
| defvalue | Default value to return if not found |
| minvalue | Minimum value allowed for the parameter |
| maxvalue | Maximum value allowed for the parameter |
| clamp | Control the out of bound values: true to adjust to the nearest bound, false to return the default value |
References String::String().
| int getIntValue | ( | const String & | sect, |
| const String & | key, | ||
| const TokenDict * | tokens, | ||
| int | defvalue = 0 ) const |
Retrieve the numeric value of a key in a section trying first a table lookup.
| sect | Name of the section |
| key | Name of the key in section |
| tokens | A pointer to an array of tokens to try to lookup |
| defvalue | Default value to return if not found |
References String::String().
| int getIntValue | ( | const String & | sect, |
| const String & | key, | ||
| int | defvalue = 0, | ||
| int | minvalue = INT_MIN, | ||
| int | maxvalue = INT_MAX, | ||
| bool | clamp = true ) const |
Retrieve the numeric value of a key in a section.
| sect | Name of the section |
| key | Name of the key in section |
| defvalue | Default value to return if not found |
| minvalue | Minimum value allowed for the parameter |
| maxvalue | Maximum value allowed for the parameter |
| clamp | Control the out of bound values: true to adjust to the nearest bound, false to return the default value |
References String::String().
| NamedString * getKey | ( | const String & | sect, |
| const String & | key ) const |
Locate a key/value pair in the section.
| sect | Name of the section |
| key | Name of the key in section |
References String::String().
Retrieve an entire section
| sect | Name of the section |
References String::String().
| NamedList * getSection | ( | unsigned int | index | ) | const |
Retrieve an entire section
| index | Index of the section |
Retrieve the value of a key in a section.
| sect | Name of the section |
| key | Name of the key in section |
| defvalue | Default value to return if not found |
References String::String().
| bool load | ( | bool | warn = true | ) |
Load the configuration from file
| warn | True to also warn if the configuration could not be loaded |
|
inline |
Assignment from string operator
References Configuration(), String::operator=(), and String::String().
| bool save | ( | ) | const |
Save the configuration to file
References String::String().
|
inline |
Get the number of sections
| void setValue | ( | const String & | sect, |
| const char * | key, | ||
| bool | value ) |
Set the boolean value of a key in a section.
| sect | Name of the section, will be created if missing |
| key | Name of the key in section, will be created if missing |
| value | Value to set in the key |
References String::String().
| void setValue | ( | const String & | sect, |
| const char * | key, | ||
| const char * | value = 0 ) |
Set the value of a key in a section.
| sect | Name of the section, will be created if missing |
| key | Name of the key in section, will be created if missing |
| value | Value to set in the key |
References String::String().
| void setValue | ( | const String & | sect, |
| const char * | key, | ||
| int | value ) |
Set the numeric value of a key in a section.
| sect | Name of the section, will be created if missing |
| key | Name of the key in section, will be created if missing |
| value | Value to set in the key |
References String::String().