YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/rpc/remote_method.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
#ifndef YB_RPC_REMOTE_METHOD_H_
33
#define YB_RPC_REMOTE_METHOD_H_
34
35
#include <string>
36
37
#include "yb/util/slice.h"
38
39
namespace yb {
40
namespace rpc {
41
42
class RemoteMethodPB;
43
44
// Simple class that acts as a container for a fully qualified remote RPC name.
45
// This class is also copyable and assignable for convenience reasons.
46
class RemoteMethod {
47
 public:
48
1.48M
  RemoteMethod() {}
49
  RemoteMethod(std::string service_name, std::string method_name);
50
  RemoteMethod(const RemoteMethod& rhs) = default;
51
56
  RemoteMethod(RemoteMethod&& rhs) = default;
52
53
  RemoteMethod& operator=(const RemoteMethod& rhs) = default;
54
1.48M
  RemoteMethod& operator=(RemoteMethod&& rhs) = default;
55
56
  void ToPB(RemoteMethodPB* pb) const;
57
3.40M
  const std::string& service_name() const { return service_name_; }
58
3.44M
  const std::string& method_name() const { return method_name_; }
59
19.9M
  Slice serialized() const { return serialized_; }
60
11.7M
  Slice serialized_body() const { return Slice(serialized_).WithoutPrefix(2); }
61
62
  std::string ToString() const;
63
64
  size_t DynamicMemoryUsage() const;
65
66
 private:
67
  std::string service_name_;
68
  std::string method_name_;
69
  std::string serialized_;
70
};
71
72
} // namespace rpc
73
} // namespace yb
74
75
#endif // YB_RPC_REMOTE_METHOD_H_