2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Author : Boris Mikhailenko <stg34@ua.fm>
27 $Date: 2009/06/22 16:00:38 $
30 //---------------------------------------------------------------------------
34 #include <sys/types.h>
42 //---------------------------------------------------------------------------
43 //#define CONF_STR_LEN 300
44 //typedef char STRING[CONF_STR_LEN];
46 typedef bool (*StringCaseCmp_t)(const string & str1, const string & str2);
51 mutable map<string, string, StringCaseCmp_t> param_val;
52 mutable map<string, string>::iterator it;
61 CONFIGFILE(const string &fn);
63 const string & GetFileName() const;
65 // 5 ÆÕÎËÃÉÉ Read* ×ÏÚ×ÒÁÝÁÀÔ 0 ÐÒÉ ÕÓÐÅÛÎÏÍ ÓÞÉÔÙ×ÁÎÉÉ
66 // É EINVAL ÐÒÉ ÏÔÓÕÔÓ×ÉÉ ÐÁÒÁÍÅÔÒÁ É ×ÙÓÔÁ×ÌÑÀÔ defaulValue
67 int ReadString(const string & param, char * val, int * maxLen, const char * defaultVal) const;
68 int ReadString(const string & param, string * val, const string & defaultVal) const;
70 int FindParameter(const string ¶meter, string * value) const;
72 int ReadTime (const string & param, time_t *, time_t) const;
74 int ReadShortInt (const string & param, short int *, short int) const;
75 int ReadInt (const string & param, int *, int) const;
76 int ReadLongInt (const string & param, long int *, long int) const;
77 int ReadLongLongInt(const string & param, int64_t *, int64_t) const;
79 int ReadUShortInt (const string & param, unsigned short int *, unsigned short int) const;
80 int ReadUInt (const string & param, unsigned int *, unsigned int) const;
81 int ReadULongInt (const string & param, unsigned long int *, unsigned long int) const;
82 int ReadULongLongInt(const string & param, uint64_t *, uint64_t) const;
84 int ReadDouble (const string & param, double * val, double defaultVal) const;
86 int WriteString(const string & param, const char * val);
87 int WriteString(const string & param, const string & val);
88 int WriteInt (const string & param, int64_t val);
89 int WriteDouble(const string & param, double val);
93 //---------------------------------------------------------------------------