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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
//! Core types for WebSocket event handling and messaging.
//!
//! This module provides the public API types used for WebSocket communication:
//! - [`S9WebSocketClientHandler`] - Trait for handler-based event callbacks
//! - [`WebSocketEvent`] - Events received from async non-blocking client
//! - [`ControlMessage`] - Control messages sent to async non-blocking client
// ============================================================================
// Macros
// ============================================================================
// Send message to channel or break when sending a message fails.
// Send message to channel or log when sending a message fails.
pub use send_or_break;
pub use send_or_log;
// ============================================================================
// Public API Types
// ============================================================================
/// Trait for handling WebSocket events via callbacks.
///
/// This trait is used with [`S9NonBlockingWebSocketClient`](crate::S9NonBlockingWebSocketClient)
/// and [`S9BlockingWebSocketClient`](crate::S9BlockingWebSocketClient) to receive events
/// through callback methods.
///
/// The trait is generic over the client type `C`, which is passed as `&mut C` to each handler
/// method, allowing direct calls to client methods from within callbacks.
///
/// # Event Loop Lifecycle
///
/// Handler methods are called in this order:
/// 1. [`on_activated`](Self::on_activated) - Called once before entering the event loop
/// 2. [`on_poll`](Self::on_poll) - Called every iteration before socket read (highest priority)
/// 3. Message handlers ([`on_text_message`](Self::on_text_message), [`on_binary_message`](Self::on_binary_message), etc.) - Called when data arrives
/// 4. [`on_idle`](Self::on_idle) - Called only when no data available (WouldBlock/TimedOut)
/// 5. [`on_quit`](Self::on_quit) - Called once when event loop is about to break
///
/// # All Methods Have Default Implementations
///
/// All trait methods have default no-op implementations. Implement only the methods you need:
///
/// - [`on_activated`](Self::on_activated) - Initialization before event loop
/// - [`on_poll`](Self::on_poll) - High-priority tasks every iteration
/// - [`on_idle`](Self::on_idle) - Low-priority tasks when idle
/// - [`on_text_message`](Self::on_text_message) - Handle text messages
/// - [`on_binary_message`](Self::on_binary_message) - Handle binary messages
/// - [`on_ping`](Self::on_ping) - Handle ping frames
/// - [`on_pong`](Self::on_pong) - Handle pong frames
/// - [`on_connection_closed`](Self::on_connection_closed) - Handle connection closure
/// - [`on_error`](Self::on_error) - Handle errors
/// - [`on_quit`](Self::on_quit) - Cleanup before exit
///
/// # Examples
///
/// ## Basic Handler
///
/// ```no_run
/// use s9_websocket::{S9NonBlockingWebSocketClient, S9WebSocketClientHandler, NonBlockingOptions};
///
/// struct MyHandler {
/// message_count: usize,
/// }
///
/// impl S9WebSocketClientHandler<S9NonBlockingWebSocketClient> for MyHandler {
/// fn on_text_message(&mut self, client: &mut S9NonBlockingWebSocketClient, data: &[u8]) {
/// println!("Received: {}", String::from_utf8_lossy(data));
/// self.message_count += 1;
///
/// if self.message_count >= 5 {
/// client.close(); // Direct call to client method
/// }
/// }
///
/// fn on_binary_message(&mut self, _client: &mut S9NonBlockingWebSocketClient, data: &[u8]) {
/// println!("Received {} bytes", data.len());
/// }
///
/// fn on_connection_closed(&mut self, _client: &mut S9NonBlockingWebSocketClient, reason: Option<String>) {
/// println!("Connection closed: {:?}", reason);
/// }
///
/// fn on_error(&mut self, _client: &mut S9NonBlockingWebSocketClient, error: String) {
/// eprintln!("Error: {}", error);
/// }
/// }
///
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let mut client = S9NonBlockingWebSocketClient::connect("wss://echo.websocket.org", NonBlockingOptions::new())?;
/// let mut handler = MyHandler { message_count: 0 };
/// client.run(&mut handler);
/// # Ok(())
/// # }
/// ```
///
/// ## Using Lifecycle Hooks
///
/// ```no_run
/// use s9_websocket::{S9NonBlockingWebSocketClient, S9WebSocketClientHandler, NonBlockingOptions};
/// use crossbeam_channel::{unbounded, Receiver};
///
/// enum Signal { Close, ForceQuit }
///
/// struct HandlerWithSignals {
/// signal_rx: Receiver<Signal>,
/// }
///
/// impl S9WebSocketClientHandler<S9NonBlockingWebSocketClient> for HandlerWithSignals {
/// fn on_activated(&mut self, _client: &mut S9NonBlockingWebSocketClient) {
/// println!("Handler activated - ready to receive messages");
/// }
///
/// fn on_idle(&mut self, client: &mut S9NonBlockingWebSocketClient) {
/// // Check for external signals when no WebSocket data available
/// if let Ok(signal) = self.signal_rx.try_recv() {
/// match signal {
/// Signal::Close => client.close(),
/// Signal::ForceQuit => client.force_quit(),
/// }
/// }
/// }
///
/// fn on_text_message(&mut self, _client: &mut S9NonBlockingWebSocketClient, data: &[u8]) {
/// println!("Message: {}", String::from_utf8_lossy(data));
/// }
///
/// fn on_binary_message(&mut self, _client: &mut S9NonBlockingWebSocketClient, _data: &[u8]) {}
/// fn on_connection_closed(&mut self, _client: &mut S9NonBlockingWebSocketClient, _reason: Option<String>) {}
/// fn on_error(&mut self, _client: &mut S9NonBlockingWebSocketClient, _error: String) {}
///
/// fn on_quit(&mut self, _client: &mut S9NonBlockingWebSocketClient) {
/// println!("Handler shutting down");
/// }
/// }
/// ```
/// Events received from [`S9AsyncNonBlockingWebSocketClient`](crate::S9AsyncNonBlockingWebSocketClient).
///
/// These events are delivered via the [`event_rx`](crate::S9AsyncNonBlockingWebSocketClient::event_rx)
/// channel and represent all possible WebSocket events.
///
/// # Event Flow
///
/// 1. [`Activated`](Self::Activated) - Sent once when the event loop starts
/// 2. Message events - [`TextMessage`](Self::TextMessage), [`BinaryMessage`](Self::BinaryMessage), etc.
/// 3. [`ConnectionClosed`](Self::ConnectionClosed) or [`Error`](Self::Error) - Terminal events
/// 4. [`Quit`](Self::Quit) - Final event before thread terminates
///
/// # Examples
///
/// ```no_run
/// use s9_websocket::{S9AsyncNonBlockingWebSocketClient, WebSocketEvent, ControlMessage, NonBlockingOptions};
/// use std::time::Duration;
///
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let options = NonBlockingOptions::new()
/// .spin_wait_duration(Some(Duration::from_millis(10)))?;
///
/// let mut client = S9AsyncNonBlockingWebSocketClient::connect("wss://echo.websocket.org", options)?;
/// let _handle = client.run()?;
///
/// client.control_tx.send(ControlMessage::SendText("Hello!".to_string()))?;
///
/// loop {
/// match client.event_rx.recv() {
/// Ok(WebSocketEvent::Activated) => {
/// println!("Client activated");
/// }
/// Ok(WebSocketEvent::TextMessage(data)) => {
/// println!("Received: {}", String::from_utf8_lossy(&data));
/// client.control_tx.send(ControlMessage::Close())?;
/// }
/// Ok(WebSocketEvent::BinaryMessage(data)) => {
/// println!("Received {} bytes", data.len());
/// }
/// Ok(WebSocketEvent::Ping(data)) => {
/// println!("Ping: {} bytes", data.len());
/// }
/// Ok(WebSocketEvent::Pong(data)) => {
/// println!("Pong: {} bytes", data.len());
/// }
/// Ok(WebSocketEvent::ConnectionClosed(reason)) => {
/// println!("Closed: {:?}", reason);
/// }
/// Ok(WebSocketEvent::Error(error)) => {
/// eprintln!("Error: {}", error);
/// }
/// Ok(WebSocketEvent::Quit) => {
/// println!("Quitting");
/// break;
/// }
/// Err(e) => {
/// eprintln!("Channel error: {}", e);
/// break;
/// }
/// }
/// }
/// # Ok(())
/// # }
/// ```
/// Control messages sent to [`S9AsyncNonBlockingWebSocketClient`](crate::S9AsyncNonBlockingWebSocketClient).
///
/// These messages are sent via the [`control_tx`](crate::S9AsyncNonBlockingWebSocketClient::control_tx)
/// channel to control the WebSocket connection from other threads.
///
/// # Examples
///
/// ```no_run
/// use s9_websocket::{S9AsyncNonBlockingWebSocketClient, ControlMessage, WebSocketEvent, NonBlockingOptions};
/// use std::time::Duration;
///
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let options = NonBlockingOptions::new()
/// .spin_wait_duration(Some(Duration::from_millis(10)))?;
///
/// let mut client = S9AsyncNonBlockingWebSocketClient::connect("wss://echo.websocket.org", options)?;
/// let _handle = client.run()?;
///
/// // Send different types of messages
/// client.control_tx.send(ControlMessage::SendText("Hello!".to_string()))?;
/// client.control_tx.send(ControlMessage::SendBinary(vec![1, 2, 3]))?;
/// client.control_tx.send(ControlMessage::SendPing(vec![]))?;
///
/// // Graceful close
/// client.control_tx.send(ControlMessage::Close())?;
///
/// // Or force immediate quit (not recommended unless necessary)
/// // client.control_tx.send(ControlMessage::ForceQuit())?;
/// # Ok(())
/// # }
/// ```