-
Notifications
You must be signed in to change notification settings - Fork 12
Node API
NodeAPI is a stateful and lightweight streaming remote procedure call (RPC) protocol. Primarily, this specification defines several data structures and the rules for processing them. These concepts can be used with various transport layers, such as the same process, HTTP, web sockets, sockets, and various other message-passing environments. By default, NodeAPI uses JSON (RFC 4627) as the data format. However the protocol is serialization-format-independent, and can be transported using formats like MsgPack.
The Requester originates Request objects and handles Response objects. The Responder originates Response objects and handles Request objects.
A single implementation of this specification can perform both roles, even at the same time, to other different requesters or the same requester. This specification does not address that complexity.
Requests are used to retrieve data from a provider. A request always contains, at a minimum, a method to be executed and a request ID. The method being invoked might require more fields. Requests must be tracked by their ID until the stream is deemed closed by the responder. To avoid conflicts, the responder must track IDs for each individual requester separately.
- rid (integer)
- The request ID. All responses are asynchronous, so this field is used to associate the response with the request.
- An rid cannot be reused by another request except when closing the stream.
- An rid must be greater than 0.
- The maximum value of an rid is 2147483647(0x7FFFFFFF). The next rid must be reset to 1.
-
method (string)
- The method is used to determine what type of request you are making.
- path (string)
- (Optional) Specifies the node where the method is to perform the operation. The path must be valid.
{
"msg": 15,
"requests":[
{
"rid": 2,
"method": "list",
"path": "/connections/dslink1"
}
]
}
Responses are returned to the requestor asynchronously. Data is provided through responses to the original requester. They can be streamed to provided subscription updates or provided as partial responses. Responses can contain more fields than those listed below.
- rid (integer)
- The identifier of the request to which the response is addressed.
- rid 0 is reserved for the subscription update.
- stream (enum string, optional)
- The stream determines whether data will keep flowing.
- If stream is omitted, it is assumed to be the same as the previous response with the same rid.
- Valid values:
- initialize (default)
- The responder hasn’t finished sending existing or cached data
- open
- There is no data cached for the stream at the moment, but subsequent updates might be sent
- closed
- All data has been sent, so the data consumer can close the stream
- initialize (default)
- updates (array, optional)
- Array rows are sent in one of the following two formats:
- a row/list with same number of items as columns structure
- a map with key:value pairs
- key can be column name or a meta value
- when a required column is omitted, use the default value if defined for the column, otherwise use null
- Array rows are sent in one of the following two formats:
- columns (array, optional)
- column structure of the response, for response to an "invoke" method
- when an action node or its profile already defined the column structure, the this field is not needed
- column structure only needs to be returned once unless it changes at run time
{
"msg": 16,
"responses": [
{
"rid": 2,
"stream": "open",
"updates": [
[
"$is",
"node"
],
[
"$permission",
"write"
],
[
"@city",
"San Francisco"
],
[
"point1",
{
"$is": "temperaturePoint",
"@name": "Custom Name for Point1"
}
],
[
"point2",
{
"$is": "numericPoint"
}
]
]
}
]
}
{
"msg": 17,
"responses": [
{
"rid": 2,
"stream": "open",
"updates": [
{
"name": "point2",
"change": "removed"
}
]
}
]
}
{
"msg": 18,
"responses": [
{
"rid": 2,
"stream": "open",
"columns": [
{
"name": "ts",
"type": "time"
},
{
"name": "value",
"type": "number"
}
],
"updates": [
[
"2014-01-01T11:21:23.00-08:00",
45
]
]
}
]
}
If any error happened, stream response will have a error object showing the information about the error
{
"msg": 19,
"ack" : 7,
"responses": [
{
"rid": 1,
"stream": "closed",
"error": {
"type": "permissionDenied",
"phase": "request",
"path": "/connection/dslink1",
"msg": "permission denied",
"detail": "user Steve is not allowed to access data in '/connection/dslink1'"
}
}
]
}
-
error error object
- msg optional, a short description of the error
-
type optional, a standard error code if the error type is known
- a error must have either a type or a msg or both, when msg is omitted, type is the camelCase formatting of msg
- phase optional, indicate whether the error happen on request or response, if omitted it means "request" phase
- path optional, on which path this error happened, can be omitted if it's same path as the path in request.
-
detail a detail message of the error, can be the stack trace or another message
- when /settings/$errorDetail = false, error won’t contain detail message
- anything else to describe the error
Every message has an ID. When a DSLink or broker receives a response or request, it must return an ACK with the same ID. The ACK can be a standalone message or merged into normal message.
The maximum value of a message ID is 2147483647 (0x7FFFFFFF), after which IDs must be reset to start at 1.
A -> B
{
"msg": 10,
"requests": [
]
}
B -> A
{
"msg": 1,
"ack": 10,
"responses": [
]
}
A -> B
{
"msg": 11,
"ack": 1
}
There is no need to return an ACK if the incoming message doesn't contain any requests or responses.
ACK can be merged: if two or more incoming messages are received before the ACK is sent back, the ACK can be sent with the last msg ID.
Responders must provide a way to configure the maximum number of missing ACKs permitted. The default is 8.
- When the number of missing ACKs exceeds the maximum, a subscription responder must stop sending data and roll up all the pending changes. When a new ACK is received, it should resume sending data.
- When the number of missing ACKs exceeds the maximum, a list responder must stop sending data and merge all the changes.
- For streaming invoke, the SDK must provide a way for the callback to know how many ACKs have been missed.
Protocol
◌ Design
◌ Initializing Connection
◌ Node API
◌ Methods
◌ Broker
◌ Broker Discovery
◌ Configs
◌ Value Types
◌ Tokens
◌ Quality of Service
DSLink Manager
◌ dslink.json
◌ Startup Command
SDK Development
◌ Implementation Guide
DSA Server
◌ Installation
◌ Update Server
◌ Server Configuration
◌ CLI Tools
◌ DSA Permission Basics
◌ DSA Permission Model
◌ Permission List for the Root
◌ Authentication
◌ OpenID Connect
◌ Password Hasher
◌ DGLux Server SSL (HTTPS)
◌ Docker
◌ Audit
◌ Data Node
◌ Install NGINX with DSA Server
◌ Configure Ubuntu Linux to auto start DSA server
◌ Troubleshooting