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
extern crate proc_macro;

use crate::proc_macro::TokenStream;

use std::path::PathBuf;
use i18n_config::I18nConfig;
use quote::quote;
use syn;

/// A procedural macro to implement the `I18nEmbed` trait on a struct.
///
/// The following struct level attributes available:
///
/// + (Optional) `#[config_file = "i18n.toml"]` - path to i18n config
///   file relative to the crate root.
#[proc_macro_derive(I18nEmbed, attributes(config_file))]
pub fn i18n_embed_derive(input: TokenStream) -> TokenStream {
    let ast: syn::DeriveInput = syn::parse(input).unwrap();

    let struct_name = &ast.ident;

    let config_file_path = ast
        .attrs
        .iter()
        .find(|value| value.path.is_ident("config_file"))
        .map(|attr| {
            let meta: syn::Meta = attr.parse_meta().unwrap();
            let literal_value = match meta {
                syn::Meta::NameValue(ref data) => &data.lit,
                _ => panic!("#[derive(I18nEmbed)]'s attribute \"config_file\" should be formatted like: #[config_file = \"i18n.toml\"]")
            };

            let config_file_path = match literal_value {
                syn::Lit::Str(ref val) => PathBuf::from(val.clone().value()),
                _ => {
                panic!("#[derive(I18nEmbed)]'s attribute \"config_file\" value must be a string literal");
                }
            };

            config_file_path
        }).unwrap_or(PathBuf::from("i18n.toml"));

    if !config_file_path.exists() {
        panic!(format!(
            "#[derive(RustEmbed)] folder '{}' does not exist. cwd: '{}'",
            config_file_path.to_string_lossy(),
            std::env::current_dir().unwrap().to_str().unwrap()
        ));
    }

    let config = I18nConfig::from_file(&config_file_path).expect(&format!(
        "#[derive(RustEmbed)] had a problem reading config file {0}",
        config_file_path.to_string_lossy()
    ));
    let src_locale = &config.src_locale;

    let gen = quote! {
        impl I18nEmbed for #struct_name {
            fn src_locale() -> i18n_embed::unic_langid::LanguageIdentifier {
                #src_locale.parse().unwrap()
            }
        }
    };

    gen.into()
}

/// A procedural macro to implement the `LanguageLoader` trait on a struct.
#[proc_macro_derive(LanguageLoader)]
#[cfg(feature = "gettext-system")]
pub fn language_loader_derive(input: TokenStream) -> TokenStream {
    let ast: syn::DeriveInput = syn::parse(input).unwrap();

    let struct_name = &ast.ident;

    let gen = quote! {
        impl LanguageLoader for #struct_name {
            fn load_language_file<R: std::io::Read>(&self, reader: R) {
                let catalog = i18n_embed::gettext::Catalog::parse(reader).expect("could not parse the catalog");
                i18n_embed::tr::set_translator!(catalog);
            }
        
            fn module_path() -> &'static str {
                module_path!()
            }
        }
    };

    gen.into()
}