niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 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 | |
| 11 | #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H |
| 12 | #define WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H |
| 13 | |
kwiberg | b7f89d6 | 2016-02-17 10:04:18 -0800 | [diff] [blame] | 14 | #include <memory> |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 15 | #include <vector> |
| 16 | |
henrike@webrtc.org | 88fbb2d | 2014-05-21 21:18:46 +0000 | [diff] [blame] | 17 | #include "webrtc/base/constructormagic.h" |
tommi | 31fc21f | 2016-01-21 10:37:37 -0800 | [diff] [blame] | 18 | #include "webrtc/base/criticalsection.h" |
ossu | 5f7cfa5 | 2016-05-30 08:11:28 -0700 | [diff] [blame] | 19 | #include "webrtc/base/scoped_ref_ptr.h" |
ivoc | 9e03c3b | 2016-06-30 00:59:43 -0700 | [diff] [blame^] | 20 | #include "webrtc/call/rtc_event_log.h" |
Henrik Kjellander | 98f5351 | 2015-10-28 18:17:40 +0100 | [diff] [blame] | 21 | #include "webrtc/system_wrappers/include/atomic32.h" |
pbos@webrtc.org | 956aa7e | 2013-05-21 13:52:32 +0000 | [diff] [blame] | 22 | #include "webrtc/typedefs.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 23 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 24 | namespace webrtc { |
minyue@webrtc.org | e509f94 | 2013-09-12 17:03:00 +0000 | [diff] [blame] | 25 | |
| 26 | class Config; |
ossu | 5f7cfa5 | 2016-05-30 08:11:28 -0700 | [diff] [blame] | 27 | class AudioDecoderFactory; |
minyue@webrtc.org | e509f94 | 2013-09-12 17:03:00 +0000 | [diff] [blame] | 28 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 29 | namespace voe { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 30 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 31 | class Channel; |
| 32 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 33 | // Shared-pointer implementation for keeping track of Channels. The underlying |
| 34 | // shared instance will be dropped when no more ChannelOwners point to it. |
| 35 | // |
| 36 | // One common source of ChannelOwner instances are |
| 37 | // ChannelManager::CreateChannel() and ChannelManager::GetChannel(...). |
| 38 | // It has a similar use case to shared_ptr in C++11. Should this move to C++11 |
| 39 | // in the future, this class should be replaced by exactly that. |
| 40 | // |
| 41 | // To access the underlying Channel, use .channel(). |
| 42 | // IsValid() implements a convenience method as an alternative for checking |
| 43 | // whether the underlying pointer is NULL or not. |
| 44 | // |
| 45 | // Channel channel_owner = channel_manager.GetChannel(channel_id); |
| 46 | // if (channel_owner.IsValid()) |
| 47 | // channel_owner.channel()->...; |
| 48 | // |
| 49 | class ChannelOwner { |
| 50 | public: |
| 51 | explicit ChannelOwner(Channel* channel); |
| 52 | ChannelOwner(const ChannelOwner& channel_owner); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 53 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 54 | ~ChannelOwner(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 55 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 56 | ChannelOwner& operator=(const ChannelOwner& other); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 57 | |
Minyue | 2013aec | 2015-05-13 14:14:42 +0200 | [diff] [blame] | 58 | Channel* channel() const { return channel_ref_->channel.get(); } |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 59 | bool IsValid() { return channel_ref_->channel.get() != NULL; } |
Minyue | 2013aec | 2015-05-13 14:14:42 +0200 | [diff] [blame] | 60 | int use_count() const { return channel_ref_->ref_count.Value(); } |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 61 | private: |
| 62 | // Shared instance of a Channel. Copying ChannelOwners increase the reference |
| 63 | // count and destroying ChannelOwners decrease references. Channels are |
| 64 | // deleted when no references to them are held. |
| 65 | struct ChannelRef { |
| 66 | ChannelRef(Channel* channel); |
kwiberg | b7f89d6 | 2016-02-17 10:04:18 -0800 | [diff] [blame] | 67 | const std::unique_ptr<Channel> channel; |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 68 | Atomic32 ref_count; |
| 69 | }; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 70 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 71 | ChannelRef* channel_ref_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 74 | class ChannelManager { |
| 75 | public: |
minyue@webrtc.org | e509f94 | 2013-09-12 17:03:00 +0000 | [diff] [blame] | 76 | ChannelManager(uint32_t instance_id, const Config& config); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 77 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 78 | // Upon construction of an Iterator it will grab a copy of the channel list of |
| 79 | // the ChannelManager. The iteration will then occur over this state, not the |
| 80 | // current one of the ChannelManager. As the Iterator holds its own references |
| 81 | // to the Channels, they will remain valid even if they are removed from the |
| 82 | // ChannelManager. |
| 83 | class Iterator { |
| 84 | public: |
| 85 | explicit Iterator(ChannelManager* channel_manager); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 86 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 87 | Channel* GetChannel(); |
| 88 | bool IsValid(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 89 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 90 | void Increment(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 91 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 92 | private: |
| 93 | size_t iterator_pos_; |
| 94 | std::vector<ChannelOwner> channels_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 95 | |
henrikg | 3c089d7 | 2015-09-16 05:37:44 -0700 | [diff] [blame] | 96 | RTC_DISALLOW_COPY_AND_ASSIGN(Iterator); |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 97 | }; |
| 98 | |
turaj@webrtc.org | 03f3370 | 2013-11-13 00:02:48 +0000 | [diff] [blame] | 99 | // CreateChannel will always return a valid ChannelOwner instance. The channel |
| 100 | // is created either based on internal configuration, i.e. |config_|, by |
| 101 | // calling CreateChannel(), or using and external configuration |
| 102 | // |external_config| if the overloaded method |
| 103 | // CreateChannel(const Config& external_config) is called. |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 104 | ChannelOwner CreateChannel(); |
turaj@webrtc.org | 03f3370 | 2013-11-13 00:02:48 +0000 | [diff] [blame] | 105 | ChannelOwner CreateChannel(const Config& external_config); |
ossu | 5f7cfa5 | 2016-05-30 08:11:28 -0700 | [diff] [blame] | 106 | ChannelOwner CreateChannel( |
| 107 | const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory); |
| 108 | ChannelOwner CreateChannel( |
| 109 | const Config& external_config, |
| 110 | const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory); |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 111 | |
| 112 | // ChannelOwner.channel() will be NULL if channel_id is invalid or no longer |
| 113 | // exists. This should be checked with ChannelOwner::IsValid(). |
| 114 | ChannelOwner GetChannel(int32_t channel_id); |
| 115 | void GetAllChannels(std::vector<ChannelOwner>* channels); |
| 116 | |
| 117 | void DestroyChannel(int32_t channel_id); |
| 118 | void DestroyAllChannels(); |
| 119 | |
| 120 | size_t NumOfChannels() const; |
| 121 | |
ivoc | 9e03c3b | 2016-06-30 00:59:43 -0700 | [diff] [blame^] | 122 | // Returns a pointer to the event log object stored within the ChannelManager. |
| 123 | RtcEventLog* GetEventLog() const; |
| 124 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 125 | private: |
turaj@webrtc.org | 03f3370 | 2013-11-13 00:02:48 +0000 | [diff] [blame] | 126 | // Create a channel given a configuration, |config|. |
ossu | 5f7cfa5 | 2016-05-30 08:11:28 -0700 | [diff] [blame] | 127 | ChannelOwner CreateChannelInternal( |
| 128 | const Config& config, |
| 129 | const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory); |
turaj@webrtc.org | 03f3370 | 2013-11-13 00:02:48 +0000 | [diff] [blame] | 130 | |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 131 | uint32_t instance_id_; |
| 132 | |
| 133 | Atomic32 last_channel_id_; |
| 134 | |
pbos | d8de115 | 2016-02-01 09:00:51 -0800 | [diff] [blame] | 135 | rtc::CriticalSection lock_; |
pbos@webrtc.org | 676ff1e | 2013-08-07 17:57:36 +0000 | [diff] [blame] | 136 | std::vector<ChannelOwner> channels_; |
| 137 | |
minyue@webrtc.org | e509f94 | 2013-09-12 17:03:00 +0000 | [diff] [blame] | 138 | const Config& config_; |
ivoc | 9e03c3b | 2016-06-30 00:59:43 -0700 | [diff] [blame^] | 139 | std::unique_ptr<RtcEventLog> event_log_; |
minyue@webrtc.org | e509f94 | 2013-09-12 17:03:00 +0000 | [diff] [blame] | 140 | |
henrikg | 3c089d7 | 2015-09-16 05:37:44 -0700 | [diff] [blame] | 141 | RTC_DISALLOW_COPY_AND_ASSIGN(ChannelManager); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 142 | }; |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 +0000 | [diff] [blame] | 143 | } // namespace voe |
pbos@webrtc.org | d900e8b | 2013-07-03 15:12:26 +0000 | [diff] [blame] | 144 | } // namespace webrtc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 145 | |
| 146 | #endif // WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H |