kvdb_echo_op.cpp 2.0 KB
Newer Older
1
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
2
//
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
// Licensed 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 "demo-serving/op/kvdb_echo_op.h"

namespace baidu {
namespace paddle_serving {
namespace predictor {

using baidu::paddle_serving::predictor::format::KVDBReq;
using baidu::paddle_serving::predictor::format::KVDBRes;
using baidu::paddle_serving::predictor::echo_kvdb_service::Request;
using baidu::paddle_serving::predictor::echo_kvdb_service::Response;

26
int KVDBEchoOp::inference() { debug(); }
27
int KVDBEchoOp::debug() {
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  // TODO: implement DEBUG mode
  baidu::paddle_serving::predictor::Resource& resource =
      baidu::paddle_serving::predictor::Resource::instance();
  std::shared_ptr<RocksDBWrapper> db = resource.getDB();
  const Request* req = dynamic_cast<const Request*>(get_request_message());
  Response* res = mutable_data<Response>();
  LOG(INFO) << "Receive request in KVDB echo service: "
            << req->ShortDebugString();
  for (size_t i = 0; i < req->reqs_size(); i++) {
    auto kvdbreq = req->reqs(i);
    std::string op = kvdbreq.op();
    std::string key = kvdbreq.key();
    std::string val = kvdbreq.value();
    if (op == "SET") {
      db->Put(key, val);
      KVDBRes* kvdb_value_res = res->mutable_ress()->Add();
      kvdb_value_res->set_value("OK");
    } else if (op == "GET") {
      std::string getvalue = db->Get(key);
      KVDBRes* kvdb_value_res = res->mutable_ress()->Add();
      kvdb_value_res->set_value(getvalue);
49
    }
50 51
  }
  return 0;
52 53 54 55 56 57
}

DEFINE_OP(KVDBEchoOp);
}
}
}