Re-subimission of https://codereview.chromium.org/1041213003/
[chromium-blink-merge.git] / content / renderer / p2p / socket_dispatcher.h
blob0b180ec4e7d5c2e5639d33575264238bcedff163
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 // P2PSocketDispatcher is a per-renderer object that dispatchers all
6 // P2P messages received from the browser and relays all P2P messages
7 // sent to the browser. P2PSocketClient instances register themselves
8 // with the dispatcher using RegisterClient() and UnregisterClient().
9 //
10 // Relationship of classes.
12 // P2PSocketHost P2PSocketClient
13 // ^ ^
14 // | |
15 // v IPC v
16 // P2PSocketDispatcherHost <---------> P2PSocketDispatcher
18 // P2PSocketDispatcher receives and dispatches messages on the
19 // IO thread.
21 #ifndef CONTENT_RENDERER_P2P_SOCKET_DISPATCHER_H_
22 #define CONTENT_RENDERER_P2P_SOCKET_DISPATCHER_H_
24 #include <vector>
26 #include "base/callback_forward.h"
27 #include "base/compiler_specific.h"
28 #include "base/id_map.h"
29 #include "base/observer_list_threadsafe.h"
30 #include "base/synchronization/lock.h"
31 #include "content/common/content_export.h"
32 #include "content/common/p2p_socket_type.h"
33 #include "content/renderer/p2p/network_list_manager.h"
34 #include "ipc/message_filter.h"
35 #include "net/base/net_util.h"
37 namespace base {
38 class MessageLoopProxy;
39 } // namespace base
41 namespace net {
42 class IPEndPoint;
43 } // namespace net
45 namespace content {
47 class NetworkListObserver;
48 class P2PAsyncAddressResolver;
49 class P2PSocketClientImpl;
50 class RenderViewImpl;
52 class CONTENT_EXPORT P2PSocketDispatcher : public IPC::MessageFilter,
53 public NetworkListManager {
54 public:
55 explicit P2PSocketDispatcher(base::MessageLoopProxy* ipc_message_loop);
57 // NetworkListManager interface:
58 void AddNetworkListObserver(
59 NetworkListObserver* network_list_observer) override;
60 void RemoveNetworkListObserver(
61 NetworkListObserver* network_list_observer) override;
63 protected:
64 ~P2PSocketDispatcher() override;
66 private:
67 friend class P2PAsyncAddressResolver;
68 friend class P2PSocketClientImpl;
70 // Send a message asynchronously.
71 virtual void Send(IPC::Message* message);
73 // IPC::MessageFilter override. Called on IO thread.
74 bool OnMessageReceived(const IPC::Message& message) override;
75 void OnFilterAdded(IPC::Sender* sender) override;
76 void OnFilterRemoved() override;
77 void OnChannelClosing() override;
79 // Returns the IO message loop.
80 base::MessageLoopProxy* message_loop();
82 // Called by P2PSocketClient.
83 int RegisterClient(P2PSocketClientImpl* client);
84 void UnregisterClient(int id);
85 void SendP2PMessage(IPC::Message* msg);
87 // Called by DnsRequest.
88 int RegisterHostAddressRequest(P2PAsyncAddressResolver* request);
89 void UnregisterHostAddressRequest(int id);
91 // Incoming message handlers.
92 void OnNetworkListChanged(const net::NetworkInterfaceList& networks);
93 void OnGetHostAddressResult(int32 request_id,
94 const net::IPAddressList& addresses);
95 void OnSocketCreated(int socket_id,
96 const net::IPEndPoint& local_address,
97 const net::IPEndPoint& remote_address);
98 void OnIncomingTcpConnection(int socket_id, const net::IPEndPoint& address);
99 void OnSendComplete(int socket_id, const P2PSendPacketMetrics& send_metrics);
100 void OnError(int socket_id);
101 void OnDataReceived(int socket_id, const net::IPEndPoint& address,
102 const std::vector<char>& data,
103 const base::TimeTicks& timestamp);
105 P2PSocketClientImpl* GetClient(int socket_id);
107 scoped_refptr<base::MessageLoopProxy> message_loop_;
108 IDMap<P2PSocketClientImpl> clients_;
110 IDMap<P2PAsyncAddressResolver> host_address_requests_;
112 bool network_notifications_started_;
113 scoped_refptr<ObserverListThreadSafe<NetworkListObserver> >
114 network_list_observers_;
116 IPC::Sender* sender_;
118 DISALLOW_COPY_AND_ASSIGN(P2PSocketDispatcher);
121 } // namespace content
123 #endif // CONTENT_RENDERER_P2P_SOCKET_DISPATCHER_H_