aboutsummaryrefslogtreecommitdiffstats
path: root/cms-backd/src/resolver.rs
blob: 784e797868c6969d154e32d17badf6f56bf6c46b (plain)
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
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
// -*- coding: utf-8 -*-
//
// Simple CMS
//
// Copyright (C) 2011-2024 Michael Büsch <m@bues.ch>
//
// Licensed under the Apache License version 2.0
// or the MIT license, at your option.
// SPDX-License-Identifier: Apache-2.0 OR MIT

use crate::{
    anchor::Anchor,
    args::CmsGetArgs,
    comm::CmsComm,
    config::CmsConfig,
    index::IndexRef,
    itertools::{iter_cons_until, iter_cons_until_in, iter_cons_until_not_in},
    navtree::NavTree,
    numparse::{parse_f64, parse_i64, parse_usize},
    pagegen::PageGen,
};
use anyhow::{self as ah, format_err as err};
use async_recursion::async_recursion;
use cms_ident::{CheckedIdent, Ident};
use crunchy::unroll;
use peekable_fwd_bwd::Peekable;
use rand::prelude::*;
use std::{collections::HashMap, sync::Arc};

pub type VarName<'a> = &'a str;
pub type VarFn<'a> = Arc<dyn Fn(&str) -> String + Send + Sync + 'a>;

macro_rules! getvar {
    ($expression:expr) => {
        Arc::new(|_| $expression)
    };
}
pub(crate) use getvar;

const ESCAPE_CHARS: [char; 6] = ['\\', ',', '@', '$', '(', ')'];
const NUMBER_CHARS: [char; 10] = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
const VARNAME_CHARS: [char; 27] = [
    'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S',
    'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '_',
];
const MACRO_STACK_SIZE_ALLOC: usize = 16;
const MACRO_STACK_SIZE_MAX: usize = 128;
const MACRO_NAME_SIZE_MAX: usize = 64;
const NUM_ARGS_MAX: usize = 128;
const NUM_ARGS_ALLOC: usize = 16;
const NUM_ARG_RECURSION_MAX: usize = 128;
const EXPAND_CAPACITY_DEF: usize = 4096;

type Chars<'a> = Peekable<std::str::Chars<'a>, 2, 4>;

struct ResolverStackElem {
    lineno: u32,
    name: String,
    args: Vec<String>,
}

impl ResolverStackElem {
    pub fn new(lineno: u32, name: &str, args: Vec<String>) -> Self {
        Self {
            lineno,
            name: name.to_string(),
            args,
        }
    }

    pub fn lineno(&self) -> u32 {
        self.lineno
    }

    pub fn set_lineno(&mut self, lineno: u32) {
        self.lineno = lineno;
    }

    pub fn name(&self) -> &str {
        &self.name
    }

    pub fn get_arg(&self, index: usize) -> &str {
        if index < self.args.len() {
            self.args[index].trim()
        } else {
            ""
        }
    }
}

struct ResolverStack {
    elems: Vec<ResolverStackElem>,
}

impl ResolverStack {
    pub fn new() -> Self {
        let mut elems = Vec::with_capacity(MACRO_STACK_SIZE_ALLOC);
        elems.push(ResolverStackElem::new(1, "content.html", vec![]));
        Self { elems }
    }

    pub fn len(&self) -> usize {
        self.elems.len()
    }

    pub fn push(&mut self, elem: ResolverStackElem) {
        self.elems.push(elem);
    }

    pub fn pop(&mut self) -> Option<ResolverStackElem> {
        assert!(self.elems.len() > 1); // must not pop the last element.
        self.elems.pop()
    }

    pub fn top(&self) -> &ResolverStackElem {
        let len = self.elems.len();
        &self.elems[len - 1]
    }

    pub fn top_mut(&mut self) -> &mut ResolverStackElem {
        let len = self.elems.len();
        &mut self.elems[len - 1]
    }
}

pub struct ResolverVars<'a> {
    vars: HashMap<VarName<'a>, VarFn<'a>>,
    prefixes: HashMap<VarName<'a>, VarFn<'a>>,
}

impl<'a> ResolverVars<'a> {
    pub fn new() -> Self {
        let mut this = Self {
            vars: HashMap::with_capacity(32),
            prefixes: HashMap::with_capacity(8),
        };
        this.register("BR", getvar!("<br />".to_string()));
        this
    }

    pub fn register(&mut self, name: VarName<'a>, fun: VarFn<'a>) {
        self.vars.insert(name, fun);
    }

    pub fn register_prefix(&mut self, prefix: VarName<'a>, fun: VarFn<'a>) {
        self.prefixes.insert(prefix, fun);
    }

    pub fn get(&self, name: VarName<'_>) -> String {
        // Find normal variable.
        if let Some(fun) = self.vars.get(name) {
            // Call the getter.
            return Resolver::escape(&fun(name));
        }
        // Find variable by prefix.
        if let Some(index) = name.find('_') {
            if index > 0 {
                if let Some(fun) = self.prefixes.get(&name[..index]) {
                    // Call the getter.
                    return Resolver::escape(&fun(name));
                }
            }
        }
        // No variable found.
        String::new()
    }
}

pub struct Resolver<'a> {
    comm: &'a mut CmsComm,
    get: &'a CmsGetArgs,
    config: Arc<CmsConfig>,
    parent: &'a CheckedIdent,
    vars: &'a ResolverVars<'a>,
    stack: ResolverStack,
    args_recursion: usize,
    char_index: usize,
    index_refs: Vec<IndexRef>,
    anchors: Vec<Anchor>,
}

impl<'a> Resolver<'a> {
    pub fn escape(text: &str) -> String {
        let mut escaped = String::with_capacity(text.len() * 2);
        'mainloop: for c in text.chars() {
            debug_assert_eq!(ESCAPE_CHARS.len(), 6);
            unroll! {
                for i in 0..6 {
                    if c == ESCAPE_CHARS[i] {
                        escaped.push('\\');
                        escaped.push(c);
                        continue 'mainloop;
                    }
                }
            }
            escaped.push(c);
        }
        escaped
    }

    pub fn unescape(text: &str) -> String {
        let mut unescaped = String::with_capacity(text.len());
        let mut text_chars = text.chars();
        while let Some(c) = text_chars.next() {
            if c == '\\' {
                if let Some(nc) = text_chars.next() {
                    unescaped.push(nc);
                }
            } else {
                unescaped.push(c);
            }
        }
        unescaped
    }

    pub fn new(
        comm: &'a mut CmsComm,
        get: &'a CmsGetArgs,
        config: Arc<CmsConfig>,
        parent: &'a CheckedIdent,
        vars: &'a ResolverVars<'a>,
    ) -> Self {
        Self {
            comm,
            get,
            config,
            parent,
            vars,
            stack: ResolverStack::new(),
            args_recursion: 0,
            char_index: 0,
            index_refs: vec![],
            anchors: vec![],
        }
    }

    fn next(&mut self, chars: &mut Chars<'_>) -> Option<char> {
        if let Some(c) = chars.next() {
            if c == '\n' {
                let top = self.stack.top_mut();
                top.set_lineno(top.lineno() + 1);
            }
            Some(c)
        } else {
            None
        }
    }

    fn stmterr(&self, msg: &str) -> ah::Result<String> {
        let e = if self.config.debug() {
            let top = self.stack.top();
            err!("{}:{}: {}", top.name(), top.lineno(), msg)
        } else {
            err!("{msg}")
        };
        Err(e)
    }

    #[async_recursion]
    async fn parse_args(&mut self, chars: &mut Chars<'_>) -> ah::Result<Vec<String>> {
        if self.args_recursion > NUM_ARG_RECURSION_MAX {
            self.stmterr("Argument parsing recursion too deep")?;
            unreachable!();
        }
        let mut ret = Vec::with_capacity(NUM_ARGS_ALLOC);
        if chars.peek_bwd() == Some(&')') {
            // no arg
            ret.push("".to_string());
        } else {
            while chars.peek().is_some() {
                if ret.len() >= NUM_ARGS_MAX {
                    self.stmterr("Too many arguments")?;
                    unreachable!();
                }
                self.args_recursion += 1;
                let arg = self.expand(chars, &[',', ')']).await?;
                self.args_recursion -= 1;
                ret.push(arg);
                if chars.peek_bwd() == Some(&')') {
                    break;
                }
            }
        }
        Ok(ret)
    }

    #[async_recursion]
    async fn do_macro(
        &mut self,
        macro_name_str: &str,
        chars: &mut Chars<'_>,
    ) -> ah::Result<String> {
        if self.stack.len() > MACRO_STACK_SIZE_MAX {
            return self.stmterr("Macro stack overflow");
        }

        if macro_name_str.len() > MACRO_NAME_SIZE_MAX {
            return self.stmterr("Macro name is too long");
        }
        let Ok(macro_name) = macro_name_str.parse::<Ident>() else {
            return self.stmterr("Macro name is invalid");
        };
        let Ok(macro_name) = macro_name.into_checked_element() else {
            return self.stmterr("Macro name contains invalid characters");
        };

        let args = self.parse_args(chars).await?;
        let data = self
            .comm
            .get_db_macro(Some(self.parent), &macro_name)
            .await?;

        // Remove empty lines
        let mut cleaned_data = String::with_capacity(data.len());
        let mut first = true;
        for line in data.lines() {
            if !line.trim().is_empty() {
                if !first {
                    cleaned_data.push('\n');
                }
                cleaned_data.push_str(line);
                first = false;
            }
        }

        let mut data = Chars::new(cleaned_data.chars());
        let el = ResolverStackElem::new(1, macro_name_str, args);

        self.stack.push(el);
        let data = self.expand(&mut data, &[]).await?;
        self.stack.pop();

        Ok(data)
    }

    fn expand_macro_arg(&self, arg_name: &str) -> ah::Result<String> {
        let top = self.stack.top();
        let arg_idx = parse_usize(arg_name)?;
        if arg_idx == 0 {
            Ok(top.name().to_string())
        } else {
            Ok(top.get_arg(arg_idx - 1).to_string())
        }
    }

    /// Evaluate a CONDITION and return THEN or ELSE based on the CONDITION.
    /// If ELSE is not specified, then this statement uses an empty string instead of ELSE.
    ///
    /// Statement: $(if CONDITION, THEN, ELSE)
    /// Statement: $(if CONDITION, THEN)
    ///
    /// Returns: THEN if CONDITION is not empty after stripping whitespace.
    /// Returns: ELSE otherwise.
    async fn expand_statement_if(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 2 && nargs != 3 {
            return self.stmterr("IF: invalid number of args");
        }
        let condition = &args[0];
        let b_then = &args[1];
        let b_else = if nargs == 3 { &args[2] } else { "" };
        let result = if condition.trim().is_empty() {
            b_else
        } else {
            b_then
        };
        Ok(result.to_string())
    }

    async fn expand_statement_eq_ne(
        &mut self,
        chars: &mut Chars<'_>,
        ne: bool,
    ) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs < 2 {
            if ne {
                return self.stmterr("NE: invalid args");
            }
            return self.stmterr("EQ: invalid args");
        }
        let all_equal = args
            .iter()
            .map(|a| Some(a.trim()))
            .reduce(|a, b| if a == b { a } else { None })
            .unwrap()
            .is_some();
        let cond = if ne { !all_equal } else { all_equal };
        let result = if cond {
            "1".to_string()
        } else {
            "".to_string()
        };
        Ok(result)
    }

    /// Compares two or more strings for equality.
    ///
    /// Statement: $(eq A, B, ...)
    ///
    /// Returns: 1, if all stripped arguments are equal.
    /// Returns: An empty string otherwise.
    async fn expand_statement_eq(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        self.expand_statement_eq_ne(chars, false).await
    }

    /// Compares two or more strings for inequality.
    ///
    /// Statement: $(ne A, B, ...)
    ///
    /// Returns: 1, if not all stripped arguments are equal.
    /// Returns: An empty string otherwise.
    async fn expand_statement_ne(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        self.expand_statement_eq_ne(chars, true).await
    }

    /// Compares all arguments with logical AND operation.
    ///
    /// Statement: $(and A, B, ...)
    ///
    /// Returns: The first stripped argument (A), if all stripped arguments are non-empty strings.
    /// Returns: An empty string otherwise.
    async fn expand_statement_and(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs < 2 {
            return self.stmterr("AND: invalid args");
        }
        let all_nonempty = args.iter().all(|a| !a.trim().is_empty());
        let result = if all_nonempty { &args[0] } else { "" };
        Ok(result.to_string())
    }

    /// Compares all arguments with logical OR operation.
    ///
    /// Statement: $(or A, B, ...)
    ///
    /// Returns: The first stripped non-empty argument.
    /// Returns: An empty string, if there is no non-empty argument.
    async fn expand_statement_or(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs < 2 {
            return self.stmterr("OR: invalid args");
        }
        for arg in args {
            let trimmed = arg.trim();
            if !trimmed.is_empty() {
                return Ok(trimmed.to_string());
            }
        }
        Ok(String::new())
    }

    /// Logically invert the boolean argument.
    ///
    /// Statement: $(not A)
    ///
    /// Returns: 1, if the stripped argument A is an empty string.
    /// Returns: An empty string otherwise.
    async fn expand_statement_not(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 1 {
            return self.stmterr("NOT: invalid args");
        }
        let result = if args[0].trim().is_empty() { "1" } else { "" };
        Ok(result.to_string())
    }

    /// Debug assertion.
    /// Aborts the program, if any argument is an empty string.
    ///
    /// Statement: $(assert A, ...)
    ///
    /// Returns an error, if any argument is empty after stripping.
    /// Returns: An empty string, otherwise.
    async fn expand_statement_assert(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs == 0 {
            return self.stmterr("ASSERT: missing argument");
        }
        let all_nonempty = args.iter().all(|a| !a.trim().is_empty());
        if !all_nonempty {
            return self.stmterr("ASSERT: failed");
        }
        Ok(String::new())
    }

    /// Strip whitespace at the start and at the end of all arguments.
    /// Concatenate all arguments.
    ///
    /// Statement: $(strip A, ...)
    ///
    /// Returns: All arguments stripped and concatenated.
    async fn expand_statement_strip(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        let mut result = String::with_capacity(if nargs > 0 { args[0].len() } else { 0 });
        for arg in args {
            result.push_str(arg.trim());
        }
        Ok(result)
    }

    /// Select an item from a list.
    /// Splits the STRING argument into tokens and return the N'th token.
    /// The token SEPARATOR defaults to whitespace.
    ///
    /// Statement: $(item STRING, N)
    /// Statement: $(item STRING, N, SEPARATOR)
    ///
    /// Returns: The N'th token.
    async fn expand_statement_item(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 2 && nargs != 3 {
            return self.stmterr("ITEM: invalid args");
        }
        let string = &args[0];
        let n = &args[1];
        let Ok(n) = parse_usize(n) else {
            return self.stmterr("ITEM: N is not an integer");
        };
        let sep = if nargs == 3 { args[2].trim() } else { "" };
        if sep.is_empty() {
            Ok(string
                .split_ascii_whitespace()
                .nth(n)
                .unwrap_or("")
                .to_string())
        } else {
            Ok(string.split(sep).nth(n).unwrap_or("").to_string())
        }
    }

    /// Check if a list contains an item.
    /// HAYSTACK is a list separated by SEPARATOR.
    /// SEPARATOR defaults to whitespace.
    ///
    /// Statement: $(contains HAYSTACK, NEEDLE)
    /// Statement: $(contains HAYSTACK, NEEDLE, SEPARATOR)
    ///
    /// Returns: NEEDLE, if HAYSTACK contains the stripped NEEDLE.
    async fn expand_statement_contains(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 2 && nargs != 3 {
            return self.stmterr("CONTAINS: invalid args");
        }
        let haystack = &args[0];
        let needle = args[1].trim();
        let sep = if nargs == 3 { args[2].trim() } else { "" };
        let result = if sep.is_empty() {
            haystack.split_ascii_whitespace().any(|x| x == needle)
        } else {
            haystack.split(sep).any(|x| x == needle)
        };
        Ok(if result {
            needle.to_string()
        } else {
            "".to_string()
        })
    }

    /// Cut a sub string out of the STRING argument.
    /// START is the first character index of the sub string.
    /// END is the last character index of the sub string plus 1.
    /// END defaults to START + 1.
    ///
    /// Statement: $(substr STRING, START)
    /// Statement: $(substr STRING, START, END)
    ///
    /// Returns: The sub string of STRING starting at START index up to (but not including) END index.
    async fn expand_statement_substr(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 2 && nargs != 3 {
            return self.stmterr("SUBSTR: invalid args");
        }
        let string: Vec<char> = args[0].chars().collect();
        let Ok(mut start) = parse_usize(&args[1]) else {
            return self.stmterr("SUBSTR: START is not a valid integer");
        };
        let mut end = if nargs == 3 {
            let Ok(end) = parse_usize(&args[2]) else {
                return self.stmterr("SUBSTR: END is not a valid integer");
            };
            end
        } else {
            start.saturating_add(1)
        };
        start = start.min(string.len());
        end = end.min(string.len());
        let substr = string[start..end].iter().collect();
        Ok(substr)
    }

    /// Sanitize a string.
    /// Concatenates all arguments with an underscore as separator.
    /// Replaces all non-alphanumeric characters by an underscore. Forces lower-case.
    ///
    /// Statement: $(sanitize STRING, ...)
    ///
    /// Returns: The sanitized string.
    async fn expand_statement_sanitize(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs == 0 {
            return self.stmterr("SANITIZE: invalid args");
        }
        let mut string = args.join("_");
        let mut cleaned = String::with_capacity(string.len());
        string.make_ascii_lowercase();
        let string = string.chars().map(|c| {
            if c.is_ascii_lowercase() || c.is_ascii_digit() {
                c
            } else {
                '_'
            }
        });
        let mut prev = None;
        for c in string {
            if c != '_' || Some(c) != prev {
                cleaned.push(c);
            }
            prev = Some(c);
        }
        let cleaned = cleaned.trim_matches('_').to_string();
        Ok(cleaned)
    }

    /// Generate the site index.
    ///
    /// Statement: $(index)
    ///
    /// Returns: The site index.
    async fn expand_statement_index(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 1 || !args[0].trim().is_empty() {
            return self.stmterr("INDEX: invalid args");
        }
        self.index_refs.push(IndexRef::new(self.char_index));
        Ok(String::new())
    }

    /// Set an new site index anchor.
    /// NAME is the html-id of the new anchor.
    /// TEXT is the html-text of the new anchor.
    ///
    /// Statement: $(anchor NAME, TEXT)
    /// Statement: $(anchor NAME, TEXT, INDENT_LEVEL)
    /// Statement: $(anchor NAME, TEXT, INDENT_LEVEL, NO_INDEX)
    ///
    /// Returns: The site index anchor HTML code.
    async fn expand_statement_anchor(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 2 && nargs != 3 && nargs != 4 {
            return self.stmterr("ANCHOR: invalid args");
        }
        let name = args[0].trim();
        let text = args[1].trim();
        let indent = if nargs >= 3 && !args[2].trim().is_empty() {
            let Ok(indent) = parse_i64(&args[2]) else {
                return self.stmterr("ANCHOR: indent level is not an integer");
            };
            indent
        } else {
            -1
        };
        let no_index = nargs >= 4 && !args[3].trim().is_empty();
        let anchor = Anchor::new(name, text, indent, no_index);
        let html = anchor.make_html(self, true)?;
        // Cache anchor for index creation.
        self.anchors.push(anchor);
        // Create the anchor HTML.
        Ok(html)
    }

    /// Get the navigation elements html code of all sub-page names in the page.
    ///
    /// Statement: $(pagelist BASEPAGE)
    ///
    /// Returns: The navigation elements html code.
    async fn expand_statement_pagelist(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 1 {
            return self.stmterr("PAGELIST: no base page argument");
        }
        let Ok(base_page_ident) = args[0].parse::<Ident>() else {
            return self.stmterr("PAGELIST: invalid base page name");
        };
        let Ok(base_page_ident) = base_page_ident.into_cleaned_path().into_checked() else {
            return self.stmterr("PAGELIST: invalid base page name");
        };
        let navtree = NavTree::build(self.comm, &base_page_ident, None).await;
        let pagegen = PageGen::new(self.get, Arc::clone(&self.config));
        let mut html = String::with_capacity(4096);
        if pagegen
            .generate_navelem(&mut html, navtree.elems(), 1)
            .is_err()
        {
            return self.stmterr("PAGELIST: failed to generate nav tree html");
        }
        Ok(html)
    }

    /// Generate a random number.
    /// BEGIN defaults to 0.
    /// END defaults to 65535.
    ///
    /// Statement: $(random)
    /// Statement: $(random BEGIN)
    /// Statement: $(random BEGIN, END)
    ///
    /// Returns: A random integer in the range from BEGIN to END (including both end points).
    async fn expand_statement_random(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs > 2 {
            return self.stmterr("RANDOM: invalid args");
        }
        let begin = if nargs >= 1 && !args[0].trim().is_empty() {
            let Ok(begin) = parse_i64(&args[0]) else {
                return self.stmterr("RANDOM: invalid BEGIN");
            };
            begin
        } else {
            0
        };
        let end = if nargs >= 2 && !args[1].trim().is_empty() {
            let Ok(end) = parse_i64(&args[1]) else {
                return self.stmterr("RANDOM: invalid END");
            };
            end
        } else {
            65535
        };
        let random: i64 = thread_rng().gen_range(begin..=end);
        Ok(random.to_string())
    }

    /// Select a random item.
    ///
    /// Statement: $(randitem ITEM0, ...)
    ///
    /// Returns: One random item of its arguments.
    async fn expand_statement_randitem(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let Some(item) = args.choose(&mut thread_rng()) else {
            return self.stmterr("RANDITEM: too few args");
        };
        Ok(item.to_string())
    }

    async fn expand_statement_arithmetic<F>(
        &mut self,
        chars: &mut Chars<'_>,
        op: &str,
        f: F,
    ) -> ah::Result<String>
    where
        F: FnOnce(f64, f64) -> f64,
    {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 2 {
            return self.stmterr(&format!("{op}: invalid args"));
        }
        let a = parse_f64(&args[0]).unwrap_or(0.0);
        let b = parse_f64(&args[1]).unwrap_or(0.0);
        let res = f(a, b);
        if res.is_finite() {
            let rounded = res.round();
            const EPSILON: f64 = 1e-6;
            if (res - rounded).abs() >= EPSILON
                || rounded < i64::MIN as f64
                || rounded > i64::MAX as f64
            {
                Ok(res.to_string())
            } else {
                let as_int = rounded as i64;
                Ok(as_int.to_string())
            }
        } else {
            self.stmterr(&format!("{op}: Arithmetic error: Result is {res}"))
        }
    }

    /// Add two numbers (integer or float).
    /// Returns the result as an integer, if it is representable as an integer.
    /// Otherwise returns the result as a floating point number.
    ///
    /// Statement: $(add A, B)
    ///
    /// Returns: The result of A + B
    async fn expand_statement_add(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        self.expand_statement_arithmetic(chars, "ADD", |a, b| a + b)
            .await
    }

    /// Subtract two numbers (integer or float).
    /// Returns the result as an integer, if it is representable as an integer.
    /// Otherwise returns the result as a floating point number.
    ///
    /// Statement: $(sub A, B)
    ///
    /// Returns: The result of A - B
    async fn expand_statement_sub(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        self.expand_statement_arithmetic(chars, "SUB", |a, b| a - b)
            .await
    }

    /// Multiply two numbers (integer or float).
    /// Returns the result as an integer, if it is representable as an integer.
    /// Otherwise returns the result as a floating point number.
    ///
    /// Statement: $(mul A, B)
    ///
    /// Returns: The result of A * B
    async fn expand_statement_mul(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        self.expand_statement_arithmetic(chars, "MUL", |a, b| a * b)
            .await
    }

    /// Divide two numbers (integer or float).
    /// Returns the result as an integer, if it is representable as an integer.
    /// Otherwise returns the result as a floating point number.
    ///
    /// Statement: $(div A, B)
    ///
    /// Returns: The result of A / B
    async fn expand_statement_div(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        self.expand_statement_arithmetic(chars, "DIV", |a, b| a / b)
            .await
    }

    /// Divide two numbers (integer or float) and get the remainder.
    /// Returns the result as an integer, if it is representable as an integer.
    /// Otherwise returns the result as a floating point number.
    ///
    /// Statement: $(mod A, B)
    ///
    /// Returns: The result of remainder(A / B)
    async fn expand_statement_mod(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        self.expand_statement_arithmetic(chars, "MOD", |a, b| a % b)
            .await
    }

    /// Round a floating point number to the next integer.
    /// If NDIGITS is specified, then round to this number of decimal digits.
    ///
    /// Statement: $(round A)
    /// Statement: $(round A, NDIGITS)
    ///
    /// Returns: Argument A rounded.
    async fn expand_statement_round(&mut self, chars: &mut Chars<'_>) -> ah::Result<String> {
        let args = self.parse_args(chars).await?;
        let nargs = args.len();
        if nargs != 1 && nargs != 2 {
            return self.stmterr("ROUND: invalid args");
        }
        let a = parse_f64(&args[0]).unwrap_or(0.0);
        let b: usize = if nargs >= 2 {
            parse_i64(&args[1])
                .unwrap_or(0)
                .clamp(0, 64)
                .try_into()
                .unwrap()
        } else {
            0
        };
        if b == 0 {
            let rounded = a.round().clamp(i64::MIN as f64, i64::MAX as f64) as i64;
            Ok(rounded.to_string())
        } else {
            Ok(format!("{:.1$}", a, b))
        }
    }

    #[rustfmt::skip]
    async fn expand_statement(
        &mut self,
        stmt_name: &str,
        chars: &mut Chars<'_>,
    ) -> ah::Result<String> {
        match stmt_name {
            // conditional / string compare / boolean
            "if" => self.expand_statement_if(chars).await,
            "eq" => self.expand_statement_eq(chars).await,
            "ne" => self.expand_statement_ne(chars).await,
            "and" => self.expand_statement_and(chars).await,
            "or" => self.expand_statement_or(chars).await,
            "not" => self.expand_statement_not(chars).await,

            // debugging
            "assert" => self.expand_statement_assert(chars).await,

            // string processing
            "strip" => self.expand_statement_strip(chars).await,
            "item" => self.expand_statement_item(chars).await,
            "contains" => self.expand_statement_contains(chars).await,
            "substr" => self.expand_statement_substr(chars).await,
            "sanitize" => self.expand_statement_sanitize(chars).await,

            // page index / page info
            "index" => self.expand_statement_index(chars).await,
            "anchor" => self.expand_statement_anchor(chars).await,
            "pagelist" => self.expand_statement_pagelist(chars).await,

            // random numbers
            "random" => self.expand_statement_random(chars).await,
            "randitem" => self.expand_statement_randitem(chars).await,

            // arithmetic
            "add" => self.expand_statement_add(chars).await,
            "sub" => self.expand_statement_sub(chars).await,
            "mul" => self.expand_statement_mul(chars).await,
            "div" => self.expand_statement_div(chars).await,
            "mod" => self.expand_statement_mod(chars).await,
            "round" => self.expand_statement_round(chars).await,

            stmt => {
                if self.config.debug() {
                    self.stmterr(&format!("Unknown statement: {stmt}"))
                } else {
                    self.stmterr("Unknown statement")
                }
            }
        }
    }

    pub fn expand_variable(&self, var_name: &str) -> ah::Result<String> {
        Ok(self.vars.get(var_name))
    }

    fn skip_comment(&mut self, chars: &mut Chars<'_>) {
        let prev = chars.peek_bwd_nth(1).cloned();

        // Consume prefix.
        let _ = self.next(chars); // consume '!'
        let _ = self.next(chars); // consume '-'
        let _ = self.next(chars); // consume '-'
        let _ = self.next(chars); // consume '-'

        // Consume comment body.
        loop {
            let Some(c) = self.next(chars) else {
                break;
            };
            if c == '-'
                && chars.peek_nth(0) == Some(&'-')
                && chars.peek_nth(1) == Some(&'-')
                && chars.peek_nth(2) == Some(&'>')
            {
                // Consume suffix.
                let _ = self.next(chars); // consume '-'
                let _ = self.next(chars); // consume '-'
                let _ = self.next(chars); // consume '>'
                break;
            }
        }

        /* If the comment is on a line of its own, remove the line. */
        let next = chars.peek();
        if (prev.is_none() || prev == Some('\n')) && next == Some(&'\n') {
            let _ = self.next(chars); // consume '\n'
        }
    }

    async fn expand(&mut self, chars: &mut Chars<'_>, stop_chars: &[char]) -> ah::Result<String> {
        let mut exp = String::with_capacity(EXPAND_CAPACITY_DEF);
        'mainloop: while let Some(c) = self.next(chars) {
            let mut res: Option<String> = None;
            match c {
                '\\' if chars
                    .peek()
                    .map(|c| ESCAPE_CHARS.contains(c))
                    .unwrap_or(false) =>
                {
                    // Escaped characters
                    // Keep escapes. They are removed later.
                    let mut r = String::with_capacity(2);
                    r.push(c);
                    r.push(self.next(chars).unwrap());
                    res = Some(r);
                }
                '<' if chars.peek_nth(0) == Some(&'!')
                    && chars.peek_nth(1) == Some(&'-')
                    && chars.peek_nth(2) == Some(&'-')
                    && chars.peek_nth(3) == Some(&'-') =>
                {
                    // Comment
                    res = Some("".to_string()); // drop '<'
                    self.skip_comment(chars); // consume comment
                }
                _ if stop_chars.contains(&c) => {
                    // Stop character
                    break 'mainloop;
                }
                '@' => {
                    // Macro call
                    match iter_cons_until(chars, '(') {
                        Ok(macro_name) => {
                            let _ = self.next(chars); // consume '('
                            res = Some(self.do_macro(&macro_name, chars).await?);
                        }
                        Err(tail) => res = Some(tail),
                    }
                }
                '$' if chars.peek().map(|c| c.is_numeric()).unwrap_or(false) => {
                    // Macro argument
                    match iter_cons_until_not_in(chars, &NUMBER_CHARS) {
                        Ok(arg_name) => {
                            res = Some(self.expand_macro_arg(&arg_name)?);
                        }
                        Err(tail) => res = Some(tail),
                    }
                }
                '$' if chars.peek() == Some(&'(') => {
                    // Statement
                    match iter_cons_until_in(chars, &[' ', ')']) {
                        Ok(stmt_name) => {
                            let stmt_name = &stmt_name['('.len_utf8()..]; // Remove '('.
                            let _ = self.next(chars); // consume ' ' or ')'
                            res = Some(self.expand_statement(stmt_name, chars).await?);
                        }
                        Err(tail) => res = Some(tail),
                    }
                }
                '$' => {
                    // Variable
                    match iter_cons_until_not_in(chars, &VARNAME_CHARS) {
                        Ok(var_name) => {
                            res = Some(self.expand_variable(&var_name)?);
                        }
                        Err(tail) => res = Some(tail),
                    }
                }
                _ => (),
            }
            if let Some(res) = res {
                self.char_index += res.len();
                exp.push_str(&res);
            } else {
                self.char_index += c.len_utf8();
                exp.push(c);
            }
        }
        self.char_index -= exp.len();
        Ok(exp)
    }

    fn create_index(&self) -> ah::Result<String> {
        let pagegen = PageGen::new(self.get, Arc::clone(&self.config));
        pagegen.generate_index(&self.anchors, self)
    }

    fn insert_indices(&self, mut data: String) -> ah::Result<String> {
        let mut offs = 0;
        for index_ref in &self.index_refs {
            let idx_data = self.create_index()?;
            let idx_data = idx_data.trim_end();
            let cur_offs = offs + index_ref.char_index();
            let a = &data[0..cur_offs];
            let b = &data[cur_offs..];
            data = format!("{a}{idx_data}{b}");
            offs += idx_data.len();
        }
        Ok(data)
    }

    pub async fn run(mut self, input: &str) -> ah::Result<String> {
        let mut chars = Chars::new(input.chars());
        let data = self
            .expand(&mut chars, &[])
            .await
            .map_err(|e| err!("Resolver expand error: {e}"))?;
        let data = self
            .insert_indices(data)
            .map_err(|e| err!("Resolver index error: {e}"))?;
        Ok(Self::unescape(&data))
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_escape() {
        let a = "";
        let b = "";
        assert_eq!(Resolver::escape(a), b);

        let a = "\\,@$()";
        let b = "\\\\\\,\\@\\$\\(\\)";
        assert_eq!(Resolver::escape(a), b);

        let a = "abc\\def,@$x(x)x";
        let b = "abc\\\\def\\,\\@\\$x\\(x\\)x";
        assert_eq!(Resolver::escape(a), b);

        let a = "abc\\\\def\\,\\@\\$\\(\\)";
        let b = "abc\\def,@$()";
        assert_eq!(Resolver::unescape(a), b);

        let a = "abc\\"; // dangling escape
        let b = "abc";
        assert_eq!(Resolver::unescape(a), b);

        let a = "\\,@$()abc";
        let b = Resolver::escape(&Resolver::escape(&Resolver::escape(a)));
        let b = Resolver::unescape(&Resolver::unescape(&Resolver::unescape(&b)));
        assert_eq!(a, b);
    }
}

// vim: ts=4 sw=4 expandtab
bues.ch cgit interface