makcu 0.3.2

Rust library for controlling MAKCU USB HID interceptor devices
Documentation
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
mod buttons;
mod catch;
mod info;
mod locks;
mod movement;
mod stream;

use std::cell::Cell;
use std::ops::Deref;
use std::time::Duration;

use crossbeam_channel as channel;

use crate::error::{MakcuError, Result};
use crate::protocol::parser::{self, ResponseKind};
use crate::transport::TransportHandle;
use crate::transport::serial;
use crate::types::ConnectionState;

// Thread-local fire-and-forget override. When set, `exec()` and
// `exec_dynamic()` skip waiting for responses. Thread-local ensures no
// cross-thread interference when a `Device` is shared via `Arc`.
thread_local! {
    static FF_OVERRIDE: Cell<bool> = const { Cell::new(false) };
}

fn is_ff_override() -> bool {
    FF_OVERRIDE.with(|c| c.get())
}

/// RAII guard that enables fire-and-forget for the current thread.
/// Restores the previous value on drop.
struct FfGuard {
    prev: bool,
}

impl FfGuard {
    fn new() -> Self {
        let prev = FF_OVERRIDE.with(|c| c.replace(true));
        Self { prev }
    }
}

impl Drop for FfGuard {
    fn drop(&mut self) {
        FF_OVERRIDE.with(|c| c.set(self.prev));
    }
}

/// Default command timeout.
const DEFAULT_TIMEOUT: Duration = Duration::from_millis(500);

/// Configuration for connecting to a MAKCU device.
#[derive(Debug, Clone)]
pub struct DeviceConfig {
    /// Serial port path. `None` = auto-detect by VID/PID.
    pub port: Option<String>,
    /// Try 4 Mbaud first before the baud-change sequence.
    pub try_4m_first: bool,
    /// Timeout for each command response.
    pub command_timeout: Duration,
    /// Enable automatic reconnection on disconnect.
    pub reconnect: bool,
    /// Initial reconnection backoff delay.
    pub reconnect_backoff: Duration,
    /// When true, all commands are fire-and-forget by default.
    pub fire_and_forget: bool,
}

impl Default for DeviceConfig {
    fn default() -> Self {
        Self {
            port: None,
            try_4m_first: true,
            command_timeout: DEFAULT_TIMEOUT,
            reconnect: true,
            reconnect_backoff: Duration::from_millis(100),
            fire_and_forget: false,
        }
    }
}

// ===========================================================================
// Device (sync)
// ===========================================================================

/// An open connection to a MAKCU device.
///
/// All methods take `&self` — the underlying I/O goes through channels.
/// `Device` is `Send + Sync` and can be wrapped in `Arc` for shared use.
pub struct Device {
    transport: TransportHandle,
    config: DeviceConfig,
}

impl std::fmt::Debug for Device {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Device")
            .field("port", &self.transport.port_name())
            .field("connected", &self.transport.is_connected())
            .finish()
    }
}

// Compile-time assertions that Device is Send + Sync.
#[allow(dead_code)]
const _: () = {
    fn assert_send_sync<T: Send + Sync>() {}
    fn _assertions() {
        assert_send_sync::<Device>();
    }
};

impl Device {
    /// Find and connect to the first available MAKCU device.
    pub fn connect() -> Result<Self> {
        Self::with_config(DeviceConfig::default())
    }

    /// Connect to a specific port.
    pub fn connect_port(port: &str) -> Result<Self> {
        Self::with_config(DeviceConfig {
            port: Some(port.to_string()),
            ..Default::default()
        })
    }

    /// Connect with a custom configuration.
    pub fn with_config(config: DeviceConfig) -> Result<Self> {
        let port_name = match &config.port {
            Some(p) => p.clone(),
            None => serial::find_port()?,
        };

        let transport = TransportHandle::connect(
            port_name,
            config.try_4m_first,
            config.reconnect,
            config.reconnect_backoff,
        )?;

        Ok(Self { transport, config })
    }

    /// Disconnect from the device, shutting down all threads.
    pub fn disconnect(&self) {
        self.transport.shutdown();
    }

    /// Check if the device is currently connected.
    pub fn is_connected(&self) -> bool {
        self.transport.is_connected()
    }

    /// Get the port name this device is connected to.
    pub fn port_name(&self) -> String {
        self.transport.port_name()
    }

    /// Subscribe to connection state changes.
    pub fn connection_events(&self) -> channel::Receiver<ConnectionState> {
        self.transport.subscribe_state()
    }

    /// Returns a fire-and-forget guard. While the guard is alive, all
    /// commands sent through it on the current thread skip waiting for
    /// responses. Derefs to `Device`, so every method is available.
    pub fn ff(&self) -> FireAndForget<'_> {
        FireAndForget {
            device: self,
            _guard: FfGuard::new(),
        }
    }

    /// Send raw command bytes (escape hatch for unwrapped firmware commands).
    /// The `\r\n` terminator must already be included.
    ///
    /// In fire-and-forget mode the command is sent without waiting for a
    /// response and an empty `Vec` is returned.
    pub fn send_raw(&self, cmd: &[u8]) -> Result<Vec<u8>> {
        let ff = self.is_ff();
        let resp = self
            .transport
            .send_static(cmd, ff, self.config.command_timeout)?;
        match resp {
            Some(data) => Ok(data),
            None if ff => Ok(Vec::new()),
            None => Err(MakcuError::Timeout),
        }
    }

    /// Start building a batch of commands.
    #[cfg(feature = "batch")]
    pub fn batch(&self) -> crate::batch::BatchBuilder<'_> {
        crate::batch::BatchBuilder::new(self)
    }

    // -- Internal helpers --

    pub(crate) fn is_ff(&self) -> bool {
        self.config.fire_and_forget || is_ff_override()
    }

    pub(crate) fn exec(&self, cmd: &[u8]) -> Result<()> {
        if self.is_ff() {
            self.transport
                .send_static(cmd, true, self.config.command_timeout)?;
            return Ok(());
        }
        let raw = self.send_raw(cmd)?;
        match parser::classify_response(&raw) {
            ResponseKind::Executed | ResponseKind::ValueOrEcho(_) | ResponseKind::Value(_) => {
                Ok(())
            }
        }
    }

    pub(crate) fn query(&self, cmd: &[u8]) -> Result<String> {
        let raw = self
            .transport
            .send_static(cmd, false, self.config.command_timeout)?
            .ok_or(MakcuError::Timeout)?;
        classify_as_value(&raw)
    }

    pub(crate) fn exec_dynamic(&self, cmd: &[u8]) -> Result<()> {
        self.transport
            .send_command(cmd.to_vec(), self.is_ff(), self.config.command_timeout)?;
        Ok(())
    }

    pub(crate) fn query_dynamic(&self, cmd: &[u8]) -> Result<String> {
        let raw = self
            .transport
            .send_command(cmd.to_vec(), false, self.config.command_timeout)?
            .ok_or(MakcuError::Timeout)?;
        classify_as_value(&raw)
    }

    #[cfg(feature = "batch")]
    pub(crate) fn timeout(&self) -> Duration {
        self.config.command_timeout
    }

    pub(crate) fn transport(&self) -> &TransportHandle {
        &self.transport
    }
}

#[cfg(feature = "mock")]
impl Device {
    /// Create a Device backed by a mock transport (for testing).
    pub fn mock() -> (Self, std::sync::Arc<crate::transport::mock::MockTransport>) {
        let (transport, mock) = TransportHandle::from_mock();
        let device = Self {
            transport,
            config: DeviceConfig::default(),
        };
        (device, mock)
    }
}

// ===========================================================================
// FireAndForget (sync)
// ===========================================================================

/// Fire-and-forget RAII guard. While this guard is alive, all commands sent
/// through the referenced `Device` on the current thread skip waiting for
/// responses. Derefs to `Device`, so every method (including extras) is
/// available.
///
/// Query methods (`version()`, `button_state()`, etc.) always wait for a
/// response regardless of fire-and-forget mode, since they must return a value.
pub struct FireAndForget<'d> {
    device: &'d Device,
    _guard: FfGuard,
}

impl Deref for FireAndForget<'_> {
    type Target = Device;

    fn deref(&self) -> &Device {
        self.device
    }
}

// ===========================================================================
// AsyncDevice
// ===========================================================================

#[cfg(feature = "async")]
pub struct AsyncDevice {
    transport: TransportHandle,
    config: DeviceConfig,
}

// Compile-time assertions that AsyncDevice is Send + Sync.
#[cfg(feature = "async")]
#[allow(dead_code)]
const _: () = {
    fn assert_send_sync<T: Send + Sync>() {}
    fn _assertions() {
        assert_send_sync::<AsyncDevice>();
    }
};

#[cfg(feature = "async")]
impl std::fmt::Debug for AsyncDevice {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("AsyncDevice")
            .field("port", &self.transport.port_name())
            .field("connected", &self.transport.is_connected())
            .finish()
    }
}

#[cfg(feature = "async")]
impl AsyncDevice {
    /// Find and connect to the first available MAKCU device.
    pub async fn connect() -> Result<Self> {
        Self::with_config(DeviceConfig::default()).await
    }

    /// Connect to a specific port.
    pub async fn connect_port(port: &str) -> Result<Self> {
        Self::with_config(DeviceConfig {
            port: Some(port.to_string()),
            ..Default::default()
        })
        .await
    }

    /// Connect with a custom configuration.
    pub async fn with_config(config: DeviceConfig) -> Result<Self> {
        let cfg = config.clone();
        let (transport, config) = tokio::task::spawn_blocking(move || -> Result<_> {
            let port_name = match &cfg.port {
                Some(p) => p.clone(),
                None => serial::find_port()?,
            };
            let transport = TransportHandle::connect(
                port_name,
                cfg.try_4m_first,
                cfg.reconnect,
                cfg.reconnect_backoff,
            )?;
            Ok((transport, cfg))
        })
        .await
        .map_err(|e| MakcuError::Protocol(format!("join error: {}", e)))??;

        Ok(Self { transport, config })
    }

    /// Disconnect from the device, shutting down all threads.
    pub fn disconnect(&self) {
        self.transport.shutdown();
    }

    /// Check if the device is currently connected.
    pub fn is_connected(&self) -> bool {
        self.transport.is_connected()
    }

    /// Get the port name this device is connected to.
    pub fn port_name(&self) -> String {
        self.transport.port_name()
    }

    /// Subscribe to connection state changes.
    pub fn connection_events(&self) -> channel::Receiver<ConnectionState> {
        self.transport.subscribe_state()
    }

    /// Returns a fire-and-forget guard. Derefs to `AsyncDevice`.
    pub fn ff(&self) -> AsyncFireAndForget<'_> {
        AsyncFireAndForget {
            device: self,
            _guard: FfGuard::new(),
        }
    }

    /// Send raw command bytes (async escape hatch).
    ///
    /// In fire-and-forget mode the command is sent without waiting for a
    /// response and an empty `Vec` is returned.
    pub async fn send_raw(&self, cmd: &[u8]) -> Result<Vec<u8>> {
        let ff = self.is_ff();
        let resp = self
            .transport
            .send_static_async(cmd, ff, self.config.command_timeout)
            .await?;
        match resp {
            Some(data) => Ok(data),
            None if ff => Ok(Vec::new()),
            None => Err(MakcuError::Timeout),
        }
    }

    /// Start building a batch of commands.
    #[cfg(feature = "batch")]
    pub fn batch(&self) -> crate::batch::AsyncBatchBuilder<'_> {
        crate::batch::AsyncBatchBuilder::new(self)
    }

    // -- Internal async helpers --

    pub(crate) fn is_ff(&self) -> bool {
        self.config.fire_and_forget || is_ff_override()
    }

    pub(crate) async fn exec(&self, cmd: &[u8]) -> Result<()> {
        if self.is_ff() {
            self.transport
                .send_static(cmd, true, self.config.command_timeout)?;
            return Ok(());
        }
        let raw = self.send_raw(cmd).await?;
        match parser::classify_response(&raw) {
            ResponseKind::Executed | ResponseKind::ValueOrEcho(_) | ResponseKind::Value(_) => {
                Ok(())
            }
        }
    }

    pub(crate) async fn query(&self, cmd: &[u8]) -> Result<String> {
        let raw = self
            .transport
            .send_static_async(cmd, false, self.config.command_timeout)
            .await?
            .ok_or(MakcuError::Timeout)?;
        classify_as_value(&raw)
    }

    pub(crate) async fn exec_dynamic(&self, cmd: &[u8]) -> Result<()> {
        self.transport
            .send_command_async(cmd.to_vec(), self.is_ff(), self.config.command_timeout)
            .await?;
        Ok(())
    }

    pub(crate) async fn query_dynamic(&self, cmd: &[u8]) -> Result<String> {
        let raw = self
            .transport
            .send_command_async(cmd.to_vec(), false, self.config.command_timeout)
            .await?
            .ok_or(MakcuError::Timeout)?;
        classify_as_value(&raw)
    }

    pub(crate) fn transport(&self) -> &TransportHandle {
        &self.transport
    }

    #[cfg(feature = "batch")]
    pub(crate) fn timeout(&self) -> std::time::Duration {
        self.config.command_timeout
    }
}

#[cfg(all(feature = "async", feature = "mock"))]
impl AsyncDevice {
    /// Create an AsyncDevice backed by a mock transport (for testing).
    pub fn mock() -> (Self, std::sync::Arc<crate::transport::mock::MockTransport>) {
        let (transport, mock) = TransportHandle::from_mock();
        let device = Self {
            transport,
            config: DeviceConfig::default(),
        };
        (device, mock)
    }
}

// ===========================================================================
// AsyncFireAndForget
// ===========================================================================

#[cfg(feature = "async")]
pub struct AsyncFireAndForget<'d> {
    device: &'d AsyncDevice,
    _guard: FfGuard,
}

#[cfg(feature = "async")]
impl Deref for AsyncFireAndForget<'_> {
    type Target = AsyncDevice;

    fn deref(&self) -> &AsyncDevice {
        self.device
    }
}

// ===========================================================================
// Shared helpers
// ===========================================================================

fn classify_as_value(raw: &[u8]) -> Result<String> {
    match parser::classify_response(raw) {
        ResponseKind::Value(v) => Ok(v),
        ResponseKind::ValueOrEcho(v) => Ok(v),
        ResponseKind::Executed => Err(MakcuError::Protocol(
            "expected a value but got EXECUTED".into(),
        )),
    }
}