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

Unified Diff: webkit/plugins/ppapi/ppb_websocket_impl.cc

Issue 8821008: WebSocket Pepper API: Add unit test to call Close() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase to master Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/tests/test_websocket.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_websocket_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_websocket_impl.cc b/webkit/plugins/ppapi/ppb_websocket_impl.cc
index f8fb1900f8feca7b8e4882e6596addef99ca12cc..9d4fc20048dad6f8ecea1095b6e914a4b01da146 100644
--- a/webkit/plugins/ppapi/ppb_websocket_impl.cc
+++ b/webkit/plugins/ppapi/ppb_websocket_impl.cc
@@ -212,6 +212,9 @@ int32_t PPB_WebSocket_Impl::Close(uint16_t code,
if (!(code == WebSocket::CloseEventCodeNormalClosure ||
(WebSocket::CloseEventCodeMinimumUserDefined <= code &&
code <= WebSocket::CloseEventCodeMaximumUserDefined)))
+ // RFC 6455 limits applications to use reserved connection close code in
+ // section 7.4.2.. The WebSocket API (http://www.w3.org/TR/websockets/)
+ // defines this out of range error as InvalidAccessError in JavaScript.
return PP_ERROR_NOACCESS;
}
@@ -234,6 +237,7 @@ int32_t PPB_WebSocket_Impl::Close(uint16_t code,
// Install |callback|.
close_callback_ = callback;
+ // Abort ongoing connect.
if (state_ == PP_WEBSOCKETREADYSTATE_CONNECTING_DEV) {
state_ = PP_WEBSOCKETREADYSTATE_CLOSING_DEV;
PP_RunAndClearCompletionCallback(&connect_callback_, PP_ERROR_ABORTED);
@@ -242,6 +246,13 @@ int32_t PPB_WebSocket_Impl::Close(uint16_t code,
return PP_OK_COMPLETIONPENDING;
}
+ // Abort ongoing receive.
+ if (wait_for_receive_) {
+ wait_for_receive_ = false;
+ receive_callback_var_ = NULL;
+ PP_RunAndClearCompletionCallback(&receive_callback_, PP_ERROR_ABORTED);
+ }
+
// Close connection.
state_ = PP_WEBSOCKETREADYSTATE_CLOSING_DEV;
WebString web_reason = WebString::fromUTF8(reason_string->value());
@@ -261,6 +272,10 @@ int32_t PPB_WebSocket_Impl::ReceiveMessage(PP_Var* message,
if (!received_messages_.empty())
return DoReceive();
+ // Check state again. In CLOSED state, no more messages will be received.
+ if (state_ == PP_WEBSOCKETREADYSTATE_CLOSED_DEV)
+ return PP_ERROR_BADARGUMENT;
+
// Returns PP_ERROR_FAILED after an error is received and received messages
// is exhausted.
if (error_was_received_)
@@ -414,6 +429,7 @@ void PPB_WebSocket_Impl::didReceiveMessageError() {
// But, if no messages are queued and ReceiveMessage() is now on going.
// We must invoke the callback with error code here.
wait_for_receive_ = false;
+ receive_callback_var_ = NULL;
PP_RunAndClearCompletionCallback(&receive_callback_, PP_ERROR_FAILED);
}
@@ -454,7 +470,13 @@ void PPB_WebSocket_Impl::didClose(unsigned long unhandled_buffered_amount,
state_ = PP_WEBSOCKETREADYSTATE_CLOSED_DEV;
if (state == PP_WEBSOCKETREADYSTATE_CONNECTING_DEV)
- PP_RunAndClearCompletionCallback(&connect_callback_, PP_OK);
+ PP_RunAndClearCompletionCallback(&connect_callback_, PP_ERROR_FAILED);
+
+ if (wait_for_receive_) {
+ wait_for_receive_ = false;
+ receive_callback_var_ = NULL;
+ PP_RunAndClearCompletionCallback(&receive_callback_, PP_ERROR_ABORTED);
+ }
if (state == PP_WEBSOCKETREADYSTATE_CLOSING_DEV)
PP_RunAndClearCompletionCallback(&close_callback_, PP_OK);
« no previous file with comments | « ppapi/tests/test_websocket.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698