service/kv_service/resdb_kv_client.cpp (52 lines of code) (raw):
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "service/kv_service/resdb_kv_client.h"
#include <glog/logging.h>
#include "service/kv_service/proto/kv_server.pb.h"
namespace sdk {
ResDBKVClient::ResDBKVClient(const resdb::ResDBConfig &config)
: TransactionConstructor(config) {}
int ResDBKVClient::Set(const std::string &key, const std::string &data) {
KVRequest request;
request.set_cmd(KVRequest::SET);
request.set_key(key);
request.set_value(data);
return SendRequest(request);
}
std::unique_ptr<std::string> ResDBKVClient::Get(const std::string &key) {
KVRequest request;
request.set_cmd(KVRequest::GET);
request.set_key(key);
KVResponse response;
int ret = SendRequest(request, &response);
if (ret != 0) {
LOG(ERROR) << "send request fail, ret:" << ret;
return nullptr;
}
return std::make_unique<std::string>(response.value());
}
std::unique_ptr<std::string> ResDBKVClient::GetAllValues() {
KVRequest request;
request.set_cmd(KVRequest::GETALLVALUES);
KVResponse response;
int ret = SendRequest(request, &response);
if (ret != 0) {
LOG(ERROR) << "send request fail, ret:" << ret;
return nullptr;
}
return std::make_unique<std::string>(response.value());
}
std::unique_ptr<std::string>
ResDBKVClient::GetRange(const std::string &min_key,
const std::string &max_key) {
KVRequest request;
request.set_cmd(KVRequest::GETRANGE);
request.set_key(min_key);
request.set_value(max_key);
KVResponse response;
int ret = SendRequest(request, &response);
if (ret != 0) {
LOG(ERROR) << "send request fail, ret:" << ret;
return nullptr;
}
return std::make_unique<std::string>(response.value());
}
} // namespace sdk