Split EventBaseThread from ScopedEventBaseThread
[folly.git] / folly / io / async / ScopedEventBaseThread.cpp
1 /*
2  * Copyright 2016 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
21 #include <folly/Memory.h>
22 #include <folly/io/async/EventBaseManager.h>
23
24 using namespace std;
25
26 namespace folly {
27
28 static void run(EventBaseManager* ebm, EventBase* eb) {
29   ebm->setEventBase(eb, false);
30   eb->loopForever();
31   ebm->clearEventBase();
32 }
33
34 ScopedEventBaseThread::ScopedEventBaseThread()
35     : ScopedEventBaseThread(nullptr) {}
36
37 ScopedEventBaseThread::ScopedEventBaseThread(EventBaseManager* ebm)
38     : ebm_(ebm ? ebm : EventBaseManager::get()) {
39   th_ = thread(run, ebm_, &eb_);
40   eb_.waitUntilRunning();
41 }
42
43 ScopedEventBaseThread::~ScopedEventBaseThread() {
44   eb_.terminateLoopSoon();
45   th_.join();
46 }
47
48 }