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
|
/*
* Copyright (C) 2000-2002 The Exult Team
*
* This program 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 program 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 program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _Configuration_h_
#define _Configuration_h_
#include "XMLEntity.h"
class Configuration
{
public:
Configuration()
: xmltree(new XMLnode("config")), rootname("config"), filename(), is_file(false)
{ }
Configuration(const std::string &fname, const std::string &root)
: xmltree(new XMLnode(root)), rootname(root), filename(), is_file(false)
{ if(fname.size()) read_config_file(fname); }
~Configuration() { if(xmltree!=0) delete xmltree; };
bool read_config_file(const std::string &input_filename, const std::string &root=std::string());
bool read_abs_config_file(const std::string &input_filename, const std::string &root=std::string());
bool read_config_string(const std::string &);
void value(const std::string &key, std::string &ret, const char *defaultvalue="") const;
void value(const std::string &key, bool &ret, bool defaultvalue=false) const;
void value(const std::string &key, int &ret, int defaultvalue=0) const;
void value(const char *key, std::string &ret, const char *defaultvalue="") const
{ value(std::string(key), ret, defaultvalue); };
void value(const char *key, bool &ret, bool defaultvalue=false) const
{ value(std::string(key), ret, defaultvalue); };
void value(const char *key, int &ret, int defaultvalue=0) const
{ value(std::string(key), ret, defaultvalue); };
void set(const std::string &key, const std::string &value, bool write_to_file);
void set(const char *key,const char *value,bool write_to_file);
void set(const char *key,const std::string &value,bool write_to_file);
void set(const char *key,int,bool write_to_file);
// Return a list of keys that are subsidiary to the supplied key
std::vector<std::string> listkeys(const std::string &key,bool longformat=true);
std::vector<std::string> listkeys(const char *key,bool longformat=true);
std::string dump(void); // Assembles a readable representation
std::ostream &dump(std::ostream &o, const std::string &indentstr);
void write_back(void);
void clear(const std::string &new_root=std::string());
typedef XMLnode::KeyType KeyType;
typedef XMLnode::KeyTypeList KeyTypeList;
void getsubkeys(KeyTypeList &ktl, const std::string &basekey);
private:
XMLnode *xmltree;
std::string rootname;
std::string filename;
bool is_file;
};
// Global Config
extern Configuration *config;
#endif
|