YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/rocksdb/util/timeout_error.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/rocksdb/util/timeout_error.h"
15
16
using namespace std::literals;
17
18
namespace rocksdb {
19
20
namespace {
21
22
const std::string kTimeoutMsgs[] = {
23
    "Timeout Acquiring Mutex"s,                           // kMutexTimeout
24
    "Timeout waiting to lock key"s,                       // kLockTimeout
25
    "Failed to acquire lock due to max_num_locks limit"s  // kLockLimit
26
};
27
28
static_assert(arraysize(kTimeoutMsgs) == kElementsInTimeoutCode,
29
              "Wrong number of timeout messages");
30
31
} // namespace
32
33
176
const std::string& TimeoutErrorTag::ToMessage(Value value) {
34
176
  return kTimeoutMsgs[yb::to_underlying(value)];
35
176
}
36
37
static const std::string kTimeoutErrorCategoryName = "timeout";
38
39
static yb::StatusCategoryRegisterer timeout_error_category_registerer(
40
    yb::StatusCategoryDescription::Make<TimeoutErrorTag>(&kTimeoutErrorCategoryName));
41
42
} // namespace rocksdb