YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/master/master_dcl_service.cc
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#include "yb/master/master_dcl.service.h"
15
#include "yb/master/master_service_base.h"
16
#include "yb/master/master_service_base-internal.h"
17
#include "yb/master/permissions_manager.h"
18
19
namespace yb {
20
namespace master {
21
22
namespace {
23
24
class MasterDclServiceImpl : public MasterServiceBase, public MasterDclIf {
25
 public:
26
  explicit MasterDclServiceImpl(Master* master)
27
8.03k
      : MasterServiceBase(master), MasterDclIf(master->metric_entity()) {}
28
29
  MASTER_SERVICE_IMPL_ON_LEADER_WITH_LOCK(
30
    PermissionsManager,
31
    (AlterRole)
32
    (CreateRole)
33
    (DeleteRole)
34
    (GetPermissions)
35
    (GrantRevokePermission)
36
    (GrantRevokeRole)
37
  )
38
};
39
40
} // namespace
41
42
8.03k
std::unique_ptr<rpc::ServiceIf> MakeMasterDclService(Master* master) {
43
8.03k
  return std::make_unique<MasterDclServiceImpl>(master);
44
8.03k
}
45
46
} // namespace master
47
} // namespace yb