Re-subimission of https://codereview.chromium.org/1041213003/
[chromium-blink-merge.git] / extensions / browser / api / sockets_tcp / tcp_socket_event_dispatcher.cc
blob0d52ae5937d2f13e0d0c15bd79a608b540819067
1 // Copyright 2014 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 #include "extensions/browser/api/sockets_tcp/tcp_socket_event_dispatcher.h"
7 #include "base/lazy_instance.h"
8 #include "extensions/browser/api/socket/tcp_socket.h"
9 #include "extensions/browser/event_router.h"
10 #include "extensions/browser/extension_system.h"
11 #include "extensions/browser/extensions_browser_client.h"
12 #include "net/base/net_errors.h"
14 namespace {
15 int kDefaultBufferSize = 4096;
18 namespace extensions {
19 namespace core_api {
21 using content::BrowserThread;
23 static base::LazyInstance<
24 BrowserContextKeyedAPIFactory<TCPSocketEventDispatcher> > g_factory =
25 LAZY_INSTANCE_INITIALIZER;
27 // static
28 BrowserContextKeyedAPIFactory<TCPSocketEventDispatcher>*
29 TCPSocketEventDispatcher::GetFactoryInstance() {
30 return g_factory.Pointer();
33 // static
34 TCPSocketEventDispatcher* TCPSocketEventDispatcher::Get(
35 content::BrowserContext* context) {
36 DCHECK_CURRENTLY_ON(BrowserThread::UI);
38 return BrowserContextKeyedAPIFactory<TCPSocketEventDispatcher>::Get(context);
41 TCPSocketEventDispatcher::TCPSocketEventDispatcher(
42 content::BrowserContext* context)
43 : thread_id_(Socket::kThreadId), browser_context_(context) {
44 ApiResourceManager<ResumableTCPSocket>* manager =
45 ApiResourceManager<ResumableTCPSocket>::Get(browser_context_);
46 DCHECK(manager)
47 << "There is no socket manager. "
48 "If this assertion is failing during a test, then it is likely that "
49 "TestExtensionSystem is failing to provide an instance of "
50 "ApiResourceManager<ResumableTCPSocket>.";
51 sockets_ = manager->data_;
54 TCPSocketEventDispatcher::~TCPSocketEventDispatcher() {}
56 TCPSocketEventDispatcher::ReadParams::ReadParams() {}
58 TCPSocketEventDispatcher::ReadParams::~ReadParams() {}
60 void TCPSocketEventDispatcher::OnSocketConnect(const std::string& extension_id,
61 int socket_id) {
62 DCHECK_CURRENTLY_ON(thread_id_);
64 StartSocketRead(extension_id, socket_id);
67 void TCPSocketEventDispatcher::OnSocketResume(const std::string& extension_id,
68 int socket_id) {
69 DCHECK_CURRENTLY_ON(thread_id_);
71 StartSocketRead(extension_id, socket_id);
74 void TCPSocketEventDispatcher::StartSocketRead(const std::string& extension_id,
75 int socket_id) {
76 DCHECK_CURRENTLY_ON(thread_id_);
78 ReadParams params;
79 params.thread_id = thread_id_;
80 params.browser_context_id = browser_context_;
81 params.extension_id = extension_id;
82 params.sockets = sockets_;
83 params.socket_id = socket_id;
85 StartRead(params);
88 // static
89 void TCPSocketEventDispatcher::StartRead(const ReadParams& params) {
90 DCHECK_CURRENTLY_ON(params.thread_id);
92 ResumableTCPSocket* socket =
93 params.sockets->Get(params.extension_id, params.socket_id);
94 if (!socket) {
95 // This can happen if the socket is closed while our callback is active.
96 return;
98 DCHECK(params.extension_id == socket->owner_extension_id())
99 << "Socket has wrong owner.";
101 // Don't start another read if the socket has been paused.
102 if (socket->paused())
103 return;
105 int buffer_size = socket->buffer_size();
106 if (buffer_size <= 0)
107 buffer_size = kDefaultBufferSize;
108 socket->Read(buffer_size,
109 base::Bind(&TCPSocketEventDispatcher::ReadCallback, params));
112 // static
113 void TCPSocketEventDispatcher::ReadCallback(
114 const ReadParams& params,
115 int bytes_read,
116 scoped_refptr<net::IOBuffer> io_buffer) {
117 DCHECK_CURRENTLY_ON(params.thread_id);
119 // If |bytes_read| == 0, the connection has been closed by the peer.
120 // If |bytes_read| < 0, there was a network error, and |bytes_read| is a value
121 // from "net::ERR_".
123 if (bytes_read == 0) {
124 bytes_read = net::ERR_CONNECTION_CLOSED;
127 if (bytes_read > 0) {
128 // Dispatch "onReceive" event.
129 sockets_tcp::ReceiveInfo receive_info;
130 receive_info.socket_id = params.socket_id;
131 receive_info.data.assign(io_buffer->data(), io_buffer->data() + bytes_read);
132 scoped_ptr<base::ListValue> args =
133 sockets_tcp::OnReceive::Create(receive_info);
134 scoped_ptr<Event> event(
135 new Event(sockets_tcp::OnReceive::kEventName, args.Pass()));
136 PostEvent(params, event.Pass());
138 // Post a task to delay the read until the socket is available, as
139 // calling StartReceive at this point would error with ERR_IO_PENDING.
140 BrowserThread::PostTask(
141 params.thread_id,
142 FROM_HERE,
143 base::Bind(&TCPSocketEventDispatcher::StartRead, params));
144 } else if (bytes_read == net::ERR_IO_PENDING) {
145 // This happens when resuming a socket which already had an
146 // active "read" callback.
147 } else {
148 // Dispatch "onReceiveError" event but don't start another read to avoid
149 // potential infinite reads if we have a persistent network error.
150 sockets_tcp::ReceiveErrorInfo receive_error_info;
151 receive_error_info.socket_id = params.socket_id;
152 receive_error_info.result_code = bytes_read;
153 scoped_ptr<base::ListValue> args =
154 sockets_tcp::OnReceiveError::Create(receive_error_info);
155 scoped_ptr<Event> event(
156 new Event(sockets_tcp::OnReceiveError::kEventName, args.Pass()));
157 PostEvent(params, event.Pass());
159 // Since we got an error, the socket is now "paused" until the application
160 // "resumes" it.
161 ResumableTCPSocket* socket =
162 params.sockets->Get(params.extension_id, params.socket_id);
163 if (socket) {
164 socket->set_paused(true);
169 // static
170 void TCPSocketEventDispatcher::PostEvent(const ReadParams& params,
171 scoped_ptr<Event> event) {
172 DCHECK_CURRENTLY_ON(params.thread_id);
174 BrowserThread::PostTask(BrowserThread::UI,
175 FROM_HERE,
176 base::Bind(&DispatchEvent,
177 params.browser_context_id,
178 params.extension_id,
179 base::Passed(event.Pass())));
182 // static
183 void TCPSocketEventDispatcher::DispatchEvent(void* browser_context_id,
184 const std::string& extension_id,
185 scoped_ptr<Event> event) {
186 DCHECK_CURRENTLY_ON(BrowserThread::UI);
188 content::BrowserContext* context =
189 reinterpret_cast<content::BrowserContext*>(browser_context_id);
190 if (!extensions::ExtensionsBrowserClient::Get()->IsValidContext(context))
191 return;
193 EventRouter* event_router = EventRouter::Get(context);
194 if (event_router)
195 event_router->DispatchEventToExtension(extension_id, event.Pass());
198 } // namespace core_api
199 } // namespace extensions