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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
/*!
Types for modeling the layout of a datatype
*/

use std::{
    cmp::{PartialEq,Eq},
    cell::RefCell,
    collections::HashSet,
    fmt::{self, Debug, Display, Formatter},
    mem::{self,ManuallyDrop},
};

use core_extensions::{matches,StringExt};

use crate::{
    abi_stability::{
        extra_checks::{StoredExtraChecks,ExtraChecksStaticRef},
        stable_abi_trait::{TypeLayoutCtor,AbiConsts},
    },
    const_utils::log2_usize, 
    sabi_types::VersionStrings, 
    sabi_types::{CmpIgnored,Constructor,NulStr},
    std_types::{RStr,RSlice,UTypeId},
    prefix_type::{FieldAccessibility,FieldConditionality},
    reflection::ModReflMode,
};


mod construction;
pub mod data_structures;
mod iterators;
mod shared_vars;
mod small_types;
mod printing;
pub mod tagging;
mod tl_data;
mod tl_enums;
mod tl_field;
mod tl_fields;
mod tl_functions;
mod tl_lifetimes;
mod tl_multi_tl;
mod tl_other;
mod tl_prefix;
mod tl_reflection;

pub(crate) use self::{
    iterators::ChainOnce,
};

pub use self::{
    construction::{
        _private_TypeLayoutDerive,
        _private_MonoTypeLayoutDerive,
        ItemInfo,
    },
    shared_vars::{
        SharedVars,
        MonoSharedVars,
    },
    small_types::{
        StartLen,
        StartLenRepr,
        StartLenConverter,
        OptionU16,
        OptionU8,
    },
    tl_data::{
        GenericTLData,
        MismatchedTLDataVariant,
        MonoTLData,
        TLData,
        TLDataDiscriminant,
    },
    tl_enums::{
        DiscriminantRepr,
        GenericTLEnum,
        IncompatibleWithNonExhaustive,
        IsExhaustive,
        MonoTLEnum,
        TLDiscriminant,
        TLDiscriminants,
        TLEnum,
        TLNonExhaustive,
        MakeTLNonExhaustive,
    },
    tl_field::{
        CompTLField,
        CompTLFieldRepr,
        TLField,
    },
    tl_fields::{
        CompTLFields,
        TLFields,
        TLFieldsIterator,
    },
    tl_functions::{
        TLFunctionIter,
        TLFunctions,
        TLFunctionSlice,
        CompTLFunction,
        TLFunction,
    },
    tl_lifetimes::{
        LifetimeArrayOrSlice,
        LifetimeIndex,
        LifetimeIndexArray,
        LifetimeIndexPair,
        LifetimeIndexPairRepr,
        LifetimeRange,
    },
    tl_multi_tl::{
        TypeLayoutIndex,
        TypeLayoutRange,
        MultipleTypeLayouts,
        MTLIterator,
    },
    tl_other::{
        CompGenericParams,
        FmtFullType,
        GenericParams,
        ModPath,
        ReprAttr,
        TLFieldOrFunction,
        TLPrimitive,
    },
    tl_prefix::{
        GenericTLPrefixType,
        MonoTLPrefixType,
        TLPrefixType,
    },
    tl_reflection::{
        CompFieldAccessor,
        FieldAccessor,
    },
    tagging::Tag,
};


////////////////////////////////////////////////////////////////////////////////


/// The layout of a type,
/// also includes metadata about where the type was defined.
#[repr(C)]
#[derive(Copy, Clone,StableAbi)]
// I am specifically applying this attribute to TypeLayout to make
// ExtraChecks take less time checking its own layout.
//
// Also because checking the layout of TypeLayout is redundant,
// since I have to trust that it's correct to be able to use it 
// to check the layout of anything(including itself).
#[sabi(unsafe_sabi_opaque_fields)]
pub struct TypeLayout {
    shared_vars: &'static SharedVars,
    
    /// The parts of the type layout that never change based on generic parameters.
    mono:&'static MonoTypeLayout,
    
    /// Whether the type uses non-zero value optimization,
    /// if true then an Option<Self> implements StableAbi.
    is_nonzero: bool,    

    /// The alignment of the type represented as (1 << self.alignment_power_of_two).
    alignment_power_of_two: u8,

    /// The size of the type
    size: usize,
    
    tag:Option<&'static Tag>,

    data:GenericTLData,
    
    /// A json-like data structure used to add extra checks.
    extra_checks:CmpIgnored<Option<&'static ManuallyDrop<StoredExtraChecks>>>,

    /// A function to get the unique identifier for some type
    type_id:Constructor<UTypeId>,
}

unsafe impl Send for TypeLayout{}
unsafe impl Sync for TypeLayout{}

unsafe impl Send for MonoTypeLayout{}
unsafe impl Sync for MonoTypeLayout{}


///////////////////////////

impl TypeLayout {

    pub(crate) const fn from_std<T>(
        shared_vars: &'static SharedVars,
        mono:&'static MonoTypeLayout,
        abi_consts:AbiConsts,
        data: GenericTLData,
    ) -> Self {
        Self {
            shared_vars,
            mono,
            is_nonzero:abi_consts.is_nonzero,
            type_id:abi_consts.type_id,
            alignment_power_of_two: log2_usize(mem::align_of::<T>()),
            size: mem::size_of::<T>(),
            data,
            extra_checks:CmpIgnored::new(None),
            tag:None,
        }
    }

    #[doc(hidden)]
    pub const fn from_derive<T>(p: _private_TypeLayoutDerive) -> Self {
        Self {
            shared_vars: p.shared_vars,
            mono: p.mono,
            is_nonzero: p.abi_consts.is_nonzero,
            type_id: p.abi_consts.type_id,
            alignment_power_of_two: log2_usize(mem::align_of::<T>()),
            size: mem::size_of::<T>(),
            data: p.data,
            extra_checks:CmpIgnored::new(p.extra_checks),
            tag:p.tag,
        }
    }

    /// Gets the SharedVars of the type,
    /// containing the slices that many types inside TypeLayout contain ranges into.
    pub const fn shared_vars(&self)->&'static SharedVars{
        self.shared_vars
    }

    /// Gets a type used to print the type(ie:`Foo<'a,'b,u32,RString,1,2>`)
    #[doc(hidden)]
    pub fn full_type(&self) -> FmtFullType {
        FmtFullType{
            name: self.mono.name(),
            generics: self.generics(),
            primitive: self.mono.data.to_primitive(),
            utypeid: self.get_utypeid(),
        }
    }

    /// Gets the package and package version where the type was declared.
    pub fn package_and_version(&self)->(RStr<'static>,VersionStrings){
        let (package,version)=self.item_info().package_and_version();

        (
            RStr::from_str(package),
            VersionStrings::new(version)
        )
    }

    /// Gets the package where the type was declared.
    pub fn package(&self)->RStr<'static>{
        let (package,_)=self.item_info().package_and_version();
        RStr::from_str(package)
    }

    /// Gets the package version for the package where the type was declared.
    pub fn package_version(&self)->VersionStrings{
        let (_,version)=self.item_info().package_and_version();
        VersionStrings::new(version)
    }

    /// Gets which line the type was defined in.
    pub fn line(&self)->u32{
        self.item_info().line
    }

    /// Gets the full path to the module where the type was defined.
    pub fn mod_path(&self)->ModPath{
        self.item_info().mod_path
    }

    /// Gets a trait object used to check extra properties about the type.
    #[inline]
    pub fn extra_checks(&self)->Option<ExtraChecksStaticRef>{
        self.extra_checks.value.map(|x| x.sabi_reborrow() )
    }

/**
Gets the fields of the type.

# Return value

If this a:

- primitive or opaque type:
    It returns `None`.

- enum:
    It returns `Some()` with all the fields in the order that they were declared,
    ignoring variants.

- structs/unions/prefix types:
    It returns `Some()` with all the fields in the order that they were declared.

*/
    pub fn get_fields(&self)->Option<TLFields>{
        let fields=self.mono.get_fields()?;
        Some(fields.expand(self.shared_vars))
    }

    /// Whether this is a prefix-type(module or vtable).
    pub fn is_prefix_kind(&self)->bool{
        matches!(self.data, GenericTLData::PrefixType{..})
    }

    /// Gets the name of the type.
    #[inline]
    pub fn name(&self)->&'static str{
        self.mono.name()
    }

    /// Gets whether the type is a NonZero type,
    /// which can be put in an `Option` while being ffi-safe.
    #[inline]
    pub fn is_nonzero(&self)->bool{
        self.is_nonzero
    }

    #[doc(hidden)]
    #[cfg(feature = "testing")]
    pub const fn _set_is_nonzero(mut self,is_nonzero:bool)->Self{
        self.is_nonzero=is_nonzero;
        self
    }

    #[doc(hidden)]
    #[cfg(feature = "testing")]
    pub const fn _set_extra_checks(
        mut self,
        extra_checks:CmpIgnored<Option<&'static ManuallyDrop<StoredExtraChecks>>>
    )->Self{
        self.extra_checks=extra_checks;
        self
    }

    #[doc(hidden)]
    #[cfg(feature = "testing")]
    pub const fn _set_type_id(
        mut self,
        type_id:Constructor<UTypeId>,
    )->Self{
        self.type_id=type_id;
        self
    }

    /// Gets the `UTypeId` for the type,
    /// which is an ffi safe equivalent of `TypeId`.
    #[inline]
    pub fn get_utypeid(&self)->UTypeId{
        self.type_id.get()
    }

    /// Gets information about where a type was declared.
    #[inline]
    pub fn item_info(&self)->&ItemInfo{
        &self.mono.item_info()
    }

    /// Gets the alignment of the type.
    #[inline]
    pub fn alignment(&self)->usize{
        1_usize << (self.alignment_power_of_two as u32)
    }

    /// Gets the size of the type.
    #[inline]
    pub fn size(&self)->usize{
        self.size
    }

    /// Gets the `Tag` associated with a type,
    /// a JSON-like datastructure which is another way to 
    /// check extra properties about a type.
    pub fn tag(&self)->&'static Tag{
        self.tag.unwrap_or(Tag::NULL)
    }

    /// Gets the representation attribute of the type.
    pub fn repr_attr(&self)->ReprAttr{
        self.mono.repr_attr()
    }

    /// Gets the `ModReflMode` for the type,
    /// whether this is a module whose definition can be reflected on at runtime.
    pub const fn mod_refl_mode(&self)->ModReflMode{
        self.mono.mod_refl_mode()
    }

    /// The interior of the type definition,
    /// describing whether the type is a primitive/enum/struct/union and its contents.
    pub fn data(&self)-> TLData {
        self.mono.data
            .expand(self.data,self.shared_vars)
            .unwrap_or_else(|e|{
                panic!("\nError inside of '{}' type \n{}",self.full_type(),e);
            })
    }

    /// Describes whether the type is a primitive/enum/struct/union,
    /// every variant corresponds to a `TLData` variant of the same name.
    pub fn data_discriminant(&self)-> TLDataDiscriminant {
        self.mono.data.as_discriminant()
    }

    /// Gets the virtual fields that aren't part of th type definition,
    /// but are checked as part of the type
    #[inline]
    pub fn phantom_fields(&self)->TLFields{
        unsafe{
            let slice=std::slice::from_raw_parts(
                self.mono.phantom_fields,
                self.mono.phantom_fields_len as usize,
            );
            TLFields::from_fields(slice,self.shared_vars)
        }
    }

    /// Gets the generic parameters of the type.
    pub fn generics(&self)->GenericParams{
        self.mono.generics.expand(self.shared_vars)
    }

    /// Gets the parts of the type layout that don't change with generic parameters.
    pub fn mono_type_layout(&self)->&MonoTypeLayout{
        &self.mono
    }
}


impl PartialEq for TypeLayout{
    fn eq(&self,other:&TypeLayout)->bool{
        self.get_utypeid()==other.get_utypeid()
    }
}


impl Eq for TypeLayout{}


////////////////////////////////////////////////////////////////////////////////


/// The data in the type layout that does not depend on generic parameters.
#[repr(C)]
#[derive(Copy, Clone,StableAbi)]
#[sabi(unsafe_sabi_opaque_fields)]
pub struct MonoTypeLayout{
    shared_vars:MonoSharedVars,

    /// The name of the type.
    name: *const u8,

    /// Contains information about where the type was defined.
    ///
    item_info:CmpIgnored<ItemInfo>,

    /// What kind of type this is,Primitive/Struct/Enum/PrefixType.
    data: MonoTLData,
    /// The generic parameters of the type
    generics: CompGenericParams,

    /// Phantom fields,which don't have a runtime component(they aren't stored anywhere),
    /// and are checked in layout checking.
    phantom_fields: *const CompTLField,
    phantom_fields_len: u8,

    /// The representation attribute(s) of the type.
    repr_attr:ReprAttr,

    /// How the type is treated when interpreted as a module.
    mod_refl_mode:ModReflMode,
    
    name_len: u16,
}


#[allow(clippy::too_many_arguments)]
impl MonoTypeLayout{
    pub(crate) const fn new(
        shared_vars:MonoSharedVars,
        name: RStr<'static>,
        item_info:ItemInfo,
        data: MonoTLData,
        generics: CompGenericParams,
        repr_attr:ReprAttr,
        mod_refl_mode:ModReflMode,
        phantom_fields:RSlice<'static,CompTLField>,
    )->Self{
        Self{
            shared_vars,
            name    :name.as_ptr(),
            name_len:name.len() as u16,
            item_info:CmpIgnored::new(item_info),
            data,
            generics,
            repr_attr,
            mod_refl_mode,
            phantom_fields: phantom_fields.as_ptr(),
            phantom_fields_len: phantom_fields.len() as u8,
        }
    }

    #[doc(hidden)]
    pub const fn from_derive(p:_private_MonoTypeLayoutDerive)->Self{
        Self{
            name    : p.name.as_ptr(),
            name_len: p.name.len() as u16,
            phantom_fields    : p.phantom_fields.as_ptr() 
                as *const CompTLFieldRepr 
                as *const CompTLField,
            phantom_fields_len: p.phantom_fields.len() as u8,
            item_info: CmpIgnored::new(p.item_info),
            data: p.data,
            generics: p.generics,
            repr_attr: p.repr_attr,
            mod_refl_mode: p.mod_refl_mode,
            shared_vars: p.shared_vars,
        }
    }

    /// Gets the name of the type.
    pub fn name(&self)->&'static str{
        unsafe{
            let slic=std::slice::from_raw_parts( self.name, self.name_len as usize );
            std::str::from_utf8_unchecked(slic)
        }
    }

    /// Gets the representation attribute of the type.
    pub const fn repr_attr(&self)->ReprAttr{
        self.repr_attr
    }

    /// Gets the `ModReflMode` for the type,
    /// whether this is a module whose definition can be reflected on at runtime.
    pub const fn mod_refl_mode(&self)->ModReflMode{
        self.mod_refl_mode
    }

    /// Gets information about where a type was declared.
    pub const fn item_info(&self)->&ItemInfo{
        &self.item_info.value
    }

    /// Gets the SharedVars of the type,
    /// containing the slices that many types inside TypeLayout contain ranges into.
    pub const fn shared_vars(&self)->&MonoSharedVars{
        &self.shared_vars
    }

    /// Gets the SharedVars of the type,
    /// containing the slices that many types inside TypeLayout contain ranges into.
    /// 
    /// This was defined as a workaround for an internal compiler error in nightly.
    pub const fn shared_vars_static(&'static self)->&'static MonoSharedVars{
        &self.shared_vars
    }

/**
Gets the compressed versions of the fields of the type.

# Return value

If this a:

- primitive or opaque type:
    It returns `None`.

- enum:
    It returns `Some()` with all the fields in the order that they were declared,
    ignoring variants.

- structs/unions/prefix types:
    It returns `Some()` with all the fields in the order that they were declared.

*/
    pub fn get_fields(&self)->Option<CompTLFields>{
        match self.data {
            MonoTLData::Primitive{..}=>None,
            MonoTLData::Opaque=>None,
            MonoTLData::Struct{fields}=>Some(fields),
            MonoTLData::Union{fields}=>Some(fields),
            MonoTLData::Enum (tlenum)=>Some(tlenum.fields),
            MonoTLData::PrefixType(prefix)=>Some(prefix.fields),
        }
    }

    /// Gets an iterator over all the names of the fields in the type.
    pub fn field_names(&self)->impl ExactSizeIterator<Item=&'static str>+Clone+'static{
        self.get_fields()
            .unwrap_or(CompTLFields::EMPTY)
            .field_names( &self.shared_vars )
    }

    /// Gets the name of the `nth` field in the type.
    /// Returns `None` if there is no `nth` field.
    pub fn get_field_name(&self,nth:usize)->Option<&'static str>{
        self.get_fields()
            .unwrap_or(CompTLFields::EMPTY)
            .get_field_name( nth, &self.shared_vars )
    }
}


impl Debug for MonoTypeLayout{
    fn fmt(&self,f:&mut fmt::Formatter<'_>)->fmt::Result{
        f.debug_struct("MonoTypeLayout")
        .field("name",&self.name())
        .field("item_info",self.item_info())
        .field("repr_attr",&self.repr_attr())
        .field("mod_refl_mode",&self.mod_refl_mode())
        .finish()
    }
}