making thrift and folly header files compile clean with -Wunused-parameter
[folly.git] / folly / io / async / ScopedEventBaseThread.h
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 #pragma once
18
19 #include <memory>
20 #include <thread>
21 #include <folly/io/async/EventBase.h>
22
23 namespace folly {
24
25 /**
26  * A helper class to start a new thread running a TEventBase loop.
27  *
28  * The new thread will be started by the ScopedEventBaseThread constructor.
29  * When the ScopedEventBaseThread object is destroyed, the thread will be
30  * stopped.
31  */
32 class ScopedEventBaseThread {
33  public:
34   explicit ScopedEventBaseThread(bool autostart = true);
35   ~ScopedEventBaseThread();
36
37   ScopedEventBaseThread(ScopedEventBaseThread&& other) noexcept;
38   ScopedEventBaseThread &operator=(ScopedEventBaseThread&& other) noexcept;
39
40   /**
41    * Get a pointer to the TEventBase driving this thread.
42    */
43   EventBase* getEventBase() const {
44     return eventBase_.get();
45   }
46
47   void start();
48   void stop();
49   bool running();
50
51  private:
52   ScopedEventBaseThread(const ScopedEventBaseThread& other) = delete;
53   ScopedEventBaseThread& operator=(const ScopedEventBaseThread& other) = delete;
54
55   std::unique_ptr<EventBase> eventBase_;
56   std::unique_ptr<std::thread> thread_;
57 };
58
59 }