/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 | 1.54M | void EvTimerHolder::Init(const ev::loop_ref& loop) { |
21 | 1.54M | auto* timer = timer_.get(); |
22 | 8.29k | LOG_IF(DFATAL, timer) << "Timer " << timer << " has been already initialized " << this; |
23 | 1.54M | timer_.reset(timer = new ev::timer()); |
24 | 1.54M | timer->set(loop); |
25 | 9.15k | VLOG(3) << "Initialized ev::timer " << timer << " holder " << this; |
26 | 7.50k | VLOG(5) << GetStackTrace(); |
27 | 1.54M | } |
28 | | |
29 | 2.41M | void EvTimerHolder::Shutdown() { |
30 | 942 | VLOG(3) << "EvTimerHolder::Shutdown " << this; |
31 | 18.4E | VLOG(5) << GetStackTrace(); |
32 | 2.41M | std::unique_ptr<ev::timer> timer(timer_.release()); |
33 | 2.41M | if (timer) { |
34 | 174 | VLOG(3) << "EvTimerHolder::Shutdown - stopping timer " << timer.get(); |
35 | 902k | timer->stop(); |
36 | 902k | } |
37 | 2.41M | } |
38 | | |
39 | | |
40 | | } // namespace yb |