henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 11 | #ifndef RTC_BASE_MESSAGEHANDLER_H_ |
| 12 | #define RTC_BASE_MESSAGEHANDLER_H_ |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 13 | |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 14 | #include <memory> |
| 15 | #include <utility> |
kwiberg | 0eb15ed | 2015-12-17 11:04:15 | [diff] [blame] | 16 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 17 | #include "rtc_base/constructormagic.h" |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 18 | |
| 19 | namespace rtc { |
| 20 | |
| 21 | struct Message; |
| 22 | |
| 23 | // Messages get dispatched to a MessageHandler |
| 24 | |
| 25 | class MessageHandler { |
| 26 | public: |
| 27 | virtual ~MessageHandler(); |
| 28 | virtual void OnMessage(Message* msg) = 0; |
| 29 | |
| 30 | protected: |
| 31 | MessageHandler() {} |
| 32 | |
| 33 | private: |
| 34 | RTC_DISALLOW_COPY_AND_ASSIGN(MessageHandler); |
| 35 | }; |
| 36 | |
| 37 | // Helper class to facilitate executing a functor on a thread. |
| 38 | template <class ReturnT, class FunctorT> |
| 39 | class FunctorMessageHandler : public MessageHandler { |
| 40 | public: |
Karl Wiberg | d6b4819 | 2017-10-16 21:01:06 | [diff] [blame] | 41 | explicit FunctorMessageHandler(FunctorT&& functor) |
| 42 | : functor_(std::forward<FunctorT>(functor)) {} |
Henrik Kjellander | ec78f1c | 2017-06-29 05:52:50 | [diff] [blame] | 43 | virtual void OnMessage(Message* msg) { |
| 44 | result_ = functor_(); |
| 45 | } |
| 46 | const ReturnT& result() const { return result_; } |
| 47 | |
| 48 | // Returns moved result. Should not call result() or MoveResult() again |
| 49 | // after this. |
| 50 | ReturnT MoveResult() { return std::move(result_); } |
| 51 | |
| 52 | private: |
| 53 | FunctorT functor_; |
| 54 | ReturnT result_; |
| 55 | }; |
| 56 | |
| 57 | // Specialization for ReturnT of void. |
| 58 | template <class FunctorT> |
| 59 | class FunctorMessageHandler<void, FunctorT> : public MessageHandler { |
| 60 | public: |
| 61 | explicit FunctorMessageHandler(const FunctorT& functor) |
| 62 | : functor_(functor) {} |
| 63 | virtual void OnMessage(Message* msg) { |
| 64 | functor_(); |
| 65 | } |
| 66 | void result() const {} |
| 67 | void MoveResult() {} |
| 68 | |
| 69 | private: |
| 70 | FunctorT functor_; |
| 71 | }; |
| 72 | |
| 73 | } // namespace rtc |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 74 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 75 | #endif // RTC_BASE_MESSAGEHANDLER_H_ |