Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: remoting/host/log_to_server.h

Issue 10413035: [Chromoting] LogToServer correctly handles multiple simultaneous connections. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove the ConnectionInfo class. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/host/log_to_server.cc » ('j') | remoting/host/log_to_server_unittest.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_LOG_TO_SERVER_H_ 5 #ifndef REMOTING_HOST_LOG_TO_SERVER_H_
6 #define REMOTING_HOST_LOG_TO_SERVER_H_ 6 #define REMOTING_HOST_LOG_TO_SERVER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map>
10 #include <string>
9 11
10 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
12 #include "base/threading/non_thread_safe.h" 14 #include "base/threading/non_thread_safe.h"
13 #include "remoting/host/host_status_observer.h" 15 #include "remoting/host/host_status_observer.h"
14 #include "remoting/host/server_log_entry.h" 16 #include "remoting/host/server_log_entry.h"
15 #include "remoting/jingle_glue/signal_strategy.h" 17 #include "remoting/jingle_glue/signal_strategy.h"
16 #include "remoting/protocol/transport.h" 18 #include "remoting/protocol/transport.h"
17 19
18 namespace base { 20 namespace base {
(...skipping 16 matching lines...) Expand all
35 public HostStatusObserver, 37 public HostStatusObserver,
36 public SignalStrategy::Listener { 38 public SignalStrategy::Listener {
37 public: 39 public:
38 explicit LogToServer(ChromotingHost* host, 40 explicit LogToServer(ChromotingHost* host,
39 ServerLogEntry::Mode mode, 41 ServerLogEntry::Mode mode,
40 SignalStrategy* signal_strategy); 42 SignalStrategy* signal_strategy);
41 virtual ~LogToServer(); 43 virtual ~LogToServer();
42 44
43 // Logs a session state change. Currently, this is either 45 // Logs a session state change. Currently, this is either
44 // connection or disconnection. 46 // connection or disconnection.
45 void LogSessionStateChange(bool connected); 47 void LogSessionStateChange(const std::string& jid, bool connected);
46 48
47 // SignalStrategy::Listener interface. 49 // SignalStrategy::Listener interface.
48 virtual void OnSignalStrategyStateChange( 50 virtual void OnSignalStrategyStateChange(
49 SignalStrategy::State state) OVERRIDE; 51 SignalStrategy::State state) OVERRIDE;
50 52
51 // HostStatusObserver interface. 53 // HostStatusObserver interface.
52 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE; 54 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
53 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE; 55 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
54 virtual void OnAccessDenied(const std::string& jid) OVERRIDE; 56 virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
55 virtual void OnClientRouteChange( 57 virtual void OnClientRouteChange(
56 const std::string& jid, 58 const std::string& jid,
57 const std::string& channel_name, 59 const std::string& channel_name,
58 const protocol::TransportRoute& route) OVERRIDE; 60 const protocol::TransportRoute& route) OVERRIDE;
59 virtual void OnShutdown() OVERRIDE; 61 virtual void OnShutdown() OVERRIDE;
60 62
61 private: 63 private:
62 void Log(const ServerLogEntry& entry); 64 void Log(const ServerLogEntry& entry);
63 void SendPendingEntries(); 65 void SendPendingEntries();
64 66
65 scoped_refptr<ChromotingHost> host_; 67 scoped_refptr<ChromotingHost> host_;
66 ServerLogEntry::Mode mode_; 68 ServerLogEntry::Mode mode_;
67 SignalStrategy* signal_strategy_; 69 SignalStrategy* signal_strategy_;
68 scoped_ptr<IqSender> iq_sender_; 70 scoped_ptr<IqSender> iq_sender_;
69 protocol::TransportRoute::RouteType connection_type_; 71 // A map from client JID to the route type of that client's connection to
70 bool connection_type_set_; 72 // this host.
73 std::map<std::string, protocol::TransportRoute::RouteType>
74 connection_route_type_;
71 std::deque<ServerLogEntry> pending_entries_; 75 std::deque<ServerLogEntry> pending_entries_;
72 76
73 DISALLOW_COPY_AND_ASSIGN(LogToServer); 77 DISALLOW_COPY_AND_ASSIGN(LogToServer);
74 }; 78 };
75 79
76 } // namespace remoting 80 } // namespace remoting
77 81
78 #endif // REMOTING_HOST_LOG_TO_SERVER_H_ 82 #endif // REMOTING_HOST_LOG_TO_SERVER_H_
OLDNEW
« no previous file with comments | « no previous file | remoting/host/log_to_server.cc » ('j') | remoting/host/log_to_server_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698