configulator-derive 0.1.0

Derive macro for configulator
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
//! # Configulator Derive Macro
//!
//! Derive macro for
//! [`configulator-rs`](https://crates.io/crates/configulator-rs).
//! This crate is not intended to be used directly, add
//! `configulator-rs` as a dependency instead.

#![warn(clippy::all)]
#![forbid(unsafe_code)]

use proc_macro::TokenStream;
use quote::quote;
use syn::{
    parse_macro_input, DeriveInput, Data, Fields, Type, PathArguments, GenericArgument,
    punctuated::Punctuated, Token,
};

/// Derive macro that generates `ConfigFields` and `FromValueMap` implementations for a struct.
///
/// Supports `#[configulator(name = "...", default = "...", description = "...")]` attributes.
/// Falls back to field name if no `name` attribute is specified.
///
/// Scalar field types must implement [`FromStr`](std::str::FromStr) + `Default`. Nested struct
/// types must also derive `Config`, detection is automatic at compile time.
#[proc_macro_derive(Config, attributes(configulator))]
pub fn derive_config(input: TokenStream) -> TokenStream {
    let input = parse_macro_input!(input as DeriveInput);
    match derive_config_impl(&input) {
        Ok(tokens) => tokens.into(),
        Err(err) => err.to_compile_error().into(),
    }
}

fn derive_config_impl(input: &DeriveInput) -> Result<proc_macro2::TokenStream, syn::Error> {
    let name = &input.ident;
    let (impl_generics, ty_generics, where_clause) = input.generics.split_for_impl();

    let fields = extract_named_fields(input)?;

    let mut field_info_tokens = Vec::new();
    let mut from_map_tokens = Vec::new();

    for field in fields.iter() {
        let field_ident = field.ident.as_ref().unwrap();
        let field_name_str = field_ident.to_string();
        let field_ty = &field.ty;

        let attrs = parse_configulator_attrs(&field.attrs)?;

        let config_name_str = attrs.config_name.unwrap_or_else(|| field_name_str.clone());
        let field_type_token = field_type_to_tokens(field_ty);

        let default_tokens = match &attrs.default_val {
            Some(v) => quote! { Some(#v) },
            None => quote! { None },
        };
        let desc_tokens = match &attrs.description {
            Some(v) => quote! { Some(#v) },
            None => quote! { None },
        };

        field_info_tokens.push(quote! {
            configulator::FieldInfo {
                field_name: #field_name_str,
                config_name: #config_name_str,
                default_value: #default_tokens,
                description: #desc_tokens,
                field_type: #field_type_token,
            }
        });

        let from_map_field = gen_from_value_map_field(field_ident, &config_name_str, field_ty);
        from_map_tokens.push(from_map_field);
    }

    let expanded = quote! {
        impl #impl_generics configulator::ConfigFields for #name #ty_generics #where_clause {
            fn configulator_fields() -> Vec<configulator::FieldInfo> {
                // Import trait so fallback scalar dispatch can resolve
                use configulator::ConfiguratorScalar as _;
                vec![
                    #(#field_info_tokens),*
                ]
            }
        }

        impl #impl_generics configulator::FromValueMap for #name #ty_generics #where_clause {
            fn from_value_map(
                map: &configulator::ValueMap,
            ) -> Result<Self, configulator::ConfigulatorError> {
                // Import trait so fallback scalar dispatch can resolve
                use configulator::ConfiguratorScalar as _;
                Ok(Self {
                    #(#from_map_tokens),*
                })
            }
        }
    };

    Ok(expanded)
}

/// Extract named fields from a `DeriveInput`, returning an error for non-structs
/// or structs without named fields.
fn extract_named_fields(
    input: &DeriveInput,
) -> Result<&Punctuated<syn::Field, Token![,]>, syn::Error> {
    match &input.data {
        Data::Struct(data) => match &data.fields {
            Fields::Named(fields) => Ok(&fields.named),
            _ => Err(syn::Error::new_spanned(
                &input.ident,
                "Config can only be derived for structs with named fields",
            )),
        },
        _ => Err(syn::Error::new_spanned(
            &input.ident,
            "Config can only be derived for structs",
        )),
    }
}

#[derive(Debug)]
struct FieldConfigAttrs {
    config_name: Option<String>,
    default_val: Option<String>,
    description: Option<String>,
}

/// Parse `#[configulator(...)]` attributes from a field's attribute list.
/// Non-configulator attributes are skipped. Returns an error if attribute
/// syntax is malformed.
fn parse_configulator_attrs(attrs: &[syn::Attribute]) -> Result<FieldConfigAttrs, syn::Error> {
    let mut result = FieldConfigAttrs {
        config_name: None,
        default_val: None,
        description: None,
    };
    for attr in attrs {
        if !attr.path().is_ident("configulator") {
            continue;
        }
        attr.parse_nested_meta(|meta| {
            if meta.path.is_ident("name") {
                let value = meta.value()?;
                let lit: syn::LitStr = value.parse()?;
                result.config_name = Some(lit.value());
            } else if meta.path.is_ident("default") {
                let value = meta.value()?;
                let lit: syn::LitStr = value.parse()?;
                result.default_val = Some(lit.value());
            } else if meta.path.is_ident("description") {
                let value = meta.value()?;
                let lit: syn::LitStr = value.parse()?;
                result.description = Some(lit.value());
            } else {
                let name = meta.path.get_ident()
                    .map(|id| id.to_string())
                    .unwrap_or_else(|| "?".to_string());
                return Err(meta.error(format_args!(
                    "unknown configulator attribute `{name}`; \
                     expected `name`, `default`, or `description`",
                )));
            }
            Ok(())
        })?;
    }
    Ok(result)
}

/// Map a Rust type to the simplified `FieldType` enum (Bool, Scalar, List, Struct).
/// For non-bool, non-Vec types, uses compile-time autoref dispatch to detect
/// whether the type is a nested struct or a scalar.
fn field_type_to_tokens(ty: &Type) -> proc_macro2::TokenStream {
    if let Type::Path(type_path) = ty {
        if let Some(segment) = type_path.path.segments.last() {
            if segment.ident == "bool" {
                return quote! { configulator::FieldType::Bool };
            }
            if segment.ident == "Vec" {
                if let PathArguments::AngleBracketed(_) = &segment.arguments {
                    return quote! { configulator::FieldType::List };
                }
                return quote! {
                    compile_error!("Vec fields must have a type argument, e.g. Vec<String>")
                };
            }
        }
    }
    gen_config_detect_tokens(ty)
}

/// Generate the `ConfigDetect` autoref dispatch expression for a type.
/// At compile time this resolves to either `FieldType::Struct` (for nested
/// config structs) or `FieldType::Scalar` (for `FromStr` types).
fn gen_config_detect_tokens(ty: &Type) -> proc_macro2::TokenStream {
    quote! {
        {
            let __m = configulator::ConfigDetect::<#ty>(::std::marker::PhantomData);
            __m.__configulator_field_type()
        }
    }
}

/// Generate the field assignment for `FromValueMap::from_value_map`.
fn gen_from_value_map_field(
    field_ident: &syn::Ident,
    config_name: &str,
    ty: &Type,
) -> proc_macro2::TokenStream {
    let kind = classify_type(ty);
    match kind {
        TypeKind::Bool => {
            quote! {
                #field_ident: configulator::parse_scalar::<bool>(map, #config_name)?
            }
        }
        TypeKind::Vec(inner_ty) => {
            quote! {
                #field_ident: configulator::parse_list::<#inner_ty>(map, #config_name)?
            }
        }
        TypeKind::Other => {
            quote! {
                #field_ident: {
                    let __m = configulator::ConfigDetect::<#ty>(::std::marker::PhantomData);
                    __m.__configulator_parse(map, #config_name)?
                }
            }
        }
    }
}

#[derive(Debug)]
enum TypeKind {
    Bool,
    Vec(Box<Type>),
    Other,
}

fn classify_type(ty: &Type) -> TypeKind {
    if let Type::Path(type_path) = ty {
        if let Some(segment) = type_path.path.segments.last() {
            if segment.ident == "bool" {
                return TypeKind::Bool;
            }
            if segment.ident == "Vec" {
                if let PathArguments::AngleBracketed(args) = &segment.arguments {
                    if let Some(GenericArgument::Type(inner)) = args.args.first() {
                        return TypeKind::Vec(Box::new(inner.clone()));
                    }
                }
                // Vec without type argument — emit a clear error
                return TypeKind::Other;
            }
        }
    }
    TypeKind::Other
}

#[cfg(test)]
mod tests {
    use super::*;
    use syn::parse_str;

    // ── derive_config_impl tests ──

    #[test]
    fn derive_config_impl_valid_struct() {
        let input: DeriveInput = parse_str("struct Foo { x: u32 }").unwrap();
        assert!(derive_config_impl(&input).is_ok());
    }

    #[test]
    fn derive_config_impl_rejects_enum() {
        let input: DeriveInput = parse_str("enum Foo { A, B }").unwrap();
        let err = derive_config_impl(&input).unwrap_err();
        assert!(err.to_string().contains("only be derived for structs"));
    }

    #[test]
    fn derive_config_impl_rejects_tuple_struct() {
        let input: DeriveInput = parse_str("struct Foo(u32);").unwrap();
        let err = derive_config_impl(&input).unwrap_err();
        assert!(err.to_string().contains("named fields"));
    }

    #[test]
    fn derive_config_impl_rejects_bad_attr() {
        let input: DeriveInput = parse_str(
            r#"struct Foo { #[configulator(name = 42)] f: String }"#,
        )
        .unwrap();
        assert!(derive_config_impl(&input).is_err());
    }

    // ── extract_named_fields tests ──

    #[test]
    fn extract_named_fields_accepts_named_struct() {
        let input: DeriveInput = parse_str("struct Foo { x: u32 }").unwrap();
        assert!(extract_named_fields(&input).is_ok());
    }

    #[test]
    fn extract_named_fields_rejects_tuple_struct() {
        let input: DeriveInput = parse_str("struct Foo(u32);").unwrap();
        let err = extract_named_fields(&input).unwrap_err();
        assert!(
            err.to_string().contains("named fields"),
            "expected 'named fields' error, got: {err}"
        );
    }

    #[test]
    fn extract_named_fields_rejects_unit_struct() {
        let input: DeriveInput = parse_str("struct Foo;").unwrap();
        let err = extract_named_fields(&input).unwrap_err();
        assert!(
            err.to_string().contains("named fields"),
            "expected 'named fields' error, got: {err}"
        );
    }

    #[test]
    fn extract_named_fields_rejects_enum() {
        let input: DeriveInput = parse_str("enum Foo { A, B }").unwrap();
        let err = extract_named_fields(&input).unwrap_err();
        assert!(
            err.to_string().contains("only be derived for structs"),
            "expected 'only be derived for structs' error, got: {err}"
        );
    }

    // ── parse_configulator_attrs tests ──

    #[test]
    fn parse_attrs_extracts_all_keys() {
        let input: DeriveInput = parse_str(
            r#"struct Foo { #[configulator(name = "n", default = "d", description = "desc")] f: u32 }"#,
        )
        .unwrap();
        let fields = extract_named_fields(&input).unwrap();
        let attrs = parse_configulator_attrs(&fields.first().unwrap().attrs).unwrap();
        assert_eq!(attrs.config_name.as_deref(), Some("n"));
        assert_eq!(attrs.default_val.as_deref(), Some("d"));
        assert_eq!(attrs.description.as_deref(), Some("desc"));
    }

    #[test]
    fn parse_attrs_skips_non_configulator() {
        let input: DeriveInput = parse_str(
            r#"struct Foo { #[allow(unused)] #[configulator(name = "bar")] f: String }"#,
        )
        .unwrap();
        let fields = extract_named_fields(&input).unwrap();
        let attrs = parse_configulator_attrs(&fields.first().unwrap().attrs).unwrap();
        assert_eq!(attrs.config_name.as_deref(), Some("bar"));
    }

    #[test]
    fn parse_attrs_rejects_unknown_key() {
        let input: DeriveInput = parse_str(
            r#"struct Foo { #[configulator(name = "bar", extra)] f: String }"#,
        )
        .unwrap();
        let fields = extract_named_fields(&input).unwrap();
        let err = parse_configulator_attrs(&fields.first().unwrap().attrs).unwrap_err();
        assert!(
            err.to_string().contains("unknown configulator attribute"),
            "expected 'unknown configulator attribute' error, got: {err}"
        );
    }

    #[test]
    fn parse_attrs_error_on_bad_value_type() {
        let input: DeriveInput = parse_str(
            r#"struct Foo { #[configulator(name = 42)] f: String }"#,
        )
        .unwrap();
        let fields = extract_named_fields(&input).unwrap();
        assert!(parse_configulator_attrs(&fields.first().unwrap().attrs).is_err());
    }

    #[test]
    fn parse_attrs_no_attrs_returns_none() {
        let input: DeriveInput = parse_str("struct Foo { f: String }").unwrap();
        let fields = extract_named_fields(&input).unwrap();
        let attrs = parse_configulator_attrs(&fields.first().unwrap().attrs).unwrap();
        assert!(attrs.config_name.is_none());
        assert!(attrs.default_val.is_none());
        assert!(attrs.description.is_none());
    }

    // ── classify_type tests ──

    #[test]
    fn classify_type_bool() {
        let ty: Type = parse_str("bool").unwrap();
        assert!(matches!(classify_type(&ty), TypeKind::Bool));
    }

    #[test]
    fn classify_type_vec_with_inner() {
        let ty: Type = parse_str("Vec<String>").unwrap();
        assert!(matches!(classify_type(&ty), TypeKind::Vec(_)));
    }

    #[test]
    fn classify_type_scalar_string() {
        let ty: Type = parse_str("String").unwrap();
        assert!(matches!(classify_type(&ty), TypeKind::Other));
    }

    #[test]
    fn classify_type_reference_is_other() {
        let ty: Type = parse_str("&str").unwrap();
        assert!(matches!(classify_type(&ty), TypeKind::Other));
    }

    #[test]
    fn classify_type_tuple_is_other() {
        let ty: Type = parse_str("(i32, i32)").unwrap();
        assert!(matches!(classify_type(&ty), TypeKind::Other));
    }

    #[test]
    fn classify_type_bare_vec_without_type_args() {
        let ty: Type = parse_str("Vec").unwrap();
        assert!(matches!(classify_type(&ty), TypeKind::Other));
    }

    // ── field_type_to_tokens tests ──

    #[test]
    fn field_type_to_tokens_bool() {
        let ty: Type = parse_str("bool").unwrap();
        let tokens = field_type_to_tokens(&ty).to_string();
        assert!(tokens.contains("FieldType"), "expected FieldType in: {tokens}");
        assert!(tokens.contains("Bool"), "expected Bool in: {tokens}");
    }

    #[test]
    fn field_type_to_tokens_vec() {
        let ty: Type = parse_str("Vec<u32>").unwrap();
        let tokens = field_type_to_tokens(&ty).to_string();
        assert!(tokens.contains("FieldType"), "expected FieldType in: {tokens}");
        assert!(tokens.contains("List"), "expected List in: {tokens}");
    }

    #[test]
    fn field_type_to_tokens_scalar() {
        let ty: Type = parse_str("String").unwrap();
        let tokens = field_type_to_tokens(&ty).to_string();
        assert!(
            tokens.contains("ConfigDetect"),
            "expected ConfigDetect dispatch in: {tokens}"
        );
    }

    #[test]
    fn field_type_to_tokens_non_path_fallback() {
        let ty: Type = parse_str("&str").unwrap();
        let tokens = field_type_to_tokens(&ty).to_string();
        assert!(
            tokens.contains("ConfigDetect"),
            "expected ConfigDetect dispatch in fallback: {tokens}"
        );
    }
}