X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ae8686e733897fb5ead33d7a7c3fa8569a9c23c5..46b0747592074017ff0ea4b33d4a7194235886e5:/stglibs/conffiles.lib/conffiles.cpp diff --git a/stglibs/conffiles.lib/conffiles.cpp b/stglibs/conffiles.lib/conffiles.cpp deleted file mode 100644 index b247d041..00000000 --- a/stglibs/conffiles.lib/conffiles.cpp +++ /dev/null @@ -1,393 +0,0 @@ -/* - * 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 - */ - -/* - * Date: 27.10.2002 - */ - -/* - * Author : Boris Mikhailenko - */ - - /* - $Revision: 1.5 $ - $Date: 2009/10/22 11:40:22 $ - */ - -//--------------------------------------------------------------------------- -#include -#include -#include - -#include - -#include "conffiles.h" -#include "common.h" - -using namespace std; - -//--------------------------------------------------------------------------- -bool StringCaseCmp(const string & str1, const string & str2) -{ -return (strcasecmp(str1.c_str(), str2.c_str()) < 0); -} -//--------------------------------------------------------------------------- -CONFIGFILE::CONFIGFILE(const string & fn, bool nook) - : param_val(StringCaseCmp), - fileName(fn), - error(0) -{ -ifstream f(fileName.c_str()); - -if (!f) - { - if (!nook) - error = -1; - return; - } - -string line; -while (getline(f, line)) - { - size_t pos = line.find('#'); - if (pos != string::npos) - line.resize(pos); - - if (line.find_first_not_of(" \t\r") == string::npos) - continue; - - pos = line.find_first_of('='); - if (pos == string::npos) - { - error = -1; - return; - } - - string parameter = line.substr(0, pos); - string value = line.substr(pos + 1); - param_val[parameter] = value; - } -} -//--------------------------------------------------------------------------- -CONFIGFILE::~CONFIGFILE() -{ -Flush(); -} -//--------------------------------------------------------------------------- -const string & CONFIGFILE::GetFileName() const -{ -return fileName; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::Error() const -{ -int e = error; -error = 0; -return e; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::Flush() const -{ -ofstream f(fileName.c_str()); -if (!f.is_open()) - { - error = EIO; - return EIO; - } - -map::const_iterator it = param_val.begin(); -while (it != param_val.end()) - { - f << it->first << "=" << it->second << "\n"; - ++it; - } - -f.close(); - -return 0; -} -/*//--------------------------------------------------------------------------- -int CONFIGFILE::ReadString(const string & param, char * str, int * maxLen, const char * defaultVal) const -{ -it = param_val.find(param); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - strncpy(str, param_val[param].c_str(), *maxLen); - *maxLen = param_val[param].size(); - return 0; - } - -strncpy(str, defaultVal, *maxLen); -*maxLen = strlen(defaultVal); -return -1; -}*/ -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadString(const string & param, string * val, const string & defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - *val = it->second; - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -void CONFIGFILE::WriteString(const string & param, const string &val) -{ -param_val[param] = val; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadTime(const string & param, time_t * val, time_t defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); - -if (it != param_val.end()) - { - char *res; - *val = strtol(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadInt(const string & param, int * val, int defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = strtol(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadUInt(const string & param, unsigned int * val, unsigned int defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = strtoul(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadLongInt(const string & param, long int * val, long int defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = strtol(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadULongInt(const string & param, unsigned long int * val, unsigned long int defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = strtoul(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadLongLongInt(const string & param, int64_t * val, int64_t defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = strtoll(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadULongLongInt(const string & param, uint64_t * val, uint64_t defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = strtoull(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadShortInt(const string & param, short int * val, short int defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = (short)strtol(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadUShortInt(const string & param, unsigned short int * val, unsigned short int defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = (short)strtoul(it->second.c_str(), &res, 10); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -void CONFIGFILE::WriteInt(const string & param, int64_t val) -{ -string s; -x2str(val, s); -param_val[param] = s; -} -//--------------------------------------------------------------------------- -int CONFIGFILE::ReadDouble(const string & param, double * val, double defaultVal) const -{ -const map::const_iterator it(param_val.find(param)); -// îÁÛÌÉ ÎÕÖÎÕÀ ÐÅÒÅÍÅÎÎÕÀ - -if (it != param_val.end()) - { - // þÔÏ-ÔÏ ÓÔÏÉÔ - char *res; - *val = strtod(it->second.c_str(), &res); - if (*res != 0) - { - *val = defaultVal; //Error! - return EINVAL; - } - return 0; - } - -*val = defaultVal; -return -1; -} -//--------------------------------------------------------------------------- -void CONFIGFILE::WriteDouble(const string & param, double val) -{ -char s[30]; -snprintf(s, 30, "%f", val); -param_val[param] = s; -} -//---------------------------------------------------------------------------