From: Maxim Mamontov Date: Mon, 2 Jun 2014 19:32:28 +0000 (+0300) Subject: Added possibility to transcode params to a proper encoding. X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/262f652e681a7b2f1686726a1f543ff5fad804da Added possibility to transcode params to a proper encoding. --- diff --git a/stglibs/srvconf.lib/parsers/property.cpp b/stglibs/srvconf.lib/parsers/property.cpp index 7edae520..6e9fc72c 100644 --- a/stglibs/srvconf.lib/parsers/property.cpp +++ b/stglibs/srvconf.lib/parsers/property.cpp @@ -46,10 +46,10 @@ if (value == 0 && ip != "0.0.0.0") return true; } -bool STG::TryParse(PROPERTY_PARSERS & parsers, const std::string & name, const char ** attr, const std::string & attrName) +bool STG::TryParse(PROPERTY_PARSERS & parsers, const std::string & name, const char ** attr, const std::string & fromEncoding, const std::string & attrName) { PROPERTY_PARSERS::iterator it(parsers.find(name)); if (it != parsers.end()) - return it->second->Parse(attr, attrName); + return it->second->Parse(attr, attrName, fromEncoding); return true; // Assume that non-existing params are ok. } diff --git a/stglibs/srvconf.lib/parsers/property.h b/stglibs/srvconf.lib/parsers/property.h index 59d47817..df033c99 100644 --- a/stglibs/srvconf.lib/parsers/property.h +++ b/stglibs/srvconf.lib/parsers/property.h @@ -33,7 +33,7 @@ class BASE_PROPERTY_PARSER { public: virtual ~BASE_PROPERTY_PARSER() {} - virtual bool Parse(const char ** attr, const std::string & attrName) = 0; + virtual bool Parse(const char ** attr, const std::string & attrName, const std::string & fromEncoding) = 0; }; template @@ -42,12 +42,30 @@ class PROPERTY_PARSER : public BASE_PROPERTY_PARSER public: typedef bool (* FUNC)(const char **, T &, const std::string &); PROPERTY_PARSER(T & v, FUNC f) : value(v), func(f) {} - virtual bool Parse(const char ** attr, const std::string & attrName) { return func(attr, value, attrName); } + PROPERTY_PARSER(T & v, FUNC f, const std::string & e) : value(v), func(f), encoding(e) {} + virtual bool Parse(const char ** attr, const std::string & attrName, const std::string & /*fromEncoding*/) { return func(attr, value, attrName); } private: T & value; FUNC func; + std::string encoding; }; +template <> +inline +bool PROPERTY_PARSER::Parse(const char ** attr, const std::string & attrName, const std::string & fromEncoding) +{ +if (!encoding.empty() && !fromEncoding.empty()) + { + std::string tmp; + if (!func(attr, value, attrName)) + return false; + value = IconvString(tmp, fromEncoding, encoding); + return true; + } +else + return func(attr, value, attrName); +} + typedef std::map PROPERTY_PARSERS; bool CheckValue(const char ** attr, const std::string & attrName); @@ -87,16 +105,20 @@ bool GetEncodedValue(const char ** attr, std::string & value, const std::string bool GetIPValue(const char ** attr, uint32_t& value, const std::string & attrName); template -void AddParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, const typename PROPERTY_PARSER::FUNC & func = GetValue); +inline +void AddParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, const typename PROPERTY_PARSER::FUNC & func = GetValue) +{ + parsers.insert(std::make_pair(ToLower(name), new PROPERTY_PARSER(value, func))); +} template inline -void AddParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, const typename PROPERTY_PARSER::FUNC & func) +void AddParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, const std::string & toEncoding, const typename PROPERTY_PARSER::FUNC & func = GetValue) { - parsers.insert(std::make_pair(ToLower(name), new PROPERTY_PARSER(value, func))); + parsers.insert(std::make_pair(ToLower(name), new PROPERTY_PARSER(value, func, toEncoding))); } -bool TryParse(PROPERTY_PARSERS & parsers, const std::string & name, const char ** attr, const std::string & attrName = "value"); +bool TryParse(PROPERTY_PARSERS & parsers, const std::string & name, const char ** attr, const std::string & fromEncoding, const std::string & attrName = "value"); } // namespace STG diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index 4f74ae8f..e0c2e58b 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -74,20 +74,21 @@ public: template int Exec(const std::string & request, C callback, void * data) { - P cp(callback, data); + P cp(callback, data, encoding); return ExecImpl(request, cp); } template int Exec(const std::string & tag, const std::string & request, C callback, void * data) { - P cp(tag, callback, data); + P cp(tag, callback, data, encoding); return ExecImpl(request, cp); } private: NETTRANSACT nt; + std::string encoding; std::string errorMsg; XML_Parser parser; @@ -160,7 +161,7 @@ return pImpl->Exec("", f, int SERVCONF::ChgAdmin(const ADMIN_CONF_RES & conf, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("ChgAdmin", "", f, data); +return pImpl->Exec("ChgAdmin", "", f, data); } int SERVCONF::AddAdmin(const std::string & login, @@ -170,7 +171,7 @@ int SERVCONF::AddAdmin(const std::string & login, int res = pImpl->Exec("AddAdmin", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("ChgAdmin", "", f, data); +return pImpl->Exec("ChgAdmin", "", f, data); } int SERVCONF::DelAdmin(const std::string & login, SIMPLE::CALLBACK f, void * data) @@ -192,7 +193,7 @@ return pImpl->Exec("", f, int SERVCONF::ChgTariff(const TARIFF_DATA_RES & tariffData, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData) + "", f, data); +return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData, encoding) + "", f, data); } int SERVCONF::AddTariff(const std::string & name, @@ -202,7 +203,7 @@ int SERVCONF::AddTariff(const std::string & name, int res = pImpl->Exec("AddTariff", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData) + "", f, data); +return pImpl->Exec("SetTariff", "" + CHG_TARIFF::Serialize(tariffData, encoding) + "", f, data); } int SERVCONF::DelTariff(const std::string & name, SIMPLE::CALLBACK f, void * data) @@ -227,7 +228,7 @@ int SERVCONF::ChgUser(const std::string & login, const USER_STAT_RES & stat, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("" + CHG_USER::Serialize(conf, stat) + "", f, data); +return pImpl->Exec("" + CHG_USER::Serialize(conf, stat, encoding) + "", f, data); } int SERVCONF::DelUser(const std::string & login, SIMPLE::CALLBACK f, void * data) @@ -243,7 +244,7 @@ int SERVCONF::AddUser(const std::string & login, int res = pImpl->Exec("AddUser", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("" + CHG_USER::Serialize(conf, stat) + "", f, data); +return pImpl->Exec("" + CHG_USER::Serialize(conf, stat, encoding) + "", f, data); } int SERVCONF::AuthBy(const std::string & login, AUTH_BY::CALLBACK f, void * data) @@ -275,7 +276,7 @@ return pImpl->Exec("", f int SERVCONF::ChgService(const SERVICE_CONF_RES & conf, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf) + "", f, data); +return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf, encoding) + "", f, data); } int SERVCONF::AddService(const std::string & name, @@ -285,7 +286,7 @@ int SERVCONF::AddService(const std::string & name, int res = pImpl->Exec("AddService", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf) + "", f, data); +return pImpl->Exec("SetService", "" + CHG_SERVICE::Serialize(conf, encoding) + "", f, data); } int SERVCONF::DelService(const std::string & name, SIMPLE::CALLBACK f, void * data) @@ -307,7 +308,7 @@ return pImpl->Exec("", f, data int SERVCONF::ChgCorp(const CORP_CONF_RES & conf, SIMPLE::CALLBACK f, void * data) { -return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf) + "", f, data); +return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf, encoding) + "", f, data); } int SERVCONF::AddCorp(const std::string & name, @@ -317,7 +318,7 @@ int SERVCONF::AddCorp(const std::string & name, int res = pImpl->Exec("AddCorp", "", f, data); if (res != st_ok) return res; -return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf) + "", f, data); +return pImpl->Exec("SetCorp", "" + CHG_CORP::Serialize(conf, encoding) + "", f, data); } int SERVCONF::DelCorp(const std::string & name, SIMPLE::CALLBACK f, void * data) @@ -335,6 +336,8 @@ SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port, const std::string & login, const std::string & password) : nt(server, port, login, password) { +setlocale(LC_ALL, ""); +encoding = nl_langinfo(CODESET); parser = XML_ParserCreate(NULL); } //----------------------------------------------------------------------------- @@ -343,6 +346,8 @@ SERVCONF::IMPL::IMPL(const std::string & server, uint16_t port, const std::string & login, const std::string & password) : nt(server, port, localAddress, localPort, login, password) { +setlocale(LC_ALL, ""); +encoding = nl_langinfo(CODESET); parser = XML_ParserCreate(NULL); } //-----------------------------------------------------------------------------