SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
subscription.hpp
1//
2// subscription.hpp
3// skyway
4//
5// Created by sandabu on 2022/01/13.
6// Copyright © 2022 NTT Communications. All rights reserved.
7//
8
9#ifndef SKYWAY_CORE_SUBSCRIPTION_HPP_
10#define SKYWAY_CORE_SUBSCRIPTION_HPP_
11
12#include "skyway/core/interface/channel.hpp"
13#include "skyway/core/interface/member.hpp"
14#include "skyway/core/interface/publication.hpp"
15#include "skyway/core/interface/subscription.hpp"
16#include "skyway/model/domain.hpp"
17
18namespace skyway {
19namespace core {
20
23public:
25 Subscription(std::shared_ptr<interface::Channel> channel, const model::Subscription& initial_dto, model::ContentType content_type);
27
31 void AddInternalListener(interface::Subscription::InternalListener* listener) override;
32 void RemoveInternalListener(interface::Subscription::InternalListener* listener) override;
34
35 std::string Id() const override;
36 model::ContentType ContentType() const override;
37 std::shared_ptr<interface::Publication> Publication() const override;
38 std::shared_ptr<interface::Member> Subscriber() const override;
39 interface::SubscriptionState State() override;
40
41 std::shared_ptr<interface::RemoteStream> Stream() override;
42 std::optional<std::string> PreferredEncodingId() const override;
43
44 bool ChangePreferredEncoding(const std::string& id) override;
45 bool Cancel() const override;
46 std::optional<model::WebRTCStats> GetStats() override;
48 void AddGetStatsCallback(Callback* callback) override;
49 void RemoveGetStatsCallback() override;
50
51 void SetStream(std::shared_ptr<interface::RemoteStream> stream) override;
52 void SetPreferredEncodingId(const std::string& id) override;
53
54 void OnCanceled() override;
55 void OnConnectionStateChanged(const core::ConnectionState new_state) override;
57private:
58 std::weak_ptr<interface::Channel> channel_;
59 model::Subscription initial_dto_;
60 model::ContentType content_type_;
61 std::atomic<interface::SubscriptionState> state_;
62 std::weak_ptr<interface::Member> subscriber_;
63 std::mutex stream_mtx_;
64 std::shared_ptr<interface::RemoteStream> stream_;
65 std::optional<std::string> preferred_encoding_id_;
66
67 std::mutex listeners_mtx_;
68 std::unordered_set<interface::Subscription::EventListener*> listeners_;
69 std::mutex internal_listeners_mtx_;
70 std::unordered_set<interface::Subscription::InternalListener*> internal_listeners_;
71 std::mutex get_stats_callback_mutex_;
72 Callback* get_stats_callback_;
73
74public:
76 friend class CoreSubscriptionTest;
78};
79
80} // namespace core
81} // namespace skyway
82
83#endif /* SKYWAY_CORE_SUBSCRIPTION_HPP_ */
Subscriptionの実装クラス
Definition subscription.hpp:22
interface::SubscriptionState State() override
State(公開状態がEnableかDisabelかCancelか)を取得します。
std::shared_ptr< interface::RemoteStream > Stream() override
Publisherが持つStreamを取得します。
bool ChangePreferredEncoding(const std::string &id) override
受信するエンコード設定を切り替えます。
std::shared_ptr< interface::Member > Subscriber() const override
このSubscriptionをSubscribeしているMemberを取得します。
void AddEventListener(interface::Subscription::EventListener *listener) override
イベントを購読します。
void RemoveEventListener(interface::Subscription::EventListener *listener) override
イベントの購読を中止します。
std::shared_ptr< interface::Publication > Publication() const override
このSubscriptionに紐づくPublicationを取得します。
std::optional< std::string > PreferredEncodingId() const override
このSubscriptionの優先エンコーディングIDを取得します。
model::ContentType ContentType() const override
ContentType(VideoかAudioかDataか)を取得します。
std::string Id() const override
Idを取得します。
std::optional< model::WebRTCStats > GetStats() override
統計情報を取得します。
bool Cancel() const override
Subscribeを中止します。
イベントリスナ
Definition subscription.hpp:34
Subscriptionのインターフェース
Definition subscription.hpp:31
Subscription情報
Definition domain.hpp:133