Support naming a ScopedEventBaseThread
[folly.git] / folly / io / async / ScopedEventBaseThread.cpp
1 /*
2  * Copyright 2017 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/Function.h>
22 #include <folly/Range.h>
23 #include <folly/ThreadName.h>
24 #include <folly/io/async/EventBaseManager.h>
25
26 using namespace std;
27
28 namespace folly {
29
30 static void run(EventBaseManager* ebm, EventBase* eb, const StringPiece& name) {
31   if (name.size()) {
32     folly::setThreadName(name);
33   }
34
35   ebm->setEventBase(eb, false);
36   eb->loopForever();
37
38   // must destruct in io thread for on-destruction callbacks
39   EventBase::StackFunctionLoopCallback cb([=] { ebm->clearEventBase(); });
40   eb->runOnDestruction(&cb);
41   eb->~EventBase();
42 }
43
44 ScopedEventBaseThread::ScopedEventBaseThread()
45     : ScopedEventBaseThread(nullptr, "") {}
46
47 ScopedEventBaseThread::ScopedEventBaseThread(const StringPiece& name)
48     : ScopedEventBaseThread(nullptr, name) {}
49
50 ScopedEventBaseThread::ScopedEventBaseThread(EventBaseManager* ebm)
51     : ScopedEventBaseThread(ebm, "") {}
52
53 ScopedEventBaseThread::ScopedEventBaseThread(
54     EventBaseManager* ebm,
55     const StringPiece& name)
56     : ebm_(ebm ? ebm : EventBaseManager::get()) {
57   new (&eb_) EventBase();
58   th_ = thread(run, ebm_, &eb_, name);
59   eb_.waitUntilRunning();
60 }
61
62 ScopedEventBaseThread::~ScopedEventBaseThread() {
63   eb_.terminateLoopSoon();
64   th_.join();
65 }
66
67 }