1 #include <Poco/JSON/Object.h>
2 #include <Poco/JSON/Array.h>
3 #include <Poco/JSON/JSON.h>
4 #include <Poco/JSON/Stringifier.h>
5 #include <Poco/JSON/Parser.h>
6 #include <Poco/JSON/JSONException.h>
26 params.push_back(std::make_pair(paramName, paramValue));
35 Poco::JSON::Object::Ptr obj =
new Poco::JSON::Object();
39 Poco::JSON::Array::Ptr vec =
new Poco::JSON::Array();
42 for (
size_t i=0;i<params.size();++i)
44 Poco::JSON::Object::Ptr elem =
new Poco::JSON::Object();
46 elem->set(params[i].first, params[i].second);
49 std::stringstream ostr;
50 Poco::JSON::Stringifier::stringify(obj, ostr);
54 catch(std::exception& e)
72 Poco::JSON::Parser parser;
73 Poco::Dynamic::Var res = parser.parse(json);
74 Poco::JSON::Object::Ptr obj = res.extract<Poco::JSON::Object::Ptr>();
78 indexName = tmp.convert<std::string>();
82 documentFile = tmp.convert<std::string>();
85 if (!queryParameters.isNull())
87 for (
size_t j = 0;j <queryParameters->size();++j)
89 tmp = queryParameters->get(j);
93 if (tmp.type() ==
typeid(Poco::JSON::Object::Ptr))
95 Poco::JSON::Object::Ptr elem = tmp.extract<Poco::JSON::Object::Ptr>();
96 std::vector<std::string> vecNames;
97 elem->getNames(vecNames);
98 for (
size_t i=0;i<vecNames.size();++i)
100 tmp = elem->get(vecNames[i]);
102 params.push_back(std::make_pair(vecNames[i], tmp.convert<std::string>()));
111 catch(Poco::JSON::JSONException& e)
123 is.seekg(0, std::ios::end);
124 json.resize(is.tellg());
125 is.seekg(0, std::ios::beg);
126 is.read(const_cast<char*>(json.c_str()), json.size());