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
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
use std::borrow::{Borrow, Cow};
use std::collections::{BTreeMap, HashMap};
use std::fmt::{Debug, Formatter};
use std::ops::Deref;
use std::sync::Arc;

use cpclib_common::camino::Utf8PathBuf;
use cpclib_common::itertools::Itertools;
#[cfg(all(not(target_arch = "wasm32"), feature = "rayon"))]
use cpclib_common::rayon::prelude::*;
use cpclib_disc::amsdos::AmsdosFileType;
use cpclib_tokens::symbols::{SymbolFor, SymbolsTableTrait};
use cpclib_tokens::{
    AssemblerControlCommand, AssemblerFlavor, BinaryTransformation, ExprElement, ListingElement,
    MacroParamElement, TestKindElement, ToSimpleToken, Token
};
use either::Either;
use ouroboros::*;

use super::control::ControlOutputStore;
use super::file::{get_filename, load_binary, read_source};
use super::function::{Function, FunctionBuilder};
use super::r#macro::Expandable;
use super::AssemblerWarning;
use crate::implementation::expression::ExprEvaluationExt;
use crate::implementation::instructions::Cruncher;
use crate::preamble::{LocatedListing, MayHaveSpan, Z80Span};
use crate::progress::{self, Progress};
use crate::{parse_z80_with_context_builder, r#macro, AssemblerError, Env, LocatedToken, Visited};

/// Tokens are read only elements extracted from the parser
/// ProcessedTokens allow to maintain their state during assembling
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ProcessedToken<'token, T: Visited + Debug + ListingElement + Sync> {
    /// The token being processed by the assembler
    token: &'token T,
    state: Option<ProcessedTokenState<'token, T>>
}

/// Specific state to maintain for the current token
#[derive(Debug, Clone, PartialEq, Eq)]
enum ProcessedTokenState<'token, T: Visited + ListingElement + Debug + Sync> {
    RestrictedAssemblingEnvironment {
        listing: SimpleListingState<'token, T>,
        commands: Option<ControlOutputStore>
    },
    Confined(SimpleListingState<'token, T>),
    CrunchedSection {
        /// The token to assemble
        listing: SimpleListingState<'token, T>,
        // The bytes previously generated - to be compared to avoid a second slow assembling
        previous_bytes: Option<Vec<u8>>,
        // The previous compressed flux - to reuse if needed
        previous_compressed_bytes: Option<Vec<u8>>
    },
    For(SimpleListingState<'token, T>),
    FunctionDefinition(FunctionDefinitionState),
    /// If state encodes previous choice
    If(IfState<'token, T>),
    /// Included file must read at some moment the file to handle
    Include(IncludeState),
    /// Included binary needs to be read
    /// TODO add parameters
    Incbin(IncbinState),

    Iterate(SimpleListingState<'token, T>),
    MacroCallOrBuildStruct(ExpandState),
    Module(SimpleListingState<'token, T>),
    Repeat(SimpleListingState<'token, T>),
    RepeatUntil(SimpleListingState<'token, T>),
    While(SimpleListingState<'token, T>),
    Rorg(SimpleListingState<'token, T>),
    Switch(SwitchState<'token, T>),
    Warning(Box<ProcessedToken<'token, T>>)
}

#[derive(PartialEq, Eq, Clone, Debug, Default)]
struct IncbinState {
    contents: BTreeMap<Utf8PathBuf, Vec<u8>>
}

#[derive(PartialEq, Eq, Clone)]
struct SimpleListingState<'token, T: Visited + ListingElement + Debug + Sync> {
    processed_tokens: Vec<ProcessedToken<'token, T>>,
    span: Option<Z80Span>
}

impl<'token, T: Visited + ListingElement + Debug + Sync> Debug for SimpleListingState<'token, T> {
    fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(fmt, "SimpleListingState")
    }
}

impl<'token, T: Visited + ListingElement + Debug + Sync + MayHaveSpan> SimpleListingState<'token, T>
where <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt
{
    fn build(
        tokens: &'token [T],
        span: Option<Z80Span>,
        env: &Env
    ) -> Result<Self, AssemblerError> {
        Ok(Self {
            processed_tokens: build_processed_tokens_list(tokens, env)?,
            span
        })
    }

    fn tokens_mut(&mut self) -> &mut [ProcessedToken<'token, T>] {
        &mut self.processed_tokens
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
struct FunctionDefinitionState(Option<Arc<Function>>);

#[derive(PartialEq, Eq, Clone, Debug)]
struct SwitchState<'token, T: Visited + ListingElement + Debug + Sync> {
    cases: Vec<SimpleListingState<'token, T>>,
    default: Option<SimpleListingState<'token, T>>
}

#[derive(PartialEq, Eq, Clone, Debug)]
struct IncludeState(BTreeMap<Utf8PathBuf, IncludeStateInner>);

impl IncludeState {
    /// By constructon fname exists and is correct
    fn retreive_listing(
        &mut self,
        env: &mut Env,
        fname: &Utf8PathBuf
    ) -> Result<&mut IncludeStateInner, AssemblerError> {
        if cfg!(target_arch = "wasm32") {
            return Err(AssemblerError::AssemblingError {
                msg: "INCLUDE-like directives are not allowed in a web-based assembling."
                    .to_owned()
            });
        }

        let options = env.options();

        // Build the state if needed / retreive it otherwise
        let state: &mut IncludeStateInner = if !self.0.contains_key(fname) {
            let content = read_source(fname.clone(), options.parse_options())?;

            if options.show_progress() {
                Progress::progress().add_parse(progress::normalize(fname));
            }

            let builder = options
                .clone()
                .context_builder()
                .set_current_filename(fname.clone());

            let listing = parse_z80_with_context_builder(content, builder)?;

            // Remove the progression
            if options.show_progress() {
                Progress::progress().remove_parse(progress::normalize(fname));
            }

            let include_state = IncludeStateInnerTryBuilder {
                listing,
                processed_tokens_builder: |listing: &LocatedListing| {
                    build_processed_tokens_list(listing.as_slice(), env)
                }
            }
            .try_build()?;

            self.0.try_insert(fname.clone(), include_state).unwrap()
        }
        else {
            self.0.get_mut(fname).unwrap()
        };

        // handle the listing
        env.mark_included(fname.clone());

        Ok(state)
    }

    fn handle(
        &mut self,
        env: &mut Env,
        fname: &str,
        namespace: Option<&str>,
        once: bool
    ) -> Result<(), AssemblerError> {
        let fname = get_filename(fname, &env.options().parse_options(), Some(env))?;

        // Process the inclusion only if necessary
        if (!once) || (!env.has_included(&fname)) {
            // most of the time, file has been loaded
            let state = self.retreive_listing(env, &fname)?;

            // handle module if necessary
            if let Some(namespace) = namespace {
                env.enter_namespace(namespace)?;
                // TODO handle the locating of error
                //.map_err(|e| e.locate(span.clone()))?;
            }

            // Visit the included listing
            env.enter_current_working_file(fname);
            let res = state.with_processed_tokens_mut(|tokens| {
                let tokens: &mut [ProcessedToken<'_, LocatedToken>] = &mut tokens[..];
                visit_processed_tokens::<'_, LocatedToken>(tokens, env)
            });
            env.leave_current_working_file();
            res?;

            // Remove module if necessary
            if namespace.is_some() {
                env.leave_namespace()?;
                //.map_err(|e| e.locate(span.clone()))?;
            }

            Ok(())
        }
        else {
            Ok(())
        }
    }
}

impl Default for IncludeState {
    fn default() -> Self {
        IncludeState(BTreeMap::default())
    }
}
#[self_referencing]
struct IncludeStateInner {
    listing: LocatedListing,
    #[borrows(listing)]
    #[covariant]
    processed_tokens: Vec<ProcessedToken<'this, LocatedToken>>
}

impl Clone for IncludeStateInner {
    fn clone(&self) -> Self {
        todo!()
    }
}

impl PartialEq for IncludeStateInner {
    fn eq(&self, other: &Self) -> bool {
        self.with_listing(|l1| other.with_listing(|l2| l1.eq(l2)))
    }
}

impl Eq for IncludeStateInner {}

impl Debug for IncludeStateInner {
    fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(fmt, "IncludeState")
    }
}

#[self_referencing]
struct ExpandState {
    listing: LocatedListing,
    #[borrows(listing)]
    #[covariant]
    processed_tokens: Vec<ProcessedToken<'this, LocatedToken>>
}

impl PartialEq for ExpandState {
    fn eq(&self, other: &Self) -> bool {
        self.with_listing(|l1| other.with_listing(|l2| l1.eq(l2)))
    }
}

impl Eq for ExpandState {}

impl Clone for ExpandState {
    fn clone(&self) -> Self {
        todo!()
    }
}

impl Debug for ExpandState {
    fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(fmt, "ExpandState")
    }
}

/// Store for each branch (if passed at some point) the test result and the listing
#[derive(Debug, Clone, PartialEq, Eq)]
struct IfState<'token, T: Visited + Debug + ListingElement + Sync> {
    // The token that contains the tests and listings
    token: &'token T,
    if_token_adr_to_used_decision: std::collections::HashMap<usize, bool>,
    if_token_adr_to_unused_decision: std::collections::HashMap<usize, bool>,
    // Processed listing build on demand
    tests_listing: HashMap<usize, Vec<ProcessedToken<'token, T>>>,
    // else listing build on demand
    else_listing: Option<Vec<ProcessedToken<'token, T>>>
}

impl<'token, T: Visited + Debug + ListingElement + Sync + MayHaveSpan> IfState<'token, T>
where <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt
{
    fn new(token: &'token T) -> Self {
        Self {
            token,
            if_token_adr_to_used_decision: Default::default(),
            if_token_adr_to_unused_decision: Default::default(),
            tests_listing: Default::default(),
            else_listing: None
        }
    }

    fn choose_listing_to_assemble(
        &mut self,
        env: &Env
    ) -> Result<Option<&mut [ProcessedToken<'token, T>]>, AssemblerError>
    where
        <<T as cpclib_tokens::ListingElement>::TestKind as TestKindElement>::Expr:
            ExprEvaluationExt,
        <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt
    {
        let mut selected_idx = None;
        let mut request_additional_pass = false;
        use cpclib_tokens::ExprResult;
        let FLAG_FAILURE: ExprResult = "__BASM_INNER_TEST_FAILURE__".to_owned().into();

        for idx in 0..self.token.if_nb_tests() {
            let (test, _) = self.token.if_test(idx);
            let token_adr = test as *const _ as usize;

            // Expression must be true
            if test.is_true_test() {
                let exp = test.expr_unchecked();
                // Expression must be true
                let value = env
                    .resolve_expr_may_fail_in_first_pass_with_default(exp, FLAG_FAILURE.clone())?;
                if value == FLAG_FAILURE {
                    // no code is executed if the test cannot be done
                    return Ok(None);
                }
                if value.bool()? {
                    selected_idx = Some(idx);
                    break;
                }
            }
            // Expression must be false
            else if test.is_false_test() {
                let exp = test.expr_unchecked();
                let value = env
                    .resolve_expr_may_fail_in_first_pass_with_default(exp, FLAG_FAILURE.clone())?;
                if value == FLAG_FAILURE {
                    // no code is executed if the test cannot be done
                    return Ok(None);
                }
                if !value.bool()? {
                    selected_idx = Some(idx);
                    break;
                }
            }
            else if test.is_label_used_test() {
                let label = test.label_unchecked();
                let decision = env.symbols().is_used(label);

                // Add an extra pass if the test differ
                if let Some(res) = self.if_token_adr_to_used_decision.get(&token_adr) {
                    if *res != decision {
                        request_additional_pass = true;
                    }
                }

                // replace the previously stored value
                self.if_token_adr_to_used_decision
                    .insert(token_adr.clone(), decision);

                if decision {
                    selected_idx = Some(idx);
                    break;
                }
            }
            else if test.is_label_nused_test() {
                let label = test.label_unchecked();
                let decision = !env.symbols().is_used(label);

                // Add an extra pass if the test differ
                if let Some(res) = self.if_token_adr_to_unused_decision.get(&token_adr) {
                    if *res != decision {
                        request_additional_pass = true;
                    }
                }

                // replace the previously stored value
                self.if_token_adr_to_unused_decision
                    .insert(token_adr.clone(), decision);

                if decision {
                    selected_idx = Some(idx);
                    break;
                }
            }
            // Label must exist at this specific moment
            else if test.is_label_exists_test() {
                let label = test.label_unchecked();
                if env.symbols().contains_symbol(label)? {
                    selected_idx = Some(idx);
                    break;
                }
            }
            // Label must not exist at this specific moment
            else {
                let label = test.label_unchecked();
                if !env.symbols().contains_symbol(label)? {
                    selected_idx = Some(idx);
                    break;
                }
            }
        }

        let selected_listing = match selected_idx {
            Some(selected_idx) => {
                // build the listing if never done
                if self.tests_listing.get(&selected_idx).is_none() {
                    let listing = self.token.if_test(selected_idx).1;
                    let listing = build_processed_tokens_list(listing, env)?;
                    self.tests_listing.insert(selected_idx, listing);
                }
                self.tests_listing.get_mut(&selected_idx)
            },
            None => {
                // build else listing if needed
                if self.else_listing.is_none() && self.token.if_else().is_some() {
                    let listing = self.token.if_else();
                    self.else_listing = listing
                        .map(|listing| build_processed_tokens_list(listing, env))
                        .transpose()?;
                }
                self.else_listing.as_mut()
            }
        };

        // update env to request an additional pass
        let request_additional_pass =
            *env.request_additional_pass.read().unwrap().deref() | request_additional_pass;
        *env.request_additional_pass.write().unwrap() = request_additional_pass;

        Ok(selected_listing.map(|l| l.as_mut_slice()))
    }
}

impl<'token, T: Visited + Debug + ListingElement + Sync + ToSimpleToken> ToSimpleToken
    for ProcessedToken<'token, T>
where <T as ListingElement>::Expr: ExprEvaluationExt
{
    fn as_simple_token(&self) -> Cow<Token> {
        self.token.as_simple_token()
    }
}

pub type AssemblerInfo = AssemblerError;

/// Build a processed token based on the base token
pub fn build_processed_token<'token, T: Visited + Debug + Sync + ListingElement + MayHaveSpan>(
    token: &'token T,
    env: &Env
) -> Result<ProcessedToken<'token, T>, AssemblerError>
where
    <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt
{
    let state = if token.is_confined() {
        Some(ProcessedTokenState::Confined(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.confined_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_if() {
        let state = IfState::new(token);
        Some(ProcessedTokenState::If(state))
    }
    else if token.is_include() {
        // we cannot use the real method onf IncludeState because it modifies env and here wa cannot
        let fname = token.include_fname();
        let options = env.options().parse_options();
        match get_filename(fname, options, Some(env)) {
            Ok(fname) => {
                match read_source(fname.clone(), options) {
                    Ok(content) => {
                        let ctx_builder = options
                            .clone()
                            .context_builder()
                            .set_current_filename(fname.clone());

                        match parse_z80_with_context_builder(content, ctx_builder) {
                            Ok(listing) => {
                                // Filename has already been added
                                if token.include_is_standard_include() && options.show_progress {
                                    Progress::progress().remove_parse(progress::normalize(&fname));
                                }

                                let include_state = IncludeStateInnerTryBuilder {
                                    listing,
                                    processed_tokens_builder: |listing: &LocatedListing| {
                                        build_processed_tokens_list(listing, env)
                                    }
                                }
                                .try_build()?;

                                let mut map = BTreeMap::new();
                                map.insert(fname, include_state);

                                Some(ProcessedTokenState::Include(IncludeState(map)))
                            },
                            Err(_) => Some(ProcessedTokenState::Include(Default::default()))
                        }
                    },
                    Err(_) => Some(ProcessedTokenState::Include(Default::default()))
                }
            },
            Err(_) => Some(ProcessedTokenState::Include(Default::default())) /* we were unable to get the filename with the provided information */
        }
    }
    else if token.is_incbin() {
        Some(ProcessedTokenState::Incbin(Default::default()))
    }
    else if token.is_crunched_section() {
        Some(ProcessedTokenState::CrunchedSection {
            listing: SimpleListingState {
                processed_tokens: build_processed_tokens_list(
                    token.crunched_section_listing(),
                    env
                )?,
                span: token.possible_span().cloned()
            },
            previous_bytes: None,
            previous_compressed_bytes: None
        })
    }
    else if token.is_for() {
        Some(ProcessedTokenState::For(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.for_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_function_definition() {
        Some(ProcessedTokenState::FunctionDefinition(
            FunctionDefinitionState(None)
        ))
    }
    else if token.is_iterate() {
        Some(ProcessedTokenState::Iterate(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.iterate_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_module() {
        Some(ProcessedTokenState::Module(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.module_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_repeat() {
        Some(ProcessedTokenState::Repeat(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.repeat_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_assembler_control()
        && token
            .assembler_control_command()
            .is_restricted_assembling_environment()
    {
        assert!(
            token.assembler_control_get_max_passes().is_some(),
            "We currently only support a maximum number of passes, so it as to be provided ..."
        );

        let passes = match token.assembler_control_get_max_passes() {
            Some(passes) => Some(env.resolve_expr_must_never_fail(passes)?.int()? as u8),
            None => None
        };

        let tokens = token.assembler_control_get_listing();
        Some(ProcessedTokenState::RestrictedAssemblingEnvironment {
            listing: SimpleListingState {
                processed_tokens: build_processed_tokens_list(tokens, env)?,
                span: token.possible_span().cloned()
            },
            commands: Some(ControlOutputStore::with_passes(passes.unwrap()))
        })
    }
    else if token.is_repeat_until() {
        Some(ProcessedTokenState::RepeatUntil(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.repeat_until_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_rorg() {
        Some(ProcessedTokenState::Rorg(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.rorg_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_switch() {
        // todo setup properly the spans
        Some(ProcessedTokenState::Switch(SwitchState {
            cases: token
                .switch_cases()
                .map(|(_v, l, _b)| {
                    SimpleListingState::build(l, token.possible_span().cloned(), env)
                })
                .collect::<Result<Vec<_>, _>>()?,

            default: token
                .switch_default()
                .map(|l| SimpleListingState::build(l, token.possible_span().cloned(), env))
                .transpose()?
        }))
    }
    else if token.is_warning() {
        Some(ProcessedTokenState::Warning(Box::new(
            build_processed_token(token.warning_token(), env)?
        )))
    }
    else if token.is_while() {
        Some(ProcessedTokenState::While(SimpleListingState {
            processed_tokens: build_processed_tokens_list(token.while_listing(), env)?,
            span: token.possible_span().cloned()
        }))
    }
    else if token.is_call_macro_or_build_struct() {
        // one day, we may whish to maintain a state
        None
    }
    else {
        None
    };

    Ok(ProcessedToken { token, state })
}

pub fn build_processed_tokens_list<
    'token,
    T: Visited + Debug + Sync + ListingElement + MayHaveSpan
>(
    tokens: &'token [T],
    env: &Env
) -> Result<Vec<ProcessedToken<'token, T>>, AssemblerError>
where
    <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt
{
    let options = env.options().parse_options();
    if options.show_progress {
        // // temporarily deactivate parallel processing while i have not found a way to compile it
        // #[cfg(not(target_arch = "wasm32"))]
        // let iter = tokens.par_iter();
        // #[cfg(target_arch = "wasm32")]
        let iter = tokens.iter();

        // get filename of files that will be read in parallel
        let include_fnames = iter
            .filter(|t| t.include_is_standard_include())
            .map(|t| get_filename(t.include_fname(), options, Some(env)))
            .filter(|f| f.is_ok())
            .map(|f| f.unwrap())
            .collect::<Vec<_>>();
        let include_fnames = include_fnames.iter().map(|t| progress::normalize(&t));

        // inform the progress bar
        // add all fnames in one time
        Progress::progress().add_parses(include_fnames);
    }

    // the files will be read here while token are built
    // this is really important to keep this place parallelized
    #[cfg(all(not(target_arch = "wasm32"), feature = "rayon"))]
    let iter = tokens.par_iter();
    #[cfg(any(target_arch = "wasm32", not(feature = "rayon")))]
    let iter = tokens.iter();
    iter.map(|t| build_processed_token(t, env))
        .collect::<Result<Vec<_>, _>>()
}

/// Visit all the tokens until an error occurs
pub fn visit_processed_tokens<'token, T: Visited + Debug + ListingElement + Sync + MayHaveSpan>(
    tokens: &mut [ProcessedToken<'token, T>],
    env: &mut Env
) -> Result<(), AssemblerError>
where
    <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt,
    <<T as cpclib_tokens::ListingElement>::TestKind as TestKindElement>::Expr: ExprEvaluationExt,
    ProcessedToken<'token, T>: FunctionBuilder
{
    // Ignore if function has already returned (mainly a workaround for switch case)
    if env.return_value.is_some() {
        return Ok(());
    }

    let options = env.options();

    if options.show_progress() {
        // setup the amount of tokens that will be processed
        Progress::progress().add_expected_to_pass(tokens.len() as _);
        for chunk in &tokens.iter_mut().chunks(64) {
            let mut visited = 0;
            for token in chunk {
                token.visited(env)?;
                visited += 1;
            }

            Progress::progress().add_visited_to_pass(visited);
        }
    }
    else {
        // normal iteration
        for token in tokens.iter_mut() {
            token.visited(env)?;
        }
    }

    env.cleanup_warnings();

    Ok(())
}

impl<'token, T: Visited + Debug + ListingElement + Sync + MayHaveSpan> MayHaveSpan
    for ProcessedToken<'token, T>
where <T as ListingElement>::Expr: ExprEvaluationExt
{
    fn possible_span(&self) -> Option<&Z80Span> {
        self.token.possible_span()
    }

    fn span(&self) -> &Z80Span {
        self.token.span()
    }

    fn has_span(&self) -> bool {
        self.token.has_span()
    }
}

impl<'token, T: Visited + Debug + ListingElement + Sync + MayHaveSpan> ProcessedToken<'token, T>
where <T as ListingElement>::Expr: ExprEvaluationExt
{
    /// Generate the tokens needed for the macro or the struct
    #[inline]
    pub fn update_macro_or_struct_state(&mut self, env: &Env) -> Result<(), AssemblerError>
    where <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt {
        let caller = self.token;
        let name = caller.macro_call_name();
        let parameters = caller.macro_call_arguments();

        let listing = {
            // Retreive the macro or structure definition
            let r#macro = env
                .symbols()
                .macro_value(name)?
                .map(|m| r#macro::MacroWithArgs::build(m, parameters))
                .transpose()?;
            let r#struct = if r#macro.is_none() {
                env.symbols()
                    .struct_value(name)?
                    .map(|s| r#macro::StructWithArgs::build(s, parameters))
                    .transpose()?
            }
            else {
                None
            };

            // Leave now if it corresponds to no macro or struct
            if r#macro.is_none() && r#struct.is_none() {
                let e = AssemblerError::UnknownMacro {
                    symbol: name.into(),
                    closest: env.symbols().closest_symbol(name, SymbolFor::Macro)?
                };
                return match self.possible_span() {
                    Some(span) => {
                        Err(AssemblerError::RelocatedError {
                            error: e.into(),
                            span: span.clone()
                        })
                    },
                    None => Err(e)
                };
            }

            // get the generated code
            // TODO handle some errors there
            let (source, code, flavor) = if let Some(ref r#macro) = r#macro {
                (r#macro.source(), r#macro.expand(env)?, r#macro.flavor())
            }
            else {
                let r#struct = r#struct.as_ref().unwrap();
                let mut parameters = parameters.to_vec();
                parameters.resize(r#struct.r#struct().nb_args(), T::MacroParam::empty());
                (
                    r#struct.source(),
                    r#struct.expand(env)?,
                    AssemblerFlavor::Basm
                )
            };

            // Tokenize with the same parsing  parameters and context when possible
            let listing = match self.token.possible_span() {
                Some(span) => {
                    use crate::ParserContextBuilder;
                    let ctx_builder = ParserContextBuilder::default() // nothing is specified
                        //                    from(span.state.clone())
                        .set_state(span.state.state.clone())
                        .set_options(span.state.options.clone())
                        .set_context_name(&format!(
                            "{}:{}:{} > {} {}:",
                            source.map(|s| s.fname()).unwrap_or_else(|| "???"),
                            source.map(|s| s.line()).unwrap_or(0),
                            source.map(|s| s.column()).unwrap_or(0),
                            if r#macro.is_some() { "MACRO" } else { "STRUCT" },
                            name,
                        ));
                    parse_z80_with_context_builder(code, ctx_builder)?
                },
                _ => {
                    use crate::parse_z80_str;
                    parse_z80_str(&code)?
                }
            };
            listing
        };

        let expand_state = ExpandStateTryBuilder {
            listing,
            processed_tokens_builder: |listing: &LocatedListing| {
                build_processed_tokens_list(listing, env)
            }
        }
        .try_build()?;

        self.state = Some(ProcessedTokenState::MacroCallOrBuildStruct(expand_state));

        return Ok(());
    }
}

impl<'token, T: Visited + Debug + ListingElement + Sync + MayHaveSpan> ProcessedToken<'token, T>
where
    <T as cpclib_tokens::ListingElement>::Expr: ExprEvaluationExt,
    <<T as cpclib_tokens::ListingElement>::TestKind as TestKindElement>::Expr: ExprEvaluationExt,
    ProcessedToken<'token, T>: FunctionBuilder
{
    /// Due to the state management, the signature requires mutability
    pub fn visited(&mut self, env: &mut Env) -> Result<(), AssemblerError> {
        let possible_span = self.possible_span().cloned();

        let mut really_does_the_job = move |possible_span: Option<&Z80Span>| {
            let deferred = self.token.defer_listing_output();
            if !deferred {
                // dbg!(&self.token, deferred);
                let outer_token = unsafe {
                    (self.token as *const T as *const LocatedToken)
                        .as_ref()
                        .unwrap()
                };

                env.handle_output_trigger(outer_token);
            }

            // Generate the code of a macro/struct
            if self.token.is_call_macro_or_build_struct() {
                self.update_macro_or_struct_state(env)?;
            }

            // Behavior based on the token
            let res = if self.token.is_macro_definition() {
                // TODO really implement logic here
                let name = self.token.macro_definition_name();
                let arguments = self.token.macro_definition_arguments();
                let code = self.token.macro_definition_code();
                env.visit_macro_definition(
                    name,
                    &arguments,
                    code,
                    self.possible_span(),
                    self.token.macro_flavor()
                )
            }
            // Behavior based on the state (for ease of writting)
            else {
                let options = env.options();
                // Handle the tokens depending on their specific state
                match &mut self.state {
                    Some(ProcessedTokenState::RestrictedAssemblingEnvironment {
                        listing,
                        commands
                    }) => {
                        let mut new_commands = commands.take().unwrap();

                        if !new_commands.has_remaining_passes() {
                            new_commands.execute(env)?;
                        }
                        else {
                            // TODO move that code directly inside ControlOutputStore
                            new_commands.new_pass();
                            env.assembling_control_current_output_commands
                                .push(new_commands);
                            visit_processed_tokens(&mut listing.processed_tokens, env)?;
                            new_commands = env
                                .assembling_control_current_output_commands
                                .pop()
                                .unwrap();
                        }
                        commands.replace(new_commands);
                        Ok(())
                    },

                    Some(ProcessedTokenState::Confined(SimpleListingState {
                        ref mut processed_tokens,
                        span
                    })) => env.visit_confined(processed_tokens, span.as_ref()),
                    Some(ProcessedTokenState::CrunchedSection {
                        listing:
                            SimpleListingState {
                                ref mut processed_tokens,
                                span
                            },
                        ref mut previous_bytes,
                        ref mut previous_compressed_bytes
                    }) => {
                        env.visit_crunched_section(
                            self.token.crunched_section_kind(),
                            processed_tokens,
                            previous_bytes,
                            previous_compressed_bytes,
                            span.as_ref()
                        )
                    },

                    Some(ProcessedTokenState::For(SimpleListingState {
                        processed_tokens,
                        span
                    })) => {
                        env.visit_for(
                            self.token.for_label(),
                            self.token.for_start(),
                            self.token.for_stop(),
                            self.token.for_step(),
                            processed_tokens,
                            span.as_ref()
                        )
                    },

                    Some(ProcessedTokenState::FunctionDefinition(FunctionDefinitionState(
                        Some(_fun)
                    ))) => {
                        // TODO check if the funtion has already been defined during this pass
                        Ok(())
                    },
                    Some(ProcessedTokenState::FunctionDefinition(FunctionDefinitionState(
                        option
                    ))) => {
                        let name = self.token.function_definition_name();
                        if !env.functions.contains_key(name) {
                            let inner = self.token.function_definition_inner();
                            let params = self.token.function_definition_params();

                            let inner = build_processed_tokens_list(inner, env)?;
                            let f =
                                Arc::new(unsafe { FunctionBuilder::new(&name, &params, inner) }?);
                            option.replace(f.clone());

                            env.functions.insert(name.to_owned(), f);
                        }
                        else {
                            // TODO raise an error ?
                        }
                        Ok(())
                    },

                    Some(ProcessedTokenState::Incbin(IncbinState { contents })) => {
                        if cfg!(target_arch = "wasm32") {
                            return Err(AssemblerError::AssemblingError { msg:
                                "INCBIN-like directives are not allowed in a web-based assembling.".to_owned()
                            });
                        }

                        // Handle file loading
                        let fname = self.token.incbin_fname();
                        let fname = get_filename(fname, options.parse_options(), Some(env))?;

                        // get the data for the given file
                        let data = if !contents.contains_key(&fname) {
                            // need to load the file

                            let (data, header) =
                                load_binary(Either::Left(fname.as_ref()), options.parse_options())?;

                            if let Some(header) = header {
                                let ams_fname = header
                                    .amsdos_filename()
                                    .map(|ams_fname| ams_fname.filename_with_user())
                                    .unwrap_or_else(|_| "<WRONG FILENAME>".to_owned());
                                let txt = match header.file_type() {
                                    Ok(AmsdosFileType::Binary) => {
                                        format! {"{ams_fname} BINARY  L:{} X:{}", header.loading_address(), header.execution_address()}
                                    },
                                    Ok(AmsdosFileType::Protected) => {
                                        format! {"{ams_fname} PROTECTED L:{} X:{}", header.loading_address(), header.execution_address()}
                                    },
                                    Ok(AmsdosFileType::Basic) => format!("{ams_fname} BASIC"),
                                    Err(_) => format!("{ams_fname} <WRONG FILETYPE>")
                                };

                                let warning = AssemblerWarning::AssemblingError {
                                    msg: format!("Header has been removed for {txt}")
                                };
                                let warning = if let Some(span) = possible_span {
                                    warning.locate_warning(span.clone())
                                }
                                else {
                                    warning
                                };

                                env.add_warning(warning)
                            }

                            contents.try_insert(fname.clone(), data.into()).unwrap()
                        }
                        else {
                            contents.get(&fname).unwrap()
                        };

                        let mut data = data.as_slice();

                        // Extract the appropriate content to the file
                        let offset = self.token.incbin_offset();
                        let length = self.token.incbin_length();
                        let transformation = self.token.incbin_transformation();

                        match offset {
                            Some(offset) => {
                                let offset =
                                    env.resolve_expr_must_never_fail(offset)?.int()? as usize;
                                if offset >= data.len() {
                                    return Err(AssemblerError::AssemblingError {
                                        msg: format!(
                                            "Unable to read {:?}. Only {} are available",
                                            self.token.incbin_fname(),
                                            data.len()
                                        )
                                    });
                                }
                                data = &data[offset..];
                            },
                            None => {}
                        }

                        match length {
                            Some(length) => {
                                let length =
                                    env.resolve_expr_must_never_fail(length)?.int()? as usize;
                                if data.len() < length {
                                    return Err(AssemblerError::AssemblingError {
                                        msg: format!(
                                            "Unable to read {:?}. Only {} bytes are available ({} expected)",
                                            self.token.incbin_fname(),
                                            data.len(),
                                            length
                                        )
                                    });
                                }
                                data = &data[..length];
                            },
                            None => {}
                        }

                        let data = match transformation {
                            BinaryTransformation::None => Cow::Borrowed(data),

                            other => {
                                if data.len() == 0 {
                                    return Err(AssemblerError::EmptyBinaryFile(
                                        self.token.incbin_fname().to_string()
                                    ));
                                }

                                let crunch_type = other.crunch_type().unwrap();
                                Cow::Owned(crunch_type.crunch(&data)?)
                            }
                        };

                        env.visit_incbin(data.borrow())
                    },

                    Some(ProcessedTokenState::Include(ref mut state)) => {
                        state.handle(
                            env,
                            self.token.include_fname(),
                            self.token.include_namespace(),
                            self.token.include_once()
                        )
                    },

                    Some(ProcessedTokenState::If(if_state)) => {
                        let listing = if_state.choose_listing_to_assemble(env)?;

                        if let Some(listing) = listing {
                            visit_processed_tokens(listing, env)?;
                        }

                        Ok(())
                    },

                    Some(ProcessedTokenState::Iterate(SimpleListingState {
                        processed_tokens,
                        span
                    })) => {
                        env.visit_iterate(
                            self.token.iterate_counter_name(),
                            self.token.iterate_values(),
                            processed_tokens,
                            span.as_ref()
                        )
                    },

                    Some(ProcessedTokenState::MacroCallOrBuildStruct(state)) => {
                        let name = self.token.macro_call_name();

                        env.inc_macro_seed();
                        let seed = env.macro_seed();
                        env.symbols_mut().push_seed(seed);

                        // save the number of prints to patch the ones added by the macro
                        // to properly locate them
                        let nb_prints = env
                            .sna
                            .pages_info
                            .iter()
                            .map(|ti| ti.print_commands().len())
                            .collect_vec();

                        state
                            .with_processed_tokens_mut(|listing| {
                                let tokens: &mut [ProcessedToken<'_, LocatedToken>] =
                                    &mut listing[..];
                                visit_processed_tokens::<'_, LocatedToken>(tokens, env)
                            })
                            .or_else(|e| {
                                let e = AssemblerError::MacroError {
                                    name: name.into(),
                                    root: Box::new(e)
                                };
                                let caller_span = self.possible_span();
                                match caller_span {
                                    Some(span) => {
                                        Err(AssemblerError::RelocatedError {
                                            error: e.into(),
                                            span: span.clone()
                                        })
                                    },
                                    None => Err(e)
                                }
                            })?;

                        let caller_span = self.possible_span();
                        if let Some(span) = caller_span {
                            env.sna
                                .pages_info
                                .iter_mut()
                                .zip(nb_prints.into_iter())
                                .for_each(|(ti, count)| {
                                    ti.print_commands_mut()[count..]
                                        .iter_mut()
                                        .for_each(|cmd| cmd.relocate(span.clone()))
                                });
                        }

                        env.symbols_mut().pop_seed();

                        Ok(())
                    },

                    Some(ProcessedTokenState::Module(SimpleListingState {
                        processed_tokens,
                        ..
                    })) => {
                        env.enter_namespace(self.token.module_name())?;
                        visit_processed_tokens(processed_tokens, env)?;
                        env.leave_namespace()?;

                        Ok(())
                    },

                    Some(ProcessedTokenState::Repeat(SimpleListingState {
                        processed_tokens,
                        ..
                    })) => {
                        env.visit_repeat(
                            self.token.repeat_count(),
                            processed_tokens,
                            self.token.repeat_counter_name(),
                            self.token.repeat_counter_start(),
                            self.token.repeat_counter_step(),
                            self.token.possible_span()
                        )
                    },

                    Some(ProcessedTokenState::RepeatUntil(SimpleListingState {
                        processed_tokens,
                        ..
                    })) => {
                        env.visit_repeat_until(
                            self.token.repeat_until_condition(),
                            processed_tokens,
                            self.token.possible_span()
                        )
                    },

                    Some(ProcessedTokenState::Rorg(SimpleListingState {
                        processed_tokens,
                        span
                    })) => env.visit_rorg(self.token.rorg_expr(), processed_tokens, span.as_ref()),

                    Some(ProcessedTokenState::Switch(ref mut state)) => {
                        let value = env.resolve_expr_must_never_fail(self.token.switch_expr())?;
                        let mut met = false;
                        let mut broken = false;
                        for (case, listing, r#break) in state
                            .cases
                            .iter_mut()
                            .zip(self.token.switch_cases())
                            .map(|(pt, t)| (t.0, pt.tokens_mut(), t.2))
                        {
                            // check if case must be executed
                            let case = env.resolve_expr_must_never_fail(case)?;
                            met |= case == value;

                            // inject code if needed and leave if break is present
                            if met {
                                visit_processed_tokens(listing, env)?;
                                if r#break {
                                    broken = true;
                                    break;
                                }
                            }
                        }

                        // execute default if any
                        if !met || !broken {
                            if let Some(ref mut default) = state.default {
                                visit_processed_tokens(&mut default.processed_tokens, env)?;
                            }
                        }

                        Ok(())
                    },

                    Some(ProcessedTokenState::Warning(box token)) => {
                        let warning = AssemblerError::RelocatedWarning {
                            warning: Box::new(AssemblerError::AssemblingError {
                                msg: self.token.warning_message().to_owned()
                            }),
                            span: self.token.possible_span().unwrap().clone()
                        };
                        let warning = AssemblerError::AlreadyRenderedError(warning.to_string());

                        env.add_warning(warning);
                        token.visited(env)
                    },
                    Some(ProcessedTokenState::While(SimpleListingState {
                        processed_tokens,
                        ..
                    })) => {
                        env.visit_while(
                            self.token.while_expr(),
                            processed_tokens,
                            self.token.possible_span()
                        )
                    },

                    // no state implies a standard visit
                    None => self.token.visited(env)
                }
            }?;

            if !self.token.is_buildcpr() {
                // we lack of some datastructures
                env.update_dollar();
            }

            if deferred {
                let outer_token = unsafe {
                    (self.token as *const T as *const LocatedToken)
                        .as_ref()
                        .unwrap()
                };

                env.handle_output_trigger(outer_token);
            }
            Ok(res)
        };

        really_does_the_job(possible_span.as_ref()).map_err(|e| {
            let e = match possible_span {
                Some(span) => e.locate(span.clone()),
                None => e
            };
            AssemblerError::AlreadyRenderedError(e.to_string())
        })
    }
}

// let fname = span
// .context()
// .get_path_for(fname)
// .unwrap_or("will_fail".into());
// if (!*once) || (!env.has_included(&fname)) {
// env.mark_included(fname);
//
// if cell.read().unwrap().is_some() {
// if let Some(namespace) = namespace {
// env.enter_namespace(namespace)
// .map_err(|e| e.locate(span.clone()))?;
// }
//
// env.visit_listing(cell.read().unwrap().as_ref().unwrap())?;
//
// if namespace.is_some() {
// env.leave_namespace().map_err(|e| e.locate(span.clone()))?;
// }
// Ok(())
// }
// else {
// outer_token
// .read_referenced_file(&outer_token.context().1)
// .and_then(|_| visit_located_token(outer_token, env))
// .map_err(|e| e.locate(span.clone()))
// }
// .map_err(|err| {
// AssemblerError::IncludedFileError {
// span: span.clone(),
// error: Box::new(err)
// }
// })
// }
// else {
// Ok(()) // we include nothing
// }

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

    #[test]
    fn test_located_include() {
        use crate::parse_z80;

        let src = "include \"toto\"";

        let tokens = parse_z80(src).unwrap();
        let token = &tokens[0];
        let env = Env::default();

        let processed = build_processed_token(token, &env);
        assert!(matches!(
            processed.unwrap().state,
            Some(ProcessedTokenState::Include(..))
        ));
    }
}