Request should be encoded using json. Format described below:
{
"id" : "10",
"v" : "1",
"method" : "methodName",
"args": ["array", "of", "args"],
"reply" : true
}
Parameter | Format | Description | Default |
---|---|---|---|
id | Any number | Unique client identifier (big random) | |
v | Any number | Version of the method | 1 |
method | String in camelCase | Method name to be called on server | |
args | Associative array, all keys names must be in camelCase | Arguments will be passed into server's method | (Empty array) |
reply | Boolean | Does a request require a reply | true |
Response should be encoded using json too. Format described below:
{
"reply" : ["some result"],
"code" : 1,
"error": "error occurred"
}
Parameter | Format | Description | Default |
---|---|---|---|
reply | Associative array, all keys names must be in camelCase | Reply data | (Empty array) |
code | Number | Error code | 0 |
error | String | Error message | (Empty string) |
If no error occurred error code must be set to 0 and error message to empty string.
There is common errors codes:
- 1 -
Method not found
- 2 -
Version not supported
Implementation uses Redis lists to organize queues.
- Client forms request
- Client pushes encoded request (using
LPUSH
) to Redis list, key format must beserver.[endpoint]
- If reply is needed then client waits (using
BRPOP
) until key with nameclient.[client id]
is appeared
- Server gets the encoded request from list (using
BRPOP
). List key format isserver.[endpoint]
- Server processes the request
- If reply is needed then server pushes (using
LPUSH
) message to list. List key name must beclient.[client id]
- The server should set expiration on the client key for 10 seconds
The service should implement special methods.
The command returns the service definition (description, methods).
- version:
1
- method:
discover
- args:
['methodName1', 'methodNameN']
, optional
Example:
{
"v": 1,
"method": "discover"
}
The reply has two properties on the root:
service
- description of the service, optionalmethods
- list of existed methods
A method is described by three properties:
description
- description of the method, optionalparameters
- existed parameters (for more information see Example), optionalreturns
- result data type, optional
A parameter is described by two properties:
type
- data type (available types:string
,integer
,float
,boolean
,array
,_schema_
, defaultstring
)default
- default value, optional
Example:
{
"reply": {
"service": "Calculator",
"methods": {
"add": {
"parameters": [ // an array indicates positional parameters
{ "type": "integer", "default": 0 },
{ "type": "integer", "default": 0 }
],
"returns": "integer"
},
"divide": {
"description": "Do division",
"parameters": {
"divisor": { "type": "integer" },
"dividend": { "type": "integer" }
},
"returns": "float"
},
"doNothing": {}, // no requirements on parameters or return type
"getAddress" : {
"description": "Takes a person and returns an address",
"parameters": {
"person": {
// for the type we use a schema
"type": {
"firstName": { "type": "string" },
"lastName": { "type": "string" }
}
},
},
// use a schema for the return type
"returns": {
"street": { "type": "string" },
"zip": { "type": "string" },
"state": { "type": "string" },
"town": { "type": "string" }
}
}
}
}
}