• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef REMOTING_PROTOCOL_SESSION_CONFIG_H_
6 #define REMOTING_PROTOCOL_SESSION_CONFIG_H_
7 
8 #include <list>
9 #include <string>
10 
11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h"
13 
14 namespace remoting {
15 namespace protocol {
16 
17 extern const int kDefaultStreamVersion;
18 
19 // Struct for configuration parameters of a single channel.
20 // Some channels (like video) may have multiple underlying sockets that need
21 // to be configured simultaneously.
22 struct ChannelConfig {
23   enum TransportType {
24     TRANSPORT_STREAM,
25     TRANSPORT_MUX_STREAM,
26     TRANSPORT_DATAGRAM,
27     TRANSPORT_NONE,
28   };
29 
30   enum Codec {
31     CODEC_UNDEFINED,  // Used for event and control channels.
32     CODEC_VERBATIM,
33     CODEC_ZIP,
34     CODEC_VP8,
35     CODEC_VP9,
36     CODEC_OPUS,
37     CODEC_SPEEX,
38   };
39 
40   // Creates a config with transport field set to TRANSPORT_NONE which indicates
41   // that corresponding channel is disabled.
42   static ChannelConfig None();
43 
44   // Default constructor. Equivalent to None().
45   ChannelConfig();
46 
47   // Creates a channel config with the specified parameters.
48   ChannelConfig(TransportType transport, int version, Codec codec);
49 
50   // operator== is overloaded so that std::find() works with
51   // std::list<ChannelConfig>.
52   bool operator==(const ChannelConfig& b) const;
53 
54   TransportType transport;
55   int version;
56   Codec codec;
57 };
58 
59 // SessionConfig is used by the chromoting Session to store negotiated
60 // chromotocol configuration.
61 class SessionConfig {
62  public:
63   SessionConfig();
64 
set_control_config(const ChannelConfig & control_config)65   void set_control_config(const ChannelConfig& control_config) {
66     control_config_ = control_config;
67   }
control_config()68   const ChannelConfig& control_config() const { return control_config_; }
set_event_config(const ChannelConfig & event_config)69   void set_event_config(const ChannelConfig& event_config) {
70     event_config_ = event_config;
71   }
event_config()72   const ChannelConfig& event_config() const { return event_config_; }
set_video_config(const ChannelConfig & video_config)73   void set_video_config(const ChannelConfig& video_config) {
74     video_config_ = video_config;
75   }
video_config()76   const ChannelConfig& video_config() const { return video_config_; }
set_audio_config(const ChannelConfig & audio_config)77   void set_audio_config(const ChannelConfig& audio_config) {
78     audio_config_ = audio_config;
79   }
audio_config()80   const ChannelConfig& audio_config() const { return audio_config_; }
81 
is_audio_enabled()82   bool is_audio_enabled() const {
83     return audio_config_.transport != ChannelConfig::TRANSPORT_NONE;
84   }
85 
86   // Returns a suitable session configuration for use in tests.
87   static SessionConfig ForTest();
88 
89  private:
90   ChannelConfig control_config_;
91   ChannelConfig event_config_;
92   ChannelConfig video_config_;
93   ChannelConfig audio_config_;
94 };
95 
96 // Defines session description that is sent from client to the host in the
97 // session-initiate message. It is different from the regular Config
98 // because it allows one to specify multiple configurations for each channel.
99 class CandidateSessionConfig {
100  public:
101   static scoped_ptr<CandidateSessionConfig> CreateEmpty();
102   static scoped_ptr<CandidateSessionConfig> CreateFrom(
103       const SessionConfig& config);
104   static scoped_ptr<CandidateSessionConfig> CreateDefault();
105 
106   ~CandidateSessionConfig();
107 
control_configs()108   const std::list<ChannelConfig>& control_configs() const {
109     return control_configs_;
110   }
111 
mutable_control_configs()112   std::list<ChannelConfig>* mutable_control_configs() {
113     return &control_configs_;
114   }
115 
event_configs()116   const std::list<ChannelConfig>& event_configs() const {
117     return event_configs_;
118   }
119 
mutable_event_configs()120   std::list<ChannelConfig>* mutable_event_configs() {
121     return &event_configs_;
122   }
123 
video_configs()124   const std::list<ChannelConfig>& video_configs() const {
125     return video_configs_;
126   }
127 
mutable_video_configs()128   std::list<ChannelConfig>* mutable_video_configs() {
129     return &video_configs_;
130   }
131 
audio_configs()132   const std::list<ChannelConfig>& audio_configs() const {
133     return audio_configs_;
134   }
135 
mutable_audio_configs()136   std::list<ChannelConfig>* mutable_audio_configs() {
137     return &audio_configs_;
138   }
139 
140   // Selects session configuration that is supported by both participants.
141   // NULL is returned if such configuration doesn't exist. When selecting
142   // channel configuration priority is given to the configs listed first
143   // in |client_config|.
144   bool Select(const CandidateSessionConfig* client_config,
145               SessionConfig* result);
146 
147   // Returns true if |config| is supported.
148   bool IsSupported(const SessionConfig& config) const;
149 
150   // Extracts final protocol configuration. Must be used for the description
151   // received in the session-accept stanza. If the selection is ambiguous
152   // (e.g. there is more than one configuration for one of the channel)
153   // or undefined (e.g. no configurations for a channel) then NULL is returned.
154   bool GetFinalConfig(SessionConfig* result) const;
155 
156   scoped_ptr<CandidateSessionConfig> Clone() const;
157 
158   // Helpers for enabling/disabling specific features.
159   void DisableAudioChannel();
160   void EnableVideoCodec(ChannelConfig::Codec codec);
161 
162  private:
163   CandidateSessionConfig();
164   explicit CandidateSessionConfig(const CandidateSessionConfig& config);
165   CandidateSessionConfig& operator=(const CandidateSessionConfig& b);
166 
167   static bool SelectCommonChannelConfig(
168       const std::list<ChannelConfig>& host_configs_,
169       const std::list<ChannelConfig>& client_configs_,
170       ChannelConfig* config);
171   static bool IsChannelConfigSupported(const std::list<ChannelConfig>& list,
172                                        const ChannelConfig& value);
173 
174   std::list<ChannelConfig> control_configs_;
175   std::list<ChannelConfig> event_configs_;
176   std::list<ChannelConfig> video_configs_;
177   std::list<ChannelConfig> audio_configs_;
178 };
179 
180 }  // namespace protocol
181 }  // namespace remoting
182 
183 #endif  // REMOTING_PROTOCOL_SESSION_CONFIG_H_
184