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
// Copyright 2018-2019 Cryptape Technologies LLC.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Constructor for Uint.

use super::super::parsed;
use crate::utils;
use proc_macro2::TokenStream;
use quote::quote;
use std::cell::Cell;
use std::iter::FromIterator;

pub struct UintInformation {
    pub name: String,
    pub bits_size: u64,
    pub bytes_size: u64,
    pub unit_bits_size: u64,
    pub unit_bytes_size: u64,
    pub unit_amount: u64,
}

impl ::std::convert::From<parsed::UintDefinition> for UintInformation {
    fn from(data: parsed::UintDefinition) -> Self {
        let parsed::UintDefinition { name, attrs } = data;
        // bits size for the whole unsigned integer
        let bits_size = attrs.size;
        // bytes size for the whole unsigned integer
        let bytes_size = attrs.size / 8;
        // bits size for the unit of the unsigned integer
        let unit_bits_size = attrs.unit_size;
        // bytes size for the unit of the unsigned integer
        let unit_bytes_size = attrs.unit_size / 8;
        // how many units in an unsigned integer
        let unit_amount = attrs.size / attrs.unit_size;
        Self {
            name,
            bits_size,
            bytes_size,
            unit_bits_size,
            unit_bytes_size,
            unit_amount,
        }
    }
}

pub struct UintTokenStreams {
    pub name: TokenStream,
    pub bits_size: TokenStream,
    pub bytes_size: TokenStream,
    pub unit_bits_size: TokenStream,
    pub unit_bytes_size: TokenStream,
    pub unit_amount: TokenStream,
    pub unit_suffix: TokenStream,
    pub double_unit_suffix: TokenStream,
    pub inner_type: TokenStream,
    pub error_name: TokenStream,
    pub utils_name: TokenStream,
    pub feature: syn::LitStr,
    pub mod_name: syn::Ident,
}

impl<'a> ::std::convert::From<&'a UintInformation> for UintTokenStreams {
    fn from(info: &UintInformation) -> Self {
        let name = utils::ident_to_ts(info.name.as_ref());
        let bits_size = utils::pure_uint_to_ts(info.bits_size);
        let bytes_size = utils::pure_uint_to_ts(info.bytes_size);
        let unit_bits_size = utils::pure_uint_to_ts(info.unit_bits_size);
        let unit_bytes_size = utils::pure_uint_to_ts(info.unit_bytes_size);
        let unit_amount = utils::pure_uint_to_ts(info.unit_amount);

        let unit_suffix = utils::uint_suffix_to_ts(info.unit_bits_size);
        let double_unit_suffix = utils::uint_suffix_to_ts(info.unit_bits_size * 2);

        let inner_type = quote!([#unit_suffix; #unit_amount]);

        let error_name = utils::ident_to_ts("FixedUintError");
        let utils_name = utils::ident_to_ts("utils");

        let feature_string = format!("bits_{}", info.bits_size);
        let feature = syn::LitStr::new(&feature_string, proc_macro2::Span::call_site());

        let mod_name = syn::Ident::new(
            &format!("_mod_{}", info.name),
            proc_macro2::Span::call_site(),
        );

        Self {
            name,
            bits_size,
            bytes_size,
            unit_bits_size,
            unit_bytes_size,
            unit_amount,
            unit_suffix,
            double_unit_suffix,
            inner_type,
            error_name,
            utils_name,
            feature,
            mod_name,
        }
    }
}

pub struct UintConstructor {
    // Raw data of uint definition
    pub info: UintInformation,
    // Cache TokenStreams
    pub ts: UintTokenStreams,

    // Outputs (for each)
    uint_common: Cell<Vec<TokenStream>>,
    // Outputs (define methods)
    defuns: Cell<Vec<TokenStream>>,
    // Outputs (implement traits)
    implts: Cell<Vec<TokenStream>>,

    // Outputs (once)
    common: Cell<Vec<TokenStream>>,
    // Outputs (errors)
    errors: Cell<Vec<TokenStream>>,
    // Outputs (utils)
    utils: Cell<Vec<TokenStream>>,
    // Outputs (traits)
    preludes: Cell<Vec<TokenStream>>,
}

impl UintConstructor {
    pub fn new(data: parsed::UintDefinition) -> Self {
        let info: UintInformation = data.into();
        let ts: UintTokenStreams = (&info).into();
        let uint_common = Cell::new(Vec::new());
        let defuns = Cell::new(Vec::new());
        let implts = Cell::new(Vec::new());
        let common = Cell::new(Vec::new());
        let errors = Cell::new(Vec::new());
        let utils = Cell::new(Vec::new());
        let preludes = Cell::new(Vec::new());
        UintConstructor {
            info,
            ts,
            uint_common,
            defuns,
            implts,
            common,
            errors,
            utils,
            preludes,
        }
    }

    fn defstruct(&self) {
        let name = &self.ts.name;
        let feature = &self.ts.feature;
        let inner_type = &self.ts.inner_type;
        let part = quote!(
            /// Fixed non-negative integer type.
            #[cfg(feature = #feature)]
            #[derive(Clone)]
            pub struct #name(pub #inner_type);
        );
        self.attach_uint(part);
    }

    fn deferror(&self) {
        let error_name = &self.ts.error_name;
        let part = {
            let errors = self.errors.take();
            if errors.is_empty() {
                quote!()
            } else {
                let errors = TokenStream::from_iter(errors);
                quote!(
                    #[derive(Debug, Error)]
                    pub enum #error_name {
                        #errors
                    }
                )
            }
        };
        self.attach_common(part);
    }

    fn defutils(&self) {
        let utils_name = &self.ts.utils_name;
        let part = {
            let utils = self.utils.take();
            if utils.is_empty() {
                quote!()
            } else {
                let utils = TokenStream::from_iter(utils);
                quote!(
                    pub(crate) mod #utils_name {
                        #utils
                    }
                )
            }
        };
        self.attach_common(part);
    }

    fn deftraits(&self) {
        let part = {
            let preludes = self.preludes.take();
            if preludes.is_empty() {
                quote!()
            } else {
                let preludes = TokenStream::from_iter(preludes);
                quote!(
                    pub mod prelude {
                        #preludes
                    }
                )
            }
        };
        self.attach_common(part);
    }

    pub fn output(&self, ucs: &[Self]) -> (TokenStream, TokenStream) {
        self.defstruct();
        self.deferror();
        self.defutils();
        self.deftraits();
        let name = &self.ts.name;
        let feature = &self.ts.feature;
        let mod_name = &self.ts.mod_name;
        let uint_common = TokenStream::from_iter(self.uint_common.take());
        let defuns = TokenStream::from_iter(self.defuns.take());
        let implts = TokenStream::from_iter(self.implts.take());
        let one_uint = quote!(
            #uint_common

            #[cfg(feature = #feature)]
            #[doc(hide)]
            mod #mod_name {
                use crate::*;
                impl #name {
                    #defuns
                }
                #implts
            }
        );
        let public = if ucs.is_empty() {
            // define common part for all fixed uints
            TokenStream::from_iter(self.common.take())
        } else {
            // define convert methods (From, Into) between two fixed uints
            ucs.iter().fold(quote!(), |all, ref uc| {
                let convert_into = self.convert_into(uc);
                let convert_from = uc.convert_into(self);
                quote!(#all #convert_into #convert_from)
            })
        };
        (one_uint, public)
    }

    pub fn clear(&self) {
        let _ = self.uint_common.take();
        let _ = self.defuns.take();
        let _ = self.implts.take();
        let _ = self.common.take();
        let _ = self.errors.take();
        let _ = self.utils.take();
    }

    pub fn attach_uint(&self, part: TokenStream) {
        let mut o = self.uint_common.take();
        o.push(part);
        self.uint_common.set(o);
    }

    pub fn defun(&self, part: TokenStream) {
        let mut o = self.defuns.take();
        o.push(part);
        self.defuns.set(o);
    }

    pub fn implt(&self, part: TokenStream) {
        let mut o = self.implts.take();
        o.push(part);
        self.implts.set(o);
    }

    pub fn attach_common(&self, part: TokenStream) {
        let mut o = self.common.take();
        o.push(part);
        self.common.set(o);
    }

    pub fn error(&self, part: TokenStream) {
        let mut o = self.errors.take();
        o.push(part);
        self.errors.set(o);
    }

    pub fn util(&self, part: TokenStream) {
        let mut o = self.utils.take();
        o.push(part);
        self.utils.set(o);
    }

    pub fn prelude(&self, part: TokenStream) {
        let mut o = self.preludes.take();
        o.push(part);
        self.preludes.set(o);
    }
}