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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
//! C API lifecycle functions for Modbus TCP servers.
//!
//! # Usage
//!
//! ```text
//! MbusServerId id = mbus_tcp_server_new(&transport_callbacks, &server_handlers, &config);
//! mbus_tcp_server_connect(id);
//! while (running) {
//! mbus_server_lock(id);
//! mbus_tcp_server_poll(id);
//! mbus_server_unlock(id);
//! }
//! mbus_tcp_server_disconnect(id);
//! mbus_tcp_server_free(id);
//! ```
//!
//! # Thread Safety
//!
//! `mbus_tcp_server_poll`, `mbus_tcp_server_connect`, and `mbus_tcp_server_disconnect`
//! must be called with the server lock held (`mbus_server_lock` / `mbus_server_unlock`).
//! Pool-mutating calls (`mbus_tcp_server_new` / `mbus_tcp_server_free`) use the pool lock
//! internally; callers must hold `mbus_server_pool_lock` externally if they need atomicity
//! with ID inspection.
//!
//! # Error Returns
//!
//! All lifecycle functions that return `MbusStatusCode` will produce one of:
//!
//! | Code | Meaning |
//! |------|---------|
//! | `MbusOk` | Operation succeeded. |
//! | `MbusErrConnectionFailed` | The `connect` transport callback returned an error. |
//! | `MbusErrConnectionClosed` | The `disconnect` callback (or recv path) reported the connection as closed. |
//! | `MbusErrInvalidClientId` | The supplied `MbusServerId` is not in the TCP server pool (`MBUS_INVALID_SERVER_ID` or freed slot). |
//! | `MbusErrBusy` | (Reserved) Re-entrant call attempted while the lock is held by the same thread. |
use ServerServices;
use crate;
use ;
// ── mbus_tcp_server_new ───────────────────────────────────────────────────────
/// Creates a new Modbus TCP server and returns an opaque server ID.
///
/// # Parameters
/// - `transport` — Transport callbacks providing connect/disconnect/send/recv operations.
/// - `handlers` — Application callback table. Slots left `NULL` respond with
/// `IllegalFunction` automatically.
/// - `config` — Server configuration (slave address, timeouts).
///
/// # Returns
/// A valid `MbusServerId` on success, or `MBUS_INVALID_SERVER_ID` on failure.
///
/// `MBUS_INVALID_SERVER_ID` is returned when:
/// - Any pointer argument is `NULL`.
/// - Any required function pointer inside `transport` is `NULL`.
/// - `config.slave_address` is out of the valid Modbus range (1–247).
/// - The internal server pool is exhausted (all slots occupied).
///
/// # Safety
/// - `transport`, `handlers`, and `config` must be non-null and remain valid for
/// the entire lifetime of the server (until `mbus_tcp_server_free` is called).
/// - All function pointers inside `transport` must be valid C functions.
/// - `handlers.userdata` must outlive the server.
pub unsafe extern "C"
// ── mbus_tcp_server_free ──────────────────────────────────────────────────────
/// Destroys a TCP server and releases its pool slot.
///
/// The server's transport is **not** automatically disconnected before freeing.
/// Call `mbus_tcp_server_disconnect` first if the transport may still be active.
///
/// After this call, `id` becomes invalid and must not be reused.
///
/// # Error conditions (no return value)
/// This function is infallible — an invalid or already-freed `id` is silently
/// ignored to simplify cleanup paths.
///
/// # Safety
/// The caller is responsible for ensuring no other thread is using the server
/// (poll / connect / disconnect) concurrently when this is called.
pub extern "C"
// ── mbus_tcp_server_connect ───────────────────────────────────────────────────
/// Opens the server's transport (e.g. begins accepting TCP connections).
///
/// Invokes the `connect` function-pointer from the `MbusTransportCallbacks` struct
/// supplied to `mbus_tcp_server_new`.
///
/// # Returns
/// - `MbusOk` — Transport connected successfully.
/// - `MbusErrConnectionFailed` — The `connect` callback returned a failure.
/// - `MbusErrIoError` — A lower-level I/O error occurred in the callback.
/// - `MbusErrInvalidConfiguration` — The transport was already connected, or the
/// configuration passed to the callback was rejected.
/// - `MbusErrInvalidClientId` — `id` does not refer to a live TCP server slot.
///
/// The server lock must be held while calling this function.
pub extern "C"
// ── mbus_tcp_server_disconnect ────────────────────────────────────────────────
/// Closes the server's transport.
///
/// Invokes the `disconnect` function-pointer from `MbusTransportCallbacks`.
/// Outstanding queued responses are discarded; the server pool slot remains
/// valid and can be reconnected with `mbus_tcp_server_connect`.
///
/// # Returns
/// - `MbusOk` — Transport disconnected (or was already disconnected).
/// - `MbusErrInvalidClientId` — `id` does not refer to a live TCP server slot.
///
/// The server lock must be held while calling this function.
pub extern "C"
// ── mbus_tcp_server_poll ──────────────────────────────────────────────────────
/// Drives the server state machine for one iteration.
///
/// Must be called in a tight loop or cooperative event loop. Each call performs:
/// 1. **Response retry** — resends queued responses from previous failed sends.
/// 2. **Receive** — reads bytes from the transport `recv` callback.
/// 3. **Frame parse** — assembles complete Modbus MBAP + PDU frames.
/// 4. **Dispatch** — calls the matching `MbusServerHandlers` callback.
/// 5. **Send** — transmits the response over the transport `send` callback.
///
/// # Returns
/// `mbus_tcp_server_poll` itself always returns `MbusOk`; individual transport
/// failures are handled internally by the server's resilience layer:
///
/// | Internal event | Server behaviour |
/// |----------------|------------------|
/// | `recv` returns `Timeout` | No data this poll; move on silently. |
/// | `recv` returns `IoError` / `ConnectionClosed` | Transport is disconnected; server waits for reconnect. |
/// | `send` fails | Response is queued for retry on the next poll (up to `max_send_retries`). |
/// | Frame parse error | One byte is discarded and the sliding window re-syncs. |
///
/// - `MbusErrInvalidClientId` — `id` does not refer to a live TCP server slot.
///
/// The server lock must be held while calling this function.
pub extern "C"
// ── mbus_tcp_server_is_connected ──────────────────────────────────────────────
/// Returns `true` if the server's transport reports itself as connected.
///
/// Delegates to the `is_connected` function-pointer in `MbusTransportCallbacks`.
/// Returns `false` for an invalid or freed server ID.
pub extern "C"
// ── mbus_tcp_server_pending_request_count ─────────────────────────────────────
/// Returns the number of requests currently waiting in the priority queue.
///
/// Reflects how many parsed requests are buffered waiting to be dispatched
/// (only non-zero when `ResilienceConfig::enable_priority_queue` is active).
/// Returns `0` for an invalid or freed server ID.
pub extern "C"
// ── mbus_tcp_server_pending_response_count ────────────────────────────────────
/// Returns the number of responses waiting for retry (failed sends).
///
/// A non-zero value means the `send` transport callback has failed at least
/// once and the server is holding the unsent frames for retry.
/// Returns `0` for an invalid or freed server ID.
pub extern "C"