aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: bd6ed2b87dcf484f445ed24dda3997ddfb577b4b (plain)
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
extern crate proc_macro;

use std::path::{Path, PathBuf};

use proc_macro::TokenStream;
use quote::quote;
use syn::{parse_macro_input, AttrStyle, Attribute, DeriveInput, Lit, Meta, MetaNameValue};

use serde::{de::DeserializeOwned, Serialize};

trait Config<T>
where
    T: Serialize + DeserializeOwned + Default,
{
    fn load() -> Result<T, String>;
    fn store() -> Result<(), String>;
}

fn is_outer_attribute(a: &Attribute) -> bool {
    match a.style {
        AttrStyle::Outer => true,
        _ => false,
    }
}

#[proc_macro_derive(Config, attributes(filename, filetype))]
pub fn config_attribute(item: TokenStream) -> TokenStream {
    let mut ast: DeriveInput = syn::parse(item).unwrap();

    let mut filename: Option<PathBuf> = None;
    let mut filetype: Option<PathBuf> = None;

    for option in ast.attrs.into_iter() {
        let option = option.parse_meta().unwrap();
        match option {
            Meta::NameValue(MetaNameValue {
                ref path, ref lit, ..
            }) if path.is_ident("filename") => {
                if let Lit::Str(f) = lit {
                    filename = Some(PathBuf::from(f.value()));
                }
            }
            Meta::NameValue(MetaNameValue {
                ref path, ref lit, ..
            }) if path.is_ident("filetype") => {
                if let Lit::Str(f) = lit {
                    filetype = Some(PathBuf::from(f.value()));
                }
            }
            _ => {}
        }
    }

    println!("{:?} {:?}", filename, filetype);

    TokenStream::new()
}