/* * Copyright (c) 2020 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef RTC_BASE_THREAD_MESSAGE_H_ #define RTC_BASE_THREAD_MESSAGE_H_ #include #include #include #include "api/scoped_refptr.h" #include "rtc_base/location.h" #include "rtc_base/message_handler.h" namespace rtc { // Derive from this for specialized data // App manages lifetime, except when messages are purged class MessageData { public: MessageData() {} virtual ~MessageData() {} }; template class TypedMessageData : public MessageData { public: explicit TypedMessageData(const T& data) : data_(data) {} const T& data() const { return data_; } T& data() { return data_; } private: T data_; }; // Like TypedMessageData, but for pointers that require a delete. template class ScopedMessageData : public MessageData { public: explicit ScopedMessageData(std::unique_ptr data) : data_(std::move(data)) {} const T& data() const { return *data_; } T& data() { return *data_; } T* Release() { return data_.release(); } private: std::unique_ptr data_; }; // Like ScopedMessageData, but for reference counted pointers. template class ScopedRefMessageData : public MessageData { public: explicit ScopedRefMessageData(T* data) : data_(data) {} const scoped_refptr& data() const { return data_; } scoped_refptr& data() { return data_; } private: scoped_refptr data_; }; template inline MessageData* WrapMessageData(const T& data) { return new TypedMessageData(data); } template inline const T& UseMessageData(MessageData* data) { return static_cast*>(data)->data(); } template class DisposeData : public MessageData { public: explicit DisposeData(T* data) : data_(data) {} virtual ~DisposeData() { delete data_; } private: T* data_; }; const uint32_t MQID_ANY = static_cast(-1); const uint32_t MQID_DISPOSE = static_cast(-2); // No destructor struct Message { Message() : phandler(nullptr), message_id(0), pdata(nullptr) {} inline bool Match(MessageHandler* handler, uint32_t id) const { return (handler == nullptr || handler == phandler) && (id == MQID_ANY || id == message_id); } Location posted_from; MessageHandler* phandler; uint32_t message_id; MessageData* pdata; }; typedef std::list MessageList; } // namespace rtc #endif // RTC_BASE_THREAD_MESSAGE_H_