本文整理汇总了C++中plugin::SettingsResponseMessage类的典型用法代码示例。如果您正苦于以下问题:C++ SettingsResponseMessage类的具体用法?C++ SettingsResponseMessage怎么用?C++ SettingsResponseMessage使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SettingsResponseMessage类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
nscapi::settings_proxy::string_list nscapi::settings_proxy::get_keys(std::string path) {
nscapi::settings_proxy::string_list ret;
Plugin::SettingsRequestMessage request;
nscapi::protobuf::functions::create_simple_header(request.mutable_header());
Plugin::SettingsRequestMessage::Request *payload = request.add_payload();
payload->set_plugin_id(plugin_id_);
Plugin::SettingsRequestMessage::Request::Query *item = payload->mutable_query();
item->mutable_node()->set_path(path);
item->set_type(Plugin::Common_DataType_LIST);
item->set_recursive(false);
std::string response_string;
core_->settings_query(request.SerializeAsString(), response_string);
Plugin::SettingsResponseMessage response;
response.ParseFromString(response_string);
if (response.payload_size() != 1 || !response.payload(0).has_query()) {
return ret;
}
const ::Plugin::Common_AnyDataType value = response.payload(0).query().value();
for (int i=0;i<value.list_data_size();++i) {
ret.push_back(value.list_data(i));
}
return ret;
}
示例2: request
NSCAPI::errorReturn NSCAPIProtobuf2Json(const char* object, const char* request_buffer, unsigned int request_buffer_len, char ** response_buffer, unsigned int *response_buffer_len) {
std::string request(request_buffer, request_buffer_len), response, obj(object);
try {
json_spirit::Object root;
if (obj == "SettingsResponseMessage") {
Plugin::SettingsResponseMessage message;
message.ParseFromString(request);
root = json_pb::Plugin::SettingsResponseMessage::to_json(message);
} else if (obj == "RegistryResponseMessage") {
Plugin::RegistryResponseMessage message;
message.ParseFromString(request);
root = json_pb::Plugin::RegistryResponseMessage::to_json(message);
} else if (obj == "QueryResponseMessage") {
Plugin::QueryResponseMessage message;
message.ParseFromString(request);
root = json_pb::Plugin::QueryResponseMessage::to_json(message);
} else {
LOG_ERROR_STD("Invalid type: " + obj);
return NSCAPI::hasFailed;
}
std::string response = json_spirit::write(root);
*response_buffer_len = static_cast<unsigned int>(response.size());
if (response.empty())
*response_buffer = NULL;
else {
*response_buffer = new char[*response_buffer_len + 10];
memcpy(*response_buffer, response.c_str(), *response_buffer_len);
}
} catch (const json_spirit::ParseError &e) {
LOG_ERROR_STD("Failed to parse JSON: " + e.reason_);
return NSCAPI::hasFailed;
}
return NSCAPI::isSuccess;
}
示例3:
void nscapi::settings_proxy::set_string(std::string path, std::string key, std::string value) {
Plugin::SettingsRequestMessage request;
nscapi::protobuf::functions::create_simple_header(request.mutable_header());
Plugin::SettingsRequestMessage::Request *payload = request.add_payload();
payload->set_plugin_id(plugin_id_);
Plugin::SettingsRequestMessage::Request::Update *item = payload->mutable_update();
item->mutable_node()->set_key(key);
item->mutable_node()->set_path(path);
item->mutable_value()->set_string_data(value);
std::string response_string;
core_->settings_query(request.SerializeAsString(), response_string);
Plugin::SettingsResponseMessage response;
response.ParseFromString(response_string);
report_errors(response, core_, "update " + path + "." + key);
}