ads-server
v1.1.2
Published
TwinCAT ADS server for Node.js (unofficial). Listens for incoming ADS protocol commands and responds.
Downloads
41
Maintainers
Readme
ads-server
TwinCAT ADS server for Node.js (unofficial). Listens for incoming ADS protocol commands and responds.
Example use cases:
- Creating a server that can be connected from any TwinCAT PLC for reading and writing using ADS commands
- No need to write own protocols or to buy separate licenses
- Creating a "fake PLC" to test your system that uses ads-client under the hood
- Using ADS protocol to communicate for your own systems
If you need an ADS client for reading/writing PLC values, see my other project ads-client.
Table of contents
- Installing
- Selecting correct server class to use
- Configuration
- Available ADS commands
- NOTE: Difference when using
StandAloneServer
- Handling IEC-61131 data types
- Example: All example codes as a working version
- Example: How to display full ADS packet from (debug etc.)
- Example: Handling device notifications with ads-client
- Example: Creating a fake PLC
- Debugging
- License
Installing
Install the package from NPM using command:
npm i ads-server
Or if you like, you can clone the git repository and then build using command:
npm run build
After that, compiled sources are located under ./dist/
Selecting correct server class to use
There are two servers available (since version 1.1.0)
Server
for using with TwinCAT installation or separate AMS router like AdsRouterConsole- For TwinCAT PLCs and Windows PCs with TwinCAT installation
- For Raspberry Pi, Linux, etc. wth AdsRouterConsole
StandAloneServer
for using without TwinCAT installation- For Raspberry Pi, Linux, etc. (nothing else is needed)
- Use this if you don't have TC installed (unless you need
AdsRouterConsole
for some reason)
TL;DR: Use Server
if you have TwinCAT installed.
Differences:
Server
connects to the AMS router and then waits for incoming packets- The
StandAloneServer
starts its own TCP server (port 48898) and listens for any incoming packets
- The
Server
listens for commands to only one ADS port (however multiple instances can be created)- The
StandAloneServer
listens to all ADS ports (only single instance possible)
- The
The following examples are for Server
, however they work 1:1 with StandAloneServer
. Please see chapter NOTE: Difference when using StandAloneServer
for specific notes.
Configuration
Server
class
The localAdsPort
can be any non-reserved ADS port. See ADS_RESERVED_PORTS
type at src/ads-commons.ts. A port number over 20000 should be OK.
The localAdsPort
should always be provided to ensure a static ADS port. Otherwise, the router provides next free one which always changes -> PLC/client code needs to be changed.
The setting are provided when creating the Server
object and they are all optional. As default, the Server
connects to the local AMS router running at localhost but it can be changed from settings.
const { Server } = require('ads-server')
//import { Server } from 'ads-server' //Typescript
//Creating a new server instance at ADS port 30012
const server = new Server({
localAdsPort: 30012
})
//Connect to the local AMS router
server.connect()
.then(async conn => {
console.log('Connected:', conn)
//To disconnect:
//await server.disconnect()
})
.catch(err => {
console.log('Connecting failed:', err)
})
Available settings for Server
:
{
/** Optional: Local ADS port to use (default: automatic/router provides) */
localAdsPort: number,
/** Optional: Local AmsNetId to use (default: automatic) */
localAmsNetId: string,
/** Optional: If true, no warnings are written to console (= nothing is ever written to console) (default: false) */
hideConsoleWarnings: boolean,
/** Optional: Target ADS router TCP port (default: 48898) */
routerTcpPort: number,
/** Optional: Target ADS router IP address/hostname (default: 'localhost') */
routerAddress: string,
/** Optional: Local IP address to use, use this to change used network interface if required (default: '' = automatic) */
localAddress: string,
/** Optional: Local TCP port to use for outgoing connections (default: 0 = automatic) */
localTcpPort: number,
/** Optional: Local AmsNetId to use (default: automatic) */
localAmsNetId: string,
/** Optional: Time (milliseconds) after connecting to the router or waiting for command response is canceled to timeout (default: 2000) */
timeoutDelay: number,
/** Optional: If true and connection to the router is lost, the server tries to reconnect automatically (default: true) */
autoReconnect: boolean,
/** Optional: Time (milliseconds) how often the lost connection is tried to re-establish (default: 2000) */
reconnectInterval: number,
}
StandAloneServer
class
The only required setting for StandAloneServer
is localAmsNetId
. Unlike Server
, it listens for all ADS ports for incoming commands.
The localAmsNetId
can be decided freely. Only requirement is that it's not in use by any other system. It is needed when creating a static route from another system.
const { StandAloneServer } = require('ads-server')
//import { StandAloneServer } from 'ads-server' //Typescript
const server = new StandAloneServer({
localAmsNetId: '192.168.5.10.1.1' //You can decide whatever you like (needs to be free)
})
server.listen()
.then(async conn => {
console.log('Listening:', conn)
//To stop listening:
//await server.close()
})
.catch(err => {
console.log('Listening failed:', err)
})
Available settings for StandAloneServer
:
{
/** Local AmsNetId to use */
localAmsNetId: string,
/** Optional: Local IP address to use, use this to change used network interface if required (default: '' = automatic) */
listeningAddress: string,
/** Optional: Local TCP port to listen for incoming connections (default: 48898) */
listeningTcpPort: number
/** Optional: If true, no warnings are written to console (= nothing is ever written to console) (default: false) */
hideConsoleWarnings: boolean,
}
For configuring the route, see this ads-client README.
Available ADS commands
In this chapter each available feature is explained shortly. Also a correspoding client-side PLC code is shown.
Read request
Client reads a value from the server.
Node.js (server):
server.onReadReq(async (req, res) => {
console.log('Read request received:', req)
//Create an INT value of 4455
const data = Buffer.alloc(2)
data.writeInt16LE(4455)
//Respond with data
await res({ data })
.catch(err => console.log('Responding failed:', err))
/* Or to respond with an error:
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err)) */
})
TwinCAT (client):
VAR
AdsRead : Tc2_System.ADSREADEX;
ReadValue : INT;
ReadCmd : BOOL;
END_VAR
//When ReadCmd is TRUE, a value is read from localhost and ADS port 30012
AdsRead(
NETID := ,
PORT := 30012,
IDXGRP := 10,
IDXOFFS := 100,
LEN := SIZEOF(ReadValue),
DESTADDR:= ADR(ReadValue),
READ := ReadCmd,
);
IF NOT AdsRead.BUSY THEN
//Now ReadValue should be 4455 or AdsReader.ERR is true and AdsReader.ERRID is the error code
ReadCmd := FALSE;
END_IF
Write request
Client writes a value to the server.
Node.js (server):
server.onWriteReq(async (req, res) => {
console.log('Write request received:', req)
//Do something with the given data
console.log('Writing', req.data.byteLength, 'bytes of data')
//Respond OK
await res({})
.catch(err => console.log('Responding failed:', err))
/* Or to respond with an error:
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err)) */
})
TwinCAT (client):
VAR
AdsWrite : Tc2_System.ADSWRITE;
WriteValue : INT := 5555;
WriteCmd : BOOL;
END_VAR
//When WriteCmd is TRUE, a value is written to localhost and ADS port 30012
AdsWriter(
NETID := ,
PORT := 30012,
IDXGRP := 10,
IDXOFFS := 100,
LEN := SIZEOF(WriteValue),
SRCADDR := ADR(WriteValue),
WRITE := WriteCmd
);
IF NOT AdsWrit.BUSY THEN
WriteCmd := FALSE;
END_IF
ReadWrite requests
Client writes a value to the server and waits for response data.
Node.js (server):
server.onReadWriteReq(async (req, res) => {
console.log('ReadWrite request received:', req)
//Do something with the given data
const requestedValue = server.trimPlcString(req.data.toString('ascii'))
console.log('Requested value: ', requestedValue)
//This example does not care about index group and index offset
//Instead we just check the received data
if (requestedValue === 'Temperature 1') {
//Create an REAL value of 27.678
const data = Buffer.alloc(4)
data.writeFloatLE(27.678)
//Respond with data
await res({ data }).catch(err => console.log('Responding failed:', err))
} else {
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err))
}
})
TwinCAT (client):
VAR
AdsReadWriter : Tc2_System.ADSRDWRTEX;
RW_WriteValue : STRING := 'Temperature 1';
RW_ReadValue : REAL;
ReadWriteCmd : BOOL;
END_VAR
//When ReadWriteCmd is TRUE, a value is written to localhost and ADS port 30012 and result is read
AdsReadWriter(
NETID := ,
PORT := 30012,
IDXGRP := 10,
IDXOFFS := 100,
WRITELEN:= SIZEOF(RW_WriteValue),
READLEN := SIZEOF(RW_ReadValue),
SRCADDR := ADR(RW_WriteValue),
DESTADDR:= ADR(RW_ReadValue),
WRTRD := ReadWriteCmd
);
IF NOT AdsReadWriter.BUSY THEN
ReadWriteCmd := FALSE;
END_IF
ReadDeviceInfo requests
Client reads device (server) info.
Node.js (server):
server.onReadDeviceInfo(async (req, res) => {
console.log('ReadDeviceInfo request received')
//Respond with data
res({
deviceName: 'Server example',
majorVersion: 5,
minorVersion: 123,
versionBuild: 998
})
/* Or to respond with an error:
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err)) */
})
TwinCAT (client):
VAR
AdsReadDevInfo : Tc2_System.ADSRDDEVINFO;
ReadDevInfoCmd : BOOL;
END_VAR
//When ReadDevInfoCmd is TRUE, device info is read from localhost and ADS port 30012
AdsReadDevInfo(
NETID := ,
PORT := 30012,
RDINFO := ReadDevInfoCmd
);
IF NOT AdsReadDevInfo.BUSY THEN
//NOTE: ADS protocol has major version, minor version and build version unlike the ADS PLC block
// -> version is corrupted
ReadDevInfoCmd := FALSE;
END_IF
ReadState requests
Client reads device (server) state.
You can use the ADS_STATE
constant values from exported ADS
object if you like.
Node.js (server):
server.onReadState(async (req, res) => {
console.log('ReadState request received')
//Respond with data
await res({
adsState: ADS.ADS_STATE.Config, //Or just any number
deviceState: 123
}).catch(err => console.log('Responding failed:', err))
/* Or to respond with an error:
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err)) */
})
TwinCAT (client):
VAR
AdsReadDevState : Tc2_System.ADSRDSTATE;
ReadDevStateCmd : BOOL;
END_VAR
//When AdsReadDevState is TRUE, device state is read from localhost and ADS port 30012
AdsReadDevState(
NETID := ,
PORT := 30012,
RDSTATE := ReadDevStateCmd
);
IF NOT AdsReadDevState.BUSY THEN
ReadDevStateCmd := FALSE;
END_IF
WriteControl requests
Client commands the device (server) to a given state. Also additional data can be provided.
Node.js (server):
server.onWriteControl(async (req, res) => {
console.log('WriteControl request received:', req)
//Do something with req
const dataStr = server.trimPlcString(req.data.toString('ascii'))
console.log('Requested ADS state:', req.adsStateStr, ', provided data:', dataStr)
//Respond OK
res({}).catch(err => console.log('Responding failed:', err))
/* Or to respond with an error:
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err)) */
})
TwinCAT (client):
VAR
AdsWriteCtrl : Tc2_System.ADSWRTCTL;
WriteCtrlData : STRING := 'Some test data to write control';
WriteCtrlCmd : BOOL;
END_VAR
//When WriteCtrlCmd is TRUE, values are written to localhost and ADS port 30012
AdsWriteCtrl(
NETID := ,
PORT := 30012,
ADSSTATE:= ADSSTATE_RUN,
DEVSTATE:= 123,
LEN := SIZEOF(WriteCtrlData),
SRCADDR := ADR(WriteCtrlData),
WRITE := WriteCtrlCmd
);
IF NOT AdsWriteCtrl.BUSY THEN
WriteCtrlCmd := FALSE;
END_IF
AddNotification requests
Client requests to have notifications based on given settings (subscribes).
Not available with a PLC as a client, see an example with ads-client
later.
Node.js (server):
server.onAddNotification(async (req, res) => {
console.log('AddNotification request received:', req)
//Do something with the given req and create an unique notification handle
const notificationHandle = 1
//Respond with data
res({ notificationHandle })
.catch(err => console.log('Responding failed:', err))
/* Or to respond with an error:
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err)) */
})
DeleteNotification requests
Client requests to delete an existing notifications by given handle (unsubscribes). Previously create with AddNotification command.
Not available with a PLC as a client, see an example with ads-client
later.
Node.js (server):
server.onDeleteNotification(async (req, res) => {
console.log('DeleteNotification request received:', req)
//Delete existing notification by given req
console.log('Removing handle ', req.notificationHandle)
//Respond OK
res({})
.catch(err => console.log('Responding failed:', err))
/* Or to respond with an error:
await res({
error: 1793 //ADS error code, for example 1793 = Service is not supported by server
}).catch(err => console.log('Responding failed:', err)) */
})
Sending a notification
Server sends data based on previously created notification to the client.
Not available with a PLC as a client, see an example with ads-client
later.
When using Server
:
const data = Buffer.alloc(81)
data.write('Sending some string as notification', 'ascii')
await server.sendDeviceNotification({
notificationHandle: 1, //Previously saved
targetAdsPort: 851, //Previously saved
targetAmsNetId: '192.168.1.2.1.1' //Previously saved
}, data)
When using StandAloneServer
:
const data = Buffer.alloc(81)
data.write('Sending some string as notification', 'ascii')
await server.sendDeviceNotification({
notificationHandle: 1, //Previously saved
targetAdsPort: 851, //Previously saved
targetAmsNetId: '192.168.1.2.1.1', //Previously saved
sourceAdsPort: 851, //Previously saved
socket: socket //Previously saved
}, data)
In practise, you can save the packet.ads.notificationTarget
object, assign a handle to it and then send notifications using it:
//Simplified example
let target = undefined
server.onAddNotification(async (req, res, packet, adsPort) => {
target = packet.ads.notificationTarget
target.notificationHandle = 1
res({
notificationHandle: target.notificationHandle
}).catch(err => console.log('Responding failed:', err))
})
//Later...
if(target) {
const data = Buffer.alloc(81)
data.write('Sending some string as notification', 'ascii')
await server.sendDeviceNotification(target, data)
}
NOTE: Difference when using StandAloneServer
The examples work also for StandAloneServer
, however there is one major difference.
The received command can be sent to any ADS port. So the target ADS port needs to be checked using 4th parameter adsPort
or packet.ams.targetAdsPort
of the callback function.
//Note: adsPort
server.onReadReq(async (req, res, packet, adsPort) => {
console.log('Read request', req, 'received to ADS port', adsPort)
const data = Buffer.alloc(2)
switch (adsPort) { //adsPort or packet.ams.targetAdsPort
case 30012:
//Request for ADS port 30012 -> respond 5555
data.writeInt16LE(5555)
await res({ data })
.catch(err => console.log('Responding failed:', err))
break
case 30013:
//Request for ADS port 30013 -> respond 888
data.writeInt16LE(888)
await res({ data })
.catch(err => console.log('Responding failed:', err))
break
default:
await res({
error: 6 //ADS error code, "Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
If you have a need for only one ADS port, you might do something as simple as:
server.onReadReq(async (req, res, packet, adsPort) => {
console.log('Read request', req, 'received to ADS port', adsPort)
if (adsPort !== 30012) { //adsPort or packet.ams.targetAdsPort
await res({
error: 6 //ADS error code, "Target port not found"
}).catch(err => console.log('Responding failed:', err))
return
}
//Then do the magic here..
})
Handling IEC-61131 data types
It's not too easy to work with byte buffers if you want to respond to a PLC request.
Instead, you can use the iec-61131-3 library to work with IEC data types.
Responding with a IEC data type
Some examples how to respond with different data types:
const iec = require('iec-61131-3')
//...
//DINT
await res({
data: iec.DINT.convertToBuffer(12345)
})
//STRING
await res({
data: iec.STRING(81).convertToBuffer('Convert this!')
})
//ARRAY[0..2] OF INT
await res({
data: iec.ARRAY(iec.INT, 3).convertToBuffer([1, 2, 3])
})
//DT
await res({
data: iec.DT.convertToBuffer(new Date().getTime() / 1000)
})
The same library can be used with ads-client
. For example:
const iec = require('iec-61131-3')
//...
//Reading the ARRAY[0..2] OF INT defined above (indexGroup and indexOffset are just examples)
const data = await client.readRaw(1, 2, iec.ARRAY(iec.INT, 3).byteLength)
const arr = iec.ARRAY(iec.INT, 3).convertFromBuffer(data)
console.log(arr) //"[ 1, 2, 3 ]"
//Reading the STRING defined above (indexGroup and indexOffset are just examples)
const data = await client.readRaw(1, 2, iec.STRING(81).byteLength)
const str = iec.STRING(81).convertFromBuffer(data)
console.log(str) //"Convert this!"
Responding with a STRUCT
const iec = require('iec-61131-3')
//...
const ST_Struct = iec.fromString(`
{attribute 'pack_mode' := '1'}
TYPE ST_Struct:
STRUCT
variable1: INT;
variable2: REAL;
END_STRUCT
END_TYPE
`)
const data = ST_Struct.convertToBuffer({
variable1: 123,
variable2: 3.14
})
await res({ data })
Example: All example codes as a working version
Please see ./example
directory in the repository for working example (both PLC and server side).
To run the example:
- Navigate to
./example
and Initialize a new package
npm init -y
- Install
ads-server
npm i ads-server
- Run the code
node example.js
and then import the PLC code to your project and call the PRG_AdsServerExample
program. Force commands manually to test each ADS command.
The PLC code is exported as PlcOpenXML format.
Example: How to display full ADS packet from (debug etc.)
In the examples above, a callback of type (req, res)
is provided for each function. It is also possible to provide 3rd parameter (req, res, packet)
for debugging purposes.
server.onReadReq(async (req, res, packet) => {
console.log('Full packet is:', packet)
//...
Example console output:
Full packet is: {
amsTcp: { command: 0, commandStr: 'Ads command', dataLength: 44 },
ams: {
targetAmsNetId: '192.168.5.131.1.1',
targetAdsPort: 30012,
sourceAmsNetId: '192.168.5.131.1.1',
sourceAdsPort: 350,
adsCommand: 2,
adsCommandStr: 'Read',
stateFlags: 4,
stateFlagsStr: 'AdsCommand, Tcp, Request',
dataLength: 12,
errorCode: 0,
invokeId: 4278255622,
error: false,
errorStr: ''
},
ads: { indexGroup: 10, indexOffset: 100, readLength: 2 }
}
As of version 1.1.0, there is also 4th parameter adsPort
, which is the same as packet.ams.targetAdsPort
.
Example: Handling device notifications with ads-client
The PLC seems not to have any functionality to register notifications. So it's only available for 3rd party clients. For example using subscribe()
in ads-client library.
The following example listens for certain AddNotification requests (indexGroup = 10, indexOffset = 100, dataLength = 2
) and saves them. Then notifications are sent, until cancelled with DeleteNotification request.
Server side:
const { Server } = require('ads-server')
//For Typescript: import { Server } from 'ads-server'
//For Typescript: import { AdsNotificationTarget } from 'ads-server/dist/types/ads-server'
const server = new Server({
localAdsPort: 30012
})
let freeHandle = 0
let subscribers = []
//For Typescript: let subscribers: Array<AdsNotificationTarget & { cycleTime: number, lastSendTime: number }> = []
server.connect()
.then(async conn => {
console.log(`Connected: ${JSON.stringify(conn)}`)
//-------------------------------------
// Timer that sends the notifications
//-------------------------------------
setInterval(async () => {
//Our data is an INT of current seconds
const data = Buffer.alloc(2)
data.writeInt16LE(new Date().getSeconds())
//Loop each subscribers and check if enough time has passed
for (const sub of subscribers) {
if (new Date().getTime() - sub.lastSendTime > sub.cycleTime || sub.cycleTime === 0) {
//Time to send, this should actually be done in parallel
await server.sendDeviceNotification(sub, data)
.then(() => sub.lastSendTime = new Date().getTime())
.catch(err => console.log('Sending notification failed:', err))
}
}
}, 100)
//-------------------------------------
// Listening for new subscribers
//-------------------------------------
server.onAddNotification(async (req, res) => {
console.log('AddNotification request received:', req)
//Is the request valid?
if (req.indexGroup === 10 && req.indexOffset === 100 && req.dataLength === 2) {
const notificationHandle = freeHandle++
req.notificationTarget.notificationHandle = notificationHandle
subscribers.push({
...req.notificationTarget,
cycleTime: req.cycleTime,
lastSendTime: 0
})
await res({ notificationHandle })
.then(() => console.log('New subscriber registered with handle', notificationHandle))
.catch(err => console.log('Responding failed:', err))
} else {
//Unknown request
res({ error: 1808 }) //1808 = symbol not found
.catch(err => console.log('Responding failed:', err))
}
})
//-------------------------------------
// Listening for unsubscribe requests
//-------------------------------------
server.onDeleteNotification(async (req, res) => {
console.log('DeleteNotification request received:', req)
//Delete existing notification
if (subscribers.find(sub => sub.notificationHandle === req.notificationHandle)) {
//Found, remove it
subscribers = subscribers.filter(sub => sub.notificationHandle !== req.notificationHandle)
//Respond OK
await res({})
.then(() => console.log('Subscriber with handle', req.notificationHandle, 'removed'))
.catch(err => console.log('Responding failed:', err))
} else {
//Unknown handle
await res({ error: 1812 }) //1812 = Notification handle is invalid
.catch(err => console.log('Responding failed:', err))
}
})
})
Client side (uses ads-client library)
const { Client } = require('ads-client')
const client = new Client({
targetAmsNetId: 'localhost',
targetAdsPort: 30012,
allowHalfOpen: true //IMPORTANT: We don't have PLC as it's our own server
})
client.connect()
.then(async () => {
console.log('Connected')
try {
//Subscribe with 1s cycle time
const sub = await client.subscribeRaw(10, 100, 2, async data => {
console.log('Notification received:', data, '- value as INT:', data.value.readInt16LE())
}, 1000)
console.log('Subscribed')
//Unsubscribing after 10 seconds
setTimeout(async () => {
await sub.unsubscribe()
console.log('Unsubscribed')
}, 10000)
} catch (err) {
console.log('Something went wrong:', err)
}
})
.catch(err => console.log('Failed to connect:', err))
Example: Creating a fake PLC
The following needs to be provided by the ADS server in order the ads-client
sees it as a normal PLC:
- System manager state
- PLC runtime state
- PLC runtime state changes (notifications)
- Device info
- Upload info
- Optional: Symbol version
- Optional: Symbol version changes (notifications)
- Optional: Symbols
- Optional: Data types
In this example the optional parts are skipped. In order the ads-client
to work without them, following settings need to be provided to ads-client
:
const client = new ads.Client({
//Unrelevant settings not shown
disableSymbolVersionMonitoring: true,
readAndCacheSymbols: false,
readAndCacheDataTypes: false,
})
Base code for fake PLC system with Server
The following can be used as a base to fake a PLC system.
The system manager is handled by TwinCAT router or some other router.
const { Server, ADS } = require('./ads-server/dist/ads-server')
const server = new Server({
localAdsPort: ADS.ADS_RESERVED_PORTS.Tc3_Plc1 //NOTE: Local PLC can't be running at the same time
})
server.onReadState(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
await res({
adsState: ADS.ADS_STATE.Run,
deviceState: 0
}).catch(err => console.log('Responding failed:', err))
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onReadDeviceInfo(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
await res({
deviceName: 'Fake PLC runtime 1',
majorVersion: 1,
minorVersion: 0,
versionBuild: 1
}).catch(err => console.log('Responding failed:', err))
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onAddNotification(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
if (req.indexGroup === ADS.ADS_RESERVED_INDEX_GROUPS.DeviceData) {
//Runtime state changes
await res({
notificationHandle: 1 //This isn't correct way, see example "Handling device notifications with ads-client"
}).catch(err => console.log('Responding failed:', err))
} else {
//Your custom notification handles should be here
//For now, just answer with error
await res({
error: 1794 //"Invalid index group"
}).catch(err => console.log('Responding failed:', err))
}
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onReadReq(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
if (req.indexGroup === ADS.ADS_RESERVED_INDEX_GROUPS.SymbolUploadInfo2) {
//Upload info, responding 0 to all for now
const data = Buffer.alloc(24)
let pos = 0
//0..3 Symbol count
data.writeUInt32LE(0, pos)
pos += 4
//4..7 Symbol length
data.writeUInt32LE(0, pos)
pos += 4
//8..11 Data type count
data.writeUInt32LE(0, pos)
pos += 4
//12..15 Data type length
data.writeUInt32LE(0, pos)
pos += 4
//16..19 Extra count
data.writeUInt32LE(0, pos)
pos += 4
//20..23 Extra length
data.writeUInt32LE(0, pos)
pos += 4
await res({
data
}).catch(err => console.log('Responding failed:', err))
} else {
//Your custom notification handles should be here
//For now, just answer with error
await res({
error: 1794 //"Invalid index group"
}).catch(err => console.log('Responding failed:', err))
}
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onDeleteNotification(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
if (req.notificationHandle === 1) { //This isn't correct way, see example "Handling device notifications with ads-client"
await res({ }).catch(err => console.log('Responding failed:', err))
} else {
//Your custom notification handle deletion should be here
//For now, just answer with error
await res({
error: 1794 //"Invalid index group"
}).catch(err => console.log('Responding failed:', err))
}
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.connect()
.then(res => {
console.log('Connected:', res)
})
.catch(err => {
console.log('Error starting:', err)
})
Base code for fake PLC system with StandAloneServer
The following can be used as a base to fake a PLC system. It also handles system manager at port 10000.
Won't work if there is a local router.
const { StandAloneServer, ADS } = require('./ads-server/dist/ads-server')
const server = new StandAloneServer({
localAmsNetId: '192.168.5.1.1.1'
})
server.onReadState(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.SystemService) {
//System manager / system service (port 10000)
await res({
adsState: ADS.ADS_STATE.Run,
deviceState: 0
}).catch(err => console.log('Responding failed:', err))
} else if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
await res({
adsState: ADS.ADS_STATE.Run,
deviceState: 0
}).catch(err => console.log('Responding failed:', err))
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onReadDeviceInfo(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.SystemService) {
//System manager / system service (port 10000)
await res({
deviceName: 'Fake PLC',
majorVersion: 1,
minorVersion: 0,
versionBuild: 1
}).catch(err => console.log('Responding failed:', err))
} else if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
await res({
deviceName: 'Fake PLC runtime 1',
majorVersion: 1,
minorVersion: 0,
versionBuild: 1
}).catch(err => console.log('Responding failed:', err))
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onAddNotification(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.SystemService) {
//System manager / system service (port 10000)
await res({
error: 1793 //"Service is not supported by server"
}).catch(err => console.log('Responding failed:', err))
} else if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
if (req.indexGroup === ADS.ADS_RESERVED_INDEX_GROUPS.DeviceData) {
//Runtime state changes
await res({
notificationHandle: 1 //This isn't correct way, see example "Handling device notifications with ads-client"
}).catch(err => console.log('Responding failed:', err))
} else {
//Your custom notification handles should be here
//For now, just answer with error
await res({
error: 1794 //"Invalid index group"
}).catch(err => console.log('Responding failed:', err))
}
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onReadReq(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.SystemService) {
//System manager / system service (port 10000)
await res({
error: 1793 //"Service is not supported by server"
}).catch(err => console.log('Responding failed:', err))
} else if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
if (req.indexGroup === ADS.ADS_RESERVED_INDEX_GROUPS.SymbolUploadInfo2) {
//Upload info, responding 0 to all for now
const data = Buffer.alloc(24)
let pos = 0
//0..3 Symbol count
data.writeUInt32LE(0, pos)
pos += 4
//4..7 Symbol length
data.writeUInt32LE(0, pos)
pos += 4
//8..11 Data type count
data.writeUInt32LE(0, pos)
pos += 4
//12..15 Data type length
data.writeUInt32LE(0, pos)
pos += 4
//16..19 Extra count
data.writeUInt32LE(0, pos)
pos += 4
//20..23 Extra length
data.writeUInt32LE(0, pos)
pos += 4
await res({
data
}).catch(err => console.log('Responding failed:', err))
} else {
//Your custom notification handles should be here
//For now, just answer with error
await res({
error: 1794 //"Invalid index group"
}).catch(err => console.log('Responding failed:', err))
}
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.onDeleteNotification(async (req, res, packet, adsPort) => {
if (adsPort === ADS.ADS_RESERVED_PORTS.SystemService) {
//System manager / system service (port 10000)
await res({
error: 1793 //"Service is not supported by server"
}).catch(err => console.log('Responding failed:', err))
} else if (adsPort === ADS.ADS_RESERVED_PORTS.Tc3_Plc1) {
//TC3 PLC runtime 1 (port 851)
if (req.notificationHandle === 1) { //This isn't correct way, see example "Handling device notifications with ads-client"
await res({ }).catch(err => console.log('Responding failed:', err))
} else {
//Your custom notification handle deletion should be here
//For now, just answer with error
await res({
error: 1794 //"Invalid index group"
}).catch(err => console.log('Responding failed:', err))
}
} else {
//Unknown port
await res({
error: 6 //"Target port not found"
}).catch(err => console.log('Responding failed:', err))
}
})
server.listen()
.then(res => {
console.log('Listening:', res)
})
.catch(err => {
console.log('Error starting to listen:', err)
})
Debugging
To debug each received packet, see: Example: How to display full ADS packet from (debug etc.)
If you have problems or you are interested, you can enabled debug output to console. The ads-server uses debug
package for debugging.
Debugging can be enabled from terminal or from code.
Enabling debug from code
You can change the debug level with method setDebugging(level)
:
server.setDebugging(2)
Different debug levels explained:
- 0: No debugging (default)
- 1: Errors have full stack traces, no debug printing
- 2: Basic debug printing (same as
DEBUG='ads-server'
) - 3: Detailed debug printing (same as
DEBUG='ads-server,ads-server:details'
) - 4: Detailed debug printing and raw I/O data (same as
DEBUG='ads-server*'
)
Enabling debugging from terminal
See the debug package for instructions.
Example for Visual Studio Code (PowerShell):
$env:DEBUG='ads-server,ads-server:details'
Different debug levels explained:
- Basic debug printing
DEBUG='ads-server'
- Basic and detailed debug printing
DEBUG='ads-server,ads-server:details'
- Basic, detailed and raw I/O data:
DEBUG='ads-server*'
License
Licensed under MIT License so commercial use is possible. Please respect the license, linking to this page is also much appreciated.
Copyright (c) 2021 Jussi Isotalo <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.