rsspice 0.1.0

Pure Rust port of the SPICE Toolkit for space geometry
Documentation
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
//
// GENERATED FILE
//

use super::*;
use f2rust_std::*;

const SAMEFL: &[u8] = b"SAME FILE";
const NOTSAM: &[u8] = b"NOT SAME FILE";
const TYPCHK: &[u8] = b"DATA TYPE CHECK";
const UNKNWN: &[u8] = b"UNKNOWN FILE";
const BUFSHF: &[u8] = b"BUFFER SHIFT";
const BUFINS: &[u8] = b"BUFFER INSERTION";
const GFSUM0: &[u8] = b"GET FILE SUMMARY (0)";
const GFSUM1: &[u8] = b"GET FILE SUMMARY (1)";
const GFSUM2: &[u8] = b"GET FILE SUMMARY (2)";
const ADDCHK: &[u8] = b"ADDRESS RANGE CHECK";
const SLOWSR: &[u8] = b"SLOW FILE CLUSTER SEARCH";
const SLOWST: &[u8] = b"SLOW FILE SET CLUSTER PARAMS";
const FASTST: &[u8] = b"FAST FILE SET CLUSTER PARAMS";
const CALC: &[u8] = b"CALCULATE RECORD AND WORD";
const READON: &[u8] = b"READ ONLY";
const NOTRDO: &[u8] = b"NOT READ ONLY";
const SEGCHK: &[u8] = b"SEGREGATION CHECK";
const SETTBF: &[u8] = b"SET TBFAST";
const BADDIR: &[u8] = b"BAD DIRECTORY";
const GETACC: &[u8] = b"LOOK UP ACCESS METHOD";
const CHAR: i32 = 1;
const INT: i32 = 3;
const NWC: i32 = 1024;
const NWD: i32 = 128;
const NWI: i32 = 256;
const FWDLOC: i32 = 2;
const CHRRNG: i32 = 3;
const DPRNG: i32 = (CHRRNG + 2);
const INTRNG: i32 = (DPRNG + 2);
const HIGH: i32 = 2;
const BEGDSC: i32 = 9;
const ACCLEN: i32 = 10;
const MAXFIL: i32 = 20;
const MAXVEC: i32 = (3 * MAXFIL);

struct SaveVars {
    ACCESS: Vec<u8>,
    BASERC: i32,
    CURTYP: i32,
    DIRREC: StackArray<i32, 256>,
    DSCLOC: i32,
    FIDX: i32,
    FREE: i32,
    HIADDR: i32,
    LSTREC: StackArray<i32, 3>,
    LSTWRD: StackArray<i32, 3>,
    MXADDR: i32,
    NCOMC: i32,
    NCOMR: i32,
    NDIRS: i32,
    NEXT: StackArray<i32, 3>,
    NFILES: i32,
    NREC: i32,
    NRESVC: i32,
    NRESVR: i32,
    NTYPES: i32,
    NW: StackArray<i32, 3>,
    NXTREC: i32,
    PREV: StackArray<i32, 3>,
    PRVHAN: i32,
    PRVTYP: i32,
    RANGE: StackArray<i32, 2>,
    RNGLOC: StackArray<i32, 3>,
    TBBASE: StackArray2D<i32, 60>,
    TBFWRD: StackArray<i32, 20>,
    TBHAN: StackArray<i32, 20>,
    TBMXAD: StackArray2D<i32, 60>,
    TBSIZE: StackArray2D<i32, 60>,
    UB: i32,
    UNIT: i32,
    FAST: bool,
    KNOWN: bool,
    PRVOK: bool,
    TBFAST: StackArray<bool, 20>,
    TBRDON: StackArray<bool, 20>,
    SAMFIL: bool,
    SEGOK: bool,
}

impl SaveInit for SaveVars {
    fn new() -> Self {
        let mut ACCESS = vec![b' '; ACCLEN as usize];
        let mut BASERC: i32 = 0;
        let mut CURTYP: i32 = 0;
        let mut DIRREC = StackArray::<i32, 256>::new(1..=NWI);
        let mut DSCLOC: i32 = 0;
        let mut FIDX: i32 = 0;
        let mut FREE: i32 = 0;
        let mut HIADDR: i32 = 0;
        let mut LSTREC = StackArray::<i32, 3>::new(1..=3);
        let mut LSTWRD = StackArray::<i32, 3>::new(1..=3);
        let mut MXADDR: i32 = 0;
        let mut NCOMC: i32 = 0;
        let mut NCOMR: i32 = 0;
        let mut NDIRS: i32 = 0;
        let mut NEXT = StackArray::<i32, 3>::new(1..=3);
        let mut NFILES: i32 = 0;
        let mut NREC: i32 = 0;
        let mut NRESVC: i32 = 0;
        let mut NRESVR: i32 = 0;
        let mut NTYPES: i32 = 0;
        let mut NW = StackArray::<i32, 3>::new(1..=3);
        let mut NXTREC: i32 = 0;
        let mut PREV = StackArray::<i32, 3>::new(1..=3);
        let mut PRVHAN: i32 = 0;
        let mut PRVTYP: i32 = 0;
        let mut RANGE = StackArray::<i32, 2>::new(1..=2);
        let mut RNGLOC = StackArray::<i32, 3>::new(1..=3);
        let mut TBBASE = StackArray2D::<i32, 60>::new(1..=3, 1..=MAXFIL);
        let mut TBFWRD = StackArray::<i32, 20>::new(1..=MAXFIL);
        let mut TBHAN = StackArray::<i32, 20>::new(1..=MAXFIL);
        let mut TBMXAD = StackArray2D::<i32, 60>::new(1..=3, 1..=MAXFIL);
        let mut TBSIZE = StackArray2D::<i32, 60>::new(1..=3, 1..=MAXFIL);
        let mut UB: i32 = 0;
        let mut UNIT: i32 = 0;
        let mut FAST: bool = false;
        let mut KNOWN: bool = false;
        let mut PRVOK: bool = false;
        let mut TBFAST = StackArray::<bool, 20>::new(1..=MAXFIL);
        let mut TBRDON = StackArray::<bool, 20>::new(1..=MAXFIL);
        let mut SAMFIL: bool = false;
        let mut SEGOK: bool = false;

        {
            use f2rust_std::data::Val;

            let mut clist = [Val::I(2), Val::I(3), Val::I(1)].into_iter();
            NEXT.iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = [Val::I(3), Val::I(1), Val::I(2)].into_iter();
            PREV.iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = [Val::I(NWC), Val::I(NWD), Val::I(NWI)].into_iter();
            NW.iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = [Val::I(CHRRNG), Val::I(DPRNG), Val::I(INTRNG)].into_iter();
            RNGLOC
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        FAST = false;
        FIDX = 0;
        KNOWN = false;
        NFILES = 0;
        PRVHAN = 0;
        PRVOK = false;
        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::I(-1), MAXVEC as usize))
                .chain([]);

            TBBASE
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::L(false), MAXFIL as usize))
                .chain([]);

            TBFAST
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_bool());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::I(-1), MAXFIL as usize))
                .chain([]);

            TBFWRD
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::I(0), MAXFIL as usize))
                .chain([]);

            TBHAN
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::I(-1), MAXVEC as usize))
                .chain([]);

            TBMXAD
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::L(false), MAXFIL as usize))
                .chain([]);

            TBRDON
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_bool());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }
        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::I(-1), MAXVEC as usize))
                .chain([]);

            TBSIZE
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_i32());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }

        Self {
            ACCESS,
            BASERC,
            CURTYP,
            DIRREC,
            DSCLOC,
            FIDX,
            FREE,
            HIADDR,
            LSTREC,
            LSTWRD,
            MXADDR,
            NCOMC,
            NCOMR,
            NDIRS,
            NEXT,
            NFILES,
            NREC,
            NRESVC,
            NRESVR,
            NTYPES,
            NW,
            NXTREC,
            PREV,
            PRVHAN,
            PRVTYP,
            RANGE,
            RNGLOC,
            TBBASE,
            TBFWRD,
            TBHAN,
            TBMXAD,
            TBSIZE,
            UB,
            UNIT,
            FAST,
            KNOWN,
            PRVOK,
            TBFAST,
            TBRDON,
            SAMFIL,
            SEGOK,
        }
    }
}

//$Procedure      P_DASA2L ( DAS, address to physical location )
pub fn P_DASA2L(
    HANDLE: i32,
    TYPE: i32,
    ADDRSS: i32,
    CLBASE: &mut i32,
    CLSIZE: &mut i32,
    RECNO: &mut i32,
    WORDNO: &mut i32,
    ctx: &mut Context,
) -> f2rust_std::Result<()> {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    //
    // Programmer's note: the TSPICE routine P_DASA2L must be
    // kept in sync with this routine. Current version of that
    // routine is
    //
    //    TSPICE Version 1.0.0 APR-11-2014 (NJB)
    //

    //
    // SPICELIB functions
    //

    //
    // Local parameters
    //

    //
    // Words per data record, for each data type:
    //

    //
    // Directory forward pointer location
    //

    //
    // Directory address range locations
    //

    //
    // Index of highest address in a `range array':
    //

    //
    // Location of first type descriptor
    //

    //
    // Access word length
    //

    //
    // File table size
    //

    //
    // Local variables
    //

    //
    // Saved variables
    //

    //
    // Initial values
    //
    //
    // NEXT and PREV map the DAS data type codes to their
    // successors and predecessors, respectively.
    //

    //
    // Discovery check-in is used in this routine, even though
    // this routine calls routines that can signal errors. This
    // routine is a special case, because fast operation is very
    // important.
    //
    //
    // DAS files have the following general structure:
    //
    //       +------------------------+
    //       |      file record       |
    //       +------------------------+
    //       |    reserved records    |
    //       |                        |
    //       +------------------------+
    //       |     comment records    |
    //       |                        |
    //       |                        |
    //       |                        |
    //       +------------------------+
    //       | first data directory   |
    //       +------------------------+
    //       |      data records      |
    //       |                        |
    //       |                        |
    //       |                        |
    //       |                        |
    //       +------------------------+
    //                   .
    //                   .
    //       +------------------------+
    //       | last data directory    |
    //       +------------------------+
    //       |     data records       |
    //       |                        |
    //       |                        |
    //       +------------------------+
    //
    //
    //    Within each DAS data record, word numbers start at one and
    //    increase up to NWI, NWD, or NWC: the number of words in an
    //    integer, double precision, or character data record.
    //
    //
    //       +--------------------------------+
    //       |       |       |   ...  |       |
    //       +--------------------------------+
    //           1      2                NWD
    //
    //       +--------------------------------+
    //       |   |   |       ...          |   |
    //       +--------------------------------+
    //         1   2                       NWI
    //
    //       +------------------------------------+
    //       | | |           ...                | |
    //       +------------------------------------+
    //        1 2                               NWC
    //
    //
    //    Directories are single records that describe the data
    //    types of data records that follow. The directories
    //    in a DAS file form a doubly linked list: each directory
    //    contains forward and backward pointers to the next and
    //    previous directories.
    //
    //    Each directory also contains, for each data type, the lowest
    //    and highest logical address occurring in any of the records
    //    described by the directory.
    //
    //    Following the pointers and address range information is
    //    a sequence of data type descriptors. These descriptors
    //    indicate the data type of data records following the
    //    directory record. Each descriptor gives the data type
    //    of a maximal set of contiguous data records, all having the
    //    same type. By `maximal set' we mean that no data records of
    //    the same type bound the set of records in question.
    //
    //    Pictorially, the structure of a directory is as follows:
    //
    //       +----------------------------------------------------+
    //       | <pointers> | <address ranges> | <type descriptors> |
    //       +----------------------------------------------------+
    //
    //    where the <pointers> section looks like
    //
    //       +-----------------------------------------+
    //       | <backward pointer> | <forward pointer>  |
    //       +-----------------------------------------+
    //
    //    the <address ranges> section looks like
    //
    //       +-------------------------------------------+
    //       | <char range> | <d.p. range> | <int range> |
    //       +-------------------------------------------+
    //
    //    and each range looks like one of:
    //
    //       +------------------------------------------------+
    //       | <lowest char address> | <highest char address> |
    //       +------------------------------------------------+
    //
    //       +------------------------------------------------+
    //       | <lowest d.p. address> | <highest d.p. address> |
    //       +------------------------------------------------+
    //
    //       +------------------------------------------------+
    //       | <lowest int address>  | <highest int address>  |
    //       +------------------------------------------------+
    //
    //    The type descriptors implement a run-length encoding
    //    scheme. The first element of the series of descriptors
    //    occupies two integers: it contains a type code and a count.
    //    The rest of the descriptors are just signed counts; the data
    //    types of the records they describe are deduced from the sign
    //    of the count and the data type of the previous descriptor.
    //    The method of finding the data type for a given descriptor
    //    in terms of its predecessor is as follows: if the sign of a
    //    descriptor is positive, the type of that descriptor is the
    //    successor of the type of the preceding descriptor in the
    //    sequence of types below. If the sign of a descriptor is
    //    negative, the type of the descriptor is the predecessor of the
    //    type of the preceding descriptor.
    //
    //       C  -->  D  -->  I  -->  C
    //
    //    For example, if the preceding type is `I', and a descriptor
    //    contains the number 16, the type of the descriptor is `C',
    //    whereas if the descriptor contained the number -800, the type
    //    of the descriptor would be `D'.
    //
    //
    // Logic cases
    // ===========
    //
    // There are three kinds of file attributes that this
    // routine distinguishes:
    //
    //    Attributes
    //    ----------
    //    "FAST"           read-only and segregated
    //    "READONLY"       read-only and unsegregated
    //    "WRITABLE"       writable
    //
    // There are three kinds of file histories that this
    // routine distinguishes:
    //
    //    History
    //    -------
    //    "SAME"           file is the same as seen on
    //                     the previous call
    //
    //    "KNOWN"          file is not the same as seen
    //                     on the previous call, but file
    //                     information is buffered
    //
    //    "UNKNOWN"        file information is not buffered.
    //
    // All combinations of attributes and history are possible,
    // so there are nine cases.
    //
    // Mapping actions to cases
    // ========================
    //
    //    Action                             Cases
    //    ------                             -----
    //    Set SAMFIL, PRVOK                  ALL
    //    Data type check                    ALL
    //    Set KNOWN                          not (FAST and SAME)
    //    Get access method                  UNKNOWN
    //    Buffer insertion                   UNKNOWN
    //    Set
    //        TBHAN
    //        TBRDON
    //        TBFAST
    //        TBFWRD                         UNKNOWN
    //    Get file summary                   UNKNOWN or WRITABLE
    //    Set TBMXAD                         UNKNOWN or WRITABLE
    //    Segregation check                  UNKNOWN and not WRITABLE
    //    Set TBBASE, TBSIZE                 FAST and UNKNOWN
    //    Set FAST                           not SAME
    //    Address range check                ALL
    //    Address search                     READONLY or WRITABLE
    //    Set CLBASE, CLSIZE                 ALL
    //
    // ========================
    //
    //
    // Make sure the data type is valid.
    //
    T_PTHAPP(TYPCHK, ctx)?;

    if ((TYPE < CHAR) || (TYPE > INT)) {
        spicelib::CHKIN(b"P_DASA2L", ctx)?;
        spicelib::DASHLU(HANDLE, &mut save.UNIT, ctx)?;
        spicelib::SETMSG(b"Invalid data type: #. File was #", ctx);
        spicelib::ERRINT(b"#", TYPE, ctx);
        spicelib::ERRFNM(b"#", save.UNIT, ctx)?;
        spicelib::SIGERR(b"SPICE(DASINVALIDTYPE)", ctx)?;
        spicelib::CHKOUT(b"P_DASA2L", ctx)?;
        return Ok(());
    }

    //
    // Decide whether we're looking at the same file as we did on the
    // last call. We can use data from the previous call only if that
    // call succeeded.
    //
    save.SAMFIL = ((HANDLE == save.PRVHAN) && save.PRVOK);
    //
    // PRVOK defaults to .FALSE. and will be reset if this call
    // succeeds.
    //
    save.PRVOK = false;

    //
    // Fast files get priority handling. If we have a fast file
    // that we saw on the previous call, skip directly to the
    // address range check.
    //
    if !(save.FAST && save.SAMFIL) {
        //
        // Is this a file we recognize?
        //
        if save.SAMFIL {
            save.KNOWN = true;
        } else {
            T_PTHAPP(NOTSAM, ctx)?;

            save.FIDX = spicelib::ISRCHI(HANDLE, save.NFILES, save.TBHAN.as_slice());
            save.KNOWN = (save.FIDX > 0);
        }

        if save.KNOWN {
            T_PTHAPP(SETTBF, ctx)?;

            save.FAST = save.TBFAST[save.FIDX];
        } else {
            T_PTHAPP(UNKNWN, ctx)?;

            //
            // This file is not in our list. We'll buffer information
            // about this file.
            //
            // Shift the table and insert the new entry at the front. The
            // entry at the back will be lost if the table is full.
            //
            // Note that unused entries (those for which the DAS handle is
            // 0) will drop out of the list automatically.
            //
            T_PTHAPP(BUFSHF, ctx)?;

            save.UB = intrinsics::MIN0(&[save.NFILES, (MAXFIL - 1)]);

            for I in intrinsics::range(save.UB, 1, -1) {
                save.TBHAN[(I + 1)] = save.TBHAN[I];
                save.TBRDON[(I + 1)] = save.TBRDON[I];
                save.TBFAST[(I + 1)] = save.TBFAST[I];
                save.TBFWRD[(I + 1)] = save.TBFWRD[I];

                for J in 1..=3 {
                    save.TBBASE[[J, (I + 1)]] = save.TBBASE[[J, I]];
                    save.TBSIZE[[J, (I + 1)]] = save.TBSIZE[[J, I]];
                    save.TBMXAD[[J, (I + 1)]] = save.TBMXAD[[J, I]];
                }
            }
            //
            // Insert the new table entry at index 1.
            //
            T_PTHAPP(BUFINS, ctx)?;

            save.NFILES = intrinsics::MIN0(&[(save.NFILES + 1), MAXFIL]);
            save.FIDX = 1;
            save.TBHAN[save.FIDX] = HANDLE;
            //
            // Set FAST to .FALSE. until we find out whether the file
            // is read-only and segregated.
            //
            T_PTHAPP(SETTBF, ctx)?;

            save.FAST = false;
            save.TBFAST[save.FIDX] = save.FAST;
            //
            // FIDX is now set whether or not the current file is known.
            //
            // TBRDON(FIDX) and TBFAST(FIDX) are set.
            //
            // Find out whether the file is open for read or write access.
            // We consider the file to be `slow' until we find out
            // otherwise. The contents of the arrays TBBASE, TBSIZE, and
            // TBMXAD are left undefined for slow files.
            //
            T_PTHAPP(GETACC, ctx)?;

            spicelib::DASHAM(HANDLE, &mut save.ACCESS, ctx)?;

            if spicelib::FAILED(ctx) {
                //
                // Make sure the current table entry won't be found
                // on a subsequent search.
                //
                save.TBHAN[save.FIDX] = 0;
                return Ok(());
            }

            //
            // TBRDON(FIDX) indicates whether the file is read-only.
            //
            save.TBRDON[save.FIDX] = fstr::eq(&save.ACCESS, b"READ");
        }

        //
        // FIDX, KNOWN and TBRDON( FIDX ) are set.
        //
        // Get the file summary if it isn't known already.
        //
        if !(save.KNOWN && save.TBRDON[save.FIDX]) {
            //
            // The file is new or it's writable; in either case the
            // maximum addresses are unknown. Get the current address
            // range for the file.
            //
            T_PTHAPP(GFSUM0, ctx)?;

            spicelib::DASHFS(
                HANDLE,
                &mut save.NRESVR,
                &mut save.NRESVC,
                &mut save.NCOMR,
                &mut save.NCOMC,
                &mut save.FREE,
                save.TBMXAD.subarray_mut([1, save.FIDX]),
                save.LSTREC.as_slice_mut(),
                save.LSTWRD.as_slice_mut(),
                ctx,
            )?;

            if spicelib::FAILED(ctx) {
                //
                // Make sure the current table entry won't be found
                // on a subsequent search.
                //
                save.TBHAN[save.FIDX] = 0;
                return Ok(());
            }

            //
            // Set the forward cluster pointer.
            //
            save.TBFWRD[save.FIDX] = ((save.NRESVR + save.NCOMR) + 2);
        }

        //
        // TBMXAD is set.
        //
        // If this is an unknown file and is read-only, determine
        // whether the file is segregated
        //
        if (!save.KNOWN && save.TBRDON[save.FIDX]) {
            T_PTHAPP(SEGCHK, ctx)?;

            //
            // The file is read-only; we need to know whether it is
            // segregated. If so, there are at most three cluster
            // descriptors, and the first directory record's maximum
            // address for each type matches the last logical address for
            // that type.
            //
            // FAST has been initialized to .FALSE. above.
            //
            // NREC is the record number of the first directory record.
            //
            save.NREC = save.TBFWRD[save.FIDX];

            spicelib::DASRRI(HANDLE, save.NREC, 1, NWI, save.DIRREC.as_slice_mut(), ctx)?;

            save.NXTREC = save.DIRREC[FWDLOC];

            if (save.NXTREC <= 0) {
                //
                // If this file is segregated, there are at most three
                // cluster descriptors, and each one points to a cluster
                // containing all records of the corresponding data type.
                // For each data type having a non-zero maximum address,
                // the size of the corresponding cluster must be large
                // enough to hold all addresses of that type.
                //
                save.NTYPES = 0;

                for I in 1..=3 {
                    if (save.TBMXAD[[I, save.FIDX]] > 0) {
                        save.NTYPES = (save.NTYPES + 1);
                    }
                }

                //
                // Now look at the first NTYPES cluster descriptors,
                // collecting cluster bases and sizes as we go.
                //
                save.BASERC = (save.NREC + 1);
                save.PRVTYP = save.PREV[save.DIRREC[BEGDSC]];
                save.DSCLOC = (BEGDSC + 1);
                save.SEGOK = true;

                while ((save.DSCLOC <= (BEGDSC + save.NTYPES)) && save.SEGOK) {
                    //
                    // Find the type of the current descriptor.
                    //
                    if (save.DIRREC[save.DSCLOC] > 0) {
                        save.CURTYP = save.NEXT[save.PRVTYP];
                    } else {
                        save.CURTYP = save.PREV[save.PRVTYP];
                    }

                    save.PRVTYP = save.CURTYP;
                    save.TBBASE[[save.CURTYP, save.FIDX]] = save.BASERC;
                    save.TBSIZE[[save.CURTYP, save.FIDX]] = i32::abs(save.DIRREC[save.DSCLOC]);
                    save.BASERC = (save.BASERC + save.TBSIZE[[save.CURTYP, save.FIDX]]);

                    save.SEGOK = (save.TBMXAD[[save.CURTYP, save.FIDX]]
                        <= (save.TBSIZE[[save.CURTYP, save.FIDX]] * save.NW[save.CURTYP]));

                    save.DSCLOC = (save.DSCLOC + 1);
                    //
                    // This loop will terminate after at most 3
                    // iterations. No further checks are needed.
                    //
                }

                //
                // Update FAST and TBFAST based on the segregation check.
                //
                T_PTHAPP(SETTBF, ctx)?;

                save.FAST = save.SEGOK;
                save.TBFAST[save.FIDX] = save.FAST;
                //
                // If the file is FAST,
                //
                //    TBBASE
                //    TBSIZE
                //
                // have been updated as well.
                //
            }
        }
        //
        // End of the segregation check.
        //
    }
    //
    // End of the NOT FAST or NOT SAME case.
    //
    // At this point we have the logical address ranges for the
    // file. Check the input address against them.
    //
    T_PTHAPP(ADDCHK, ctx)?;

    save.MXADDR = save.TBMXAD[[TYPE, save.FIDX]];

    if ((ADDRSS < 1) || (ADDRSS > save.MXADDR)) {
        //
        // Make sure the current table entry won't be found on a
        // subsequent search.
        //
        save.TBHAN[save.FIDX] = 0;

        spicelib::CHKIN(b"P_DASA2L", ctx)?;
        spicelib::DASHLU(HANDLE, &mut save.UNIT, ctx)?;
        spicelib::SETMSG(
            b"ADDRSS was #; valid range for type # is # to #.  File was #",
            ctx,
        );
        spicelib::ERRINT(b"#", ADDRSS, ctx);
        spicelib::ERRINT(b"#", TYPE, ctx);
        spicelib::ERRINT(b"#", 1, ctx);
        spicelib::ERRINT(b"#", save.MXADDR, ctx);
        spicelib::ERRFNM(b"#", save.UNIT, ctx)?;
        spicelib::SIGERR(b"SPICE(DASNOSUCHADDRESS)", ctx)?;
        spicelib::CHKOUT(b"P_DASA2L", ctx)?;
        return Ok(());
    }

    //
    // If we're looking at a "fast" file, we know the cluster base and
    // size. HIADDR is the highest address (not necessarily in use) in
    // the cluster.
    //
    if save.TBFAST[save.FIDX] {
        //
        // The current file is "fast": read-only and segregated.
        //
        T_PTHAPP(FASTST, ctx)?;

        *CLBASE = save.TBBASE[[TYPE, save.FIDX]];
        *CLSIZE = save.TBSIZE[[TYPE, save.FIDX]];
        save.HIADDR = (*CLSIZE * save.NW[TYPE]);
    } else {
        T_PTHAPP(SLOWSR, ctx)?;

        //
        // If we're not looking at a "fast" file, find the cluster
        // containing the input address, for the input data type.
        //
        // Find out which directory describes the cluster containing this
        // word. To do this, we must traverse the directory list. The
        // first directory record comes right after the last comment
        // record. (Don't forget the file record when counting the
        // predecessors of the directory record.)
        //
        // Note that we don't need to worry about not finding a directory
        // record that contains the address we're looking for, since
        // we've already checked that the address is in range.
        //
        save.NREC = save.TBFWRD[save.FIDX];
        save.NDIRS = 1;

        spicelib::DASRRI(
            HANDLE,
            save.NREC,
            save.RNGLOC[TYPE],
            (save.RNGLOC[TYPE] + 1),
            save.RANGE.as_slice_mut(),
            ctx,
        )?;

        while (save.RANGE[HIGH] < ADDRSS) {
            //
            // The record number of the next directory is the forward
            // pointer in the current directory record. Update NREC with
            // this pointer. Get the address range for the specified type
            // covered by this next directory record.
            //
            spicelib::DASRRI(
                HANDLE,
                save.NREC,
                FWDLOC,
                FWDLOC,
                std::slice::from_mut(&mut save.NXTREC),
                ctx,
            )?;

            save.NREC = save.NXTREC;
            save.NDIRS = (save.NDIRS + 1);

            spicelib::DASRRI(
                HANDLE,
                save.NREC,
                save.RNGLOC[TYPE],
                (save.RNGLOC[TYPE] + 1),
                save.RANGE.as_slice_mut(),
                ctx,
            )?;

            if spicelib::FAILED(ctx) {
                //
                // Make sure the current table entry won't be found
                // on a subsequent search.
                //
                save.TBHAN[save.FIDX] = 0;

                return Ok(());
            }
        }

        //
        // NREC is now the record number of the directory that contains
        // the type descriptor for the address we're looking for.
        //
        // Our next task is to find the descriptor for the cluster
        // containing the input address. To do this, we must examine the
        // directory record in `left-to-right' order. As we do so, we'll
        // keep track of the highest address of type TYPE occurring in
        // the clusters whose descriptors we've seen. The variable HIADDR
        // will contain this address.
        //
        spicelib::DASRRI(HANDLE, save.NREC, 1, NWI, save.DIRREC.as_slice_mut(), ctx)?;

        if spicelib::FAILED(ctx) {
            //
            // Make sure the current table entry won't be found on a
            // subsequent search.
            //
            save.TBHAN[save.FIDX] = 0;

            return Ok(());
        }

        //
        // In the process of finding the physical location corresponding
        // to ADDRSS, we'll find the record number of the base of the
        // cluster containing ADDRSS. We'll start out by initializing
        // this value with the number of the first data record of the
        // next cluster.
        //
        T_PTHAPP(SLOWST, ctx)?;

        *CLBASE = (save.NREC + 1);

        //
        // We'll initialize HIADDR with the value preceding the lowest
        // address of type TYPE described by the current directory.
        //
        save.HIADDR = (save.DIRREC[save.RNGLOC[TYPE]] - 1);

        //
        // Initialize the number of records described by the last seen
        // type descriptor. This number, when added to CLBASE, should
        // yield the number of the first record of the current cluster;
        // that's why it's initialized to 0.
        //
        *CLSIZE = 0;

        //
        // Now find the descriptor for the cluster containing ADDRSS.
        // Read descriptors until we get to the one that describes the
        // record containing ADDRSS. Keep track of descriptor data
        // types as we go. Also count the descriptors.
        //
        // At this point, HIADDR is less than ADDRSS, so the loop will
        // always be executed at least once.
        //
        save.PRVTYP = save.PREV[save.DIRREC[BEGDSC]];
        save.DSCLOC = (BEGDSC + 1);

        while (save.HIADDR < ADDRSS) {
            if (save.DSCLOC > NWI) {
                //
                // This situation shouldn't occur, but it might if the
                // DAS file is corrupted.
                //
                // Make sure the current table entry won't be found
                // on a subsequent search.
                //
                save.TBHAN[save.FIDX] = 0;

                spicelib::CHKIN(b"P_DASA2L", ctx)?;
                spicelib::SETMSG(b"Directory record # in DAS file with handle # is probably corrupted. No high cluster address at or above the input address # was found, though it should have been. High address was #. Data type was #.", ctx);
                spicelib::ERRINT(b"#", save.NREC, ctx);
                spicelib::ERRINT(b"#", HANDLE, ctx);
                spicelib::ERRINT(b"#", ADDRSS, ctx);
                spicelib::ERRINT(b"#", save.HIADDR, ctx);
                spicelib::ERRINT(b"#", TYPE, ctx);
                spicelib::SIGERR(b"SPICE(BADDASDIRECTORY)", ctx)?;
                spicelib::CHKOUT(b"P_DASA2L", ctx)?;
                return Ok(());
            }
            //
            // Update CLBASE so that it is the record number of the
            // first record of the current cluster.
            //
            *CLBASE = (*CLBASE + *CLSIZE);
            //
            // Find the type of the current descriptor.
            //
            if (save.DIRREC[save.DSCLOC] > 0) {
                save.CURTYP = save.NEXT[save.PRVTYP];
            } else {
                save.CURTYP = save.PREV[save.PRVTYP];
            }

            //
            // Forgetting to update PRVTYP is a Very Bad Thing (VBT).
            //
            save.PRVTYP = save.CURTYP;

            //
            // If the current descriptor is of the type we're interested
            // in, update the highest address count.
            //
            if (save.CURTYP == TYPE) {
                save.HIADDR = (save.HIADDR + (save.NW[TYPE] * i32::abs(save.DIRREC[save.DSCLOC])));
            }

            //
            // Compute the number of records described by the current
            // descriptor. Update the descriptor location.
            //
            *CLSIZE = i32::abs(save.DIRREC[save.DSCLOC]);
            save.DSCLOC = (save.DSCLOC + 1);
        }
        //
        // At this point, the variables
        //
        //    CLBASE
        //    CLSIZE
        //    HIADDR
        //
        // are set.
        //
    }

    T_PTHAPP(CALC, ctx)?;

    //
    // At this point,
    //
    //    -- CLBASE is properly set: it is the record number of the
    //       first record of the cluster containing ADDRSS.
    //
    //    -- CLSIZE is properly set: it is the size of the cluster
    //       containing ADDRSS.
    //
    //    -- HIADDR is the last logical address in the cluster
    //       containing ADDRSS.
    //
    // Now we must find the physical record and word corresponding
    // to ADDRSS. The structure of the cluster containing ADDRSS and
    // HIADDR is shown below:
    //
    //    +--------------------------------------+
    //    |                                      |  Record # CLBASE
    //    +--------------------------------------+
    //                       .
    //                       .
    //                       .
    //    +--------------------------------------+
    //    |      |ADDRSS|                        |  Record # RECNO
    //    +--------------------------------------+
    //                       .
    //                       .
    //                       .
    //    +--------------------------------------+  Record #
    //    |                               |HIADDR|
    //    +--------------------------------------+  CLBASE + CLSIZE - 1
    //
    //
    *RECNO = (((*CLBASE + *CLSIZE) - 1) - ((save.HIADDR - ADDRSS) / save.NW[TYPE]));

    *WORDNO = (ADDRSS - (((ADDRSS - 1) / save.NW[TYPE]) * save.NW[TYPE]));
    //
    // Update PRVHAN and set PRVOK to .TRUE. only if the call succeeded.
    //
    save.PRVHAN = HANDLE;
    save.PRVOK = true;

    Ok(())
}