Lift thrift/lib/cpp/test/TNotificationQueueTest.
[folly.git] / folly / io / async / ScopedEventBaseThread.cpp
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/io/async/ScopedEventBaseThread.h>
18
19 #include <thread>
20 #include <folly/Memory.h>
21
22 using namespace std;
23
24 namespace folly {
25
26 ScopedEventBaseThread::ScopedEventBaseThread(bool autostart) {
27   if (autostart) {
28     start();
29   }
30 }
31
32 ScopedEventBaseThread::~ScopedEventBaseThread() {
33   stop();
34 }
35
36 ScopedEventBaseThread::ScopedEventBaseThread(
37     ScopedEventBaseThread&& other) noexcept = default;
38
39 ScopedEventBaseThread& ScopedEventBaseThread::operator=(
40     ScopedEventBaseThread&& other) noexcept = default;
41
42 void ScopedEventBaseThread::start() {
43   if (running()) {
44     return;
45   }
46   eventBase_ = make_unique<EventBase>();
47   thread_ = make_unique<thread>(&EventBase::loopForever, &*eventBase_);
48   eventBase_->waitUntilRunning();
49 }
50
51 void ScopedEventBaseThread::stop() {
52   if (!running()) {
53     return;
54   }
55   eventBase_->terminateLoopSoon();
56   thread_->join();
57   eventBase_ = nullptr;
58   thread_ = nullptr;
59 }
60
61 bool ScopedEventBaseThread::running() {
62   CHECK(bool(eventBase_) == bool(thread_));
63   return eventBase_ && thread_;
64 }
65
66 }