Lines Matching defs:jsonData
114 Json2::Value jsonData = JsonReader::ParseJsonData2(message);
116 bool parsingSuccessful = jsonData.IsNull() ? false : true;
121 if (!ProcessCommandValidate(parsingSuccessful, jsonData, errors)) {
125 CommandLine::CommandType type = GetCommandType(jsonData["type"].AsString());
130 std::string command = jsonData["command"].AsString();
134 Json2::Value val = jsonData["args"];
145 const Json2::Value& jsonData,
153 if (!jsonData.IsObject()) {
158 if (!jsonData.IsMember("type") || !jsonData.IsMember("command") || !jsonData.IsMember("version")) {
163 if (!regex_match(jsonData["version"].AsString(),
256 const Json2::Value& jsonData,
261 CommandLineFactory::CreateCommandLine(commandName, commandType, jsonData, *socket);