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
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
use crate*;
use ;
const PLUGIN_IDENTIFIER: &str = "app.tauri.serialplugin";
use crateSerialPort;
use crateSerialPort;
use HashMap;
use ;
/// Commands module providing Tauri commands for serial port operations
///
/// This module contains all the Tauri commands that can be invoked from the frontend
/// to interact with serial ports. Each command is designed to be used with the
/// `tauri::invoke` function or through the plugin's JavaScript API.
///
/// # Examples
///
/// ```rust
/// use tauri_plugin_serialplugin::commands;
/// use tauri::{AppHandle, State};
///
/// #[tauri::command]
/// async fn open_serial_port(
/// app: AppHandle<tauri::Wry>,
/// serial: State<'_, tauri_plugin_serialplugin::desktop_api::SerialPort<tauri::Wry>>
/// ) -> Result<(), String> {
/// commands::open(app, serial, "COM1".to_string(), 9600, None, None, None, None, None)
/// .map_err(|e| e.to_string())
/// }
/// ```
/// Centralized logging module
///
/// Provides logging macros that respect the global log level setting.
/// Use `log_error!`, `log_warn!`, `log_info!`, and `log_debug!` macros
/// instead of direct println!/eprintln! calls.
/// Desktop API module providing serial port functionality for desktop platforms
///
/// This module contains the desktop-specific implementation of serial port
/// operations. It provides a unified interface for managing serial ports
/// across different desktop operating systems (Windows, macOS, Linux).
///
/// # Examples
///
/// ```rust
/// use tauri_plugin_serialplugin::desktop_api::SerialPort;
/// use tauri_plugin_serialplugin::state::{DataBits, FlowControl, Parity, StopBits};
/// use tauri::AppHandle;
/// use std::time::Duration;
///
/// // Note: In a real Tauri app, you would get the AppHandle from the command context
/// // let serial = SerialPort::new(app_handle);
/// // serial.open("COM1".to_string(), 9600, Some(DataBits::Eight),
/// // Some(FlowControl::None), Some(Parity::None),
/// // Some(StopBits::One), Some(1000))
/// // .expect("Failed to open port");
/// ```
/// Error types for serial port operations
///
/// This module defines the error types used throughout the serial plugin.
/// It provides a unified error handling interface for both desktop and
/// mobile platforms.
///
/// # Examples
///
/// ```rust
/// use tauri_plugin_serialplugin::error::Error;
///
/// // Example of error handling
/// fn handle_operation_result(result: Result<(), Error>) {
/// match result {
/// Ok(_) => println!("Operation successful"),
/// Err(Error::Io(msg)) => println!("IO error: {}", msg),
/// Err(Error::SerialPort(msg)) => println!("Serial port error: {}", msg),
/// Err(Error::String(msg)) => println!("Error: {}", msg),
/// }
/// }
/// ```
/// Mobile API module providing serial port functionality for mobile platforms
///
/// This module contains the mobile-specific implementation of serial port
/// operations. It provides a unified interface for managing serial ports
/// on Android devices.
///
/// # Examples
///
/// ```rust
/// use tauri_plugin_serialplugin::mobile_api::SerialPort;
/// use tauri_plugin_serialplugin::state::{DataBits, FlowControl, Parity, StopBits};
/// use tauri::AppHandle;
/// use std::time::Duration;
///
/// // Note: In a real Tauri app, you would get the AppHandle from the command context
/// // let serial = SerialPort::new(app_handle);
/// // serial.open("/dev/ttyUSB0".to_string(), 9600, Some(DataBits::Eight),
/// // Some(FlowControl::None), Some(Parity::None),
/// // Some(StopBits::One), Some(1000))
/// // .expect("Failed to open port");
/// ```
/// State types and enums for serial port configuration
///
/// This module defines the data structures and enums used for serial port
/// configuration. It includes types for baud rates, data bits, flow control,
/// parity, stop bits, and other serial port settings.
///
/// # Examples
///
/// ```rust
/// use tauri_plugin_serialplugin::state::{DataBits, FlowControl, Parity, StopBits};
///
/// // Configure serial port settings
/// let data_bits = DataBits::Eight;
/// let flow_control = FlowControl::None;
/// let parity = Parity::None;
/// let stop_bits = StopBits::One;
/// ```
/// Initializes the serial plugin for Tauri
///
/// This function creates and configures the serial plugin with all available
/// commands for serial port operations. It sets up the necessary state management
/// and registers the plugin with the Tauri application.
///
/// # Returns
///
/// A configured `TauriPlugin` instance that can be added to your Tauri app.
///
/// # Example
///
/// ```rust,ignore
/// use tauri_plugin_serialplugin::init;
///
/// fn main() {
/// tauri::Builder::default()
/// .plugin(init())
/// // .run(tauri::generate_context!())
/// // .expect("error while running tauri application");
/// }
/// ```