SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
channel.hpp
1//
2// channel.hpp
3// skyway
4//
5// Created by sandabu on 2021/12/23.
6// Copyright © 2021 NTT Communications. All rights reserved.
7//
8
9#ifndef SKYWAY_CORE_CHANNEL_CHANNEL_HPP_
10#define SKYWAY_CORE_CHANNEL_CHANNEL_HPP_
11
12#include <string>
13
14#include "skyway/core/channel/member/local_person.hpp"
15#include "skyway/core/interface/channel.hpp"
16#include "skyway/core/interface/chunk_messenger_factory.hpp"
17#include "skyway/core/interface/member.hpp"
18#include "skyway/core/interface/publication.hpp"
19#include "skyway/core/interface/remote_member.hpp"
20#include "skyway/core/interface/subscription.hpp"
21#include "skyway/rtc_api/client.hpp"
22#include "skyway/rtc_api/interface/channel_state.hpp"
23
24namespace skyway {
25namespace core {
26namespace channel {
27
28using ChannelState = interface::ChannelState;
29using ChannelInit = model::Channel::Init;
30using ChannelQuery = model::Channel::Query;
31
32using SignalingClientDelegator = signaling::interface::SignalingClient::Delegator;
33
35class Channel : public interface::Channel, public rtc_api::ChannelState::EventListener {
36public:
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);
41 ~Channel();
42 void SetupDomains();
44
48 static std::shared_ptr<Channel> Create(const ChannelInit& init);
50 static std::shared_ptr<Channel> Create();
54 static std::shared_ptr<Channel> Find(const ChannelQuery& query);
57 static std::shared_ptr<Channel> FindOrCreate(const ChannelInit& init);
60 static void DisposeAllChannels();
62
65
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;
75
76 std::shared_ptr<interface::LocalPerson> Join(const model::Member::Init& init) override;
77 bool UpdateMetadata(const std::string& metadata) override;
78 bool Leave(std::shared_ptr<interface::Member> member) override;
79 bool Close() override;
80 void Dispose(bool remove_myself_if_needed = true) override;
81
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;
95
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;
101
102 // ChannelState::EventListener
103 void OnChannelDeleted(const std::string& channel_id) override;
104 void OnChannelMetadataUpdated(model::Channel* channel) override;
105 void OnMemberAdded(const model::Member& member) override;
106 void OnMemberRemoved(const std::string& member_id) override;
107 void OnMemberMetadataUpdated(const model::Member& member) override;
108 void OnStreamPublished(const model::Publication& publication) override;
109 void OnStreamUnpublished(const std::string& publication_id) override;
110 void OnPublicationEnabled(const model::Publication& publication) override;
111 void OnPublicationDisabled(const model::Publication& publication) override;
112 void OnPublicationMetadataUpdated(const model::Publication& publication) override;
113 void OnPublicationSubscribed(const model::Subscription& subscription) override;
114 void OnPublicationUnsubscribed(const std::string& subscription_id) override;
116
117private:
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);
122
123 std::unique_ptr<rtc_api::interface::ChannelState> rtc_api_channel_state_;
124 ChannelState state_;
125 std::atomic<bool> is_disposed_;
126
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_;
131
132 std::unordered_set<interface::Channel::EventListener*> listeners_;
133
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_;
138
139 std::mutex listeners_mtx_;
140 // These mutexes are required because it's possible that a domain is read on one thread while it
141 // is written on another thread(rtc-api)
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_;
147
148 std::unique_ptr<interface::ChunkMessengerFactory> chunk_messenger_factory_;
149
150 static std::unordered_set<std::shared_ptr<Channel>> channels_;
151
152public:
154 friend class CoreChannelTest;
156};
157
158} // namespace channel
159} // namespace core
160} // namespace skyway
161
162#endif /* SKYWAY_CORE_CHANNEL_CHANNEL_HPP_ */
Channelの実装クラス
Definition channel.hpp:35
void AddEventListener(interface::Channel::EventListener *listener) override
イベントを購読します。
std::vector< std::shared_ptr< interface::Publication > > Publications(bool active_only=true) override
Publicationの一覧を取得します。
static std::shared_ptr< Channel > Find(const ChannelQuery &query)
既に存在するChannelを検索します。
std::vector< std::shared_ptr< interface::Subscription > > Subscriptions(bool active_only=true) override
Subscriptionの一覧を取得します。
std::optional< std::string > Metadata() const override
Metadataを取得します。
static std::shared_ptr< Channel > Create()
Channelを作成します。
bool Close() override
Channelを閉じます。
void Dispose(bool remove_myself_if_needed=true) override
Channelを閉じずにChannelインスタンスを無効にし、リソースを解放します。
static std::shared_ptr< Channel > Create(const ChannelInit &init)
Channelを作成します。
void RemoveEventListener(interface::Channel::EventListener *listener) override
イベントの購読を中止します。
std::shared_ptr< interface::LocalPerson > LocalPerson() override
ChannelにJoinしているLocalPersonを取得します。
bool UpdateMetadata(const std::string &metadata) override
Metadataを更新します。
std::shared_ptr< interface::LocalPerson > Join(const model::Member::Init &init) override
ChannelにLocalPersonを追加します。
ChannelState State() const override
Channelの状態を取得します。
std::vector< std::shared_ptr< interface::RemoteMember > > Bots(bool active_only=true) override
ChannelにJoinしているBotを取得します。
std::vector< std::shared_ptr< interface::Member > > Members(bool active_only=true) override
ChannelにJoinしているすべてのMemberを取得します。
std::optional< std::string > Name() const override
Nameを取得します。
static std::shared_ptr< Channel > FindOrCreate(const ChannelInit &init)
既に存在するChannelを検索し、存在しない場合はChannelを作成します。
std::string Id() const override
Idを取得します。
イベントリスナ
Definition channel.hpp:34
Channelのインターフェース
Definition channel.hpp:31
CreateもしくはFindOrCreateで指定する情報
Definition domain.hpp:160
FindもしくはFindOrCreateで指定する情報
Definition domain.hpp:167
Channel情報
Definition domain.hpp:158
Join時に使用するメンバー情報
Definition domain.hpp:56
メンバー情報
Definition domain.hpp:54
Publication情報
Definition domain.hpp:92
Subscription情報
Definition domain.hpp:133