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
use convert_case::{Case, Casing};
use proc_macro2::Ident;
use quote::quote;
use structmeta::{Flag, StructMeta};
use syn::{parse_macro_input, spanned::Spanned};

#[derive(Clone, StructMeta, Default)]
struct FieldAttrs {
    primary_key: Flag,
    displayed: Flag,
    searchable: Flag,
    distinct: Flag,
    filterable: Flag,
    sortable: Flag,
}

#[proc_macro_derive(IndexConfig, attributes(index_config))]
pub fn generate_index_settings(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let ast = parse_macro_input!(input as syn::DeriveInput);

    let fields: &syn::Fields = match ast.data {
        syn::Data::Struct(ref data) => &data.fields,
        _ => {
            return proc_macro::TokenStream::from(
                syn::Error::new(ast.ident.span(), "Applicable only to struct").to_compile_error(),
            );
        }
    };

    let struct_ident = &ast.ident;

    let index_config_implementation = get_index_config_implementation(struct_ident, fields);
    proc_macro::TokenStream::from(quote! {
        #index_config_implementation
    })
}

fn get_index_config_implementation(
    struct_ident: &Ident,
    fields: &syn::Fields,
) -> proc_macro2::TokenStream {
    let mut primary_key_attribute = String::new();
    let mut distinct_key_attribute = String::new();
    let mut displayed_attributes = vec![];
    let mut searchable_attributes = vec![];
    let mut filterable_attributes = vec![];
    let mut sortable_attributes = vec![];

    let index_name = struct_ident
        .to_string()
        .from_case(Case::UpperCamel)
        .to_case(Case::Snake);

    let mut primary_key_found = false;
    let mut distinct_found = false;

    for field in fields {
        let attrs = field
            .attrs
            .iter()
            .filter(|attr| attr.path().is_ident("index_config"))
            .map(|attr| attr.parse_args::<FieldAttrs>().unwrap())
            .collect::<Vec<_>>()
            .first()
            .cloned()
            .unwrap_or_default();

        // Check if the primary key field is unique
        if attrs.primary_key.value() {
            if primary_key_found {
                return syn::Error::new(
                    field.span(),
                    "Only one field can be marked as primary key",
                )
                .to_compile_error();
            }
            primary_key_attribute = field.ident.clone().unwrap().to_string();
            primary_key_found = true;
        }

        // Check if the distinct field is unique
        if attrs.distinct.value() {
            if distinct_found {
                return syn::Error::new(field.span(), "Only one field can be marked as distinct")
                    .to_compile_error();
            }
            distinct_key_attribute = field.ident.clone().unwrap().to_string();
            distinct_found = true;
        }

        if attrs.displayed.value() {
            displayed_attributes.push(field.ident.clone().unwrap().to_string());
        }

        if attrs.searchable.value() {
            searchable_attributes.push(field.ident.clone().unwrap().to_string());
        }

        if attrs.filterable.value() {
            filterable_attributes.push(field.ident.clone().unwrap().to_string());
        }

        if attrs.sortable.value() {
            sortable_attributes.push(field.ident.clone().unwrap().to_string());
        }
    }

    let primary_key_token: proc_macro2::TokenStream = if primary_key_attribute.is_empty() {
        quote! {
            ::std::option::Option::None
        }
    } else {
        quote! {
            ::std::option::Option::Some(#primary_key_attribute)
        }
    };

    let display_attr_tokens =
        get_settings_token_for_list(&displayed_attributes, "with_displayed_attributes");
    let sortable_attr_tokens =
        get_settings_token_for_list(&sortable_attributes, "with_sortable_attributes");
    let filterable_attr_tokens =
        get_settings_token_for_list(&filterable_attributes, "with_filterable_attributes");
    let searchable_attr_tokens =
        get_settings_token_for_list(&searchable_attributes, "with_searchable_attributes");
    let distinct_attr_token = get_settings_token_for_string_for_some_string(
        &distinct_key_attribute,
        "with_distinct_attribute",
    );

    quote! {
        #[::meilisearch_sdk::macro_helper::async_trait(?Send)]
        impl ::meilisearch_sdk::documents::IndexConfig for #struct_ident {
            const INDEX_STR: &'static str = #index_name;

            fn generate_settings() -> ::meilisearch_sdk::settings::Settings {
            ::meilisearch_sdk::settings::Settings::new()
            #display_attr_tokens
            #sortable_attr_tokens
            #filterable_attr_tokens
            #searchable_attr_tokens
            #distinct_attr_token
        }

         async fn generate_index<Http: ::meilisearch_sdk::request::HttpClient>(client: &::meilisearch_sdk::client::Client<Http>) -> std::result::Result<::meilisearch_sdk::indexes::Index<Http>, ::meilisearch_sdk::tasks::Task> {
            return client.create_index(#index_name, #primary_key_token)
                .await.unwrap()
                .wait_for_completion(&client, ::std::option::Option::None, ::std::option::Option::None)
                .await.unwrap()
                .try_make_index(&client);
            }
        }
    }
}

fn get_settings_token_for_list(
    field_name_list: &[String],
    method_name: &str,
) -> proc_macro2::TokenStream {
    let string_attributes = field_name_list.iter().map(|attr| {
        quote! {
            #attr
        }
    });
    let method_ident = Ident::new(method_name, proc_macro2::Span::call_site());

    if field_name_list.is_empty() {
        quote! {
            .#method_ident(::std::iter::empty::<&str>())
        }
    } else {
        quote! {
            .#method_ident([#(#string_attributes),*])
        }
    }
}

fn get_settings_token_for_string_for_some_string(
    field_name: &String,
    method_name: &str,
) -> proc_macro2::TokenStream {
    let method_ident = Ident::new(method_name, proc_macro2::Span::call_site());

    if field_name.is_empty() {
        proc_macro2::TokenStream::new()
    } else {
        quote! {
            .#method_ident(::std::option::Option::Some(#field_name))
        }
    }
}