-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
188 lines (168 loc) · 6.97 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
require __DIR__ . '/../vendor/autoload.php';
use ModbusTcpClient\Network\BinaryStreamConnection;
use ModbusTcpClient\Packet\ModbusFunction\ReadHoldingRegistersRequest;
use ModbusTcpClient\Packet\ModbusFunction\ReadHoldingRegistersResponse;
use ModbusTcpClient\Packet\ModbusFunction\ReadInputRegistersRequest;
use ModbusTcpClient\Packet\ResponseFactory;
use ModbusTcpClient\Utils\Endian;
$returnJson = filter_var($_GET['json'] ?? false, FILTER_VALIDATE_BOOLEAN);
// if you want to let others specify their own ip/ports for querying data create file named '.allow-change' in this directory
// NB: this is a potential security risk!!!
$canChangeIpPort = file_exists('.allow-change');
$ip = '192.168.100.1';
$port = 502;
if ($canChangeIpPort) {
$ip = filter_var($_GET['ip'] ?? '', FILTER_VALIDATE_IP) ? $_GET['ip'] : $ip;
$port = (int)($_GET['port'] ?? $port);
}
$fc = (int)($_GET['fc'] ?? 3);
$unitId = (int)($_GET['unitid'] ?? 0);
$startAddress = (int)($_GET['address'] ?? 256);
$quantity = (int)($_GET['quantity'] ?? 12);
$endianess = (int)($_GET['endianess'] ?? Endian::BIG_ENDIAN_LOW_WORD_FIRST);
Endian::$defaultEndian = $endianess;
$log = [];
$log[] = "Using: function code: {$fc}, ip: {$ip}, port: {$port}, address: {$startAddress}, quantity: {$quantity}, endianess: {$endianess}";
$connection = BinaryStreamConnection::getBuilder()
->setPort($port)
->setHost($ip)
->setConnectTimeoutSec(1.5) // timeout when establishing connection to the server
->setWriteTimeoutSec(0.5) // timeout when writing/sending packet to the server
->setReadTimeoutSec(1.0) // timeout when waiting response from server
->build();
if ($fc === 4) {
$packet = new ReadInputRegistersRequest($startAddress, $quantity, $unitId);
} else {
$fc = 3;
$packet = new ReadHoldingRegistersRequest($startAddress, $quantity, $unitId);
}
$log[] = 'Packet to be sent (in hex): ' . $packet->toHex();
$startTime = round(microtime(true) * 1000, 3);
$result = [];
try {
$binaryData = $connection->connect()->sendAndReceive($packet);
$log[] = 'Binary received (in hex): ' . unpack('H*', $binaryData)[1];
/** @var $response ReadHoldingRegistersResponse */
$response = ResponseFactory::parseResponseOrThrow($binaryData)->withStartAddress($startAddress);
foreach ($response as $address => $word) {
$doubleWord = isset($response[$address + 1]) ? $response->getDoubleWordAt($address) : null;
$quadWord = null;
if (isset($response[$address + 3])) {
$quadWord = $response->getQuadWordAt($address);
try {
$UInt64 = $quadWord->getUInt64(); // some data can not be converted to unsigned 64bit int due PHP memory limitations
} catch (Exception $e) {
$UInt64 = '-';
}
try {
$Int64 = $quadWord->getInt64();
} catch (Exception $e) {
$Int64 = '-';
}
try {
$double = $quadWord->getDouble();
} catch (Exception $e) {
$double = '-';
}
}
$highByteAsInt = $word->getHighByteAsInt();
$lowByteAsInt = $word->getLowByteAsInt();
$result[$address] = [
'highByte' => '0x' . str_pad(dechex($highByteAsInt), 2, '0', STR_PAD_LEFT) . ' / ' . $highByteAsInt . ' / "&#' . $highByteAsInt . ';"',
'lowByte' => '0x' . str_pad(dechex($lowByteAsInt), 2, '0', STR_PAD_LEFT) . ' / ' . $lowByteAsInt . ' / "&#' . $lowByteAsInt . ';"',
'highByteBits' => sprintf('%08d', decbin($highByteAsInt)),
'lowByteBits' => sprintf('%08d', decbin($lowByteAsInt)),
'int16' => $word->getInt16(),
'UInt16' => $word->getUInt16(),
'int32' => $doubleWord ? $doubleWord->getInt32() : null,
'UInt32' => $doubleWord ? $doubleWord->getUInt32() : null,
'float' => $doubleWord ? $doubleWord->getFloat() : null,
'double' => $quadWord ? $double : null,
'Int64' => $quadWord ? $Int64 : null,
'UInt64' => $quadWord ? $UInt64 : null,
];
}
} catch (Exception $exception) {
$result = null;
$log[] = 'An exception occurred';
$log[] = $exception->getMessage();
$log[] = $exception->getTraceAsString();
} finally {
$connection->close();
}
$elapsed = round(microtime(true) * 1000) - $startTime;
if ($returnJson) {
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/json');
http_response_code($result !== null ? 200 : 500);
echo json_encode(
[
'data' => $result,
'debug' => $log,
'time_ms' => $elapsed
],
JSON_PRETTY_PRINT
);
exit(0);
}
?>
<h2>Example Modbus TCP FC3/FC4 request</h2>
<form>
Function code: <select name="fc">
<option value="3" <?php if ($fc === 3) { echo 'selected'; } ?>>Read Holding Registers (FC=03)</option>
<option value="4" <?php if ($fc === 4) { echo 'selected'; } ?>>Read Input Registers (FC=04)</option>
</select><br>
IP: <input type="text" name="ip" value="<?php echo $ip; ?>" <?php if (!$canChangeIpPort) { echo 'disabled'; } ?>><br>
Port: <input type="number" name="port" value="<?php echo $port; ?>"><br>
UnitID (SlaveID): <input type="number" name="unitid" value="<?php echo $unitId; ?>"><br>
Address: <input type="number" name="address" value="<?php echo $startAddress; ?>"> (NB: does your modbus server use `0` based addressing or `1` based?)<br>
Quantity: <input type="number" name="quantity" value="<?php echo $quantity; ?>"><br>
Endianess: <select name="endianess">
<option value="1" <?php if ($endianess === 1) { echo 'selected'; } ?>>BIG_ENDIAN</option>
<option value="5" <?php if ($endianess === 5) { echo 'selected'; } ?>>BIG_ENDIAN_LOW_WORD_FIRST</option>
<option value="2" <?php if ($endianess === 2) { echo 'selected'; } ?>>LITTLE_ENDIAN</option>
<option value="6" <?php if ($endianess === 6) { echo 'selected'; } ?>>LITTLE_ENDIAN_LOW_WORD_FIRST</option>
</select><br>
<button type="submit">Send</button>
</form>
<h2>Debug info</h2>
<pre>
<?php
foreach ($log as $m) {
echo $m . PHP_EOL;
}
?>
</pre>
<h2>Result</h2>
<table border="1">
<tr>
<td rowspan="2">WORD<br>address</td>
<td colspan="6">Word</td>
<td colspan="3">Double word (from this address)</td>
<td>Quad word</td>
</tr>
<tr>
<td>high byte<br>Hex / Dec / Ascii</td>
<td>low byte<br>Hex / Dec / Ascii</td>
<td>high bits</td>
<td>low bits</td>
<td>int16</td>
<td>UInt16</td>
<td>int32</td>
<td>UInt32</td>
<td>float</td>
<td>double</td>
<td>int64</td>
<td>UInt64</td>
</tr>
<?php foreach ($result ?? [] as $address => $values) { ?>
<tr>
<td><?php echo $address ?></td>
<td><?php echo implode('</td><td>', $values) ?></td>
</tr>
<?php } ?>
</table>
Time <?php echo $elapsed ?> ms
</br>
Page generated: <?php echo date('c') ?>