/Users/deen/code/yugabyte-db/src/yb/tserver/tablet_peer_lookup.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_TSERVER_TABLET_PEER_LOOKUP_H_ |
33 | | #define YB_TSERVER_TABLET_PEER_LOOKUP_H_ |
34 | | |
35 | | #include <memory> |
36 | | |
37 | | #include "yb/util/status_fwd.h" |
38 | | |
39 | | namespace yb { |
40 | | |
41 | | class HostPort; |
42 | | class NodeInstancePB; |
43 | | class ServerRegistrationPB; |
44 | | |
45 | | namespace consensus { |
46 | | class StartRemoteBootstrapRequestPB; |
47 | | } // namespace consensus |
48 | | |
49 | | namespace tablet { |
50 | | class TabletPeer; |
51 | | } // namespace tablet |
52 | | |
53 | | namespace tserver { |
54 | | |
55 | | // Pure virtual interface that provides an abstraction for something that |
56 | | // contains and manages TabletPeers. This interface is implemented on both |
57 | | // tablet servers and master servers. |
58 | | // TODO: Rename this interface. |
59 | | class TabletPeerLookupIf { |
60 | | public: |
61 | 296 | virtual ~TabletPeerLookupIf() {} |
62 | | |
63 | | virtual CHECKED_STATUS GetTabletPeer( |
64 | | const std::string& tablet_id, |
65 | | std::shared_ptr<tablet::TabletPeer>* tablet_peer) const = 0; |
66 | | |
67 | | virtual const NodeInstancePB& NodeInstance() const = 0; |
68 | | |
69 | | virtual CHECKED_STATUS GetRegistration(ServerRegistrationPB* reg) const = 0; |
70 | | |
71 | | virtual CHECKED_STATUS StartRemoteBootstrap( |
72 | | const consensus::StartRemoteBootstrapRequestPB& req) = 0; |
73 | | }; |
74 | | |
75 | | } // namespace tserver |
76 | | } // namespace yb |
77 | | |
78 | | #endif // YB_TSERVER_TABLET_PEER_LOOKUP_H_ |