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
use std::collections::{HashMap, HashSet};

use roadblk_attr::ConstraintType;
use serde::{Deserialize, Serialize};

use apidoc_attr::{prop::ParsedApiDocAttr, serde::ParsedSerdeAttr};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ApiNumber {
    I8,
    I16,
    I32,
    I64,
    I128,
    U8,
    U16,
    U32,
    USize,
    U64,
    U128,
    F32,
    F64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApiEnumer {
    // 标识符
    pub ident: String,

    // 名称
    pub name: Option<String>,

    // 描述
    pub prop: Option<ParsedApiDocAttr>,

    // 序列化/反序列化
    pub serde: Vec<ParsedSerdeAttr>,

    // 枚举项: 模型id
    pub variants: Vec<String>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApiNamedField {
    // 标识符
    pub ident: String,

    // 名称
    pub name: Option<String>,

    // 参数说明
    pub prop: Option<ParsedApiDocAttr>,

    // 是否必传
    pub option: bool,

    // 类型
    pub ty: ApiTy,

    // 约束
    pub constraint: Vec<ConstraintType>,

    // 序列化/反序列化
    pub serde: Vec<ParsedSerdeAttr>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApiUnamedField {
    // 参数名称,元组结构体没有名称
    pub index: i32,

    // 名称
    pub name: Option<String>,

    // 参数说明
    pub prop: Option<ParsedApiDocAttr>,

    // 是否必传
    pub option: bool,

    // 类型
    pub ty: ApiTy,

    // 约束
    pub constraint: Vec<ConstraintType>,

    // 序列化/反序列化
    pub serde: Vec<ParsedSerdeAttr>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ApiFields {
    Named(Vec<ApiNamedField>),
    Unnamed(Vec<ApiUnamedField>),
    Unit,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApiModel {
    // 标识符
    pub ident: String,

    // 名称
    pub name: Option<String>,

    // 描述
    pub prop: Option<ParsedApiDocAttr>,

    // 值
    pub value: Option<i32>,

    // 序列化/反序列化
    pub serde: Vec<ParsedSerdeAttr>,

    // 字段
    pub fields: ApiFields,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ApiTy {
    Bool,

    String,

    Number(ApiNumber),

    File,

    Enumer(Box<ApiEnumer>),

    Struct { model_id: String },

    Map(Box<ApiTy>, Box<ApiTy>),

    Set(Box<ApiTy>),

    List(Box<ApiTy>),
}

pub trait ApiTyTrait {
    fn api_collect_ty(models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy;

    fn api_option() -> bool {
        false
    }

    fn api_model_id() -> String {
        let type_name = std::any::type_name::<Self>();
        type_name.to_string()
    }
}

macro_rules! impl_ty_number {
    ($primite: ident, $item: ident) => {
        impl ApiTyTrait for $primite {
            fn api_collect_ty(_models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy {
                ApiTy::Number(ApiNumber::$item)
            }
        }
    };
}
impl_ty_number!(i8, I8);
impl_ty_number!(i16, I16);
impl_ty_number!(i32, I32);
impl_ty_number!(i64, I64);
impl_ty_number!(i128, I128);
impl_ty_number!(u8, U8);
impl_ty_number!(usize, USize);
impl_ty_number!(u16, U16);
impl_ty_number!(u32, U32);
impl_ty_number!(u64, U64);
impl_ty_number!(u128, U128);
impl_ty_number!(f32, F32);
impl_ty_number!(f64, F64);

impl ApiTyTrait for String {
    fn api_collect_ty(_models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy {
        ApiTy::String
    }
}
impl ApiTyTrait for bool {
    fn api_collect_ty(_models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy {
        ApiTy::Bool
    }
}
impl<T: ApiTyTrait> ApiTyTrait for Option<T> {
    fn api_collect_ty(models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy {
        T::api_collect_ty(models)
    }

    fn api_option() -> bool {
        true
    }
}
impl<T: ApiTyTrait> ApiTyTrait for Vec<T> {
    fn api_collect_ty(models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy {
        ApiTy::List(Box::new(T::api_collect_ty(models)))
    }
}
impl<T: ApiTyTrait> ApiTyTrait for HashSet<T> {
    fn api_collect_ty(models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy {
        ApiTy::Set(Box::new(T::api_collect_ty(models)))
    }
}
impl<K: ApiTyTrait, V: ApiTyTrait> ApiTyTrait for HashMap<K, V> {
    fn api_collect_ty(models: &mut HashMap<String, Option<ApiModel>>) -> ApiTy {
        ApiTy::Map(
            Box::new(K::api_collect_ty(models)),
            Box::new(V::api_collect_ty(models)),
        )
    }
}