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
506
507
508
#![forbid(unsafe_code)]
//#![warn(missing_docs)]

//! `tmux_interface` is a library for communication with [TMUX](https://github.com/tmux/tmux) via
//! CLI.
//!
//! # On This Page
//! * 1. [Description](#1-description)
//! * 2. [Quick Start](#2-quick-start)
//! * 3. [Package Compilation Features](#3-package-compilation-features)
//!     * 3.1. [Tmux Version](#31-tmux-version)
//!     * 3.2. [Tmux Command Alias](#32-tmux-command-alias)
//!     * 3.3. [Repository](#3-3-repository)
//!         * 3.3.1 [Using Crates Repository](#331-using-crates-repository)
//!         * 3.3.2 [Using Local Repository](#332-using-local-repository)
//!         * 3.3.3 [Using Remote Repository](#333-using-remote-repository)
//! * 4. [Modules Overview](#4-modules-overview)
//! * 5. [Modules and Levels Hierarchy](#5-modules-and-levels-hierarchy)
//!
//!
//! # 1. Description
//!
//! Main purpose of the `tmux_interface` library is to implement simple sending and receiving data
//! mechanisms for intercommunication with `TMUX` only via standard streams (`stdin`, `stdout`, `stderr`).
//!
//! # 2. Quick Start
//!
//! 1. Add a dependency in your `Cargo.toml`. Versions below `1.0.0` are
//!    mostly for development and testing purposes (use them in your projects on
//!    your own risk, further versions may have different API).
//!
//!     ```text
//!     [dependencies]
//!     tmux_interface = "1.0.0"
//!     ```
//!
//! 2. Add extern crate in your source file.
//!     ```
//!     extern crate tmux_interface;
//!     ```
//!
//! 3. Use it's functions
//!
//!     ### Example 1
//!     ```
//!     use tmux_interface::{HasSession, KillSession, NewSession, NewWindow, SplitWindow, Tmux};
//!
//!     let target_session = "example_1";
//!
//!     // tmux new -d -s example_1 ; neww ; splitw -v
//!     Tmux::new()
//!         .add_command(NewSession::new().detached().session_name(target_session))
//!         .add_command(NewWindow::new())
//!         .add_command(SplitWindow::new().vertical())
//!         .output()
//!         .unwrap();
//!
//!     // tmux has -t example_1
//!     let status = Tmux::with_command(HasSession::new().target_session(target_session))
//!         .status()
//!         .unwrap()
//!         .success();
//!
//!     assert!(status);
//!
//!     // tmux kill-session -t example_1
//!     Tmux::with_command(KillSession::new().target_session(target_session))
//!         .output()
//!         .unwrap();
//!
//!     ```
//!
//!
//! # 3. Package Compilation Features
//!
//! ## 3.1 Tmux Version
//!
//! Different tmux versions may have incompatible CLI changes.
//! Following versions features are currently supported:
//!
//! **Table 3.1:** `Cargo.toml` features list with corresponding tmux versions
//!
//! | Feature Name  | Tmux Version  | CI Tests | Comment                                              |
//! |---------------|---------------|----------|------------------------------------------------------|
//! | `tmux_0_8`    | `tmux 0.8`    |          |                                                      |
//! | `tmux_0_9`    | `tmux 0.9`    |          |                                                      |
//! | `tmux_1_0`    | `tmux 1.0`    |          |                                                      |
//! | `tmux_1_1`    | `tmux 1.1`    |          |                                                      |
//! | `tmux_1_2`    | `tmux 1.2`    |          |                                                      |
//! | `tmux_1_3`    | `tmux 1.3`    |          |                                                      |
//! | `tmux_1_4`    | `tmux 1.4`    |          |                                                      |
//! | `tmux_1_5`    | `tmux 1.5`    |          |                                                      |
//! | `tmux_1_6`    | `tmux 1.6`    |          | Ubuntu 11.04 LTS Precise Pangolin, CentOS 6          |
//! | `tmux_1_7`    | `tmux 1.7`    |          | Ubuntu 14.04 LTS Trusty Tahr, CentOS 7               |
//! | `tmux_1_8`    | `tmux 1.8`    |        x |                                                      |
//! | `tmux_1_9`    | `tmux 1.9`    |        x | Debian Jessie                                        |
//! | `tmux_1_9a`   | `tmux 1.9a`   |        x |                                                      |
//! | `tmux_2_0`    | `tmux 2.0`    |        x |                                                      |
//! | `tmux_2_1`    | `tmux 2.1`    |        x | Ubuntu 16.04 LTS Xenial Xerus                        |
//! | `tmux_2_2`    | `tmux 2.2`    |        x |                                                      |
//! | `tmux_2_3`    | `tmux 2.3`    |        x | Debian Stretch                                       |
//! | `tmux_2_4`    | `tmux 2.4`    |        x |                                                      |
//! | `tmux_2_5`    | `tmux 2.5`    |        x |                                                      |
//! | `tmux_2_6`    | `tmux 2.6`    |        x | Ubuntu 18.04 LTS Bionic Beaver                       |
//! | `tmux_2_7`    | `tmux 2.7`    |        x | CentOS 8                                             |
//! | `tmux_2_8`    | `tmux 2.8`    |        x | Debian Buster                                        |
//! | `tmux_2_9`    | `tmux 2.9`    |        x |                                                      |
//! | `tmux_2_9a`   | `tmux 2.9a`   |        x |                                                      |
//! | `tmux_3_0`    | `tmux 3.0`    |        x |                                                      |
//! | `tmux_3_0a`   | `tmux 3.0a`   |        x | Ubuntu 20.04 LTS Focal Fossa                         |
//! | `tmux_3_1`    | `tmux 3.1`    |        x |                                                      |
//! | `tmux_3_1a`   | `tmux 3.1a`   |        x |                                                      |
//! | `tmux_3_1b`   | `tmux 3.1b`   |        x |                                                      |
//! | `tmux_3_1c`   | `tmux 3.1c`   |        x | Debian Bullseye                                      |
//! | `tmux_3_2`    | `tmux 3.2`    |        x |                                                      |
//! | `tmux_3_2a`   | `tmux 3.2a`   |        x | Ubuntu 22.04 LTS Jammy Jellyfish, CentOS 9           |
//! | `tmux_3_3`    | `tmux 3.3`    |        x |                                                      |
//! | `tmux_3_3a`   | `tmux 3.3a`   |        x | Debian Bookworm, Ubuntu 23.04 LTS Lunar Lobster      |
//! | `tmux_3_4`    | `tmux 3.4`    |        x | Debian experimental,  Ubuntu 24.04 LTS Noble Numbat  |
//! | `tmux_X_X`    |               |        x | tmux: `main` branch; library: `dev` branch           |
//! |               |               |          |                                                      |
//! | `tmux_stable` | `tmux 3.3`    |          |                                                      |
//! | `tmux_latest` | `tmux 3.3a`   |          |                                                      |
//!
//!
//! ```text
//! [dependencies]
//! tmux_interface = {
//!  version = "^0.1.0",
//!  features = ["tmux_2_6"]
//! }
//! ```
//!
//! By default `tmux_stable` is used. It can be removed with `--no-default-features`
//! cargo command line option or with `default-features = false` option in `Cargo.toml`
//!  You can also add
//! `features` to your dependencies entry in `Cargo.toml`, if you want to
//! specify the version of tmux you want to use.
//!
//! ```text
//! [dependencies]
//! tmux_interface = {
//!  version = "^0.1.0",
//!  default-features = false,
//!  features = ["tmux_2_6"]
//! }
//! ```
//!
//! ## 3.2. Tmux Command Alias
//!
//! `cmd_alias` use alias instead of full tmux command name (e.g. `list-sessions` -> `ls`). Enabled by default.
//!
//! ## 3.3. Repository
//!
//! ### 3.3.1. Using Crates Repository
//!
//! ```text
//! [dependencies]
//! tmux_interface = {
//!  version = "0.0.7",
//! }
//! ```
//!
//! ### 3.3.2. Using Local Repository
//!
//! ```text
//! [dependencies]
//! tmux_interface = {
//!  version = "0.0.7",
//!  path = "../tmux-interface"
//! }
//! ```
//!
//! ### 3.3.3. Using Remote Repository
//!
//! ```text
//! tmux_interface = {
//!  git = "https://github.com/AntonGepting/tmux-interface-rs.git",
//!  branch = "dev"
//! }
//! ```
//!
//! # 4. Modules Overview
//!
//! * Commands ([`commands`])
//!     * Clients and Sessions ([`clients_and_sessions`](crate::commands::clients_and_sessions))
//!     * Windows and Panes ([`windows_and_panes`](crate::commands::windows_and_panes))
//!     * Key Bindings ([`key_bindings`](crate::commands::key_bindings))
//!     * Options ([`options`](crate::commands::options))
//!     * Hooks ([`hooks`](crate::commands::hooks))
//!     * Global and Session Environment ([`global_and_session_environment`](crate::commands::global_and_session_environment))
//!     * Status Line ([`status_line`](crate::commands::status_line))
//!     * Buffers ([`buffers`](crate::commands::buffers))
//!     * Miscellaneous ([`miscellaneous`](crate::commands::miscellaneous))
//!     * ...
//!     * Common ([`common`](crate::commands::common))
//!     * TmuxCommand ([`TmuxCommand`]), TmuxCommands ([`TmuxCommands`])
//!     * Tmux ([`Tmux`])
//!     * ...
//!
//!
//! * Modes
//!     * Default Mode
//!     * Control Mode ([`control_mode`])
//!         * (unimplemented, draft)
//!     * Copy Mode
//!         * (unimplemented, draft)
//!     * Command Mode
//!         * (unimplemented)
//!     * Clock Mode
//!         * (unimplemented)
//!
//! * Formats ([`formats`])
//!     * [`Formats`][crate::formats::Formats]
//!     * [`FormatsOutput`][crate::formats::FormatsOutput]
//!     * [`Variable`][crate::formats::Variable]
//!     * [`VariableOutput`][crate::formats::VariableOutput]
//!     * ...
//!
//! * Options ([`options`])
//!
//! * Styles ([`styles`])
//!     * [`StyleList`][crate::styles::StyleList]
//!     * [`Style`][crate::styles::Style]
//!     * ...
//!
//! * Target ([`target`])
//!     * [`TargetSession`]
//!     * [`TargetWindow`]
//!     * [`TargetPane`]
//!     * ...
//!
//! * Variables ([`variables`])
//!     * [`Sessions`](crate::Sessions)
//!     * [`Session`](crate::Session)
//!     * [`Windows`](crate::Windows)
//!     * [`Window`](crate::Window)
//!     * [`Panes`](crate::Panes)
//!     * [`Pane`](crate::Pane)
//!     * ...
//!
//! * Error ([`Error`])
//!
//! * ...
//!
//!
//! # 5. Modules and Levels Hierarchy
//!
//! ```text
//! 5. Tmux Objects Controller
//!  +---------+     +-----------+                             +-----+
//!  | Options |     | Variables |                             | ... |
//!  +---------+     +-----------+                             +-----+
//!  ...
//!
//! 4. Tmux Objects Getter/Setter
//!  +-----------------+                                       +-----+
//!  | GetServerOption |                                       | ... |
//!  +-----------------+                                       +-----+
//!  ...
//!
//! 3. Command Builder
//!  +------+     +------------+      +---------------+        +-----+
//!  | Tmux |     | NewSession |      | AttachSession |        | ... |
//!  +------+     +------------+      +---------------+        +-----+
//!
//! 2. Tmux Command
//!  +-------------+                  +------------+
//!  | TmuxCommand |                  | TmuxOutput |
//!  +-------------+                  +------------+
//!  +-----------------+
//!  | TmuxCommands    |
//!  +-----------------+
//!
//! 1. Standard Library
//!  +---------------------------------------+
//!  |        std::process::Command          |
//!  +---------------------------------------+
//!  +-----------+ +-----------+ +-----------+
//!  | .output() | | .spawn()  | | .status() |
//!  +-----------+ +-----------+ +-----------+
//!
//!  Platform specific (Windows, UNIX, ...)
//!  +---------------------------------------+
//!  |             sys::process              |
//!  +---------------------------------------+
//!  +-----------+ +-------------------------+
//!  | .output() | |        .spawn()         |
//!  +-----------+ +-------------------------+
//!
//! 0. OS
//!  +--------+                      +-----------------+       +-----+
//!  | fork() |                      | CreateProcess() |       | ... |
//!  +--------+                      +-----------------+       +-----+
//! ```
//! **Figure 5:** Schematic Levels and Modules Hierarchy
//!
//! and thereby:
//!
//! * Each level allows to build practically the same command, but with more or less effort and advantages
//! * Each level has some abstraction and some limitations
//! * Each level is based on top of the previous one (uses APIs of the previous one)
//!
//! ## 5.1. Level Explanations and Examples
//!
//! Tmux command invocation can be described and accessed on different levels:
//!
//! * 0. syscall `fork(...)`, `CreateProcess(...)` - Operating System level abstraction
//!
//! * 1. [`std::process::Command`] - Rust standard library level abstraction
//!     * OS independence
//!     * comfortable working low level
//!     * manually build commands using literals
//!     * hard coded literals
//!
//!     ### Examples
//!
//!     ```text
//!     use std::process::Command;
//!
//!     // tmux -2 -uv new-session -ADEd -s example_5_1_1
//!     let output = Command::new("tmux")
//!         .args(["-2", "-uv", "new-session", "-ADEd", "-s", "example_5_1_1"])
//!         .output()
//!         .unwrap();
//!
//!     assert!(output.status.success());
//!
//!     // tmux -2 -uv kill-session -t example_5_1_1
//!     let output = Command::new("tmux")
//!         .args(["-2", "-uv", "kill-session", "-t", "example_5_1_1"])
//!         .output()
//!         .unwrap();
//!
//!     assert!(output.status.success());
//!     ```
//!     **Listing 5.1.1:** build tmux commands using `std::process::Command`
//!
//! * 2. [`TmuxCommand`], [`TmuxCommands`] - custom command abstraction
//!     * additional functionality for [`std::process::Command`]
//!     * allows to store additional information about commands such as:
//!         * command alias (`new`), beside command name (`new-session`)
//!         * short flag name (`-l`) and long flag name (`--long-flag`)
//!         * custom separator, hyphen, etc... (` `, `-`, `--`, `=`, ``)
//!     * runtime mechanisms for deciding and building short or long commands
//!
//!     ### Examples
//!     ```text
//!     use tmux_interface::TmuxCommand;
//!
//!     // new-session -ADEd -s example_5_1_2
//!     let mut new_session = TmuxCommand::new();
//!     new_session
//!         .name("new-session")
//!         .push_flag_short('A')
//!         .push_flag_short('D')
//!         .push_flag_short('E')
//!         .push_flag_short('d')
//!         .arg("-s", "example_5_1_2");
//!
//!     // tmux -2uv new-session -ADEd -s example_5_1_2
//!     let mut tmux = TmuxCommand::new();
//!     tmux.name("tmux")
//!         .push_flag_short('2')
//!         .push_flag_short('u')
//!         .push_flag_short('v')
//!         .push_cmd(new_session)
//!         .combine_short_flags();
//!
//!     let output = tmux.to_command().output().unwrap();
//!
//!     assert!(output.status.success());
//!
//!     // kill-session -t example_5_1_2
//!     let mut kill_session = TmuxCommand::new();
//!     kill_session.name("kill-session").arg("-t", "example_5_1_2");
//!
//!     // tmux -2uv kill-session -t example_5_1_2
//!     let mut tmux = TmuxCommand::new();
//!     tmux.name("tmux")
//!         .push_flag_short('2')
//!         .push_flag_short('u')
//!         .push_flag_short('v')
//!         .push_cmd(kill_session)
//!         .combine_short_flags();
//!
//!     let output = tmux.to_command().output().unwrap();
//!
//!     assert!(output.status.success());
//!     ```
//!     **Listing 5.1.2:** build tmux commands using `tmux_interface::TmuxCommand`
//!
//!
//! * 3. [`Tmux`], [`NewSession`], [`AttachSession`] ... - tmux commands builder
//!     * structures, traits, implementations and methods as abstraction from literals
//!     * near to tmux naming as possible
//!     * build tmux commands
//!     * tmux commands can include binary name and arguments or nor for control mode
//!     * order of arguments doesn't matter
//!     * using macros
//!
//!     ### Examples
//!     ```text
//!     use tmux_interface::{KillSession, NewSession, Tmux};
//!
//!     let session_name = "example_5_1_3";
//!
//!     // tmux -2uv new-session -ADEd -s example_5_1_3
//!     let tmux = Tmux::with_command(
//!         NewSession::new()
//!             .attach()
//!             .detach_other()
//!             .not_update_env()
//!             .detached()
//!             .session_name(session_name),
//!     )
//!     .colours256()
//!     .force_utf8()
//!     .verbose_logging();
//!
//!     let output = tmux.output().unwrap();
//!
//!     assert!(output.success());
//!
//!     // tmux -2uv kill-session -t example_5_1_3
//!     let tmux = Tmux::with_command(KillSession::new().target_session(session_name))
//!         .colours256()
//!         .force_utf8()
//!         .verbose_logging();
//!
//!     let output = tmux.output().unwrap();
//!
//!     assert!(output.success());
//!     ```
//!     **Listing 5.1.3:** build tmux commands using `tmux_interface::{Tmux, NewSession, KillSession} structures`
//!
//!
//!     ```text
//!     use tmux_interface::{kill_session, new_session, tmux};
//!
//!     let session_name = "example_5_1_4";
//!
//!     // tmux -2uv new-session -ADEd -s example_5_1_4
//!     let tmux = tmux!(-2, -u, -v, new_session!(-A, -D, -E, -d, -s session_name));
//!
//!     let output = tmux.output().unwrap();
//!
//!     assert!(output.success());
//!
//!     // tmux -2uv kill-session -t example_5_1_4
//!     let tmux = tmux!(-2, -u, -v, kill_session!(-t session_name));
//!
//!     let output = tmux.output().unwrap();
//!
//!     assert!(output.success());
//!     ```
//!     **Listing 5.1.4:** build tmux commands using `tmux_interface::{tmux, new_session, kill_session} macros`
//!
//! * [`Options`](crate::options), [`Variables`](crate::variables), [`Formats`] - tmux objects control
//!     * accessing and using internal tmux instances
//!         * formats
//!         * options
//!         * variables
//!         * ...
//!
//!     ### Example
//!     ```text
//!     unimplemented!();
//!     ```
//!
//! * `TmuxInterface` - tmux control
//!     * setting/getting methods abstraction, just an object with it's attributes
//!     * offline/online working (default/control mode)
//!     * mapping of whole tmux with it's all internal instances as an object in Rust
//!
//!     ### Example
//!     ```text
//!     unimplemented!();
//!     ```
//!
//!

// Call chain, data flow
// ```text
// library in -> build command -> exec command -> receive output -> parse output -> library out
// user app -> library in -> ... -> library out -> user app
// ```

pub mod commands;
pub mod control_mode;
pub mod copy_mode;
pub mod error;
pub mod formats;
pub mod options;
pub mod styles;
pub mod target;
#[cfg(feature = "tmux_1_6")]
pub mod variables;

pub use commands::*;
pub use control_mode::*;
pub use error::Error;
pub use formats::*;
pub use options::*;
pub use styles::*;
pub use target::*;
#[cfg(feature = "tmux_1_6")]
pub use variables::*;