TcpClientLib is a TCP client library for OMRON's NX/NJ series. The TCP client (TcpClient) in this library reads and writes TCP send/receive data to a buffer passed as a parameter. The buffer utilizes RingBufferLib. RingBufferLib is an implementation of a ring buffer for BYTE type arrays. The RingBufferLib implementation can be used in multi-tasking environments without locks, provided there is only one entity for reading and one for writing to the buffer. TcpClient inherits this characteristic. Furthermore, it can be flexibly combined with other programs that use RingBufferLib as their buffer.
The example below demonstrates combining TcpClient with a simple Logger that uses RingBufferLib as its buffer to send logs to a remote TCP endpoint.
// Change according to your environment.
IF P_First_Run THEN
REMOTE_ADDR := 'YOUR_REMOTE_DEVICE';
REMOTE_PORT := 12101;
END_IF;
IF P_First_Run THEN
// Setup Logger.
Logger_init(Context:=iLoggerBufferContext,
Buffer:=iLoggerBuffer);
// Setup Log sender.
//
// The log sender monitors the logger buffer and sends the written logs.
RingBuffer_init(Context:=iLogSenderSendBufferContext,
Buffer:=iLogSenderSendBuffer);
RingBuffer_init(Context:=iLogSenderRecvBufferContext,
Buffer:=iLogSenderRecvBuffer);
TcpClient_configure(Context:=iLogSenderContext,
Activate:=TRUE,
Destination:=REMOTE_ADDR,
DestinationPort:=REMOTE_PORT,
Port:=0,
UseSend:=TRUE,
UseRecv:=TRUE,
UseWatcher:=TRUE,
WatchInterval:=600,
ConnectRetryTimes:=100,
ConnectRetryInterval:=600);
iLogSenderTcpClient.Enable := TRUE;
// Tracks logger writes.
RingBuffer_createWriteTracker(Target:=iLoggerBufferContext,
Tracker=>iLoggerWrittenTracker);
// Sends the log sender reset payload first.
RingBuffer_writeString(Context:=iLogSenderSendBufferContext,
Buffer:=iLogSenderSendBuffer,
Value:=LOG_SENDER_RESET_PAYLOAD);
iWaitTick := LOGGING_INTERVAL;
END_IF;
// Logging at regular intervals.
Dec(iWaitTick);
IF iWaitTick < 1 THEN
iMsg := CONCAT('{"counter":', ULINT_TO_STRING(Get1usCnt()),
',"timestamp":"', DtToString(GetTime()),
'"}$L');
Logger_write(Context:=iLoggerBufferContext,
Buffer:=iLoggerBuffer,
Message:=iMsg);
iWaitTick := LOGGING_INTERVAL;
END_IF;
// Gets the difference of the logger buffer into the log sender's sending buffer.
RingBuffer_pullWrite(Context:=iLogSenderSendBufferContext,
Buffer:=iLogSenderSendBuffer,
Tracker:=iLoggerWrittenTracker,
Tracked:=iLoggerBufferContext,
TrackedBuffer:=iLoggerBuffer);
iLogSenderTcpClient(Context:=iLogSenderContext,
SendBufferContext:=iLogSenderSendBufferContext,
SendBuffer:=iLogSenderSendBuffer,
RecvBufferContext:=iLogSenderRecvBufferContext,
RecvBuffer:=iLogSenderRecvBuffer);
This program does not directly read log data from the Logger's buffer; instead, it tracks writes to the Logger's buffer and sends logs remotely. This allows for remote log transmission while minimizing coupling between the Logger and TcpClient. Of course, TcpClient can also be used as a consumer of the Logger's log data. To use TcpClient as a consumer, simply specify the Logger's buffer as TcpClient's send buffer.
The functionality of TcpClient heavily relies on RingBufferLib, which aids in streaming data processing. However, RingBufferLib does not possess any special mechanisms to achieve such functionality. It is implemented solely using information required for the behavior of a ring buffer. Therefore, even if RingBufferLib were to become unusable, anyone could re-implement it.
The following environment is required to use this project.
Item | Requirement |
---|---|
Controller | NX or NJ |
Sysmac Studio | Latest recommended |
This project was developed in the following environment.
Item | Version |
---|---|
Controller | NX102-9000 Ver 1.64 |
Sysmac Studio | Ver.1.62 |
Use the library (TcpClientLib.slr
) by following these steps.
-
Reference
lib/RingBufferLib.slr
in your project. -
Reference
TcpClientLib.slr
in your project. -
Build the project and confirm there are no errors.
Both libraries use namespaces.
Ensure that there are no identifier conflicts with namespaces within your project.
The Sysmac project (TcpClientLib.smc2
) includes an example program and can be used by following these steps.
-
Adjust the project configuration to match your operating environment.
Match the controller model and ensure access to the network you intend to use. -
Adjust
POU/Program/Example_SendLog
to match your operating environment.
Change the value of theREMOTE_ADDR
variable to the address of the device waiting for data. -
Listen for TCP on an appropriate device.
You can find a reference PowerShell script inPOU/Program/SimpleTcpMonitor_ps1
.
StartMultiMonitors_ps1
is a PowerShell script that uses Windows Terminal to launch four TCP endpoints. -
Run the program on the controller.
Transfer the program to the controller and start its execution. -
Confirm that data is being sent to the opened TCP socket.