}
if (!data->request.cash.res_empty())
- cout << "cash=" << info.cash << endl;
+ cout << "cash = " << info.cash << endl;
if (!data->request.credit.res_empty())
- cout << "credit=" << info.credit << endl;
+ cout << "credit = " << info.credit << endl;
if (!data->request.creditExpire.res_empty())
{
strftime(buf, 32, "%Y-%m-%d", &brokenTime);
- cout << "creditExpire=" << buf << endl;
+ cout << "creditExpire = " << buf << endl;
}
if (!data->request.down.res_empty())
- cout << "down=" << info.down << endl;
+ cout << "down = " << info.down << endl;
if (!data->request.passive.res_empty())
- cout << "passive=" << info.passive << endl;
+ cout << "passive = " << info.passive << endl;
if (!data->request.disableDetailStat.res_empty())
- cout << "disableDetailStat=" << info.disableDetailStat << endl;
+ cout << "disableDetailStat = " << info.disableDetailStat << endl;
if (!data->request.alwaysOnline.res_empty())
- cout << "alwaysOnline=" << info.alwaysOnline << endl;
+ cout << "alwaysOnline = " << info.alwaysOnline << endl;
if (!data->request.prepaidTraff.res_empty())
- cout << "prepaidTraff=" << info.prepaidTraff << endl;
+ cout << "prepaidTraff = " << info.prepaidTraff << endl;
for (int i = 0; i < DIR_NUM; i++)
{
if (!data->request.sessionUpload[i].res_empty())
- cout << "session upload for dir" << i << "=" << info.stat.su[i] << endl;
+ cout << "session upload for dir " << i << " = " << info.stat.su[i] << endl;
if (!data->request.sessionDownload[i].res_empty())
- cout << "session download for dir" << i << "=" << info.stat.sd[i] << endl;
+ cout << "session download for dir " << i << "=" << info.stat.sd[i] << endl;
}
for (int i = 0; i < DIR_NUM; i++)
{
if (!data->request.monthUpload[i].res_empty())
- cout << "month upload for dir" << i << "=" << info.stat.mu[i] << endl;
+ cout << "month upload for dir " << i << " = " << info.stat.mu[i] << endl;
if (!data->request.monthDownload[i].res_empty())
- cout << "month download for dir" << i << "=" << info.stat.md[i] << endl;
+ cout << "month download for dir " << i << " = " << info.stat.md[i] << endl;
}
for (int i = 0; i < USERDATA_NUM; i++)
{
string str;
ConvertFromKOI8(info.userData[i], &str);
- cout << "userdata" << i << "=" << str << endl;
+ cout << "user data " << i << " = " << str << endl;
}
}
{
string str;
ConvertFromKOI8(*strReqParams[i].value, &str);
- cout << strReqParams[i].name << "=" << str << endl;
+ cout << strReqParams[i].name << " = " << str << endl;
}
}
data->result = true;
return value;
}
-template <typename T>
-void addParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, bool encoded = false);
-
-template <typename T>
-void addParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, bool /*encoded*/)
+uint32_t getIPValue(const char ** attr)
{
- parsers.insert(std::make_pair(ToLower(name), new PROPERTY_PARSER<T>(value, getValue<T>)));
+if (checkValue(attr))
+ return inet_strington(attr[1]);
+return 0;
}
-template <>
-void addParser<std::string>(PROPERTY_PARSERS & parsers, const std::string & name, std::string & value, bool encoded)
+template <typename T>
+void addParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, const typename PROPERTY_PARSER<T>::FUNC & func = getValue<T>);
+
+template <typename T>
+void addParser(PROPERTY_PARSERS & parsers, const std::string & name, T & value, const typename PROPERTY_PARSER<T>::FUNC & func)
{
- if (encoded)
- parsers.insert(std::make_pair(ToLower(name), new PROPERTY_PARSER<std::string>(value, getEncodedValue)));
- else
- parsers.insert(std::make_pair(ToLower(name), new PROPERTY_PARSER<std::string>(value, getValue<std::string>)));
+ parsers.insert(std::make_pair(ToLower(name), new PROPERTY_PARSER<T>(value, func)));
}
void tryParse(PROPERTY_PARSERS & parsers, const std::string & name, const char ** attr)
addParser(propertyParsers, "disableDetailStat", info.disableDetailStat);
addParser(propertyParsers, "connected", info.connected);
addParser(propertyParsers, "alwaysOnline", info.alwaysOnline);
- addParser(propertyParsers, "ip", info.ip);
- addParser(propertyParsers, "ips", info.ips);
+ addParser(propertyParsers, "currIP", info.ip, getIPValue);
+ addParser(propertyParsers, "ip", info.ips);
addParser(propertyParsers, "tariff", info.tariff);
- addParser(propertyParsers, "group", info.group, true);
- addParser(propertyParsers, "note", info.note, true);
- addParser(propertyParsers, "email", info.email, true);
- addParser(propertyParsers, "name", info.name, true);
- addParser(propertyParsers, "address", info.address, true);
- addParser(propertyParsers, "phone", info.phone, true);
+ addParser(propertyParsers, "group", info.group, getEncodedValue);
+ addParser(propertyParsers, "note", info.note, getEncodedValue);
+ addParser(propertyParsers, "email", info.email, getEncodedValue);
+ addParser(propertyParsers, "name", info.name, getEncodedValue);
+ addParser(propertyParsers, "address", info.address, getEncodedValue);
+ addParser(propertyParsers, "phone", info.phone, getEncodedValue);
addParser(propertyParsers, "traff", info.stat);
for (size_t i = 0; i < USERDATA_NUM; ++i)
- addParser(propertyParsers, "userData" + x2str(i), info.userData[i], true);
+ addParser(propertyParsers, "userData" + x2str(i), info.userData[i], getEncodedValue);
}
//-----------------------------------------------------------------------------
PARSER_GET_USER::~PARSER_GET_USER()