YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/util/ev_util.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/util/ev_util.h"
15
16
#include "yb/util/debug-util.h"
17
18
namespace yb {
19
20
4.96M
void EvTimerHolder::Init(const ev::loop_ref& loop) {
21
4.96M
  auto* timer = timer_.get();
22
4.96M
  LOG_IF
(DFATAL, timer) << "Timer " << timer << " has been already initialized " << this17.8k
;
23
4.96M
  timer_.reset(timer = new ev::timer());
24
4.96M
  timer->set(loop);
25
4.96M
  VLOG
(3) << "Initialized ev::timer " << timer << " holder " << this27.4k
;
26
4.96M
  VLOG
(5) << GetStackTrace()23.8k
;
27
4.96M
}
28
29
12.6M
void EvTimerHolder::Shutdown() {
30
12.6M
  VLOG
(3) << "EvTimerHolder::Shutdown " << this3.19k
;
31
12.6M
  VLOG
(5) << GetStackTrace()1.67k
;
32
12.6M
  std::unique_ptr<ev::timer> timer(timer_.release());
33
12.6M
  if (timer) {
34
18.4E
    VLOG(3) << "EvTimerHolder::Shutdown - stopping timer " << timer.get();
35
3.97M
    timer->stop();
36
3.97M
  }
37
12.6M
}
38
39
40
} // namespace yb