tnil 0.1.3

Parsing, glossing, and generating utilites for New Ithkuil
Documentation
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
//! Defines formative additions.

use super::relation::{NonDefaultRelation, NormalRelation};
use crate::{
    affix::AffixList,
    category::{
        AffixShortcut, Ca, Context, Function, NormalCaShortcut, ReferentialCaShortcut,
        Specification, Vn,
    },
    specificity::{AsGeneral, TryAsSpecific},
};
use paste::paste;

/// Additions to a non-shortcut formative.
#[derive(Clone, Debug, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct NonShortcutAdditions<AffixShortcutType, SpecificationType> {
    /// The relation of this formative.
    pub relation: NormalRelation,

    /// The affix shortcut of this formative.
    pub affix_shortcut: AffixShortcutType,

    /// The function of this formative.
    pub function: Function,

    /// The specification of this formative.
    pub specification: SpecificationType,

    /// The context of this formative.
    pub context: Context,

    /// The slot V affixes of this formative.
    pub slot_v_affixes: AffixList,

    /// The Ca of this formative.
    pub ca: Ca,

    /// The Vn of this formative.
    pub vn: Vn,
}

/// Additions for normal and numeric non-shortcut formatives.
pub type NormalNonShortcutAdditions = NonShortcutAdditions<AffixShortcut, Specification>;

/// Additions for referential non-shortcut formatives.
pub type ReferentialNonShortcutAdditions = NonShortcutAdditions<(), Specification>;

/// Additions for affixual non-shortcut formatives.
pub type AffixualNonShortcutAdditions = NonShortcutAdditions<(), ()>;

/// Additions to a Cn-shortcut formative.
#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct CnShortcutAdditions<AffixShortcutType, SpecificationType> {
    /// The relation of this formative.
    pub relation: NonDefaultRelation,

    /// The affix shortcut of this formative.
    pub affix_shortcut: AffixShortcutType,

    /// The function of this formative.
    pub function: Function,

    /// The specification of this formative.
    pub specification: SpecificationType,

    /// The context of this formative.
    pub context: Context,
}

/// Additions for normal and numeric Cn-shortcut formatives.
pub type NormalCnShortcutAdditions = CnShortcutAdditions<AffixShortcut, Specification>;

/// Additions for referential Cn-shortcut formatives.
pub type ReferentialCnShortcutAdditions = CnShortcutAdditions<(), Specification>;

/// Additions for affixual Cn-shortcut formatives.
pub type AffixualCnShortcutAdditions = CnShortcutAdditions<(), ()>;

/// Additions to a Ca-shortcut formative.
#[derive(Clone, Debug, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct CaShortcutAdditions<CaShortcutType> {
    /// The relation of this formative.
    pub relation: NormalRelation,

    /// The slot V affixes of this formative.
    pub slot_v_affixes: AffixList,

    /// The Ca of this formative.
    pub ca: CaShortcutType,

    /// The Vn of this formative.
    pub vn: Vn,
}

/// Additions for normal and numeric Ca-shortcut formatives.
pub type NormalCaShortcutAdditions = CaShortcutAdditions<NormalCaShortcut>;

/// Additions for referential Ca-shortcut formatives.
pub type ReferentialCaShortcutAdditions = CaShortcutAdditions<ReferentialCaShortcut>;

/// Additions to a normal or numeric formative.
#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub enum NormalFormativeAdditions {
    /// Additions to a non-shortcut formatives.
    Normal(NormalNonShortcutAdditions),

    /// Additions to a Cn-shortcut formative.
    CnShortcut(NormalCnShortcutAdditions),

    /// Additions to a Ca-shortcut formative.
    CaShortcut(NormalCaShortcutAdditions),
}

impl Default for NormalFormativeAdditions {
    fn default() -> Self {
        NormalFormativeAdditions::Normal(Default::default())
    }
}

/// Additions to a referential formative.
#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub enum ReferentialFormativeAdditions {
    /// Additions to a non-shortcut formatives.
    Normal(ReferentialNonShortcutAdditions),

    /// Additions to a Cn-shortcut formative.
    CnShortcut(ReferentialCnShortcutAdditions),

    /// Additions to a Ca-shortcut formative.
    CaShortcut(ReferentialCaShortcutAdditions),
}

impl Default for ReferentialFormativeAdditions {
    fn default() -> Self {
        ReferentialFormativeAdditions::Normal(Default::default())
    }
}

/// Additions to an affixual formative.
#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub enum AffixualFormativeAdditions {
    /// Additions to a non-shortcut formatives.
    Normal(AffixualNonShortcutAdditions),

    /// Additions to a Cn-shortcut formative.
    CnShortcut(AffixualCnShortcutAdditions),
}

impl Default for AffixualFormativeAdditions {
    fn default() -> Self {
        AffixualFormativeAdditions::Normal(Default::default())
    }
}

/// Additions to a general formative.
#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub enum ShortcutCheckedFormativeAdditions {
    /// Additions to a non-shortcut formatives.
    Normal(NormalNonShortcutAdditions),

    /// Additions to a Cn-shortcut formative.
    CnShortcut(NormalCnShortcutAdditions),

    /// Additions to a Ca-shortcut formative.
    CaShortcut(NormalCaShortcutAdditions),
}

/// See the examples below for "documentation" on how this works.
macro_rules! as_general_impl {
    (
        $specific:ident,
        $general:ident,
        $($ca_name:ident)?,
        $($slot_v_affixes_name:ident)?,
        $($vn_name:ident)?,
        $affix_shortcut_name:ident,
        $specification_name:ident,
        $affix_shortcut:tt,
        $affix_shortcut_value:expr,
        $specification:tt,
        $specification_value:expr,
    ) => {
        paste! {
            #[allow(unused_parens)]
            impl AsGeneral<$general> for $specific {
                fn as_general(self) -> $general {
                    #[allow(unused_variables)]
                    let Self {
                        $affix_shortcut_name,
                        $($ca_name,)?
                        $($vn_name,)?
                        context,
                        function,
                        relation,
                        $($slot_v_affixes_name,)?
                        $specification_name,
                    } = self;

                    $general {
                        affix_shortcut: $affix_shortcut,
                        $($ca_name,)?
                        $($vn_name,)?
                        context,
                        function,
                        relation,
                        $($slot_v_affixes_name,)?
                        specification: $specification,
                    }
                }
            }

            #[allow(unused_parens)]
            impl From<$specific> for $general {
                fn from(value: $specific) -> Self {
                    value.as_general()
                }
            }

            #[allow(unused_parens)]
            impl TryAsSpecific<$specific> for $general {
                fn try_as_specific(self) -> Option<$specific> {
                    #[allow(unused_variables)]
                    if let $general {
                        $affix_shortcut_name: $affix_shortcut,
                        $($ca_name,)?
                        $($vn_name,)?
                        context,
                        function,
                        relation,
                        $($slot_v_affixes_name,)?
                        $specification_name: $specification,
                    } = self {
                        Some($specific {
                            $affix_shortcut_name: $affix_shortcut_value,
                            $($ca_name,)?
                            $($vn_name,)?
                            context,
                            function,
                            relation,
                            $($slot_v_affixes_name,)?
                            $specification_name: $specification_value,
                        })
                    } else {
                        None
                    }
                }
            }
        }
    };
}

as_general_impl!(
    ReferentialNonShortcutAdditions, // the specific type
    NormalNonShortcutAdditions,      // the general type
    ca,                              // the Ca field, or empty if the type has no Ca field
    slot_v_affixes,                  // the slot V affixes field, or empty if the type has none
    vn,                              // the Vn field, or empty if the type has none
    affix_shortcut,                  // the affix shortcut field (because macro hygiene)
    specification,                   // the specification field (because macro hygiene)
    (AffixShortcut::None),           // the general value to put in `affix_shortcut`
    (),                              // the specific value to put in `affix_shortcut`
    (Specification::BSC),            // the general value to put in `specification`
    (Specification::BSC),            // the specific value to put in `specification`
);

// Note that parentheses are required around the `Some(...)` patterns because we match them as token
// trees so we can reuse them as expressions and patterns.

as_general_impl!(
    AffixualNonShortcutAdditions,
    NormalNonShortcutAdditions,
    ca,
    slot_v_affixes,
    vn,
    affix_shortcut,
    specification,
    (AffixShortcut::None),
    (),
    (Specification::BSC),
    (),
);

as_general_impl!(
    ReferentialCnShortcutAdditions,
    NormalCnShortcutAdditions,
    ,
    ,
    ,
    affix_shortcut,
    specification,
    (AffixShortcut::None),
    (),
    (Specification::BSC),
    (Specification::BSC),
);

as_general_impl!(
    AffixualCnShortcutAdditions,
    NormalCnShortcutAdditions,
    ,
    ,
    ,
    affix_shortcut,
    specification,
    (AffixShortcut::None),
    (),
    (Specification::BSC),
    (),
);

impl AsGeneral<NormalCaShortcutAdditions> for ReferentialCaShortcutAdditions {
    fn as_general(self) -> NormalCaShortcutAdditions {
        NormalCaShortcutAdditions {
            ca: self.ca.as_general(),
            relation: self.relation,
            slot_v_affixes: self.slot_v_affixes,
            vn: self.vn,
        }
    }
}

impl From<ReferentialCaShortcutAdditions> for NormalCaShortcutAdditions {
    fn from(value: ReferentialCaShortcutAdditions) -> Self {
        value.as_general()
    }
}

impl TryAsSpecific<ReferentialCaShortcutAdditions> for NormalCaShortcutAdditions {
    fn try_as_specific(self) -> Option<ReferentialCaShortcutAdditions> {
        Some(ReferentialCaShortcutAdditions {
            ca: self.ca.try_as_specific()?,
            relation: self.relation,
            slot_v_affixes: self.slot_v_affixes,
            vn: self.vn,
        })
    }
}

impl AsGeneral<ShortcutCheckedFormativeAdditions> for NormalFormativeAdditions {
    fn as_general(self) -> ShortcutCheckedFormativeAdditions {
        match self {
            Self::Normal(value) => ShortcutCheckedFormativeAdditions::Normal(value),
            Self::CnShortcut(value) => ShortcutCheckedFormativeAdditions::CnShortcut(value),
            Self::CaShortcut(value) => ShortcutCheckedFormativeAdditions::CaShortcut(value),
        }
    }
}

impl From<NormalFormativeAdditions> for ShortcutCheckedFormativeAdditions {
    fn from(value: NormalFormativeAdditions) -> Self {
        value.as_general()
    }
}

impl TryAsSpecific<NormalFormativeAdditions> for ShortcutCheckedFormativeAdditions {
    fn try_as_specific(self) -> Option<NormalFormativeAdditions> {
        Some(match self {
            Self::Normal(value) => NormalFormativeAdditions::Normal(value),
            Self::CnShortcut(value) => NormalFormativeAdditions::CnShortcut(value),
            Self::CaShortcut(value) => NormalFormativeAdditions::CaShortcut(value),
        })
    }
}

impl AsGeneral<ShortcutCheckedFormativeAdditions> for ReferentialFormativeAdditions {
    fn as_general(self) -> ShortcutCheckedFormativeAdditions {
        match self {
            Self::Normal(value) => ShortcutCheckedFormativeAdditions::Normal(value.as_general()),
            Self::CnShortcut(value) => {
                ShortcutCheckedFormativeAdditions::CnShortcut(value.as_general())
            }
            Self::CaShortcut(value) => {
                ShortcutCheckedFormativeAdditions::CaShortcut(value.as_general())
            }
        }
    }
}

impl From<ReferentialFormativeAdditions> for ShortcutCheckedFormativeAdditions {
    fn from(value: ReferentialFormativeAdditions) -> Self {
        value.as_general()
    }
}

impl TryAsSpecific<ReferentialFormativeAdditions> for ShortcutCheckedFormativeAdditions {
    fn try_as_specific(self) -> Option<ReferentialFormativeAdditions> {
        Some(match self {
            Self::Normal(value) => ReferentialFormativeAdditions::Normal(value.try_as_specific()?),
            Self::CnShortcut(value) => {
                ReferentialFormativeAdditions::CnShortcut(value.try_as_specific()?)
            }
            Self::CaShortcut(value) => {
                ReferentialFormativeAdditions::CaShortcut(value.try_as_specific()?)
            }
        })
    }
}

impl AsGeneral<ShortcutCheckedFormativeAdditions> for AffixualFormativeAdditions {
    fn as_general(self) -> ShortcutCheckedFormativeAdditions {
        match self {
            Self::Normal(value) => ShortcutCheckedFormativeAdditions::Normal(value.as_general()),
            Self::CnShortcut(value) => {
                ShortcutCheckedFormativeAdditions::CnShortcut(value.as_general())
            }
        }
    }
}

impl From<AffixualFormativeAdditions> for ShortcutCheckedFormativeAdditions {
    fn from(value: AffixualFormativeAdditions) -> Self {
        value.as_general()
    }
}

impl TryAsSpecific<AffixualFormativeAdditions> for ShortcutCheckedFormativeAdditions {
    fn try_as_specific(self) -> Option<AffixualFormativeAdditions> {
        match self {
            Self::Normal(value) => {
                Some(AffixualFormativeAdditions::Normal(value.try_as_specific()?))
            }
            Self::CnShortcut(value) => Some(AffixualFormativeAdditions::CnShortcut(
                value.try_as_specific()?,
            )),
            Self::CaShortcut(_) => None,
        }
    }
}