2017
[folly.git] / folly / io / async / ScopedEventBaseThread.h
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 #pragma once
18
19 #include <memory>
20 #include <thread>
21
22 #include <folly/io/async/EventBase.h>
23
24 namespace folly {
25
26 class EventBaseManager;
27
28 /**
29  * A helper class to start a new thread running a EventBase loop.
30  *
31  * The new thread will be started by the ScopedEventBaseThread constructor.
32  * When the ScopedEventBaseThread object is destroyed, the thread will be
33  * stopped.
34  */
35 class ScopedEventBaseThread {
36  public:
37   ScopedEventBaseThread();
38   explicit ScopedEventBaseThread(EventBaseManager* ebm);
39   ~ScopedEventBaseThread();
40
41   EventBase* getEventBase() const {
42     return &eb_;
43   }
44
45   std::thread::id getThreadId() const {
46     return th_.get_id();
47   }
48
49  private:
50   ScopedEventBaseThread(ScopedEventBaseThread&& other) = delete;
51   ScopedEventBaseThread& operator=(ScopedEventBaseThread&& other) = delete;
52
53   ScopedEventBaseThread(const ScopedEventBaseThread& other) = delete;
54   ScopedEventBaseThread& operator=(const ScopedEventBaseThread& other) = delete;
55
56   EventBaseManager* ebm_;
57   union {
58     mutable EventBase eb_;
59   };
60   std::thread th_;
61 };
62
63 }