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
/*-
 * shm-rs - a scheme serialization lib
 * Copyright (C) 2021  Aleksandr Morozov
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 *  file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */

use std::collections::HashSet;
use std::fmt;

use indexmap::IndexSet;

use crate::{static_throw, SchemeInit};
use crate::lexer::lexer::LexerInfo;
use crate::common;
use crate::serializator::serializator::StructName;

use super::error::StaticSchemeRes;
//use super::schemesubs::{FieldVarType, ProcVarType, FieldNameType, FieldVarArg};
use super::init::{Environment, StaticShm};
use super::scheme::VectorSerializType;
use super::scheme::{ArgDataType, ProcFlags};

pub struct CommonReader<'cr>
{
    env: &'cr Environment,
    li: &'cr LexerInfo,
    args: &'cr [StaticShm],
    counter: usize,
}

impl<'cr> CommonReader<'cr>
{
    #[inline]
    fn resolve_symbol(&self, name: &String, li: &LexerInfo) -> StaticSchemeRes<&StaticShm>
    {
        match self.env.get(name) 
        {
            Some(r) => 
                return Ok(r),
            None => 
                static_throw!(li, "identifier: '{}' not found", name)
        }
    }

    pub 
    fn new(env: &'cr Environment, li: &'cr LexerInfo, args: &'cr [StaticShm], counter: usize) -> Self
    {
        return Self {env: env, li: li, args: args, counter: counter};
    }

    pub 
    fn is_eof(&self) -> bool
    {
        return self.counter >= self.args.len();
    }

    pub 
    fn get_counter(&self) -> usize
    {
        return self.counter;
    }

    pub 
    fn get_prev_lexerinfo(&self) -> LexerInfo
    {
        let index = 
            if self.counter == 0
            {
                self.counter
            }
            else
            {
                self.counter - 1
            };

        return self.args[index].extract_lexerinfo();
    }

    pub 
    fn get_lexerinfo(&self) -> LexerInfo
    {        
        if self.counter >= self.args.len()
        {
            return LexerInfo::notexistent();
        }
        else
        {
            return self.args[self.counter].extract_lexerinfo();
        }   
    }

    pub 
    fn left(&self) -> usize
    {
        return self.args.len() - self.counter;
    }

    pub 
    fn now_eof(&self) -> StaticSchemeRes<()>
    {
        if self.counter >= self.args.len()
        {
            static_throw!(self.li, "unexpected EOF was reached {} < {}", self.counter, self.args.len());
        }

        return Ok(());
    }

    pub 
    fn eof(&self) -> StaticSchemeRes<()>
    {
        if self.counter < self.args.len()
        {
            static_throw!(self.li, "expected EOF, but was not reached {} < {}", self.counter, self.args.len());
        }

        return Ok(());
    }

    pub 
    fn evaluate_list<F>(&mut self, throw: bool, steps: usize, mut hndl: F) -> StaticSchemeRes<()>
    where F: FnMut(&Vec<StaticShm>, &Environment, &LexerInfo) -> StaticSchemeRes<()>
    {
        let l_steps = 
            if steps == 0
            {
                self.args.len()
            }
            else
            {
                if (self.counter + steps) > self.args.len()
                {
                    static_throw!(&self.args[self.counter].extract_lexerinfo(), "evaluate_list(), step too large {} len: {}, \n {:?}", 
                            steps, self.args.len(), &self.args[self.counter..self.args.len()]);
                }
                else
                {
                    self.counter + steps
                }
            };

        let mut offset = 0;
        for arg in &self.args[self.counter..l_steps]
        {
            match arg
            {
                StaticShm::List(ref list, ref li) => 
                {
                    if list.len() > 0 
                    {
                        hndl(list, &self.env, li)?;
                        offset += 1;
                    }
                    else
                    {
                        static_throw!(li, "empty procedure: '{}'", arg);
                    }
                },
                _ =>
                {
                    if throw == true
                    {
                        static_throw!(&arg.extract_lexerinfo(), "expected procedure, found: '{}'", arg);
                    }
                }
            }
        }

        self.counter += offset;

        return Ok(());
    
    }

    pub 
    fn evaluate_procedure(&mut self, arg_name: &'static str) -> StaticSchemeRes<StaticShm>
    {
        self.now_eof()?;
        
        let ref arg = self.args[self.counter];

        match arg
        {
            StaticShm::List(ref list, ref li) => 
            {
                if list.len() > 0 
                {
                    let eval = SchemeInit::evaluate_expression(list, self.env, li)?;
                    self.counter += 1;

                    return Ok(eval);
                    //hndl(list, &self.env, li)?;
                }
                else
                {
                    static_throw!(li, "arg name: '{}', empty procedure", arg_name);
                }
            },
            _ =>
            {
                static_throw!(&arg.extract_lexerinfo(), "expected procedure, found: '{}'", arg);
            }
        }
    
    }

    pub 
    fn read_vectype(&mut self, arg_title: &'static str) -> StaticSchemeRes<VectorSerializType>
    {
        self.now_eof()?;

        let ref arg = self.args[self.counter];
        match arg
        {
            StaticShm::Symbol(ref name, ref li) => 
            {
                let symb = self.resolve_symbol(name, li)?;

                let res = 
                    match symb
                    {
                        StaticShm::VectorType(s) => 
                        {
                            s.clone()
                        }
                        _ => 
                            static_throw!(&symb.extract_lexerinfo(), "arg name: '{}', expected speficif keyword 'field_data_type' \
                                i.e f/list, found: '{}'", arg_title, symb
                            ),
                    };

                //increase counter
                self.counter += 1;
                            
                //return result
                return Ok(res);
            },
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "expected speficif keyword 'field_data_type' \
                    i.e f/list, found: '{}'", arg),
        }
    }

    pub 
    fn read_datatype(&mut self) -> StaticSchemeRes<ArgDataType>
    {
        self.now_eof()?;

        let ref arg = self.args[self.counter];

        match arg
        {
            StaticShm::Symbol(ref name, ref li) => 
            {
                let symb = self.resolve_symbol(name, li)?;

                let res = 
                    match symb
                    {
                        StaticShm::ArgDataTypeEnum(s) => 
                        {
                            s.clone()
                        }
                        _ => 
                            static_throw!(&symb.extract_lexerinfo(), "expected speficic keyword 'field_data_type' \
                                i.e f/list, found: '{}'", symb),
                    };

                //increase counter
                self.counter += 1;
                            
                //return result
                return Ok(res);
            },
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "expected speficic keyword 'field_data_type' \
                        i.e f/list, found: '{}'", arg),
        }
    }

    fn check_string(&mut self, s: &String, li: &LexerInfo, arg_title: &str) -> StaticSchemeRes<()>
    {
        if common::contains_printable_all(s) == false || s.is_empty() == true
        {
            static_throw!(li, "arg title: '{}', string: '{}', empty string or \
                string contains non printable characters which is not allowed",
                arg_title, common::sanitize_str_unicode(s));
        }

        return Ok(());
    }

    pub 
    fn read_string(&mut self, arg_title: &'static str) -> StaticSchemeRes<String>
    {
        self.now_eof()?;

        let ref arg = self.args[self.counter];

        match arg
        {
            StaticShm::String(ref s, ref li) => 
            {
                self.check_string(s, li, arg_title)?;

                //increase counter
                self.counter += 1;

                return Ok(s.clone());
            },
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "arg title: '{}', arg count: '{}', expected <string>, found: '{}'", 
                    arg_title, self.counter, arg),
        };
    }

    pub 
    fn read_int(&mut self) -> StaticSchemeRes<i64>
    {
        self.now_eof()?;

        let ref arg = self.args[self.counter];

        match arg
        {
            StaticShm::Int(ref i, _) => 
            {
                //increase counter
                self.counter += 1;

                return Ok(*i);
            },
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "arg cnt: '{}', expected <int>, found: '{}'", 
                    self.counter, arg),
        };   
    }

    pub 
    fn read_uint(&mut self) -> StaticSchemeRes<u64>
    {
        let ref arg = self.args[self.counter];

        match arg
        {
            StaticShm::UInt(ref u, _) => 
            {
                //increase counter
                self.counter += 1;

                return Ok(*u);
            },
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "arg cnt: '{}', expected <uint>, found: '{}'", 
                    self.counter, arg),
        };   
    }

    pub 
    fn read_string_or_symbol(&mut self, arg_title: &'static str) -> StaticSchemeRes<&StaticShm>
    {
        self.now_eof()?;

        let arg = &self.args[self.counter];
        match arg
        {
            StaticShm::String(s, ref li) =>
            {
                self.check_string(s, li, arg_title)?;
            },
            StaticShm::Symbol(_name, _li) =>
            {

            }
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "expected <symbol|string>, found: '{}'", arg),
        }

        self.counter += 1;

        return Ok(arg);
    }

    pub 
    fn read_uint_or_datawidth(&mut self, arg_title: &'static str) -> StaticSchemeRes<&StaticShm>
    {
        self.now_eof()?;

        let arg = &self.args[self.counter];

        match *arg
        {
            StaticShm::UInt(_, _) => {},
            StaticShm::Symbol(_, _) => {},
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "argument: '{}', expected <symbol(uint)|uint>, found: '{}'", arg_title, arg),
        }

        self.counter += 1;

        return Ok(arg);
    }

    pub 
    fn read_sibs(&mut self, arg_title: &'static str) -> StaticSchemeRes<&StaticShm>
    {
        self.now_eof()?;

        let arg = &self.args[self.counter];

        match arg
        {
            StaticShm::String(s, ref li) =>
            {
                self.check_string(s, li, arg_title)?;
            },
            StaticShm::Int(_, _) |
            StaticShm::UInt(_, _) |
            StaticShm::Boolean(_, _) |
            StaticShm::Symbol(_, _) => {},
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "expected <symbol|integer|uinteger|boolean> \
                        found: '{}'", arg),
        }

        self.counter += 1;

        return Ok(arg);
    }


    pub 
    fn read_sibr(&mut self, arg_title: &'static str) -> StaticSchemeRes<&StaticShm>
    {
        self.now_eof()?;

        let arg = &self.args[self.counter];
        
        match arg
        {
            StaticShm::String(s, ref li) =>
            {
                self.check_string(s, li, arg_title)?;
            },
            StaticShm::Int(_, _) | 
            StaticShm::UInt(_, _) | 
            StaticShm::LongInt(_, _) |
            StaticShm::LongUInt( .. ) |
            StaticShm::Boolean(_, _) => {},
            //StaticShm::Symbol(_name, _li) => {},
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "arg title: '{}', arg count: '{}', expected <string>, found: '{}'", 
                    arg_title, self.counter, arg),
        }

        self.counter += 1;

        return Ok(arg);
    }

    pub 
    fn common_read_bool(&mut self) -> StaticSchemeRes<bool>
    {
        self.now_eof()?;

        let ref arg = self.args[self.counter];

        match arg
        {
            StaticShm::Boolean(ref b, _) => 
            {
                //increase counter
                self.counter += 1;

                return Ok(*b);
            },
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "expected <boolean>, found: '{}'", arg)
        }
    }

    pub 
    fn read_struct_name(&mut self, arg_title: &'static str) -> StaticSchemeRes<StructName>
    {
        self.now_eof()?;

        let arg = &self.args[self.counter];
        
        match *arg
        {
            StaticShm::String(ref s, ref li) =>
            {
                /*if common::contains_printable_all(s) == false
                {
                    throw!("Empty string near: {}", li);
                }

                let res = s.clone();*/

                self.check_string(s, li, arg_title)?;

                //increase counter
                self.counter += 1;
                            
                //return result
                return Ok(StructName::Name(s.clone()));
            },
            StaticShm::List(ref _list, ref _li) => 
            {

                let names = self.read_hset_string_nodup(arg_title)?;

                //return result
                return Ok(StructName::Names(names));
            },
            StaticShm::Symbol(ref name, ref li) => 
            {
                let symb = self.resolve_symbol(name, li)?;

                let res = 
                    match symb
                    {
                        StaticShm::StructNameEnum(s) => 
                        {
                            s.clone()
                        }
                        _ => 
                            static_throw!(&symb.extract_lexerinfo(), "expected speficif keyword 'field_data_type' \
                                i.e f/list, found: '{}'", symb),
                    };

                //increase counter
                self.counter += 1;
                            
                //return result
                return Ok(res);
            },
            _ => 
                static_throw!(&arg.extract_lexerinfo(), "expected <symbol|string>, found: '{}'", arg),
        }
    }

    pub 
    fn read_proc_flags(&mut self, arg_title: &'static str) -> StaticSchemeRes<ProcFlags>
    {
        let arg = &self.args[self.counter];
        let argeval = 
            SchemeInit::evaluate_value(arg, self.env.clone())?;
        let mut flags: ProcFlags = ProcFlags::empty();

        match argeval
        {
            StaticShm::List(list, ref li) => 
            {  
                for l in list
                {
                    match l
                    {
                        StaticShm::Symbol(s, lli) =>
                        {
                            let l = self.resolve_symbol(&s, &lli)?;

                            match *l
                            {
                                StaticShm::ProcedureFlags(u) => 
                                {
                                    if flags.intersects(u) == true
                                    {
                                        static_throw!(&lli, "argument: '{}' duplicate flag: '{}', started at: {}", arg_title, s, li);
                                    }

                                    flags.toggle(u);
                                },
                                _ => 
                                    static_throw!(&lli, "argument: '{}' expected <ProcedureFlags>, started at: {}", arg_title, li),
                            }

                            
                        },
                        _ => 
                            static_throw!(&l.extract_lexerinfo(), "read_proc_flags(), argument: '{}' \
                                expected <symbol>, found: '{}'", arg_title, l),
                    }
                }
            },
            _ => 
                static_throw!(&argeval.extract_lexerinfo(), "read_proc_flags(), argument: '{}' \
                    expected <list>, found: '{}'", arg_title, argeval),
        }
        

        self.counter += 1;

        return Ok(flags);
    }

    pub 
    fn read_vec_string_nodup(&mut self, arg_title: &'static str) -> StaticSchemeRes<Vec<String>>
    {
        let arg = &self.args[self.counter];
        let argeval = 
            SchemeInit::evaluate_value(arg, self.env.clone())?;
        let mut retlist: Vec<String> = Vec::new();
        let mut dup_list: HashSet<String> = HashSet::new();

        //let vardata = 
        match argeval
        {
            StaticShm::List(list, ref _li) => 
            {  
                for l in list
                {
                    match l
                    {
                        StaticShm::String(s, lli) =>
                        {
                            self.check_string(&s, &lli, arg_title)?;

                            if dup_list.insert(s.clone()) == false
                            {
                                static_throw!(&lli, "arg name: '{}', duplicate element '{}' in \
                                    the list", arg_title, s);
                            }

                            retlist.push(s);
                        },
                        _ => 
                            static_throw!(&l.extract_lexerinfo(), "arg name: '{}', expected <string>, found: '{}'",
                                arg_title, l),

                    }
                }
            },
            _ => 
                static_throw!(&argeval.extract_lexerinfo(), "arg name: '{}', expected <string>, found: '{}'",
                    arg_title, argeval),
        }
    
        self.counter += 1;

        return Ok(retlist);
    }

    pub 
    fn read_hset_string_nodup(&mut self, arg_title: &str) -> StaticSchemeRes<HashSet<String>>
    {
        let arg = &self.args[self.counter];
        let argeval = 
            SchemeInit::evaluate_value(arg, self.env.clone())?;
        let mut retlist: HashSet<String> = HashSet::new();

        match argeval
        {
            StaticShm::List(list, ref li) => 
            {  
                for l in list
                {
                    match l
                    {
                        StaticShm::String(s, lli) =>
                        {
                            self.check_string(&s, &lli, arg_title)?;

                            retlist.insert(s);
                        },
                        _ => 
                            static_throw!(li, "arg title: '{}', expected <string>, found: '{}'", arg_title, l)
                    }
                }
            },
            _ => 
                static_throw!(&argeval.extract_lexerinfo(), 
                    "arg title: '{}', expected <list> of <string>, found: '{}'", arg_title, argeval),
        }
        

        self.counter += 1;

        return Ok(retlist);
    }

    pub 
    fn read_ordkeep_string_nodup(&mut self, arg_title: &str) -> StaticSchemeRes<IndexSet<String>>
    {
        let arg = &self.args[self.counter];
        let argeval = 
            SchemeInit::evaluate_value(arg, self.env.clone())?;
        let mut retlist: IndexSet<String> = IndexSet::new();

        match argeval
        {
            StaticShm::List(list, ref li) => 
            {  
                for l in list
                {
                    match l
                    {
                        StaticShm::String(s, lli) =>
                        {
                            self.check_string(&s, &lli, arg_title)?;

                            retlist.insert(s);
                        },
                        _ => 
                            static_throw!(li, "arg title: '{}', expected <string>, found: '{}'", arg_title, l)
                    }
                }
            },
            _ => 
                static_throw!(&argeval.extract_lexerinfo(), 
                    "arg title: '{}', expected <list> of <string>, found: '{}'", arg_title, argeval),
        }
        

        self.counter += 1;

        return Ok(retlist);
    }


}