blob: 93862574761615ca0740ec2e9dc14b189ec0fb32 [file] [log] [blame]
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +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
turaj@webrtc.org8dda8d22013-11-13 00:02:48 +000011#include "webrtc/common.h"
pbos@webrtc.orgbe72fe42013-05-21 13:52:32 +000012#include "webrtc/voice_engine/channel_manager.h"
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000013
pbos@webrtc.org9277c942013-08-07 17:57:36 +000014#include "webrtc/voice_engine/channel.h"
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000015
pbos@webrtc.org9277c942013-08-07 17:57:36 +000016namespace webrtc {
17namespace voe {
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000018
pbos@webrtc.org9277c942013-08-07 17:57:36 +000019ChannelOwner::ChannelOwner(class Channel* channel)
20 : channel_ref_(new ChannelRef(channel)) {}
21
22ChannelOwner::ChannelOwner(const ChannelOwner& channel_owner)
23 : channel_ref_(channel_owner.channel_ref_) {
24 ++channel_ref_->ref_count;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000025}
26
pbos@webrtc.org9277c942013-08-07 17:57:36 +000027ChannelOwner::~ChannelOwner() {
28 if (--channel_ref_->ref_count == 0)
29 delete channel_ref_;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000030}
31
pbos@webrtc.org9277c942013-08-07 17:57:36 +000032ChannelOwner& ChannelOwner::operator=(const ChannelOwner& other) {
33 if (other.channel_ref_ == channel_ref_)
34 return *this;
35
36 if (--channel_ref_->ref_count == 0)
37 delete channel_ref_;
38
39 channel_ref_ = other.channel_ref_;
40 ++channel_ref_->ref_count;
41
42 return *this;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +000043}
44
pbos@webrtc.org9277c942013-08-07 17:57:36 +000045ChannelOwner::ChannelRef::ChannelRef(class Channel* channel)
46 : channel(channel), ref_count(1) {}
47
minyue@webrtc.org1963a682013-09-12 17:03:00 +000048ChannelManager::ChannelManager(uint32_t instance_id, const Config& config)
pbos@webrtc.org9277c942013-08-07 17:57:36 +000049 : instance_id_(instance_id),
50 last_channel_id_(-1),
minyue@webrtc.org1963a682013-09-12 17:03:00 +000051 lock_(CriticalSectionWrapper::CreateCriticalSection()),
52 config_(config) {}
pbos@webrtc.org9277c942013-08-07 17:57:36 +000053
54ChannelOwner ChannelManager::CreateChannel() {
turaj@webrtc.org8dda8d22013-11-13 00:02:48 +000055 return CreateChannelInternal(config_);
56}
57
58ChannelOwner ChannelManager::CreateChannel(const Config& external_config) {
59 return CreateChannelInternal(external_config);
60}
61
62ChannelOwner ChannelManager::CreateChannelInternal(const Config& config) {
pbos@webrtc.org9277c942013-08-07 17:57:36 +000063 Channel* channel;
turaj@webrtc.org8dda8d22013-11-13 00:02:48 +000064 Channel::CreateChannel(channel, ++last_channel_id_, instance_id_, config);
pbos@webrtc.org9277c942013-08-07 17:57:36 +000065 ChannelOwner channel_owner(channel);
66
67 CriticalSectionScoped crit(lock_.get());
68
69 channels_.push_back(channel_owner);
70
71 return channel_owner;
72}
73
74ChannelOwner ChannelManager::GetChannel(int32_t channel_id) {
75 CriticalSectionScoped crit(lock_.get());
76
77 for (size_t i = 0; i < channels_.size(); ++i) {
78 if (channels_[i].channel()->ChannelId() == channel_id)
79 return channels_[i];
80 }
81 return ChannelOwner(NULL);
82}
83
84void ChannelManager::GetAllChannels(std::vector<ChannelOwner>* channels) {
85 CriticalSectionScoped crit(lock_.get());
86
87 *channels = channels_;
88}
89
90void ChannelManager::DestroyChannel(int32_t channel_id) {
pbos@webrtc.org9277c942013-08-07 17:57:36 +000091 assert(channel_id >= 0);
pbos@webrtc.org54e99552013-08-08 17:32:21 +000092 // Holds a reference to a channel, this is used so that we never delete
93 // Channels while holding a lock, but rather when the method returns.
94 ChannelOwner reference(NULL);
95 {
96 CriticalSectionScoped crit(lock_.get());
pbos@webrtc.org9277c942013-08-07 17:57:36 +000097
pbos@webrtc.org54e99552013-08-08 17:32:21 +000098 for (std::vector<ChannelOwner>::iterator it = channels_.begin();
99 it != channels_.end();
100 ++it) {
101 if (it->channel()->ChannelId() == channel_id) {
102 reference = *it;
103 channels_.erase(it);
104 break;
105 }
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000106 }
pbos@webrtc.org9277c942013-08-07 17:57:36 +0000107 }
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000108}
109
pbos@webrtc.org9277c942013-08-07 17:57:36 +0000110void ChannelManager::DestroyAllChannels() {
pbos@webrtc.org54e99552013-08-08 17:32:21 +0000111 // Holds references so that Channels are not destroyed while holding this
112 // lock, but rather when the method returns.
113 std::vector<ChannelOwner> references;
114 {
115 CriticalSectionScoped crit(lock_.get());
116 references = channels_;
117 channels_.clear();
118 }
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000119}
120
pbos@webrtc.org9277c942013-08-07 17:57:36 +0000121size_t ChannelManager::NumOfChannels() const {
122 CriticalSectionScoped crit(lock_.get());
123 return channels_.size();
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000124}
125
pbos@webrtc.org9277c942013-08-07 17:57:36 +0000126ChannelManager::Iterator::Iterator(ChannelManager* channel_manager)
127 : iterator_pos_(0) {
128 channel_manager->GetAllChannels(&channels_);
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000129}
130
pbos@webrtc.org9277c942013-08-07 17:57:36 +0000131Channel* ChannelManager::Iterator::GetChannel() {
132 if (iterator_pos_ < channels_.size())
133 return channels_[iterator_pos_].channel();
134 return NULL;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000135}
136
pbos@webrtc.org9277c942013-08-07 17:57:36 +0000137bool ChannelManager::Iterator::IsValid() {
138 return iterator_pos_ < channels_.size();
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000139}
140
pbos@webrtc.org9277c942013-08-07 17:57:36 +0000141void ChannelManager::Iterator::Increment() {
142 ++iterator_pos_;
andrew@webrtc.orga7b57da2012-10-22 18:19:23 +0000143}
144
pbos@webrtc.org5ab7b932013-07-03 15:12:26 +0000145} // namespace voe
pbos@webrtc.org5ab7b932013-07-03 15:12:26 +0000146} // namespace webrtc