blob: 7dfdc32a0330a5c23cae1b5631eb22fc7a5dd1c9 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef VOICE_ENGINE_CHANNEL_MANAGER_H_
12#define VOICE_ENGINE_CHANNEL_MANAGER_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000013
kwibergb7f89d62016-02-17 10:04:18 -080014#include <memory>
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000015#include <vector>
16
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020017#include "rtc_base/constructormagic.h"
18#include "rtc_base/criticalsection.h"
19#include "rtc_base/random.h"
20#include "rtc_base/scoped_ref_ptr.h"
21#include "system_wrappers/include/atomic32.h"
Mirko Bonadei71207422017-09-15 13:58:09 +020022#include "typedefs.h" // NOLINT(build/include)
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020023#include "voice_engine/include/voe_base.h"
niklase@google.com470e71d2011-07-07 08:21:25 +000024
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000025namespace webrtc {
minyue@webrtc.orge509f942013-09-12 17:03:00 +000026
ossu5f7cfa52016-05-30 08:11:28 -070027class AudioDecoderFactory;
minyue@webrtc.orge509f942013-09-12 17:03:00 +000028
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000029namespace voe {
niklase@google.com470e71d2011-07-07 08:21:25 +000030
niklase@google.com470e71d2011-07-07 08:21:25 +000031class Channel;
32
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000033// 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//
49class ChannelOwner {
50 public:
51 explicit ChannelOwner(Channel* channel);
52 ChannelOwner(const ChannelOwner& channel_owner);
niklase@google.com470e71d2011-07-07 08:21:25 +000053
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000054 ~ChannelOwner();
niklase@google.com470e71d2011-07-07 08:21:25 +000055
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000056 ChannelOwner& operator=(const ChannelOwner& other);
niklase@google.com470e71d2011-07-07 08:21:25 +000057
Minyue2013aec2015-05-13 14:14:42 +020058 Channel* channel() const { return channel_ref_->channel.get(); }
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000059 bool IsValid() { return channel_ref_->channel.get() != NULL; }
Minyue2013aec2015-05-13 14:14:42 +020060 int use_count() const { return channel_ref_->ref_count.Value(); }
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000061 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);
kwibergb7f89d62016-02-17 10:04:18 -080067 const std::unique_ptr<Channel> channel;
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000068 Atomic32 ref_count;
69 };
niklase@google.com470e71d2011-07-07 08:21:25 +000070
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000071 ChannelRef* channel_ref_;
niklase@google.com470e71d2011-07-07 08:21:25 +000072};
73
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000074class ChannelManager {
75 public:
solenberg88499ec2016-09-07 07:34:41 -070076 ChannelManager(uint32_t instance_id);
niklase@google.com470e71d2011-07-07 08:21:25 +000077
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000078 // 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.com470e71d2011-07-07 08:21:25 +000086
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000087 Channel* GetChannel();
88 bool IsValid();
niklase@google.com470e71d2011-07-07 08:21:25 +000089
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000090 void Increment();
niklase@google.com470e71d2011-07-07 08:21:25 +000091
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000092 private:
93 size_t iterator_pos_;
94 std::vector<ChannelOwner> channels_;
niklase@google.com470e71d2011-07-07 08:21:25 +000095
henrikg3c089d72015-09-16 05:37:44 -070096 RTC_DISALLOW_COPY_AND_ASSIGN(Iterator);
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +000097 };
98
solenberg88499ec2016-09-07 07:34:41 -070099 // CreateChannel will always return a valid ChannelOwner instance.
100 ChannelOwner CreateChannel(const VoEBase::ChannelConfig& config);
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +0000101
102 // ChannelOwner.channel() will be NULL if channel_id is invalid or no longer
103 // exists. This should be checked with ChannelOwner::IsValid().
104 ChannelOwner GetChannel(int32_t channel_id);
105 void GetAllChannels(std::vector<ChannelOwner>* channels);
106
107 void DestroyChannel(int32_t channel_id);
108 void DestroyAllChannels();
109
110 size_t NumOfChannels() const;
111
112 private:
113 uint32_t instance_id_;
114
115 Atomic32 last_channel_id_;
116
pbosd8de1152016-02-01 09:00:51 -0800117 rtc::CriticalSection lock_;
pbos@webrtc.org676ff1e2013-08-07 17:57:36 +0000118 std::vector<ChannelOwner> channels_;
119
nisse7d59f6b2017-02-21 03:40:24 -0800120 // For generation of random ssrc:s.
121 webrtc::Random random_;
122
henrikg3c089d72015-09-16 05:37:44 -0700123 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelManager);
niklase@google.com470e71d2011-07-07 08:21:25 +0000124};
pbos@webrtc.orgd900e8b2013-07-03 15:12:26 +0000125} // namespace voe
pbos@webrtc.orgd900e8b2013-07-03 15:12:26 +0000126} // namespace webrtc
niklase@google.com470e71d2011-07-07 08:21:25 +0000127
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200128#endif // VOICE_ENGINE_CHANNEL_MANAGER_H_