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

Unified Diff: ppapi/cpp/dev/websocket_dev.h

Issue 8821010: WebSocket Pepper API: C++ bindings implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits and rebase 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/cpp/completion_callback.h ('k') | ppapi/cpp/dev/websocket_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/websocket_dev.h
diff --git a/ppapi/cpp/dev/websocket_dev.h b/ppapi/cpp/dev/websocket_dev.h
index 8b25b8ee2ef5e31d67fd5f6821959fe37c534283..42981f6dcff332996fd366349ebb319729683486 100644
--- a/ppapi/cpp/dev/websocket_dev.h
+++ b/ppapi/cpp/dev/websocket_dev.h
@@ -6,20 +6,22 @@
#define PPAPI_CPP_DEV_WEBSOCKET_DEV_H_
#include "ppapi/c/dev/ppb_websocket_dev.h"
+#include "ppapi/cpp/resource.h"
/// @file
/// This file defines the WebSocket_Dev interface.
namespace pp {
+class CompletionCallback;
+class Instance;
class Var;
/// The <code>WebSocket_Dev</code> class
-/// A version that use virtual functions
class WebSocket_Dev : public Resource {
public:
/// Constructs a WebSocket_Dev object.
- WebSocket_Dev();
+ WebSocket_Dev(Instance* instance);
/// Destructs a WebSocket_Dev object.
virtual ~WebSocket_Dev();
@@ -27,40 +29,77 @@ class WebSocket_Dev : public Resource {
/// Connect() connects to the specified WebSocket server. Caller can call
/// this method at most once.
///
- /// @param[in] url A <code>PP_Var</code> representing a WebSocket server URL.
- /// The <code>PP_VarType</code> must be <code>PP_VARTYPE_STRING</code>.
- /// @param[in] protocols A pointer to an array of <code>PP_Var</code>
- /// specifying sub-protocols. Each <code>PP_Var</code> represents one
- /// sub-protocol and its <code>PP_VarType</code> must be
- /// <code>PP_VARTYPE_STRING</code>. This argument can be null only if
+ /// @param[in] url A <code>Var</code> of string type representing a WebSocket
+ /// server URL.
+ /// @param[in] protocols A pointer to an array of string type
+ /// <code>Var</code> specifying sub-protocols. Each <code>Var</code>
+ /// represents one sub-protocol. This argument can be null only if
/// <code>protocol_count</code> is 0.
/// @param[in] protocol_count The number of sub-protocols in
/// <code>protocols</code>.
+ /// @param[in] callback A <code>CompletionCallback</code> which is called
+ /// when a connection is established or an error occurs in establishing
+ /// connection.
///
- /// @return In case of immediate failure, returns an error code as follows.
- /// Returns <code>PP_ERROR_BADARGUMENT</code> corresponding to JavaScript
- /// SyntaxError and <code>PP_ERROR_NOACCESS</code> corresponding to
- /// JavaScript SecurityError. Otherwise, returns
- /// <code>PP_OK_COMPLETIONPENDING</code> and later invokes
- /// <code>OnOpen()</code> on success or <code>OnClose()</code> on failure.
+ /// @return An int32_t containing an error code from
+ /// <code>pp_errors.h</code>.
+ /// Returns <code>PP_ERROR_BADARGUMENT</code> if specified <code>url</code>,
+ /// or <code>protocols</code> contains invalid string as
+ /// <code>The WebSocket API specification</code> defines. It corresponds to
+ /// SyntaxError of the specification.
+ /// Returns <code>PP_ERROR_NOACCESS</code> if the protocol specified in the
+ /// <code>url</code> is not a secure protocol, but the origin of the caller
+ /// has a secure scheme. Also returns it if the port specified in the
+ /// <code>url</code> is a port to which the user agent is configured to block
+ /// access because the port is a well-known port like SMTP. It corresponds to
+ /// SecurityError of the specification.
+ /// Returns <code>PP_ERROR_INPROGRESS</code> if the call is not the first
+ /// time.
int32_t Connect(const Var& url, const Var protocols[],
- uint32_t protocol_count);
+ uint32_t protocol_count, const CompletionCallback& callback);
/// Close() closes the specified WebSocket connection by specifying
/// <code>code</code> and <code>reason</code>.
///
/// @param[in] code The WebSocket close code. Ignored if it is 0.
- /// @param[in] reason A <code>PP_Var</code> which represents the WebSocket
- /// close reason. Ignored if it is <code>PP_VARTYPE_UNDEFINED</code>.
- /// Otherwise, its <code>PP_VarType</code> must be
- /// <code>PP_VARTYPE_STRING</code>.
- ///
- /// @return In case of immediate failure, returns an error code as follows.
- /// Returns <code>PP_ERROR_BADARGUMENT</code> corresponding to JavaScript
- /// SyntaxError and <code>PP_ERROR_NOACCESS</code> corresponding to
- /// JavaScript InvalidAccessError. Otherwise, returns
- /// <code>PP_OK_COMPLETIONPENDING</code> and invokes <code>OnClose</code>.
- int32_t Close(uint16_t code, const Var& reason);
+ /// @param[in] reason A <code>Var</code> of string type which represents the
+ /// WebSocket close reason. Ignored if it is undefined type.
+ /// @param[in] callback A <code>CompletionCallback</code> which is called
+ /// when the connection is closed or an error occurs in closing the
+ /// connection.
+ ///
+ /// @return An int32_t containing an error code from
+ /// <code>pp_errors.h</code>.
+ /// Returns <code>PP_ERROR_BADARGUMENT</code> if <code>reason</code> contains
+ /// an invalid character as a UTF-8 string, or longer than 123 bytes. It
+ /// corresponds to JavaScript SyntaxError of the specification.
+ /// Returns <code>PP_ERROR_NOACCESS</code> if the code is not an integer
+ /// equal to 1000 or in the range 3000 to 4999. It corresponds to
+ /// InvalidAccessError of the specification. Returns
+ /// <code>PP_ERROR_INPROGRESS</code> if the call is not the first time.
+ int32_t Close(uint16_t code, const Var& reason,
+ const CompletionCallback& callback);
+
+ /// ReceiveMessage() receives a message from the WebSocket server.
+ /// This interface only returns a single message. That is, this interface
+ /// must be called at least N times to receive N messages, no matter how
+ /// small each message is.
+ ///
+ /// @param[out] message The received message is copied to provided
+ /// <code>message</code>. The <code>message</code> must remain valid until
+ /// the ReceiveMessage operation completes.
+ /// @param[in] callback A <code>CompletionCallback</code> which is called
+ /// when the receiving message is completed. It is ignored if ReceiveMessage
+ /// completes synchronously and returns <code>PP_OK</code>.
+ ///
+ /// @return An int32_t containing an error code from
+ /// <code>pp_errors.h</code>.
+ /// If an error is detected or connection is closed, returns
+ /// <code>PP_ERROR_FAILED</code> after all buffered messages are received.
+ /// Until buffered message become empty, continues to returns
+ /// <code>PP_OK</code> as if connection is still established without errors.
+ int32_t ReceiveMessage(Var* message,
+ const CompletionCallback& callback);
/// Send() sends a message to the WebSocket server.
///
@@ -68,38 +107,61 @@ class WebSocket_Dev : public Resource {
/// buffer. So caller can free <code>data</code> safely after returning
/// from the function.
///
- /// @return In case of immediate failure, returns an error code as follows.
- /// Returns <code>PP_ERROR_FAILED</code> corresponding to JavaScript
- /// InvalidStateError and <code>PP_ERROR_BADARGUMENT</code> corresponding to
- /// JavaScript SyntaxError. Otherwise, return <code>PP_OK</code>.
- /// <code>PP_OK</code> doesn't necessarily mean that the server received the
- /// message.
- int32_t Send(const Var& data);
+ /// @return An int32_t containing an error code from
+ /// <code>pp_errors.h</code>.
+ /// Returns <code>PP_ERROR_FAILED</code> if the ReadyState is
+ /// <code>PP_WEBSOCKETREADYSTATE_CONNECTING_DEV</code>. It corresponds
+ /// JavaScript InvalidStateError of the specification.
+ /// Returns <code>PP_ERROR_BADARGUMENT</code> if provided
+ /// <code>message</code> of string type contains an invalid character as a
+ /// UTF-8 string. It corresponds to JavaScript SyntaxError of the
+ /// specification.
+ /// Otherwise, returns <code>PP_OK</code>, but it doesn't necessarily mean
+ /// that the server received the message.
+ int32_t SendMessage(const Var& message);
/// GetBufferedAmount() returns the number of bytes of text and binary
/// messages that have been queued for the WebSocket connection to send but
/// have not been transmitted to the network yet.
///
- /// Note: This interface might not be able to return exact bytes in the first
- /// release. Current WebSocket implementation can not estimate exact protocol
- /// frame overheads.
- ///
/// @return Returns the number of bytes.
uint64_t GetBufferedAmount();
+ /// GetCloseCode() returns the connection close code for the WebSocket
+ /// connection.
+ ///
+ /// @return Returns 0 if called before the close code is set.
+ uint16_t GetCloseCode();
+
+ /// GetCloseReason() returns the connection close reason for the WebSocket
+ /// connection.
+ ///
+ /// @return Returns a <code>Var</code> of string type. If called before the
+ /// close reason is set, it contains an empty string.
+ Var GetCloseReason();
+
+ /// GetCloseWasClean() returns if the connection was closed cleanly for the
+ /// specified WebSocket connection.
+ ///
+ /// @return Returns <code>false</code> if called before the connection is
+ /// closed, or called on an invalid resource. Otherwise, returns
+ /// <code>true</code> if the connection was closed cleanly, or returns
+ /// <code>false</code> if the connection was closed for abnormal reasons.
+ bool GetCloseWasClean();
+
/// GetExtensions() returns the extensions selected by the server for the
/// specified WebSocket connection.
///
- /// @return Returns a <code>PP_VARTYPE_STRING</code> var. If called before
- /// the connection is established, its data is empty string.
- /// Currently its data is always empty string.
+ /// @return Returns a <code>Var</code> of string type. If called before the
+ /// connection is established, its data is an empty string.
+ /// Currently its data is always an empty string.
Var GetExtensions();
/// GetProtocol() returns the sub-protocol chosen by the server for the
/// specified WebSocket connection.
///
- /// @return Returns a <code>PP_VARTYPE_STRING</code> var. If called before
- /// the connection is established, its data is empty string.
+ /// @return Returns a <code>Var</code> of string type. If called before the
+ /// connection is established, it contains the empty string.
Var GetProtocol();
/// GetReadyState() returns the ready state of the specified WebSocket
@@ -111,23 +173,9 @@ class WebSocket_Dev : public Resource {
/// GetURL() returns the URL associated with specified WebSocket connection.
///
- /// @return Returns a <code>PP_VARTYPE_STRING</code> var. If called before
- /// the connection is established, its data is empty string.
+ /// @return Returns a <code>Var</code> of string type. If called before the
+ /// connection is established, it contains the empty string.
Var GetURL();
-
- /// OnOpen() is invoked when the connection is established by Connect().
- virtual void OnOpen() = 0;
-
- /// OnMessage() is invoked when a message is received.
- virtual void OnMessage(Var message) = 0;
-
- /// OnError() is invoked if the user agent was required to fail the WebSocket
- /// connection or the WebSocket connection is closed with prejudice.
- /// OnClose() always follows OnError().
- virtual void OnError() = 0;
-
- /// OnClose() is invoked when the connection is closed by errors or Close().
- virtual void OnClose(bool wasClean, uint16_t code, const Var& reason) = 0;
};
} // namespace pp
« no previous file with comments | « ppapi/cpp/completion_callback.h ('k') | ppapi/cpp/dev/websocket_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698