YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/tablet/tablet_error.h
Line
Count
Source
1
//
2
// Copyright (c) YugaByte, Inc.
3
//
4
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
// in compliance with the License.  You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software distributed under the License
10
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11
// or implied.  See the License for the specific language governing permissions and limitations
12
// under the License.
13
//
14
//
15
16
#ifndef YB_TABLET_TABLET_ERROR_H
17
#define YB_TABLET_TABLET_ERROR_H
18
19
#include "yb/tablet/metadata.pb.h"
20
#include "yb/util/status_ec.h"
21
22
namespace yb {
23
namespace tablet {
24
25
struct RaftGroupStateErrorTag : IntegralErrorTag<tablet::RaftGroupStatePB> {
26
  // This category id is part of the wire protocol and should not be changed once released.
27
  static constexpr uint8_t kCategory = 10;
28
29
49.3k
  static const std::string& ToMessage(Value code) {
30
49.3k
    return tablet::RaftGroupStatePB_Name(code);
31
49.3k
  }
32
};
33
34
typedef StatusErrorCodeImpl<RaftGroupStateErrorTag> RaftGroupStateError;
35
36
} // namespace tablet
37
} // namespace yb
38
39
#endif // YB_TABLET_TABLET_ERROR_H