SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
context.hpp
1//
2// context.hpp
3// skyway
4//
5// Created by sandabu on 2021/11/08.
6// Copyright © 2021 NTT Communications. All rights reserved.
7//
8
9#ifndef SKYWAY_CORE_CONTEXT_HPP_
10#define SKYWAY_CORE_CONTEXT_HPP_
11
12#include "skyway/core/config.hpp"
13#include "skyway/core/context_options.hpp"
14#include "skyway/core/interface/remote_member_plugin.hpp"
15#include "skyway/global/error.hpp"
16#include "skyway/global/interface/logger.hpp"
17#include "skyway/network/interface/http_client.hpp"
18#include "skyway/network/interface/websocket_client.hpp"
19#include "skyway/platform/interface/platform_info_delegator.hpp"
20#include "skyway/rtc_api/interface/client.hpp"
21#include "skyway/token/interface/auth_token_manager.hpp"
22
23namespace skyway {
24namespace core {
25namespace channel {
26// forward declaration for testing
27class CoreChannelTest;
28
29} // namespace channel
30namespace ice {
31class CoreIceManagerTest;
32} // namespace ice
33} // namespace core
34} // namespace skyway
35
36namespace skyway {
37namespace core {
38
39using RemoteMemberPluginInterface = interface::RemoteMemberPlugin;
40using HttpClientInterface = network::interface::HttpClient;
41using WebSocketClientFactoryInterface = network::interface::WebSocketClientFactory;
42using PlatformInfoDelegatorInterface = platform::interface::PlatformInfoDelegator;
43using LoggerInterface = global::interface::Logger;
44using SkyWayError = global::Error;
45
47class Context {
48public:
51 public:
52 virtual ~EventListener() = default;
53
55 virtual void OnReconnectStart() = 0;
56
58 virtual void OnReconnectSuccess() = 0;
59
63 virtual void OnFatalError(const SkyWayError& error) = 0;
64 };
75 static bool Setup(const std::string& token,
76 std::unique_ptr<HttpClientInterface> http,
77 std::unique_ptr<WebSocketClientFactoryInterface> ws_factory,
78 std::unique_ptr<PlatformInfoDelegatorInterface> platform_info,
79 std::unique_ptr<LoggerInterface> logger,
80 EventListener* listener,
81 const ContextOptions& options);
82
85 static bool UpdateAuthToken(const std::string& token);
86
90 static void _UpdateRtcConfig(ContextOptions::RtcConfig rtc_config);
92
95 static void RegisterPlugin(std::unique_ptr<RemoteMemberPluginInterface> plugin);
96
99 static void Dispose();
100
104 static std::weak_ptr<token::interface::AuthTokenManager> AuthTokenManager();
105
108 static std::weak_ptr<rtc_api::interface::Client> RtcApi();
109
112 static ContextOptions Options();
113
116 static std::vector<RemoteMemberPluginInterface*> GetRemoteMemberPlugins();
117
122 static RemoteMemberPluginInterface* FindRemoteMemberPluginBySubtype(const std::string& subtype);
123
126 static void OnReconnectStart();
127
130 static void OnReconnectSuccess();
131
135 static void OnFatalError(const SkyWayError& error);
137private:
138 static EventListener* listener_;
139 static bool is_setup_;
140 static std::mutex setup_mtx_;
141 static std::shared_ptr<rtc_api::interface::Client> rtc_api_;
142 static std::shared_ptr<token::interface::AuthTokenManager> token_manager_;
143 static ContextOptions options_;
144 static std::vector<std::unique_ptr<RemoteMemberPluginInterface>> plugins_;
145
146public:
148 friend class CoreContextTest;
149 friend class channel::CoreChannelTest;
150 friend class ice::CoreIceManagerTest;
152};
153
154} // namespace core
155} // namespace skyway
156
157#endif /* SKYWAY_CORE_CONTEXT_HPP_ */
イベントリスナ
Definition context.hpp:50
virtual void OnFatalError(const SkyWayError &error)=0
回復不能なエラーが発生した時にコールされます。
virtual void OnReconnectStart()=0
再接続処理が開始した時にコールされます。
virtual void OnReconnectSuccess()=0
再接続が成功した時にコールされます。
SkyWay全体の設定、取得を行うStaticなコンテキスト
Definition context.hpp:47
static void RegisterPlugin(std::unique_ptr< RemoteMemberPluginInterface > plugin)
RemoteMemberPluginを登録します。
static bool Setup(const std::string &token, std::unique_ptr< HttpClientInterface > http, std::unique_ptr< WebSocketClientFactoryInterface > ws_factory, std::unique_ptr< PlatformInfoDelegatorInterface > platform_info, std::unique_ptr< LoggerInterface > logger, EventListener *listener, const ContextOptions &options)
Contextを初期化します。
static bool UpdateAuthToken(const std::string &token)
JWTを更新します。
static void Dispose()
コンテキストを破棄し、全ての接続を切断します。
Definition remote_member_plugin.hpp:20
RTCサーバーへの接続に関する設定
Definition context_options.hpp:51
ContextのSetup時に使用するオプション
Definition context_options.hpp:26
SkyWayで発生したエラーを示す構造体
Definition error.hpp:18