kstool-helper-generator 0.7.1

A macro help user create mpsc communications and other
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
use std::sync::LazyLock;

use proc_macro2::TokenStream;
use proc_macro2::{Ident, Span};
use quote::{ToTokens, quote};
use syn::{Attribute, DataEnum, Fields, Variant, spanned::Spanned};
use syn::{Meta, MetaList, Visibility};

static WORD_RE: LazyLock<fancy_regex::Regex> =
    LazyLock::new(|| fancy_regex::Regex::new(r".(?:[^A-Z0-9]+|[A-Z0-9]*)(?![^A-Z0-9])").unwrap());
static WORD_RE_ERROR: LazyLock<String> = LazyLock::new(|| "ERROR_PLEASE_REPORT".into());

type TyType = TokenStream;
type IdentType = Ident;

/// Represents the fields of an enum variant.
///
/// - [`Named`](FieldsType::Named): Struct-like fields with names and types (e.g., `{ name: String }`)
/// - [`Unnamed`](FieldsType::Unnamed): Tuple-like fields with types only (e.g., `(String, u32)`)
/// - [`None`](FieldsType::None): Unit variant with no fields
#[derive(Clone, Default)]
pub(crate) enum FieldsType {
    Named(Vec<(IdentType, TyType)>),
    Unnamed(Vec<TyType>),
    #[default]
    None,
}

impl FieldsType {
    /// Generates function parameter definitions for a helper method.
    ///
    /// For named fields, produces `name: Type, ...`.
    /// For unnamed fields, produces `field0: Type, field1: Type, ...`.
    /// For unit variants, produces an empty token stream.
    pub(crate) fn to_arg_def(&self, span: Span) -> TokenStream {
        match self {
            FieldsType::Named(v) => {
                let updated = v
                    .iter()
                    .map(|(ident, ty)| {
                        quote!(
                            #ident: #ty
                        )
                    })
                    .collect::<Vec<_>>();
                quote!(#(#updated), *)
            }
            FieldsType::Unnamed(v) => {
                let i = (0..v.len())
                    .map(|i| Ident::new(&format!("field{i}"), span))
                    .collect::<Vec<_>>();
                quote!(#(#i: #v), *)
            }
            FieldsType::None => TokenStream::new(),
        }
    }

    /// Generates the argument-passing expression to construct an enum variant.
    ///
    /// For named fields, produces `{ name1, name2, ... }`.
    /// For unnamed fields, produces `(field0, field1, ...)`.
    /// For unit variants, produces an empty token stream.
    pub(crate) fn to_arg(&self, span: Span) -> TokenStream {
        match self {
            FieldsType::Named(v) => {
                let idents = v
                    .iter()
                    .map(|(ident, _)| quote!(#ident))
                    .collect::<Vec<_>>();
                quote!({#(#idents), *})
            }
            FieldsType::Unnamed(v) => {
                let i = (0..v.len())
                    .map(|i| Ident::new(&format!("field{i}"), span))
                    .collect::<Vec<_>>();
                quote!((#(#i), *))
            }
            FieldsType::None => TokenStream::new(),
        }
    }

    /// Generates the enum variant field definitions, optionally appending a
    /// `tokio::sync::oneshot::Sender<T>` field for request-response patterns.
    ///
    /// Used by `oneshot_helper` to re-emit enum variants with an extra sender field.
    /// If `return_type` is `None`, the output is identical to the original variant fields.
    pub(crate) fn enum_arg_def(&self, return_type: Option<TokenStream>) -> TokenStream {
        match self {
            FieldsType::Named(v) => {
                let mut idents = v
                    .iter()
                    .map(|(ident, ty)| {
                        quote!(
                            #ident: #ty
                        )
                    })
                    .collect::<Vec<_>>();
                if let Some(ret) = return_type {
                    let ident = Ident::new("__private_sender", ret.span());
                    idents.push(quote! ( #ident: tokio::sync::oneshot::Sender< #ret >));
                }
                quote!({#(#idents), *})
            }
            FieldsType::Unnamed(v) => {
                if let Some(ret) = return_type {
                    let mut v = v.clone();
                    v.push(quote! (tokio::sync::oneshot::Sender< #ret >));
                    quote!((#(#v), *))
                } else {
                    quote!((#(#v), *))
                }
            }
            FieldsType::None => {
                if let Some(ret) = return_type {
                    quote! {(tokio::sync::oneshot::Sender< #ret >)}
                } else {
                    TokenStream::new()
                }
            }
        }
    }

    /// Generates the argument-passing expression for oneshot-enhanced variants.
    ///
    /// Similar to [`to_arg`](FieldsType::to_arg), but appends the `__private_sender`
    /// identifier to pass the oneshot sender when constructing the enum variant.
    pub(crate) fn enchant_arg(&self, span: Span) -> TokenStream {
        let private_receiver = Ident::new("__private_sender", span);
        match self {
            FieldsType::Named(v) => {
                let mut idents = v
                    .iter()
                    .map(|(ident, _)| quote!(#ident))
                    .collect::<Vec<_>>();
                idents.push(quote! {#private_receiver});
                quote!({#(#idents), *})
            }
            FieldsType::Unnamed(v) => {
                let mut i = (0..v.len())
                    .map(|i| Ident::new(&format!("field{i}"), span))
                    .collect::<Vec<_>>();
                i.push(private_receiver);
                quote!((#(#i), *))
            }
            FieldsType::None => quote! {(#private_receiver)},
        }
    }
}

enum FieldType {
    Named(IdentType, TyType),
    Unnamed(TyType),
}

impl FieldType {
    fn named(ident: IdentType, ty: TyType) -> Self {
        Self::Named(ident, ty)
    }

    fn unnamed(ty: TyType) -> Self {
        Self::Unnamed(ty)
    }

    fn get_named(self) -> Option<(IdentType, TyType)> {
        match self {
            Self::Named(a, b) => Some((a, b)),
            _ => None,
        }
    }

    fn get_unnamed(self) -> Option<TyType> {
        match self {
            FieldType::Unnamed(s) => Some(s),
            _ => None,
        }
    }
}

impl From<Vec<(IdentType, TyType)>> for FieldsType {
    fn from(value: Vec<(IdentType, TyType)>) -> Self {
        Self::Named(value)
    }
}

impl From<Vec<TyType>> for FieldsType {
    fn from(value: Vec<TyType>) -> Self {
        Self::Unnamed(value)
    }
}

impl TryFrom<Vec<FieldType>> for FieldsType {
    type Error = ();

    fn try_from(value: Vec<FieldType>) -> Result<Self, Self::Error> {
        if value.is_empty() {
            return Ok(Self::None);
        }

        let is_named = match value.first() {
            Some(value) => match value {
                FieldType::Named(_, _) => true,
                FieldType::Unnamed(_) => false,
                //FieldType::None => unreachable!("If type is None, should never going to this way"),
            },
            None => unreachable!("Has checked vec is empty"),
        };

        if is_named {
            value
                .into_iter()
                .map(|f| f.get_named())
                .collect::<Option<Vec<_>>>()
                .map(|v| v.into())
        } else {
            value
                .into_iter()
                .map(|f| f.get_unnamed())
                .collect::<Option<Vec<_>>>()
                .map(|v| v.into())
        }
        .ok_or(())
    }
}

impl TryFrom<&syn::Fields> for FieldsType {
    type Error = syn::Error;
    fn try_from(fields: &syn::Fields) -> Result<Self, Self::Error> {
        let span = fields.span();
        let fs: Vec<FieldType> = match fields {
            Fields::Named(fields) => {
                //fields.named.iter().map(|field| )
                fields
                    .named
                    .iter()
                    .map(|field| {
                        Ok(FieldType::named(
                            field.ident.clone().ok_or_else(|| {
                                syn::Error::new_spanned(field, "Field should have a name")
                            })?,
                            field.ty.to_token_stream(),
                        ))
                    })
                    .collect::<syn::Result<Vec<FieldType>>>()?
            }
            Fields::Unnamed(fields) => fields
                .unnamed
                .iter()
                .map(|field| FieldType::unnamed(field.ty.to_token_stream()))
                .collect::<Vec<_>>(),
            Fields::Unit => Vec::new(),
        };

        let fs = fs.try_into();
        let Ok(f) = fs else {
            return Err(syn::Error::new(
                span,
                "Type not match, it should never happened",
            ));
        };
        Ok(f)
    }
}

/// Holds the name and fields of a single enum variant.
///
/// Provides utilities for converting variant names to snake_case and
/// generating identifiers for the helper methods.
#[derive(Clone)]
pub(crate) struct EnumDefinition {
    ident: String,
    fields: FieldsType,
}

impl EnumDefinition {
    /// Converts a CamelCase string to snake_case.
    ///
    /// Handles consecutive uppercase letters and digits correctly:
    /// - `GetHTTPResponse` -> `get_http_response`
    /// - `IPV4` -> `ipv4`
    /// - `XMLParser` -> `xml_parser`
    pub(crate) fn string_into_snake_case(s: &str) -> String {
        let Ok(matches) = WORD_RE.find_iter(s).collect::<Result<Vec<_>, _>>() else {
            return WORD_RE_ERROR.clone();
        };
        matches
            .into_iter()
            .map(|s| s.as_str().to_ascii_lowercase())
            .collect::<Vec<_>>()
            .join("_")
    }

    fn name_into_snake_case(&self) -> String {
        Self::string_into_snake_case(&self.ident)
    }

    /// Returns the snake_case identifier for this variant, used as the helper method name.
    pub(crate) fn get_name(&self, span: Span) -> Ident {
        Ident::new(&self.name_into_snake_case(), span)
    }

    /// Returns the original (unmodified) identifier for this variant.
    pub(crate) fn get_normal_name(&self, span: Span) -> Ident {
        Ident::new(&self.ident, span)
    }

    /// Returns the blocking method name identifier (snake_case suffixed with `_b`).
    pub(crate) fn get_name_block(&self, span: Span) -> Ident {
        // TODO: Optimize this
        let block_name = format!("{}_b", self.name_into_snake_case());
        Ident::new(&block_name, span)
    }

    /// Returns a reference to the variant's fields.
    pub(crate) fn fields(&self) -> &FieldsType {
        &self.fields
    }
}

impl TryFrom<&Variant> for EnumDefinition {
    type Error = syn::Error;

    fn try_from(value: &Variant) -> Result<Self, Self::Error> {
        let ident = value.ident.to_string();
        Ok(Self {
            ident,
            fields: FieldsType::try_from(&value.fields)?,
        })
    }
}

/* fn print_fields(data: &DataEnum) {
    let idents: Vec<_> = data.variants.iter().map(|f| &f.ident).collect();
    //let types: Vec<_> = data.variants.iter().map(|f| &f.ty).collect();

   //eprintln!("{:#?}", idents);
    //eprintln!("{:#?}", types);
} */

/* fn check_is_enum(st: &syn::DeriveInput) -> syn::Result<&DataEnum> {
    match st.data {
        syn::Data::Enum(ref data_enum) => Ok(data_enum),
        _ => Err(syn::Error::new_spanned(
            st,
            "Must defined a enum, not struct".to_string(),
        )),
    }
} */

/// Parses `#[helper(...)]` attributes on a single enum variant.
///
/// Returns `(block, no_async)` flags. Falls back to the enum-level defaults
/// if the variant has no `#[helper(...)]` attribute.
fn parse_variant_attribute(
    attrs: &[Attribute],
    block: bool,
    no_async: bool,
) -> syn::Result<(bool, bool)> {
    for attr in attrs {
        //eprintln!("{attr:#?}");

        let Meta::List(MetaList {
            ref path,
            ref tokens,
            ..
        }) = attr.meta
        else {
            continue;
        };
        if !path.segments.first().is_some_and(|x| x.ident.eq("helper")) {
            continue;
        }
        return parse_tokens(tokens);
    }

    Ok((block, no_async))
}

/// Generates async and/or blocking send methods for all variants in the enum.
///
/// This is the default function generator used by `#[derive(Helper)]`.
/// For each variant, it creates methods that send the variant through the MPSC channel.
fn generate_function(
    st: &syn::DeriveInput,
    de: &DataEnum,
    block: bool,
    no_async: bool,
    vis: &Visibility,
) -> syn::Result<TokenStream> {
    let mut ret = TokenStream::new();
    let basic = &st.ident;
    for variant in &de.variants {
        let (block, no_async) = parse_variant_attribute(&variant.attrs, block, no_async)?;
        //eprintln!("{variant:#?}");

        let definition = EnumDefinition::try_from(variant)?;
        let arg_def = definition.fields().to_arg_def(variant.span());
        let arg = definition.fields().to_arg(variant.span());
        let function_name = definition.get_name(variant.span());
        let member = &variant.ident;
        if !no_async {
            let result = quote! {
                #vis async fn #function_name (&self, #arg_def) -> std::option::Option<()> {
                    self.sender
                        .send(#basic::#member #arg)
                        .await
                        .ok()
                }
            };
            //eprintln!("{:#?}", result.to_string());
            ret.extend(result);
        }
        if block {
            let function_name = if no_async {
                function_name
            } else {
                definition.get_name_block(variant.span())
            };
            let result = quote! {
                #vis fn #function_name (&self, #arg_def) -> std::option::Option<()> {
                    self.sender
                        .blocking_send(#basic::#member #arg)
                        .ok()
                }
            };
            ret.extend(result);
        }
    }
    Ok(ret)
}

/// Parses a token stream for `block` and `no_async` identifiers.
///
/// Returns `(block, no_async)` flags based on the tokens found.
/// Returns an error if an unrecognized identifier is encountered.
pub(crate) fn parse_tokens(token_stream: &TokenStream) -> syn::Result<(bool, bool)> {
    let mut no_async = false;
    let mut block = false;

    for token in token_stream.clone().into_iter() {
        match &token {
            proc_macro2::TokenTree::Ident(ident) => {
                if ident.eq("no_async") {
                    no_async = true;
                } else if ident.eq("block") {
                    block = true;
                } else {
                    return Err(syn::Error::new(ident.span(), "Unrecognized token"));
                }
            }
            _ => continue,
        }
    }
    Ok((block, no_async))
}

/// Parses `#[helper(...)]` attributes on the enum definition itself.
///
/// Returns `(block, no_async)` flags that serve as defaults for all variants.
/// Errors if `no_async` is set without `block`, as that would generate no methods.
pub(crate) fn parse_arguments(attrs: &[Attribute]) -> syn::Result<(bool, bool)> {
    if attrs.is_empty() {
        return Ok((false, false));
    }
    for attr in attrs {
        match &attr.meta {
            syn::Meta::Path(_) => {
                /* return Err(syn::Error::new(
                    attr.span(),
                    "Unimplemented syn::Meta::Path",
                )) */
            }
            syn::Meta::List(list) => {
                if let Some(seg) = list.path.segments.first() {
                    if !seg.ident.eq("helper") {
                        continue;
                    }
                    let (block, no_async) = parse_tokens(&list.tokens)?;
                    if !block && no_async {
                        return Err(syn::Error::new(
                            list.span(),
                            "This code generate `new' function only!",
                        ));
                    }
                    return Ok((block, no_async));
                }
            }
            syn::Meta::NameValue(_) => {
                /* return Err(syn::Error::new(
                    attr.span(),
                    "Unimplemented syn::Meta::NameValue",
                )) */
            }
        }
    }
    Ok((false, false))
}

type GenMemberFn =
    fn(&syn::DeriveInput, &syn::DataEnum, bool, bool, &Visibility) -> syn::Result<TokenStream>;

/// Core expansion logic that generates the helper struct, receiver type alias, and impl block.
///
/// Parses the enum name to extract the prefix (before "Event"), then generates:
/// - `{Prefix}Helper` struct wrapping an `mpsc::Sender`
/// - `{EnumName}Receiver` type alias for `mpsc::Receiver`
/// - `new(size)` constructor
/// - `From<mpsc::Sender>` impl
/// - Member functions via `replace_function` or the default [`generate_function`]
pub(crate) fn do_expand(
    st: &syn::DeriveInput,
    replace_function: Option<GenMemberFn>,
) -> syn::Result<TokenStream> {
    /* if !st.data.eq(syn::Data) {
        return Err(syn::Error::new(
            st.span(),
            "Should apply this drive to enum",
        ));
    } */

    let vis = st.vis.clone();

    let (block, no_async) = parse_arguments(&st.attrs)?;
    //eprintln!("{} {}", block, no_async);
    let data_enum = extract_enum(st)?;
    //print_fields();
    let enum_name = st.ident.to_string();
    let (basic_name, _) = enum_name.rsplit_once("Event").unwrap();

    let helper_receiver_type = format!("{enum_name}Receiver");
    let helper_receiver_type_indent = syn::Ident::new(&helper_receiver_type, st.ident.span());

    let helper_name = format!("{basic_name}Helper");
    let helper_name_ident = syn::Ident::new(&helper_name, st.ident.span());

    let enum_ident = &st.ident;

    let member_function = match replace_function {
        Some(func) => func(st, data_enum, block, no_async, &vis),
        None => generate_function(st, data_enum, block, no_async, &vis),
    }?;

    let ret = quote! {

        #[derive(Clone, Debug)]
        #vis struct #helper_name_ident {
            sender: tokio::sync::mpsc::Sender<#enum_ident>
        }

        #vis type #helper_receiver_type_indent = tokio::sync::mpsc::Receiver<#enum_ident>;

        impl #helper_name_ident {
            #vis fn new(size: usize) -> (Self, #helper_receiver_type_indent) {
                let (a, b) = tokio::sync::mpsc::channel(size);
                (a.into(), b)
            }

            #member_function
        }

        impl From<tokio::sync::mpsc::Sender<#enum_ident>> for #helper_name_ident {
            fn from(value: tokio::sync::mpsc::Sender<#enum_ident>) -> Self {
                Self {
                    sender: value
                }
            }
        }

    };

    Ok(ret)
}

/// Validates that the input is an enum whose name contains "Event".
///
/// This check runs before expansion to provide clear compile-time error messages.
pub(crate) fn early_check(st: &syn::DeriveInput) -> syn::Result<()> {
    match st.data {
        syn::Data::Enum(_) => {
            if !st.ident.to_string().contains("Event") {
                return Err(syn::Error::new(
                    st.ident.span(),
                    "Should contains Event in name",
                ));
            }
            Ok(())
        }
        _ => Err(syn::Error::new_spanned(
            st,
            "Must defined a enum, not struct".to_string(),
        )),
    }
}

/// Extracts the [`DataEnum`] from a [`DeriveInput`](syn::DeriveInput).
///
/// Panics if the input is not an enum (should be guarded by [`early_check`] first).
pub(crate) fn extract_enum(st: &syn::DeriveInput) -> syn::Result<&DataEnum> {
    match st.data {
        syn::Data::Enum(ref data_enum) => Ok(data_enum),
        _ => unreachable!(),
    }
}

#[cfg(test)]
mod test {
    use super::EnumDefinition;

    #[test]
    fn test_snake_case_convert() {
        fn func(input: &str) -> String {
            EnumDefinition {
                ident: input.to_string(),
                fields: super::FieldsType::None,
            }
            .name_into_snake_case()
        }

        assert_eq!(func("GetHTTPResponse"), "get_http_response".to_string());
        assert_eq!(func("CSV"), "csv".to_string());
        assert_eq!(func("IPChecker"), "ip_checker".to_string());
        assert_eq!(func("UserAdd"), "user_add".to_string());
        assert_eq!(
            func("IsHTTPSpecifyASpecialAdd"),
            "is_http_specify_a_special_add".to_string()
        );
        assert_eq!(func("IPV4"), "ipv4".to_string())
    }
}