async-protocol-web
v0.2.0
Published
An async, call-return-throw oriented protocol
Downloads
3
Readme
JavaScript asyncProtocol
A JavaScript implementation for the asyncProtocol in the browser
How to use it
With browserify
Install with npm install async-protocol-web
Without browserify
Include the file "asyncProtocol.min.js"
Code example
"use strict"
var aP = require("async-protocol-web")
// Create a new async-protocol context
var cntxt = new aP
// Register all possible calls (name, args and return)
cntxt.registerClientCall("#1 add(a: int, b: int) -> result: int")
cntxt.registerClientCall("#2 stringInfo(str: string) -> chars[]: (char: string, count: uint), length: uint")
cntxt.registerClientCall("#3 div(n: int, d: int) -> result: float")
cntxt.registerException("#1 divByZero")
// Create the connection
var conn = cntxt.connect("ws://localhost:8001")
conn.onopen = function () {
console.log("Connected")
conn.call("add", {a: 12, b: 13}, function (err, result) {
console.log("[add]", result)
})
conn.call("stringInfo", {str: "Hello World!"}, function (err, result) {
console.log("[stringInfo]", result)
})
conn.call("div", {n: 17, d: 0}, function (err) {
if (err) {
console.log("[div]", err)
conn.close()
}
})
}
aP
The main object, returned by require("async-protocol-web")
new aP()
Create a new protocol context. A context is basically the collection of calls that the protocol accepts and answer
ap.registerServerCall(signature, callback)
Register a new call that the server can send to a client
signature
is a string (the syntax is described bellow)
callback
will be executed whenever the server sends the registered call. It should accept two arguments:
args
: the arguments sent by the server (always match the format given by the call signature)answer
: a callback function that must be called to answer this call. The argument sent to it must match the return format defined by the call signature
Inside the callback
, this
refers to the aP.Connection
object that received the call
ap.registerClientCall(signature)
Register a new call that a client can send to the server
signature
is a string (the syntax is described bellow)
ap.registerException(signature)
Register a new type of exception
signature
is a string (the syntax is described bellow)
There are two special exceptions. They always exist but can't be sent the other side (that means they are raised by the local lib code):
"timeout"
: raised when a call takes too long to be answered"closed"
: raised when the connection is lost before the call is answered
ap.connect(url)
Create a new async-protocol connection within the context.
Return a new aP.Connection
object
aP.Token
Represent a token of 16 bytes. Can be used as a general id, even as a unique id
new aP.Token([base])
Create a new token from the base
. If omited, create a pseudo-random token
base
can be a 16-byte Buffer, another Token or a hex-encoded 32-byte string
token.isEqual(obj)
Return whether this token is equal to the token represented by the given object (another Token, a 16-byte Buffer or a hex-encoded 32-char string)
token.toString()
Return the Token as a hex-encoded 32-char string
aP.Exception
Represent a exceptional return, like an error. Any call can be answered with an exception that has been registered in the same context as the call.
new aP.Exception(name, [data])
Create a new exception object. name
is a string and data
must match the registered format.
The main use is to answer a call with an exception, for example:
For example:
cntxt.registerServerCall("#15 getLocation -> location: string", function (args, answer) {
try {
answer({location: getGeoLocation()})
} catch (e) {
answer(new aP.Exception("couldNotLocate", {reason: e.toString()}))
}
})
cntxt.registerException("#9 couldNotLocate(reason: string)")
exception.name
A string
. Usage example:
conn.call("setAge", {value: 17}, function (err) {
if (err && err.name === "invalidAge")
displayAgeError()
})
exception.data
The data carried by the exception object (must match the format registered in the context)
aP.Connection
Represent a async-protocol connection.
You never create this object directly, instead they are returned by ap.connect
or referenced by this
in calls callback.
connection.call(name, [data, [callback, [timeout]]])
Send a call to the other side.
name
(string) is the call name, as registered in the connection context
data
(optional) must match the registered args format
callback
(optional) is a function with the format function (err, result)
. In case of error, err
is a aP.Exception
object and result
will be null. Otherwise, err
will be null and result
will bring the call return (following the format registered). The callback is executed only once.
timeout
(optional, default:60e3) is the maximum time (in ms) you want to wait for the call to be answered. Zero means never timeout. When the this time is reached, the callback will be executed with the execption "timeout". If the answer is received after the timeout, the connection will be dropped.
If the connection is lost before the answer is received or the timeout, callback will be executed with the exception "closed"
connection.close()
End this connection
connection.ready
Return whether the connection is ready to process calls
Event: "opem()"
Dispatched when the WebSocket is opened
Event: "close()"
Dispatched when the connection is closed, for any reason
Signature syntax
Call signature
General structure:
#{id} {name}({args}) -> {returns}
{id}
is a decimal, positive number (>0). It is used as the under the hood identifier and must be the same in both the client and server side{name}
is the call identifier (must be unique among the calls from the same context and side){args}
follow the syntax described bellow (in Format syntax). If the call takes no input, it can be omited:#{id} {name} -> {returns}
{returns}
follow the syntax described bellow (in Format syntax). If the call makes no output, it can be omited:#{id} {name}({args})
Examples:
- "#17 getSum(a: int, b: int) -> sum:int"
- "#2 createUser(name: string, email: string, password: Buffer)"
- "#5 getFolders -> folders[]:(name: string, ownerName: string, ownerId: uint)"
- "#7 setTags(postId: int, tags[]:string)"
Exception signature
General structure:
#{id} {name}({args})
See Call signature above for details. {name}
must not be "timeout" nor "closed"
Format syntax
General structure:
{field}, {field}, ...
{field}
has three variations:
- a scalar field:
{name}:{type}
- a vector field (every element is simply a scalar):
{name}[]:{type}
- a array field (every element has the same, but complex, type):
{name}[]:({field})
{type}
must be one of "uint", "int", "float", "string", "token", "Buffer" or "boolean"