SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
member.hpp
1//
2// member.hpp
3// skyway
4//
5// Created by sandabu on 2021/12/21.
6// Copyright © 2021 NTT Communications. All rights reserved.
7//
8
9#ifndef SKYWAY_CORE_INTERFACE_MEMBER_HPP_
10#define SKYWAY_CORE_INTERFACE_MEMBER_HPP_
11
12#include <atomic>
13#include <mutex>
14#include <string>
15#include <unordered_set>
16
17#include "skyway/model/domain.hpp"
18
19namespace skyway {
20namespace core {
21namespace interface {
22
23class Channel;
24class Publication;
25class Subscription;
26
28enum class MemberState { kJoined, kLeft };
29
31class Member: public std::enable_shared_from_this<Member> {
32public:
35 public:
37 virtual void OnLeft() {}
39 virtual void OnMetadataUpdated(const std::string& metadata) {}
41 virtual void OnPublicationListChanged() {}
43 virtual void OnSubscriptionListChanged() {}
44 };
45 virtual ~Member() = default;
46
53
55 bool UpdateMetadata(const std::string& metadata);
57 bool Leave();
58
60 std::string Id() const;
62 std::optional<std::string> Name() const;
64 std::optional<std::string> Metadata() const;
66 model::MemberType Type() const;
68 std::string Subtype() const;
70 model::Side Side() const;
72 MemberState State() const;
73
75 std::vector<std::shared_ptr<interface::Publication>> Publications() const;
77 std::vector<std::shared_ptr<interface::Subscription>> Subscriptions() const;
78
80 virtual void OnLeft();
81 void OnMetadataUpdated(const std::string& metadata);
82 virtual void OnPublicationListChanged();
83 virtual void OnSubscriptionListChanged();
85
86protected:
87 Member(std::shared_ptr<interface::Channel> channel, const model::Member& initial_dto, const model::Side& side);
88
89 std::weak_ptr<interface::Channel> channel_;
90 model::Member initial_dto_;
91 model::Side side_;
92 MemberState state_;
93 std::mutex listeners_mtx_;
94 std::unordered_set<EventListener*> listeners_;
95 std::atomic<bool> metadata_updated_;
96};
97
98} // namespace interface
99} // namespace core
100} // namespace skyway
101
102#endif /* SKYWAY_CORE_INTERFACE_MEMBER_HPP_ */
イベントリスナ
Definition member.hpp:34
virtual void OnSubscriptionListChanged()
MemberのSubscriptionの一覧が更新した時に発火するイベント
Definition member.hpp:43
virtual void OnLeft()
MemberがChannelから退出した時に発火するイベント
Definition member.hpp:37
virtual void OnPublicationListChanged()
MemberのPublicationの一覧が更新した時に発火するイベント
Definition member.hpp:41
virtual void OnMetadataUpdated(const std::string &metadata)
MemberのMetadataが更新した時に発火するイベント
Definition member.hpp:39
LocalPersonおよびRemoteMemberの基底クラス
Definition member.hpp:31
std::vector< std::shared_ptr< interface::Publication > > Publications() const
自身が持つ全てのPublicationを取得します。
MemberState State() const
State(Memberの入室状態)を取得します。
bool UpdateMetadata(const std::string &metadata)
Metadataを更新します
bool Leave()
Channelから退室します。
std::vector< std::shared_ptr< interface::Subscription > > Subscriptions() const
自身が持つ全てのSubscriptionを取得します。
std::optional< std::string > Name() const
Nameを取得します。
std::string Subtype() const
Subtypeを取得します。
model::MemberType Type() const
MemberTypeを取得します。
void AddEventListener(EventListener *listener)
イベントを購読します。
std::optional< std::string > Metadata() const
Metadataを取得します。
void RemoveEventListener(EventListener *listener)
イベントの購読を中止します。
model::Side Side() const
Side(LocalかRemoteか)を取得します。
std::string Id() const
Idを取得します。
メンバー情報
Definition domain.hpp:54