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
//! AST for surface syntax, modelled on [`syn`]'s ASTs.
#![allow(clippy::allow_attributes, missing_docs, reason = "internal use")]

use std::fmt::Debug;
use std::hash::Hash;

use proc_macro2::{Span, TokenStream};
use quote::ToTokens;
use syn::parse::{Parse, ParseStream};
use syn::punctuated::Punctuated;
use syn::token::{Brace, Bracket, Paren};
use syn::{
    braced, bracketed, parenthesized, AngleBracketedGenericArguments, Expr, ExprPath,
    GenericArgument, Ident, ItemUse, LitInt, Path, PathArguments, PathSegment, Token,
};

use crate::process_singletons::preprocess_singletons;

pub struct HfCode {
    pub statements: Vec<HfStatement>,
}
impl Parse for HfCode {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let mut statements = Vec::new();
        while !input.is_empty() {
            statements.push(input.parse()?);
        }
        Ok(HfCode { statements })
    }
}
impl ToTokens for HfCode {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        for statement in self.statements.iter() {
            statement.to_tokens(tokens);
        }
    }
}

pub enum HfStatement {
    Use(ItemUse),
    Named(NamedHfStatement),
    Pipeline(PipelineStatement),
    Loop(LoopStatement),
}
impl Parse for HfStatement {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let lookahead1 = input.lookahead1();
        if lookahead1.peek(Token![use]) {
            Ok(Self::Use(ItemUse::parse(input)?))
        } else if lookahead1.peek(Paren) || lookahead1.peek(Bracket) || lookahead1.peek(Token![mod])
        {
            Ok(Self::Pipeline(PipelineStatement::parse(input)?))
        } else if lookahead1.peek(Token![loop]) {
            Ok(Self::Loop(LoopStatement::parse(input)?))
        } else if lookahead1.peek(Ident) {
            let fork = input.fork();
            let _: Path = fork.parse()?;
            let lookahead2 = fork.lookahead1();
            if lookahead2.peek(Token![=]) {
                Ok(Self::Named(NamedHfStatement::parse(input)?))
            } else if lookahead2.peek(Token![->])
                || lookahead2.peek(Paren)
                || lookahead2.peek(Bracket)
            {
                Ok(Self::Pipeline(PipelineStatement::parse(input)?))
            } else {
                Err(lookahead2.error())
            }
        } else {
            Err(lookahead1.error())
        }
    }
}
impl ToTokens for HfStatement {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        match self {
            Self::Use(x) => x.to_tokens(tokens),
            Self::Named(x) => x.to_tokens(tokens),
            Self::Pipeline(x) => x.to_tokens(tokens),
            Self::Loop(x) => x.to_tokens(tokens),
        }
    }
}

pub struct NamedHfStatement {
    pub name: Ident,
    pub equals: Token![=],
    pub pipeline: Pipeline,
    pub semi_token: Token![;],
}
impl Parse for NamedHfStatement {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let name = input.parse()?;
        let equals = input.parse()?;
        let pipeline = input.parse()?;
        let semi_token = input.parse()?;
        Ok(Self {
            name,
            equals,
            pipeline,
            semi_token,
        })
    }
}
impl ToTokens for NamedHfStatement {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.name.to_tokens(tokens);
        self.equals.to_tokens(tokens);
        self.pipeline.to_tokens(tokens);
        self.semi_token.to_tokens(tokens);
    }
}

pub struct PipelineStatement {
    pub pipeline: Pipeline,
    pub semi_token: Token![;],
}
impl Parse for PipelineStatement {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let pipeline = input.parse()?;
        let semi_token = input.parse()?;
        Ok(Self {
            pipeline,
            semi_token,
        })
    }
}
impl ToTokens for PipelineStatement {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.pipeline.to_tokens(tokens);
        self.semi_token.to_tokens(tokens);
    }
}

#[derive(Clone, Debug)]
pub enum Pipeline {
    Paren(Ported<PipelineParen>),
    Name(Ported<Ident>),
    Link(PipelineLink),
    Operator(Operator),
    ModuleBoundary(Ported<Token![mod]>),
}
impl Pipeline {
    fn parse_one(input: ParseStream) -> syn::Result<Self> {
        let lookahead1 = input.lookahead1();

        // Leading indexing
        if lookahead1.peek(Bracket) {
            let inn_idx = input.parse()?;
            let lookahead2 = input.lookahead1();
            // Indexed paren
            if lookahead2.peek(Paren) {
                Ok(Self::Paren(Ported::parse_rest(Some(inn_idx), input)?))
            }
            // Indexed name
            else if lookahead2.peek(Ident) {
                Ok(Self::Name(Ported::parse_rest(Some(inn_idx), input)?))
            }
            // Indexed module boundary
            else if lookahead2.peek(Token![mod]) {
                Ok(Self::ModuleBoundary(Ported::parse_rest(
                    Some(inn_idx),
                    input,
                )?))
            }
            // Emit lookahead expected tokens errors.
            else {
                Err(lookahead2.error())
            }
        // module input/output
        } else if lookahead1.peek(Token![mod]) {
            Ok(Self::ModuleBoundary(input.parse()?))
        // Ident or macro-style expression
        } else if lookahead1.peek(Ident) {
            let speculative = input.fork();
            let _ident: Ident = speculative.parse()?;

            // If has paren or generic next, it's an operator
            if speculative.peek(Paren)
                || speculative.peek(Token![<])
                || speculative.peek(Token![::])
            {
                Ok(Self::Operator(input.parse()?))
            }
            // Otherwise it's a variable name
            else {
                Ok(Self::Name(input.parse()?))
            }
        }
        // Paren group
        else if lookahead1.peek(Paren) {
            Ok(Self::Paren(input.parse()?))
        }
        // Emit lookahead expected tokens errors.
        else {
            Err(lookahead1.error())
        }
    }
}
impl Parse for Pipeline {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let lhs = Pipeline::parse_one(input)?;
        if input.is_empty() || input.peek(Token![;]) {
            Ok(lhs)
        } else {
            let arrow = input.parse()?;
            let rhs = input.parse()?;
            let lhs = Box::new(lhs);
            Ok(Self::Link(PipelineLink { lhs, arrow, rhs }))
        }
    }
}
impl ToTokens for Pipeline {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        match self {
            Self::Paren(x) => x.to_tokens(tokens),
            Self::Link(x) => x.to_tokens(tokens),
            Self::Name(x) => x.to_tokens(tokens),
            Self::Operator(x) => x.to_tokens(tokens),
            Self::ModuleBoundary(x) => x.to_tokens(tokens),
        }
    }
}

pub struct LoopStatement {
    pub loop_token: Token![loop],
    pub ident: Option<Ident>,
    pub brace_token: Brace,
    pub statements: Vec<HfStatement>,
}
impl Parse for LoopStatement {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let loop_token = input.parse()?;
        let ident = input.parse()?;
        let content;
        let brace_token = braced!(content in input);
        let mut statements = Vec::new();
        while !content.is_empty() {
            statements.push(content.parse()?);
        }
        Ok(Self {
            loop_token,
            ident,
            brace_token,
            statements,
        })
    }
}
impl ToTokens for LoopStatement {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.loop_token.to_tokens(tokens);
        self.ident.to_tokens(tokens);
        self.brace_token.surround(tokens, |tokens| {
            for statement in self.statements.iter() {
                statement.to_tokens(tokens);
            }
        });
    }
}

#[derive(Clone, Debug)]
pub struct Ported<Inner> {
    pub inn: Option<Indexing>,
    pub inner: Inner,
    pub out: Option<Indexing>,
}
impl<Inner> Ported<Inner>
where
    Inner: Parse,
{
    /// The caller will often parse the first port (`inn`) as part of determining what to parse
    /// next, so this will do the rest after that.
    fn parse_rest(inn: Option<Indexing>, input: ParseStream) -> syn::Result<Self> {
        let inner = input.parse()?;
        let out = input.call(Indexing::parse_opt)?;
        Ok(Self { inn, inner, out })
    }
}
impl<Inner> Parse for Ported<Inner>
where
    Inner: Parse,
{
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let inn = input.call(Indexing::parse_opt)?;
        Self::parse_rest(inn, input)
    }
}
impl<Inner> ToTokens for Ported<Inner>
where
    Inner: ToTokens,
{
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.inn.to_tokens(tokens);
        self.inner.to_tokens(tokens);
        self.out.to_tokens(tokens);
    }
}

#[derive(Clone, Debug)]
pub struct PipelineParen {
    pub paren_token: Paren,
    pub pipeline: Box<Pipeline>,
}
impl Parse for PipelineParen {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let content;
        let paren_token = parenthesized!(content in input);
        let pipeline = content.parse()?;
        Ok(Self {
            paren_token,
            pipeline,
        })
    }
}
impl ToTokens for PipelineParen {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.paren_token.surround(tokens, |tokens| {
            self.pipeline.to_tokens(tokens);
        });
    }
}

#[derive(Clone, Debug)]
pub struct PipelineLink {
    pub lhs: Box<Pipeline>,
    pub arrow: Token![->],
    pub rhs: Box<Pipeline>,
}
impl Parse for PipelineLink {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let lhs = input.parse()?;
        let arrow = input.parse()?;
        let rhs = input.parse()?;

        Ok(Self { lhs, arrow, rhs })
    }
}
impl ToTokens for PipelineLink {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.lhs.to_tokens(tokens);
        self.arrow.to_tokens(tokens);
        self.rhs.to_tokens(tokens);
    }
}

#[derive(Clone, Debug)]
pub struct Indexing {
    pub bracket_token: Bracket,
    pub index: PortIndex,
}
impl Indexing {
    fn parse_opt(input: ParseStream) -> syn::Result<Option<Self>> {
        input.peek(Bracket).then(|| input.parse()).transpose()
    }
}
impl Parse for Indexing {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let content;
        let bracket_token = bracketed!(content in input);
        let index = content.parse()?;
        Ok(Self {
            bracket_token,
            index,
        })
    }
}
impl ToTokens for Indexing {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.bracket_token.surround(tokens, |tokens| {
            self.index.to_tokens(tokens);
        });
    }
}

/// Port can either be an int or a name (path).
#[derive(Clone, Debug)]
pub enum PortIndex {
    Int(IndexInt),
    Path(ExprPath),
}
impl Parse for PortIndex {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let lookahead = input.lookahead1();
        if lookahead.peek(LitInt) {
            input.parse().map(Self::Int)
        } else {
            input.parse().map(Self::Path)
        }
    }
}
impl ToTokens for PortIndex {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        match self {
            PortIndex::Int(index_int) => index_int.to_tokens(tokens),
            PortIndex::Path(expr_path) => expr_path.to_tokens(tokens),
        }
    }
}

#[derive(Clone)]
pub struct Operator {
    pub path: Path,
    pub paren_token: Paren,
    pub args_raw: TokenStream,
    pub args: Punctuated<Expr, Token![,]>,
    pub singletons_referenced: Vec<Ident>,
}

impl Operator {
    pub fn name(&self) -> Path {
        Path {
            leading_colon: self.path.leading_colon,
            segments: self
                .path
                .segments
                .iter()
                .map(|seg| PathSegment {
                    ident: seg.ident.clone(),
                    arguments: PathArguments::None,
                })
                .collect(),
        }
    }

    pub fn name_string(&self) -> String {
        self.name().to_token_stream().to_string()
    }

    pub fn type_arguments(&self) -> Option<&Punctuated<GenericArgument, Token![,]>> {
        let end = self.path.segments.last()?;
        if let PathArguments::AngleBracketed(type_args) = &end.arguments {
            Some(&type_args.args)
        } else {
            None
        }
    }

    pub fn args(&self) -> &Punctuated<Expr, Token![,]> {
        &self.args
    }

    /// Output the operator as a formatted string using `prettyplease`.
    pub fn to_pretty_string(&self) -> String {
        // TODO(mingwei): preserve #args_raw instead of just args?
        let file: syn::File = syn::parse_quote! {
            fn main() {
                #self
            }
        };
        let str = prettyplease::unparse(&file);
        str.trim_start()
            .trim_start_matches("fn main()")
            .trim_start()
            .trim_start_matches('{')
            .trim_start()
            .trim_end()
            .trim_end_matches('}')
            .trim_end()
            .replace("\n    ", "\n") // Remove extra leading indent
    }
}
impl Parse for Operator {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let path: Path = input.parse()?;
        if let Some(path_seg) = path.segments.iter().find(|path_seg| {
            matches!(
                &path_seg.arguments,
                PathArguments::AngleBracketed(AngleBracketedGenericArguments {
                    colon2_token: None,
                    ..
                })
            )
        }) {
            return Err(syn::Error::new_spanned(
                path_seg,
                "Missing `::` before `<...>` generic arguments",
            ));
        }

        let content;
        let paren_token = parenthesized!(content in input);
        let args_raw: TokenStream = content.parse()?;
        let mut singletons_referenced = Vec::new();
        let args = parse_terminated(preprocess_singletons(
            args_raw.clone(),
            &mut singletons_referenced,
        ))?;

        Ok(Self {
            path,
            paren_token,
            args_raw,
            args,
            singletons_referenced,
        })
    }
}

impl ToTokens for Operator {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        self.path.to_tokens(tokens);
        self.paren_token.surround(tokens, |tokens| {
            self.args.to_tokens(tokens);
        });
    }
}

impl Debug for Operator {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Operator")
            .field("path", &self.path.to_token_stream().to_string())
            .field(
                "args",
                &self
                    .args
                    .iter()
                    .map(|a| a.to_token_stream().to_string())
                    .collect::<Vec<_>>(),
            )
            .finish()
    }
}

#[derive(Clone, Copy, Debug)]
pub struct IndexInt {
    pub value: isize,
    pub span: Span,
}
impl Parse for IndexInt {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let lit_int: LitInt = input.parse()?;
        let value = lit_int.base10_parse()?;
        Ok(Self {
            value,
            span: lit_int.span(),
        })
    }
}
impl ToTokens for IndexInt {
    fn to_tokens(&self, tokens: &mut TokenStream) {
        let lit_int = LitInt::new(&self.value.to_string(), self.span);
        lit_int.to_tokens(tokens)
    }
}
impl Hash for IndexInt {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.value.hash(state);
    }
}
impl PartialEq for IndexInt {
    fn eq(&self, other: &Self) -> bool {
        self.value == other.value
    }
}
impl Eq for IndexInt {}
impl PartialOrd for IndexInt {
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        Some(self.cmp(other))
    }
}
impl Ord for IndexInt {
    fn cmp(&self, other: &Self) -> std::cmp::Ordering {
        self.value.cmp(&other.value)
    }
}

pub fn parse_terminated<T, P>(tokens: TokenStream) -> syn::Result<Punctuated<T, P>>
where
    T: Parse,
    P: Parse,
{
    struct ParseTerminated<T, P>(pub Punctuated<T, P>);
    impl<T, P> Parse for ParseTerminated<T, P>
    where
        T: Parse,
        P: Parse,
    {
        fn parse(input: ParseStream) -> syn::Result<Self> {
            Ok(Self(Punctuated::parse_terminated(input)?))
        }
    }

    Ok(syn::parse2::<ParseTerminated<T, P>>(tokens)?.0)
}

#[cfg(test)]
mod test {
    use syn::parse_quote;

    use super::*;

    #[test]
    fn test_operator_to_pretty_string() {
        let op: Operator = parse_quote! {
            demux(|(msg, addr), var_args!(clients, msgs, errs)|
                match msg {
                    Message::ConnectRequest => clients.give(addr),
                    Message::ChatMsg {..} => msgs.give(msg),
                    _ => errs.give(msg),
                }
            )
        };
        assert_eq!(
            r"
demux(|(msg, addr), var_args!(clients, msgs, errs)| match msg {
    Message::ConnectRequest => clients.give(addr),
    Message::ChatMsg { .. } => msgs.give(msg),
    _ => errs.give(msg),
})
"
            .trim(),
            op.to_pretty_string()
        );
    }
}