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.
5 #ifndef REMOTING_PROTOCOL_SESSION_H_
6 #define REMOTING_PROTOCOL_SESSION_H_
10 #include "remoting/protocol/errors.h"
11 #include "remoting/protocol/session_config.h"
20 class StreamChannelFactory
;
21 struct TransportRoute
;
23 // Generic interface for Chromotocol connection used by both client and host.
24 // Provides access to the connection channels, but doesn't depend on the
25 // protocol used for each channel.
29 // Created, but not connecting yet.
32 // Sent session-initiate, but haven't received session-accept.
35 // Received session-initiate, but haven't sent session-accept.
38 // Session has been accepted and is pending authentication.
41 // Session has started authenticating.
44 // Session has been connected and authenticated.
47 // Session has been closed.
50 // Connection has failed.
57 virtual ~EventHandler() {}
59 // Called after session state has changed. It is safe to destroy
60 // the session from within the handler if |state| is AUTHENTICATING
61 // or CLOSED or FAILED.
62 virtual void OnSessionStateChange(State state
) = 0;
64 // Called whenever route for the channel specified with
65 // |channel_name| changes. Session must not be destroyed by the
66 // handler of this event.
67 virtual void OnSessionRouteChange(const std::string
& channel_name
,
68 const TransportRoute
& route
) = 0;
75 // Set event handler for this session. |event_handler| must outlive
77 virtual void SetEventHandler(EventHandler
* event_handler
) = 0;
79 // Returns error code for a failed session.
80 virtual ErrorCode
error() = 0;
82 // JID of the other side.
83 virtual const std::string
& jid() = 0;
85 // Configuration of the protocol that was sent or received in the
86 // session-initiate jingle message. Returned pointer is valid until
87 // connection is closed.
88 virtual const CandidateSessionConfig
* candidate_config() = 0;
90 // Protocol configuration. Can be called only after session has been accepted.
91 // Returned pointer is valid until connection is closed.
92 virtual const SessionConfig
& config() = 0;
94 // Set protocol configuration for an incoming session. Must be
95 // called on the host before the connection is accepted, from
96 // ChromotocolServer::IncomingConnectionCallback.
97 virtual void set_config(scoped_ptr
<SessionConfig
> config
) = 0;
99 // GetTransportChannelFactory() returns a factory that creates a new transport
100 // channel for each logical channel. GetMultiplexedChannelFactory() channels
101 // share a single underlying transport channel
102 virtual StreamChannelFactory
* GetTransportChannelFactory() = 0;
103 virtual StreamChannelFactory
* GetMultiplexedChannelFactory() = 0;
105 // Closes connection. Callbacks are guaranteed not to be called
106 // after this method returns. Must be called before the object is
107 // destroyed, unless the state is set to FAILED or CLOSED.
108 virtual void Close() = 0;
111 DISALLOW_COPY_AND_ASSIGN(Session
);
114 } // namespace protocol
115 } // namespace remoting
117 #endif // REMOTING_PROTOCOL_SESSION_H_