38 Channel(std::unique_ptr<rtc_api::interface::ChannelState> rtc_api_channel_state,
39 std::unique_ptr<interface::ChunkMessengerFactory> chunk_messenger_factory);
40 Channel(std::unique_ptr<rtc_api::interface::ChannelState> rtc_api_channel_state);
50 static std::shared_ptr<Channel>
Create();
60 static void DisposeAllChannels();
66 std::string
Id()
const override;
67 std::optional<std::string>
Name()
const override;
68 std::optional<std::string>
Metadata()
const override;
69 std::shared_ptr<interface::LocalPerson>
LocalPerson()
override;
70 std::vector<std::shared_ptr<interface::RemoteMember>>
Bots(
bool active_only =
true)
override;
71 std::vector<std::shared_ptr<interface::Member>>
Members(
bool active_only =
true)
override;
72 std::vector<std::shared_ptr<interface::Publication>>
Publications(
bool active_only =
true)
override;
73 std::vector<std::shared_ptr<interface::Subscription>>
Subscriptions(
bool active_only =
true)
override;
74 ChannelState
State()
const override;
78 bool Leave(std::shared_ptr<interface::Member> member)
override;
80 void Dispose(
bool remove_myself_if_needed =
true)
override;
83 std::shared_ptr<interface::Member> FindMember(
const std::string& member_id,
bool active_only =
true)
override;
84 std::shared_ptr<interface::RemoteMember> FindRemoteMember(
const std::string& member_id,
bool active_only =
true)
override;
85 std::shared_ptr<interface::Publication> FindPublication(
const std::string& publication_id,
86 bool active_only =
true)
override;
87 std::shared_ptr<interface::Subscription> FindSubscription(
const std::string& subscription_id,
88 bool active_only =
true)
override;
89 std::vector<std::shared_ptr<interface::Subscription>> GetSubscriptionsByPublicationId(
90 const std::string& publication_id,
bool active_only =
true)
override;
91 std::vector<std::shared_ptr<interface::Subscription>> GetSubscriptionsBySubscriberId(
92 const std::string& subscriber_id,
bool active_only =
true)
override;
93 std::vector<std::shared_ptr<interface::Publication>> GetPublicationsByPublisherId(
94 const std::string& publisher_id,
bool active_only =
true)
override;
96 std::optional<model::Member> GetMemberDto(
const std::string& member_id)
const override;
97 std::optional<model::Publication> GetPublicationDto(
98 const std::string& publication_id)
const override;
99 std::optional<model::Subscription> GetSubscriptionDto(
100 const std::string& subscription_id)
const override;
103 void OnChannelDeleted(
const std::string& channel_id)
override;
106 void OnMemberRemoved(
const std::string& member_id)
override;
107 void OnMemberMetadataUpdated(
const model::Member& member)
override;
109 void OnStreamUnpublished(
const std::string& publication_id)
override;
114 void OnPublicationUnsubscribed(
const std::string& subscription_id)
override;
118 std::vector<std::shared_ptr<interface::LocalPerson>> LocalPersons(
bool active_only =
true);
119 std::vector<std::shared_ptr<interface::RemoteMember>> RemoteMembers(
bool active_only =
true);
120 std::shared_ptr<member::LocalPerson> CreateLocalPerson(
const model::Member& member);
121 std::shared_ptr<interface::RemoteMember> CreateRemoteMember(
const model::Member& member);
123 std::unique_ptr<rtc_api::interface::ChannelState> rtc_api_channel_state_;
125 std::atomic<bool> is_disposed_;
127 std::vector<std::shared_ptr<member::LocalPerson>> persons_;
128 std::vector<std::shared_ptr<interface::RemoteMember>> remote_members_;
129 std::vector<std::shared_ptr<interface::Publication>> publications_;
130 std::vector<std::shared_ptr<interface::Subscription>> subscriptions_;
132 std::unordered_set<interface::Channel::EventListener*> listeners_;
134 std::optional<std::string> tmp_local_person_id_;
135 std::optional<int> tmp_keepalive_interval_sec_;
136 std::optional<int> tmp_keepalive_interval_gap_sec_;
137 bool waiting_for_local_person_creation_;
139 std::mutex listeners_mtx_;
142 std::mutex persons_mtx_;
143 std::mutex remote_members_mtx_;
144 std::mutex publications_mtx_;
145 std::mutex subscriptions_mtx_;
146 std::mutex dispose_mtx_;
148 std::unique_ptr<interface::ChunkMessengerFactory> chunk_messenger_factory_;
150 static std::unordered_set<std::shared_ptr<Channel>> channels_;
154 friend class CoreChannelTest;