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
//! Proc macros for Standout.
//!
//! This crate provides macros for compile-time resource embedding and
//! declarative command dispatch configuration.
//!
//! # Available Macros
//!
//! ## Embedding Macros
//!
//! - [`embed_templates!`] - Embed template files (`.jinja`, `.jinja2`, `.j2`, `.txt`)
//! - [`embed_styles!`] - Embed stylesheet files (`.yaml`, `.yml`)
//!
//! ## Derive Macros
//!
//! - [`Dispatch`] - Generate dispatch configuration from clap `Subcommand` enums
//! - [`Tabular`] - Generate `TabularSpec` from struct field annotations
//! - [`TabularRow`] - Generate optimized row extraction without JSON serialization
//! - [`Seekable`] - Generate query-enabled accessor functions for Seeker
//!
//! ## Attribute Macros
//!
//! - [`handler`] - Transform pure functions into Standout-compatible handlers
//!
//! # Design Philosophy
//!
//! These macros return [`EmbeddedSource`] types that contain:
//!
//! 1. Embedded content (baked into binary at compile time)
//! 2. Source path (for debug hot-reload)
//!
//! This design enables:
//!
//! - Release builds: Use embedded content, zero file I/O
//! - Debug builds: Hot-reload from disk if source path exists
//!
//! # Examples
//!
//! For working examples, see:
//! - `standout/tests/embed_macros.rs` - embedding macros
//! - `standout/tests/dispatch_derive.rs` - dispatch derive macro
//!
//! [`EmbeddedSource`]: standout::EmbeddedSource
//! [`RenderSetup`]: standout::RenderSetup
use TokenStream;
use ;
/// Embeds all template files from a directory at compile time.
///
/// This macro walks the specified directory, reads all files with recognized
/// template extensions, and returns an [`EmbeddedTemplates`] source that can
/// be used with [`RenderSetup`] or converted to a [`TemplateRegistry`].
///
/// # Supported Extensions
///
/// Files are recognized by extension (in priority order):
/// - `.jinja` (highest priority)
/// - `.jinja2`
/// - `.j2`
/// - `.txt` (lowest priority)
///
/// When multiple files share the same base name with different extensions
/// (e.g., `config.jinja` and `config.txt`), the higher-priority extension wins
/// for extensionless lookups.
///
/// # Hot Reload Behavior
///
/// - Release builds: Uses embedded content (zero file I/O)
/// - Debug builds: Reads from disk if source path exists (hot-reload)
///
/// For working examples, see `standout/tests/embed_macros.rs`.
///
/// # Compile-Time Errors
///
/// The macro will fail to compile if:
/// - The directory doesn't exist
/// - The directory is not readable
/// - Any file content is not valid UTF-8
///
/// [`EmbeddedTemplates`]: standout::EmbeddedTemplates
/// [`RenderSetup`]: standout::RenderSetup
/// [`TemplateRegistry`]: standout::TemplateRegistry
/// Embeds all stylesheet files from a directory at compile time.
///
/// This macro walks the specified directory, reads all files with recognized
/// stylesheet extensions, and returns an [`EmbeddedStyles`] source that can
/// be used with [`RenderSetup`] or converted to a [`StylesheetRegistry`].
///
/// # Supported Extensions
///
/// Files are recognized by extension (in priority order):
/// - `.yaml` (highest priority)
/// - `.yml` (lowest priority)
///
/// When multiple files share the same base name with different extensions
/// (e.g., `dark.yaml` and `dark.yml`), the higher-priority extension wins.
///
/// # Hot Reload Behavior
///
/// - Release builds: Uses embedded content (zero file I/O)
/// - Debug builds: Reads from disk if source path exists (hot-reload)
///
/// For working examples, see `standout/tests/embed_macros.rs`.
///
/// # Compile-Time Errors
///
/// The macro will fail to compile if:
/// - The directory doesn't exist
/// - The directory is not readable
/// - Any file content is not valid UTF-8
///
/// [`EmbeddedStyles`]: standout::EmbeddedStyles
/// [`RenderSetup`]: standout::RenderSetup
/// [`StylesheetRegistry`]: standout::StylesheetRegistry
/// Derives dispatch configuration from a clap `Subcommand` enum.
///
/// This macro eliminates boilerplate command-to-handler mappings by using
/// naming conventions with explicit overrides when needed.
///
/// For working examples, see `standout/tests/dispatch_derive.rs`.
///
/// # Convention-Based Defaults
///
/// - Handler: `{handlers_module}::{variant_snake_case}`
/// - `Add` → `handlers::add`
/// - `ListAll` → `handlers::list_all`
/// - Template: `{variant_snake_case}.j2`
///
/// # Container Attributes
///
/// | Attribute | Required | Description |
/// |-----------|----------|-------------|
/// | `handlers = path` | Yes | Module containing handler functions |
///
/// # Variant Attributes
///
/// | Attribute | Description | Default |
/// |-----------|-------------|---------|
/// | `handler = path` | Handler function | `{handlers}::{snake_case}` |
/// | `template = "path"` | Template file | `{snake_case}.j2` |
/// | `pre_dispatch = fn` | Pre-dispatch hook | None |
/// | `post_dispatch = fn` | Post-dispatch hook | None |
/// | `post_output = fn` | Post-output hook | None |
/// | `nested` | Treat as nested subcommand | false |
/// | `skip` | Skip this variant | false |
///
/// # Generated Code
///
/// Generates a `dispatch_config()` method returning a closure for
/// use with `App::builder().commands()`.
/// Derives a `TabularSpec` from struct field annotations.
///
/// This macro generates an implementation of the `Tabular` trait, which provides
/// a `tabular_spec()` method that returns a `TabularSpec` for the struct.
///
/// For working examples, see `standout/tests/tabular_derive.rs`.
///
/// # Field Attributes
///
/// | Attribute | Type | Description |
/// |-----------|------|-------------|
/// | `width` | `usize` or `"fill"` or `"Nfr"` | Column width strategy |
/// | `min` | `usize` | Minimum width (for bounded) |
/// | `max` | `usize` | Maximum width (for bounded) |
/// | `align` | `"left"`, `"right"`, `"center"` | Text alignment |
/// | `anchor` | `"left"`, `"right"` | Column position |
/// | `overflow` | `"truncate"`, `"wrap"`, `"clip"`, `"expand"` | Overflow handling |
/// | `truncate_at` | `"end"`, `"start"`, `"middle"` | Truncation position |
/// | `style` | string | Style name for the column |
/// | `style_from_value` | flag | Use cell value as style name |
/// | `header` | string | Header title (default: field name) |
/// | `null_repr` | string | Representation for null values |
/// | `key` | string | Data extraction key (supports dot notation) |
/// | `skip` | flag | Exclude this field from the spec |
///
/// # Container Attributes
///
/// | Attribute | Type | Description |
/// |-----------|------|-------------|
/// | `separator` | string | Column separator (default: " ") |
/// | `prefix` | string | Row prefix |
/// | `suffix` | string | Row suffix |
///
/// # Example
///
/// ```ignore
/// use standout::tabular::Tabular;
/// use serde::Serialize;
///
/// #[derive(Serialize, Tabular)]
/// #[tabular(separator = " │ ")]
/// struct Task {
/// #[col(width = 8, style = "muted")]
/// id: String,
///
/// #[col(width = "fill", overflow = "wrap")]
/// title: String,
///
/// #[col(width = 12, align = "right")]
/// status: String,
/// }
///
/// let spec = Task::tabular_spec();
/// ```
/// Derives optimized row extraction for tabular formatting.
///
/// This macro generates an implementation of the `TabularRow` trait, which provides
/// a `to_row()` method that converts the struct to a `Vec<String>` without JSON serialization.
///
/// For working examples, see `standout/tests/tabular_derive.rs`.
///
/// # Field Attributes
///
/// | Attribute | Description |
/// |-----------|-------------|
/// | `skip` | Exclude this field from the row |
///
/// # Example
///
/// ```ignore
/// use standout::tabular::TabularRow;
///
/// #[derive(TabularRow)]
/// struct Task {
/// id: String,
/// title: String,
///
/// #[col(skip)]
/// internal_state: u32,
///
/// status: String,
/// }
///
/// let task = Task {
/// id: "TSK-001".to_string(),
/// title: "Implement feature".to_string(),
/// internal_state: 42,
/// status: "pending".to_string(),
/// };
///
/// let row = task.to_row();
/// assert_eq!(row, vec!["TSK-001", "Implement feature", "pending"]);
/// ```
/// Derives the `Seekable` trait for query-enabled structs.
///
/// This macro generates an implementation of the `Seekable` trait from
/// `standout-seeker`, enabling type-safe field access for query operations.
///
/// # Field Attributes
///
/// | Attribute | Description |
/// |-----------|-------------|
/// | `String` | String field (supports Eq, Ne, Contains, StartsWith, EndsWith, Regex) |
/// | `Number` | Numeric field (supports Eq, Ne, Gt, Gte, Lt, Lte) |
/// | `Timestamp` | Timestamp field (supports Eq, Ne, Before, After, Gt, Gte, Lt, Lte) |
/// | `Enum` | Enum field (supports Eq, Ne, In) - requires `SeekerEnum` impl |
/// | `Bool` | Boolean field (supports Eq, Ne, Is) |
/// | `skip` | Exclude this field from queries |
/// | `rename = "..."` | Use a custom name for queries |
///
/// # Generated Code
///
/// The macro generates:
///
/// 1. Field name constants (e.g., `Task::NAME`, `Task::PRIORITY`)
/// 2. Implementation of `Seekable::seeker_field_value()`
///
/// # Example
///
/// ```ignore
/// use standout_macros::Seekable;
/// use standout_seeker::{Query, Seekable};
///
/// #[derive(Seekable)]
/// struct Task {
/// struct Task {
/// #[seek(String)]
/// name: String,
///
/// #[seek(Number)]
/// priority: u8,
///
/// #[seek(Bool)]
/// done: bool,
///
/// #[seek(skip)]
/// internal_id: u64,
/// }
///
/// let tasks = vec![
/// Task { name: "Write docs".into(), priority: 3, done: false, internal_id: 1 },
/// Task { name: "Fix bug".into(), priority: 5, done: true, internal_id: 2 },
/// ];
///
/// let query = Query::new()
/// .and_gte(Task::PRIORITY, 3u8)
/// .not_eq(Task::DONE, true)
/// .build();
///
/// let results = query.filter(&tasks, Task::accessor);
/// assert_eq!(results.len(), 1);
/// assert_eq!(results[0].name, "Write docs");
/// ```
///
/// # Enum Fields
///
/// For enum fields, implement `SeekerEnum` on your enum type:
///
/// ```ignore
/// use standout_seeker::SeekerEnum;
///
/// #[derive(Clone, Copy)]
/// enum Status { Pending, Active, Done }
///
/// impl SeekerEnum for Status {
/// fn seeker_discriminant(&self) -> u32 {
/// match self {
/// Status::Pending => 0,
/// Status::Active => 1,
/// Status::Done => 2,
/// }
/// }
/// }
///
/// #[derive(Seekable)]
/// struct Task {
/// #[seek(Enum)]
/// status: Status,
/// }
/// ```
///
/// # Timestamp Fields
///
/// For timestamp fields, implement `SeekerTimestamp` on your datetime type:
///
/// ```ignore
/// use standout_seeker::{SeekerTimestamp, Timestamp};
///
/// struct MyDateTime(i64);
///
/// impl SeekerTimestamp for MyDateTime {
/// fn seeker_timestamp(&self) -> Timestamp {
/// Timestamp::from_millis(self.0)
/// }
/// }
///
/// #[derive(Seekable)]
/// struct Event {
/// #[seek(Timestamp)]
/// created_at: MyDateTime,
/// }
/// ```
/// Transforms a pure function into a Standout-compatible handler.
///
/// This macro generates a wrapper function that extracts CLI arguments from
/// `ArgMatches` and calls your pure function. The original function is preserved
/// for direct testing.
///
/// # Parameter Annotations
///
/// | Annotation | Type | Description |
/// |------------|------|-------------|
/// | `#[flag]` | `bool` | Boolean CLI flag |
/// | `#[flag(name = "x")]` | `bool` | Flag with custom CLI name |
/// | `#[arg]` | `T` | Required CLI argument |
/// | `#[arg]` | `Option<T>` | Optional CLI argument |
/// | `#[arg]` | `Vec<T>` | Multiple CLI arguments |
/// | `#[arg(name = "x")]` | `T` | Argument with custom CLI name |
/// | `#[ctx]` | `&CommandContext` | Access to command context |
/// | `#[matches]` | `&ArgMatches` | Raw matches (escape hatch) |
///
/// # Return Type Handling
///
/// | Return Type | Behavior |
/// |-------------|----------|
/// | `Result<T, E>` | Passed through (dispatch auto-wraps in Output::Render) |
/// | `Result<(), E>` | Wrapped in `HandlerResult<()>` with `Output::Silent` |
///
/// # Generated Code
///
/// For a function `fn foo(...)`, the macro generates `fn foo__handler(...)`.
///
/// # Example
///
/// ```rust,ignore
/// use standout_macros::handler;
///
/// // Pure function - easy to test
/// #[handler]
/// pub fn list(#[flag] all: bool, #[arg] limit: Option<usize>) -> Result<Vec<Item>, Error> {
/// storage::list(all, limit)
/// }
///
/// // Generates:
/// // pub fn list__handler(m: &ArgMatches) -> Result<Vec<Item>, Error> {
/// // let all = m.get_flag("all");
/// // let limit = m.get_one::<usize>("limit").cloned();
/// // list(all, limit)
/// // }
///
/// // Use with Dispatch derive:
/// #[derive(Subcommand, Dispatch)]
/// #[dispatch(handlers = handlers)]
/// enum Commands {
/// #[dispatch(handler = list)] // Uses list__handler
/// List { ... },
/// }
/// ```
///
/// # Testing
///
/// The original function is preserved, so you can test it directly:
///
/// ```rust,ignore
/// #[test]
/// fn test_list() {
/// let result = list(true, Some(10));
/// assert!(result.is_ok());
/// }
/// ```