p2sh 0.4.3

The p2sh Programming language interpreter
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
use rand::Rng;
use std::fs;
use std::io;
use std::io::{BufRead, Read, Write};
use std::process;
use std::rc::Rc;
use std::thread;
use std::time;
use std::time::{SystemTime, UNIX_EPOCH};

use super::pcap::Pcap;
use super::print::format_buf;
use crate::object::array::Array;
use crate::object::error::ErrorObj;
use crate::object::file::FileHandle;
use crate::object::func::BuiltinFunction;
use crate::object::Object;

pub const BUILTINFNS: &[BuiltinFunction] = &[
    BuiltinFunction::new("len", builtin_len),
    BuiltinFunction::new("puts", builtin_puts),
    BuiltinFunction::new("first", builtin_first),
    BuiltinFunction::new("last", builtin_last),
    BuiltinFunction::new("rest", builtin_rest),
    BuiltinFunction::new("push", builtin_push),
    BuiltinFunction::new("pop", builtin_pop),
    BuiltinFunction::new("get", builtin_get),
    BuiltinFunction::new("contains", builtin_contains),
    BuiltinFunction::new("insert", builtin_insert),
    BuiltinFunction::new("str", builtin_str),
    BuiltinFunction::new("int", builtin_int),
    BuiltinFunction::new("float", builtin_float),
    BuiltinFunction::new("char", builtin_char),
    BuiltinFunction::new("byte", builtin_byte),
    BuiltinFunction::new("time", builtin_time),
    BuiltinFunction::new("exit", builtin_exit),
    BuiltinFunction::new("flush", builtin_flush),
    BuiltinFunction::new("format", builtin_format),
    BuiltinFunction::new("print", builtin_print),
    BuiltinFunction::new("println", builtin_println),
    BuiltinFunction::new("eprint", builtin_eprint),
    BuiltinFunction::new("eprintln", builtin_eprintln),
    BuiltinFunction::new("round", builtin_round),
    BuiltinFunction::new("sleep", builtin_sleep),
    BuiltinFunction::new("tolower", builtin_tolower),
    BuiltinFunction::new("toupper", builtin_toupper),
    BuiltinFunction::new("open", builtin_open),
    BuiltinFunction::new("read", builtin_read),
    BuiltinFunction::new("write", builtin_write),
    BuiltinFunction::new("read_to_string", builtin_read_to_string),
    BuiltinFunction::new("decode_utf8", decode_utf8),
    BuiltinFunction::new("encode_utf8", encode_utf8),
    BuiltinFunction::new("read_line", builtin_read_line),
    BuiltinFunction::new("input", builtin_input),
    BuiltinFunction::new("get_errno", builtin_get_errno),
    BuiltinFunction::new("strerror", builtin_strerror),
    BuiltinFunction::new("is_error", builtin_is_error),
    BuiltinFunction::new("sort", builtin_sort),
    BuiltinFunction::new("chars", builtin_chars),
    BuiltinFunction::new("join", builtin_join),
    BuiltinFunction::new("rand", builtin_rand),
    BuiltinFunction::new("pcap_open", builtin_pcap_open),
    BuiltinFunction::new("pcap_stream", builtin_pcap_stream),
    BuiltinFunction::new("pcap_read_next", builtin_pcap_read_next),
    BuiltinFunction::new("pcap_read_all", builtin_pcap_read_all),
    BuiltinFunction::new("pcap_write", builtin_pcap_write),
];

fn builtin_len(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    match args[0].as_ref() {
        Object::Str(s) => Ok(Rc::new(Object::Integer(s.len() as i64))),
        Object::Arr(a) => Ok(Rc::new(Object::Integer(a.len() as i64))),
        Object::Map(m) => Ok(Rc::new(Object::Integer(m.len() as i64))),
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_puts(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() {
        println!();
        return Ok(Rc::new(Object::Null));
    }

    for obj in args {
        match obj.as_ref() {
            Object::Str(t) => {
                // Avoid quotes around string
                print!("{}", t);
            }
            o => {
                print!("{}", o);
            }
        }
    }
    println!();
    // puts returns Null
    Ok(Rc::new(Object::Null))
}

fn builtin_first(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    match args[0].as_ref() {
        Object::Arr(a) => Ok(a.get(0)),
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_last(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    match args[0].as_ref() {
        Object::Arr(a) => Ok(a.last()),
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_rest(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    match args[0].as_ref() {
        Object::Arr(a) => {
            if a.is_empty() {
                Ok(Rc::new(Object::Null))
            } else {
                let slice = a.elements.borrow()[1..].to_vec();
                Ok(Rc::new(Object::Arr(Rc::new(Array::new(slice)))))
            }
        }
        _ => Err(String::from("unsupported argument")),
    }
}

// Insert a value to the end of an array
fn builtin_push(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 2 {
        return Err(format!("takes two arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Arr(arr) => {
            arr.push(args[1].clone());
            Ok(Rc::new(Object::Null))
        }
        _ => Err(String::from("unsupported argument")),
    }
}

// Remove value from the end of an array
fn builtin_pop(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Arr(arr) => {
            let obj = arr.elements.borrow_mut().pop();
            match obj {
                Some(obj) => Ok(obj),
                None => Ok(Rc::new(Object::Null)),
            }
        }
        _ => Err(String::from("unsupported argument")),
    }
}

// Get an array item by index or a map value by key
// Return Null if index is out of bounds or if the key doesn't exist
fn builtin_get(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 2 {
        return Err(format!("takes two arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Arr(arr) => {
            if let Object::Integer(index) = args[1].as_ref() {
                let index = *index as usize;
                Ok(arr.get(index))
            } else {
                Err(String::from("unsupported argument"))
            }
        }
        Object::Map(map) => Ok(map.get(&args[1])),
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_contains(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 2 {
        return Err(format!("takes two arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Map(map) => {
            let key = args[1].clone();
            let contains = map.contains(&key);
            Ok(Rc::new(Object::Bool(contains)))
        }
        _ => Err(String::from("unsupported argument")),
    }
}

// Insert a key-value pair into a map. If the key already exists,
// the old value is returned, otherwise Null is returned.
fn builtin_insert(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 3 {
        return Err(format!("takes three arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Map(map) => {
            let key = args[1].clone();
            let val = args[2].clone();
            let old = map.insert(key, val);
            Ok(old)
        }
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_str(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    let obj = args[0].as_ref();
    match obj {
        Object::Str(_) => Ok(Rc::clone(&args[0])),
        Object::Null
        | Object::Integer(_)
        | Object::Bool(_)
        | Object::Arr(_)
        | Object::Err(_)
        | Object::Map(_) => Ok(Rc::new(Object::Str(obj.to_string()))),
        Object::Char(c) => Ok(Rc::new(Object::Str(c.to_string()))),
        Object::Byte(b) => Ok(Rc::new(Object::Str(b.to_string()))),
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_int(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    let obj = args[0].as_ref();
    match obj {
        Object::Str(s) => {
            if let Ok(num) = s.parse::<i64>() {
                Ok(Rc::new(Object::Integer(num)))
            } else {
                // failed to parse string into an int
                Ok(Rc::new(Object::Null))
            }
        }
        Object::Integer(_) => Ok(Rc::clone(&args[0])),
        Object::Float(n) => Ok(Rc::new(Object::Integer(*n as i64))),
        Object::Char(b) => Ok(Rc::new(Object::Integer(*b as i64))),
        Object::Byte(b) => Ok(Rc::new(Object::Integer(*b as i64))),
        Object::Bool(b) => {
            if *b {
                Ok(Rc::new(Object::Integer(1)))
            } else {
                Ok(Rc::new(Object::Integer(0)))
            }
        }
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_float(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    let obj = args[0].as_ref();
    match obj {
        Object::Str(s) => {
            if let Ok(num) = s.parse::<f64>() {
                Ok(Rc::new(Object::Float(num)))
            } else {
                // failed to parse string into a float
                Ok(Rc::new(Object::Null))
            }
        }
        Object::Float(_) => Ok(Rc::clone(&args[0])),
        Object::Integer(n) => Ok(Rc::new(Object::Float(*n as f64))),
        Object::Char(b) => Ok(Rc::new(Object::Float(*b as i64 as f64))),
        Object::Byte(b) => Ok(Rc::new(Object::Float(*b as f64))),
        Object::Bool(b) => {
            if *b {
                Ok(Rc::new(Object::Float(1.)))
            } else {
                Ok(Rc::new(Object::Float(0.)))
            }
        }
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_char(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    let obj = args[0].as_ref();
    match obj {
        Object::Char(_) => Ok(Rc::clone(&args[0])),
        Object::Byte(b) => {
            if let Some(c) = std::char::from_u32(*b as u32) {
                Ok(Rc::new(Object::Char(c)))
            } else {
                // failed to parse byte
                Ok(Rc::new(Object::Null))
            }
        }
        Object::Integer(s) => {
            if let Some(c) = std::char::from_u32(*s as u32) {
                Ok(Rc::new(Object::Char(c)))
            } else {
                // failed to parse integer
                Ok(Rc::new(Object::Null))
            }
        }
        Object::Float(n) => {
            if let Some(c) = std::char::from_u32(*n as u32) {
                Ok(Rc::new(Object::Char(c)))
            } else {
                // failed to parse float
                Ok(Rc::new(Object::Null))
            }
        }
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_byte(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    let obj = args[0].as_ref();
    match obj {
        Object::Byte(_) => Ok(Rc::clone(&args[0])),
        Object::Char(c) => Ok(Rc::new(Object::Byte(*c as u8))),
        Object::Bool(b) => {
            if *b {
                Ok(Rc::new(Object::Byte(1)))
            } else {
                Ok(Rc::new(Object::Byte(0)))
            }
        }
        Object::Integer(s) => {
            if let Some(b) = std::char::from_u32(*s as u32) {
                Ok(Rc::new(Object::Byte(b as u8)))
            } else {
                // failed to parse integer
                Ok(Rc::new(Object::Null))
            }
        }
        Object::Float(n) => {
            if let Some(b) = std::char::from_u32(*n as u32) {
                Ok(Rc::new(Object::Byte(b as u8)))
            } else {
                // failed to parse float
                Ok(Rc::new(Object::Null))
            }
        }
        _ => Err(String::from("unsupported argument")),
    }
}

fn builtin_time(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if !args.is_empty() {
        return Err(format!("takes no argument(s). got={}", args.len()));
    }
    let current_time = SystemTime::now();
    let duration = current_time
        .duration_since(UNIX_EPOCH)
        .expect("Time went backwards");
    let seconds = duration.as_secs() as i64;
    Ok(Rc::new(Object::Integer(seconds)))
}

#[allow(unreachable_code)]
fn builtin_exit(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    match args[0].as_ref() {
        Object::Integer(code) => {
            process::exit(*code as i32);
        }
        _ => return Err(String::from("unsupported argument")),
    }
    process::exit(0);
    Ok(Rc::new(Object::Null))
}

fn builtin_flush(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    match args[0].as_ref() {
        Object::File(f) => match f.as_ref() {
            FileHandle::Reader(_) => {
                return Err("cannot flush a reader".to_string());
            }
            FileHandle::Writer(writer) => {
                let mut writer = writer.borrow_mut();
                writer.flush().expect("Failed to flush file");
            }
            FileHandle::Stdin => {
                return Err("cannot flush stdin".to_string());
            }
            FileHandle::Stdout => {
                io::stdout().flush().expect("Failed to flush stdout");
            }
            FileHandle::Stderr => {
                io::stderr().flush().expect("Failed to flush stderr");
            }
        },
        _ => return Err(String::from("argument should be a file handle")),
    }
    Ok(Rc::new(Object::Null))
}

pub fn builtin_format(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() {
        return Err(String::from("takes atleast one argument. got none"));
    }
    let collector = format_buf(args)?;
    // Join the collected formatted output
    let buf: String = collector.0.into_iter().collect();
    // Return buf
    Ok(Rc::new(Object::Str(buf)))
}

fn builtin_print(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() {
        return Err(String::from("takes atleast one argument. got none"));
    }
    let mut len = 0;
    let collector = format_buf(args)?;
    // Print the collected formatted output
    for s in &collector.0 {
        print!("{}", s);
        len += s.len() as i64;
    }
    Ok(Rc::new(Object::Integer(len)))
}

fn builtin_println(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() {
        return Err(String::from("takes atleast one argument. got none"));
    }
    let mut len = 0;
    let collector = format_buf(args)?;
    // Print the collected formatted output
    for s in &collector.0 {
        print!("{}", s);
        len += s.len() as i64;
    }
    // Newline at the end
    println!();
    len += 1;
    Ok(Rc::new(Object::Integer(len)))
}

fn builtin_eprint(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() {
        return Err(String::from("takes atleast one argument. got none"));
    }
    let mut len = 0;
    let collector = format_buf(args)?;
    // Print the collected formatted output
    for s in &collector.0 {
        eprint!("{}", s);
        len += s.len() as i64;
    }
    Ok(Rc::new(Object::Integer(len)))
}

fn builtin_eprintln(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() {
        return Err(String::from("takes atleast one argument. got none"));
    }
    let mut len = 0;
    let collector = format_buf(args)?;
    // Print the collected formatted output
    for s in &collector.0 {
        eprint!("{}", s);
        len += s.len() as i64;
    }
    // Newline at the end
    eprintln!();
    len += 1;
    Ok(Rc::new(Object::Integer(len)))
}

fn builtin_round(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 2 {
        return Err(format!("takes two arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Float(f) => {
            if let Object::Integer(n) = args[1].as_ref() {
                let multiplier = 10i64.pow(*n as u32);
                let rounded = (f * multiplier as f64).round() / multiplier as f64;
                Ok(Rc::new(Object::Float(rounded)))
            } else {
                Err(String::from("second argument should be an integer"))
            }
        }
        _ => Err(String::from("first argument should be a float")),
    }
}

fn builtin_sleep(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Integer(n) => {
            thread::sleep(time::Duration::from_secs(*n as u64));
            Ok(Rc::new(Object::Null))
        }
        _ => Err(String::from("argument should be an integer")),
    }
}

fn builtin_tolower(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Char(c) => {
            let c = c.to_ascii_lowercase();
            Ok(Rc::new(Object::Char(c)))
        }
        Object::Byte(b) => {
            let b = b.to_ascii_lowercase();
            Ok(Rc::new(Object::Byte(b)))
        }
        Object::Str(s) => {
            let s = s.to_ascii_lowercase();
            Ok(Rc::new(Object::Str(s)))
        }
        _ => Err(String::from("argument should be an integer")),
    }
}

fn builtin_toupper(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Char(c) => {
            let c = c.to_ascii_uppercase();
            Ok(Rc::new(Object::Char(c)))
        }
        Object::Byte(b) => {
            let b = b.to_ascii_uppercase();
            Ok(Rc::new(Object::Byte(b)))
        }
        Object::Str(s) => {
            let s = s.to_ascii_uppercase();
            Ok(Rc::new(Object::Str(s)))
        }
        _ => Err(String::from("argument should be an integer")),
    }
}

/// Opens a file handle
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the path to the file (Object::Str) and an optional
///           second argument specifying the mode (Object::Str).
/// # Returns
/// Returns a Result containing a file handle wrapped in an Object::File,
/// or a null if the operation fails. An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
fn builtin_open(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() || args.len() > 2 {
        return Err(format!("takes one or two arguments. got={}", args.len()));
    }

    let path = if let Object::Str(s) = args[0].as_ref() {
        s
    } else {
        return Err(String::from("argument should be a string"));
    };

    let mode = if args.len() == 2 {
        if let Object::Str(s) = args[1].as_ref() {
            s
        } else {
            return Err(String::from("second argument should be a string"));
        }
    } else {
        "r"
    };

    match mode {
        "r" => {
            // opens a file for reading, returns error if the file does not exist
            let file = fs::File::open(path);
            match file {
                Ok(file) => {
                    let reader = io::BufReader::new(file);
                    let handle = FileHandle::new_reader(reader);
                    Ok(Rc::new(Object::File(Rc::new(handle))))
                }
                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
            }
        }
        "a" => {
            // open a file for appending, create the file if it does not exist
            let file = fs::OpenOptions::new().append(true).open(path);
            match file {
                Ok(file) => {
                    let writer = io::BufWriter::new(file);
                    let handle = FileHandle::new_writer(writer);
                    Ok(Rc::new(Object::File(Rc::new(handle))))
                }
                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
            }
        }
        "w" => {
            // open a file for writing, create the file if it does not exist,
            // truncate the file if it exists. return null if the operation fails.
            let file = fs::OpenOptions::new()
                .write(true)
                .create(true)
                .truncate(true)
                .open(path);
            match file {
                Ok(file) => {
                    let writer = io::BufWriter::new(file);
                    let handle = FileHandle::new_writer(writer);
                    Ok(Rc::new(Object::File(Rc::new(handle))))
                }
                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
            }
        }
        "x" => {
            // create the specified file, returns error if the file exist
            // or if the operation fails.
            let file = fs::OpenOptions::new()
                .write(true)
                .create_new(true)
                .open(path);
            match file {
                Ok(file) => {
                    let writer = io::BufWriter::new(file);
                    let handle = FileHandle::new_writer(writer);
                    Ok(Rc::new(Object::File(Rc::new(handle))))
                }
                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
            }
        }
        _ => Err(String::from("invalid file open mode")),
    }
}

/// Helper to read bytes from a file handle into an array of Object::Byte variants.
/// # Arguments
/// * `reader` - A reference to a Read trait object.
/// * `args` - A vector of Rc<Object> containing the file handle and an optional
///            second argument specifying the number of bytes to read (Object::Integer).
/// # Returns
/// Returns an array of Object::Byte variants wrapped in an Object::Arr,
/// or a null if the operation fails. An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
fn read_from_file<R: Read>(reader: &mut R, num_bytes_to_read: usize) -> Rc<Object> {
    let mut total_bytes_read = 0;
    let mut buffer = [0; 4096];
    let mut result_bytes = Vec::new();

    while total_bytes_read < num_bytes_to_read {
        let bytes_remaining = num_bytes_to_read - total_bytes_read;
        let read_len = buffer.len().min(bytes_remaining);
        let buf_slice = &mut buffer[..read_len];
        match reader.read(buf_slice) {
            Ok(bytes_read) => {
                if bytes_read == 0 {
                    break; // EOF
                }
                // Copy bytes off
                for byte in buf_slice.iter().take(bytes_read) {
                    result_bytes.push(Rc::new(Object::Byte(*byte)));
                }
                // Got fewer bytes than requested, so we're done
                if bytes_read < read_len {
                    break;
                }
                total_bytes_read += bytes_read;
            }
            Err(e) => {
                // This should set last error which can be retrieved using get_errno()
                return Rc::new(Object::Err(ErrorObj::IO(e)));
            }
        }
    }

    Rc::new(Object::Arr(Rc::new(Array::new(result_bytes))))
}

/// Reads bytes from a file handle into an array of Object::Byte variants.
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the file handle and an optional
///            second argument specifying the number of bytes to read (Object::Integer).
/// # Returns
/// Returns a Result containing an array of Object::Byte variants wrapped in an Object::Arr,
/// or a null if the operation fails. An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
fn builtin_read(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() || args.len() > 2 {
        return Err(format!("takes one or two arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::File(f) => match f.as_ref() {
            FileHandle::Reader(reader) => {
                let mut file = reader.borrow_mut();
                let num_bytes_to_read = if args.len() == 2 {
                    match args[1].as_ref() {
                        Object::Integer(num) => *num as usize,
                        _ => return Err(String::from("second argument should be an integer")),
                    }
                } else {
                    usize::MAX
                };
                Ok(read_from_file(&mut *file, num_bytes_to_read))
            }
            FileHandle::Writer(_) => Err(String::from("cannot read from a writer")),
            FileHandle::Stdin => {
                let num_bytes_to_read = if args.len() == 2 {
                    match args[1].as_ref() {
                        Object::Integer(num) => *num as usize,
                        _ => return Err(String::from("second argument should be an integer")),
                    }
                } else {
                    usize::MAX
                };

                Ok(read_from_file(&mut io::stdin(), num_bytes_to_read))
            }
            FileHandle::Stdout => Err(String::from("cannot read from stdout")),
            FileHandle::Stderr => Err(String::from("cannot read from stderr")),
        },
        _ => Err(String::from("first argument should be a file handle")),
    }
}

/// Reads bytes from a file handle and return it as a string
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the file handle
/// # Returns
/// Returns a Result containing a string wrapped in an Object::Str,
/// or a null if the operation fails.  An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
fn builtin_read_to_string(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    if let Object::File(f) = args[0].as_ref() {
        match f.as_ref() {
            FileHandle::Reader(reader) => {
                let mut file = reader.borrow_mut();
                // Read all data
                let mut result_bytes = Vec::new();
                match file.read_to_end(&mut result_bytes) {
                    Ok(_) => {}
                    Err(e) => {
                        return Ok(Rc::new(Object::Err(ErrorObj::IO(e))));
                    }
                }
                match String::from_utf8(result_bytes) {
                    Ok(s) => Ok(Rc::new(Object::Str(s))),
                    Err(e) => Ok(Rc::new(Object::Err(ErrorObj::Utf8(e)))),
                }
            }
            FileHandle::Writer(_) => Err(String::from("cannot read from a writer")),
            _ => Err(String::from("invalid file handle")),
        }
    } else {
        Err(String::from("first argument should be a file handle"))
    }
}

/// Decodes a UTF-8 encoded byte array into a string
/// # Arguments
/// * `args` - A vector of Rc<Object> containing an array of Object::Byte variants.
/// # Returns
/// Returns a Result containing a string wrapped in an Object::Str,
/// or an error message if the operation fails.
fn decode_utf8(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    if let Object::Arr(arr) = args[0].as_ref() {
        let mut bytes = Vec::new();
        for obj in arr.elements.borrow().iter() {
            if let Object::Byte(b) = obj.as_ref() {
                bytes.push(*b);
            } else {
                return Err(String::from("array should contain only bytes"));
            }
        }
        match String::from_utf8(bytes) {
            Ok(s) => Ok(Rc::new(Object::Str(s))),
            Err(e) => Ok(Rc::new(Object::Err(ErrorObj::Utf8(e)))),
        }
    } else {
        Err(String::from("argument should be an array of bytes"))
    }
}

/// Encodes a string into a UTF-8 encoded byte array
/// # Arguments
/// * `args` - A vector of Rc<Object> containing a string wrapped in an Object::Str.
/// # Returns
/// Returns a Result containing an array of Object::Byte variants wrapped in an Object::Arr,
/// or an error message if the operation fails.
fn encode_utf8(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    if let Object::Str(s) = args[0].as_ref() {
        let mut bytes = Vec::new();
        for b in s.as_bytes() {
            bytes.push(Rc::new(Object::Byte(*b)));
        }
        Ok(Rc::new(Object::Arr(Rc::new(Array::new(bytes)))))
    } else {
        Err(String::from("argument should be a string"))
    }
}

/// Writes a byte or an array of bytes to a file handle
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the file handle and a byte or an
///           array of bytes (Object::Byte or Object::Arr).
/// # Returns
/// Returns a Result containing the number of bytes written wrapped in an Object::Integer,
/// or an error message if the operation fails.
fn builtin_write(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 2 {
        return Err(format!("takes two arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::File(f) => {
            match f.as_ref() {
                FileHandle::Reader(_) => Err(String::from("cannot write to a reader")),
                FileHandle::Writer(writer) => {
                    let mut file = writer.borrow_mut();
                    match args[1].as_ref() {
                        Object::Byte(b) => {
                            let buf = [*b];
                            match file.write(&buf) {
                                // Return number of bytes written
                                Ok(n) => Ok(Rc::new(Object::Integer(n as i64))),
                                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
                            }
                        }
                        Object::Arr(arr) => {
                            let mut buf = Vec::new();
                            for obj in arr.elements.borrow().iter() {
                                if let Object::Byte(b) = obj.as_ref() {
                                    buf.push(*b);
                                } else {
                                    return Err(String::from("array should contain only bytes"));
                                }
                            }
                            match file.write(&buf) {
                                Ok(n) => Ok(Rc::new(Object::Integer(n as i64))),
                                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
                            }
                        }
                        Object::Str(s) => {
                            let bytes = s.as_bytes();
                            match file.write(bytes) {
                                Ok(n) => Ok(Rc::new(Object::Integer(n as i64))),
                                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
                            }
                        }
                        Object::Packet(s) => {
                            let bytes: Vec<u8> = s.as_ref().into();
                            match file.write(&bytes) {
                                Ok(n) => Ok(Rc::new(Object::Integer(n as i64))),
                                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
                            }
                        }
                        _ => Err(String::from(
                            "second argument should be a packet, byte, arr or string",
                        )),
                    }
                }
                FileHandle::Stdin => Err("cannot write to stdin".to_string()),
                FileHandle::Stdout => match args[1].as_ref() {
                    Object::Byte(b) => {
                        print!("{}", *b as char);
                        Ok(Rc::new(Object::Integer(1)))
                    }
                    Object::Arr(arr) => {
                        for obj in arr.elements.borrow().iter() {
                            if let Object::Byte(b) = obj.as_ref() {
                                print!("{}", *b as char);
                            } else {
                                return Err(String::from("array should contain only bytes"));
                            }
                        }
                        Ok(Rc::new(Object::Integer(arr.elements.borrow().len() as i64)))
                    }
                    Object::Str(s) => {
                        print!("{}", s);
                        Ok(Rc::new(Object::Integer(s.len() as i64)))
                    }
                    Object::Packet(s) => {
                        let bytes: Vec<u8> = s.as_ref().into();
                        match io::stdout().write_all(&bytes) {
                            Ok(_) => Ok(Rc::new(Object::Integer(bytes.len() as i64))),
                            Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
                        }
                    }
                    _ => Err(String::from(
                        "second argument should be a packet, byte, arr or string",
                    )),
                },
                FileHandle::Stderr => match args[1].as_ref() {
                    Object::Byte(b) => {
                        eprint!("{}", *b as char);
                        Ok(Rc::new(Object::Integer(1)))
                    }
                    Object::Arr(arr) => {
                        for obj in arr.elements.borrow().iter() {
                            if let Object::Byte(b) = obj.as_ref() {
                                eprint!("{}", *b as char);
                            } else {
                                return Err(String::from("array should contain only bytes"));
                            }
                        }
                        Ok(Rc::new(Object::Integer(arr.elements.borrow().len() as i64)))
                    }
                    Object::Str(s) => {
                        eprint!("{}", s);
                        Ok(Rc::new(Object::Integer(s.len() as i64)))
                    }
                    Object::Packet(s) => {
                        let bytes: Vec<u8> = s.as_ref().into();
                        match io::stderr().write_all(&bytes) {
                            Ok(_) => Ok(Rc::new(Object::Integer(bytes.len() as i64))),
                            Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
                        }
                    }
                    _ => Err(String::from(
                        "second argument should be a packet, byte, arr or string",
                    )),
                },
            }
        }
        _ => Err(String::from("first argument should be a file handle")),
    }
}

/// Reads a line from stdin or a file handle
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the file handle
/// # Returns
/// Returns a Result containing a string wrapped in an Object::Str,
/// or an error message if the operation fails.
fn builtin_read_line(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    let mut line = String::new();
    match args[0].as_ref() {
        Object::File(f) => match f.as_ref() {
            FileHandle::Reader(reader) => {
                let mut file = reader.borrow_mut();
                match file.read_line(&mut line) {
                    Ok(_) => Ok(Rc::new(Object::Str(line))),
                    Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
                }
            }
            FileHandle::Writer(_) => Err(String::from("cannot read from a writer")),
            FileHandle::Stdin => match io::stdin().read_line(&mut line) {
                Ok(_) => Ok(Rc::new(Object::Str(line))),
                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
            },
            FileHandle::Stdout => Err(String::from("cannot read from stdout")),
            FileHandle::Stderr => Err(String::from("cannot read from stderr")),
        },
        _ => Err(String::from("argument should be a file handle")),
    }
}

/// Reads a line from stdin
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the prompt (Object::Str).
/// # Returns
/// Returns a Result containing a string wrapped in an Object::Str,
/// or an error message if the operation fails.
fn builtin_input(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() > 1 {
        return Err(format!("takes one or no arguments. got={}", args.len()));
    }
    // display the prompt only if args has atleast one element
    if args.len() == 1 {
        if let Object::Str(s) = args[0].as_ref() {
            print!("{}", s);
            io::stdout().flush().expect("Failed to flush stdout");
        } else {
            return Err(String::from("argument should be a string"));
        }
    }
    let mut line = String::new();
    match io::stdin().read_line(&mut line) {
        Ok(_) => Ok(Rc::new(Object::Str(line.trim().to_string()))),
        Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
    }
}

/// Get last os error code
/// # Returns
/// Returns a Result containing an integer wrapped in an Object::Integer,
/// or a null value if there is no error.
fn builtin_get_errno(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if !args.is_empty() {
        return Err(format!("takes no arguments. got={}", args.len()));
    }
    if let Some(err_code) = io::Error::last_os_error().raw_os_error() {
        Ok(Rc::new(Object::Integer(err_code as i64)))
    } else {
        Ok(Rc::new(Object::Null))
    }
}

/// Convert an os error code to a string
fn builtin_strerror(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    let obj = args[0].as_ref();
    match obj {
        Object::Integer(n) => {
            let s = io::Error::from_raw_os_error(*n as i32).to_string();
            Ok(Rc::new(Object::Str(s)))
        }
        _ => Err(String::from("unsupported argument")),
    }
}

/// Check if an object is an error
fn builtin_is_error(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    let obj = args[0].as_ref();
    match obj {
        Object::Err(_) => Ok(Rc::new(Object::Bool(true))),
        _ => Ok(Rc::new(Object::Bool(false))),
    }
}

/// Sort the elements of an array
fn builtin_sort(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    let obj = args[0].as_ref();
    match obj {
        Object::Arr(arr) => {
            arr.elements.borrow_mut().sort();
            Ok(Rc::clone(&args[0]))
        }
        _ => Ok(Rc::new(Object::Null)),
    }
}

/// Convert string to array of chars
fn builtin_chars(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }
    let obj = args[0].as_ref();
    match obj {
        Object::Str(s) => Ok(Rc::new(Object::Arr(Rc::new(Array::new(
            s.chars().map(|c| Rc::new(Object::Char(c))).collect(),
        ))))),
        _ => Ok(Rc::new(Object::Null)),
    }
}

// Join an array of chars into a string, optionally delimited by
// a character or a string
fn builtin_join(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() || args.len() > 2 {
        return Err(format!("takes one or two arguments. got={}", args.len()));
    }
    let obj = args[0].as_ref();
    match obj {
        Object::Arr(arr) => {
            let mut delim = String::new();
            if args.len() == 2 {
                if let Object::Str(s) = args[1].as_ref() {
                    delim = s.clone();
                } else if let Object::Char(c) = args[1].as_ref() {
                    delim.push(*c);
                } else {
                    return Err(String::from("second argument should be a string or a char"));
                }
            }
            let mut s = String::new();
            let mut first = true;
            for obj in arr.elements.borrow().iter() {
                if let Object::Char(c) = obj.as_ref() {
                    if !first {
                        s.push_str(&delim);
                    }
                    s.push(*c);
                    first = false;
                } else {
                    return Err(String::from("array should contain only chars"));
                }
            }
            Ok(Rc::new(Object::Str(s)))
        }
        _ => Ok(Rc::new(Object::Null)),
    }
}

/// Generate a random number. Optionally take a max value
fn builtin_rand(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() > 1 {
        return Err(format!("takes one or no arguments. got={}", args.len()));
    }
    let mut rng = rand::thread_rng();
    let max = if args.is_empty() {
        Rc::new(Object::Integer(i64::MAX))
    } else {
        args[0].clone()
    };
    match max.as_ref() {
        Object::Integer(n) => {
            let r = rng.gen_range(0..=*n) as i64;
            Ok(Rc::new(Object::Integer(r)))
        }
        Object::Float(n) => {
            let r = rng.gen_range(0.0..=*n) as f64;
            Ok(Rc::new(Object::Float(r)))
        }
        _ => Err(String::from("unsupported argument")),
    }
}

/// Opens a pcap file
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the path to the file (Object::Str) and an optional
///           second argument specifying the mode (Object::Str).
/// # Returns
/// Returns a Result containing a pcap file handle wrapped in an Object::Pcap,
/// or a null if the operation fails. An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
/// Apart from opening the file, read the pcap header and validate
/// the magic number and the endianness. Return error if the validation fails.
fn builtin_pcap_open(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    let obj = builtin_open(args.clone())?;
    let mode = if args.len() == 2 {
        if let Object::Str(s) = args[1].as_ref() {
            s
        } else {
            return Err(String::from("invalid mode"));
        }
    } else {
        "r"
    };
    let res = match obj.as_ref() {
        Object::File(f) => match mode {
            "r" => Ok(Pcap::from_file(f.clone())),
            "a" => Err(String::from("append mode not supported for pcap files")),
            "w" => Ok(Pcap::new(f.clone())),
            "x" => Ok(Pcap::new(f.clone())),
            _ => Err(String::from("invalid file open mode")),
        },
        _ => Err(String::from("unsupported argument")),
    }?;
    match res {
        Ok(pcap) => Ok(Rc::new(Object::Pcap(Rc::new(pcap)))),
        Err(e) => {
            // Failed to open pcap file
            Ok(Rc::new(Object::Err(ErrorObj::IO(e))))
        }
    }
}

/// Read the next packet from a pcap file
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the pcap file handle
/// # Returns
/// Returns a Result containing a packet object wrapped in an Object::Packet,
/// or an error if the operation fails. An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
fn builtin_pcap_read_next(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 1 {
        return Err(format!("takes one argument. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Pcap(f) => {
            match f.next_packet() {
                Ok(packet) => {
                    // Return the packet object
                    Ok(Rc::new(Object::Packet(packet)))
                }
                Err(e) => {
                    if e.kind() == io::ErrorKind::UnexpectedEof {
                        // Return Object::Null for EOF error
                        return Ok(Rc::new(Object::Null));
                    }
                    // For other IO errors, return the error
                    Ok(Rc::new(Object::Err(ErrorObj::IO(e))))
                }
            }
        }
        _ => Err(String::from("first argument should be a file handle")),
    }
}

/// Read all or a specified number of packets from a pcap file
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the pcap file handle and an optional
///           second argument specifying the number of packets to read (Object::Integer).
/// # Returns
/// Returns a Result containing an array of packet objects wrapped in an Object::Arr,
/// or an error if the operation fails. An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
/// If the number of packets to read is not specified, read all packets.
/// If the number of packets to read is specified, read that many packets.
fn builtin_pcap_read_all(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.is_empty() || args.len() > 2 {
        return Err(format!("takes one or two arguments. got={}", args.len()));
    }

    match args[0].as_ref() {
        Object::Pcap(f) => {
            let num_packets_to_read = if args.len() == 2 {
                match args[1].as_ref() {
                    Object::Integer(num) => *num as usize,
                    _ => return Err(String::from("second argument should be an integer")),
                }
            } else {
                usize::MAX
            };
            // Use next_packet() in a loop to read all packets
            let mut packets = Vec::new();
            for _ in 0..num_packets_to_read {
                match f.next_packet() {
                    Ok(packet) => {
                        packets.push(Rc::new(Object::Packet(packet)));
                    }
                    Err(e) => {
                        if e.kind() == io::ErrorKind::UnexpectedEof {
                            break;
                        }
                        // For other IO errors, return the error
                        return Ok(Rc::new(Object::Err(ErrorObj::IO(e))));
                    }
                }
            }
            // Return the array of packets
            Ok(Rc::new(Object::Arr(Rc::new(Array::new(packets)))))
        }
        _ => Err(String::from("first argument should be a file handle")),
    }
}

/// Opens a pcap stream
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the path to the file (Object::Str) and an optional
///           second argument specifying the mode (Object::Str).
/// # Returns
/// Returns a Result containing a pcap file handle wrapped in an Object::Pcap,
/// or a null if the operation fails. An I/O error will result in the last
/// error being set which can be retrieved using get_errno().
/// Apart from opening the file, read the pcap header and validate
/// the magic number and the endianness. Return error if the validation fails.
fn builtin_pcap_stream(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() > 1 {
        return Err(format!("takes one or no arguments. got={}", args.len()));
    }
    let result = match args[0].as_ref() {
        Object::File(f) => match f.as_ref() {
            FileHandle::Stdin => Pcap::from_file(f.clone()),
            FileHandle::Stdout => Pcap::new(f.clone()),
            _ => Err(String::from("invalid file handle"))?,
        },
        _ => Err(String::from("unsupported argument"))?,
    };
    match result {
        Ok(pcap) => {
            // Return the pcap object
            Ok(Rc::new(Object::Pcap(Rc::new(pcap))))
        }
        Err(e) => {
            // Failed to open pcap file
            Ok(Rc::new(Object::Err(ErrorObj::IO(e))))
        }
    }
}

/// Write a packet to the pcap file
/// # Arguments
/// * `args` - A vector of Rc<Object> containing the pcap file handle
/// # Returns
/// Returns a Result containing a object wrapped in an Object::Integer,
/// that represents the number of bytes written, or an error if the
/// operation fails. An I/O error will result in the last error being set
/// which can be retrieved using get_errno().
fn builtin_pcap_write(args: Vec<Rc<Object>>) -> Result<Rc<Object>, String> {
    if args.len() != 2 {
        return Err(format!("takes two arguments. got={}", args.len()));
    }
    match args[0].as_ref() {
        Object::Pcap(f) => {
            let packet = match args[1].as_ref() {
                Object::Packet(p) => p,
                _ => return Err(String::from("second argument should be a packet")),
            };
            match f.write_all(packet.clone()) {
                Ok(n) => Ok(Rc::new(Object::Integer(n as i64))),
                Err(e) => Ok(Rc::new(Object::Err(ErrorObj::IO(e)))),
            }
        }
        _ => Err(String::from("first argument should be a file handle")),
    }
}