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
//
// GENERATED FILE
//

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

const STYSIZ: i32 = 128;
const LNSIZE: i32 = 80;
const MAXTNM: i32 = 80;
const FILSIZ: i32 = 255;
const MAXCNM: i32 = 1000;

struct SaveVars {
    MYMARK: Vec<u8>,
    SEEN: Vec<u8>,
    HIDE: Vec<u8>,
    NAME: Vec<u8>,
    CNAME: Vec<u8>,
    EXTRA: Vec<u8>,
    ENV: Vec<u8>,
    TIME: Vec<u8>,
    VERSN: Vec<u8>,
    ERRFIL: Vec<u8>,
    PNUM: i32,
    FNUM: i32,
    R: i32,
    OPNERR: bool,
    SHOW: bool,
}

impl SaveInit for SaveVars {
    fn new() -> Self {
        let mut MYMARK = vec![b' '; 1 as usize];
        let mut SEEN = vec![b' '; STYSIZ as usize];
        let mut HIDE = vec![b' '; STYSIZ as usize];
        let mut NAME = vec![b' '; MAXTNM as usize];
        let mut CNAME = vec![b' '; MAXCNM as usize];
        let mut EXTRA = vec![b' '; MAXCNM as usize];
        let mut ENV = vec![b' '; LNSIZE as usize];
        let mut TIME = vec![b' '; LNSIZE as usize];
        let mut VERSN = vec![b' '; LNSIZE as usize];
        let mut ERRFIL = vec![b' '; FILSIZ as usize];
        let mut PNUM: i32 = 0;
        let mut FNUM: i32 = 0;
        let mut R: i32 = 0;
        let mut OPNERR: bool = false;
        let mut SHOW: bool = false;

        OPNERR = true;
        SHOW = false;
        fstr::assign(&mut EXTRA, b" ");
        fstr::assign(&mut SEEN, b"LEFT 1 RIGHT 78");
        fstr::assign(&mut HIDE, b"LEFT 1 RIGHT 78");
        fstr::assign(&mut MYMARK, b"#");

        Self {
            MYMARK,
            SEEN,
            HIDE,
            NAME,
            CNAME,
            EXTRA,
            ENV,
            TIME,
            VERSN,
            ERRFIL,
            PNUM,
            FNUM,
            R,
            OPNERR,
            SHOW,
        }
    }
}

//$Procedure TSTLGR (Test utilities log files manager)
pub fn TSTLGR(
    MESSGE: &[u8],
    ERRLOG: bool,
    GSTYLE: &[u8],
    FSTYLE: &[u8],
    MARKER: &[u8],
    INT: i32,
    DP: f64,
) {

    //
    // Test Utility Functions.
    //
    //
    // SPICELIB Functions
    //
    //
    // Local Variables
    //
}

//
// This entry point handles the logging of commands.
//
pub fn TSTLOG(MESSGE: &[u8], ERRLOG: bool, ctx: &mut Context) -> f2rust_std::Result<()> {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    //
    //     Version
    //
    //-     Test Utilities Version 1.0.0, 3-NOV-1994 (WLT)
    //

    if ERRLOG {
        //
        // We need to open a log file and write some
        // special additional information if this is the first
        // message for this test case.
        //

        T_NAME(&mut save.NAME, ctx);
        T_CNAME(&mut save.CNAME, ctx);
        T_FCOUNT(&mut save.PNUM, ctx);
        T_CFAIL(ctx);
        T_FCOUNT(&mut save.FNUM, ctx);

        if save.OPNERR {
            save.OPNERR = false;

            TSTFIL(
                b"ERR{0-9}{0-9}{0-9}{0-9}.LOG",
                b"SAVE",
                &mut save.ERRFIL,
                ctx,
            )?;

            TSTGET(&mut save.ENV, &mut save.VERSN, &mut save.TIME, ctx);
            TSTIOA(b"SAVE", ctx)?;
            TSTIOH(b"SCREEN", ctx)?;
            TSTIOH(b"LOG", ctx)?;

            TSTWLN(&save.ENV, ctx)?;
            TSTWLN(&save.VERSN, ctx)?;
            TSTWLN(&save.TIME, ctx)?;
        }
        //
        // Activate the port for reporting errors, inhibit writing to the
        // screen or log file.
        //
        TSTIOA(b"SAVE", ctx)?;
        TSTIOA(b"SCREEN", ctx)?;
        TSTIOA(b"LOG", ctx)?;
        //
        // If there had been no previous errors reported for this
        // family of errors, we create a special message concerning
        // this family and case.
        //
        if (save.PNUM == 0) {
            TSTWLN(b" ", ctx)?;
            TSTWLN(b"A test failure occurred in the test family:", ctx)?;
            TSTWLN(b" ", ctx)?;
            TSTWLN(&fstr::concat(b"Family : ", &save.NAME), ctx)?;
            support::NICEPR_1(
                &save.CNAME,
                b"LEFT 1 RIGHT 78 HARDSPACE ^ FLAG CASE^^^:",
                TSTWLN,
                ctx,
            )?;
            TSTWLN(b" ", ctx)?;
        //
        // If this is the first error message to be reported for this
        // test case we note the failure for this test case.
        //
        } else if (save.PNUM != save.FNUM) {
            TSTWLN(b" ", ctx)?;
            TSTWLN(b"Test Case FAILURE. ", ctx)?;
            support::NICEPR_1(
                &save.CNAME,
                b"LEFT 1 RIGHT 78 HARDSPACE ^ FLAG CASE^^^:",
                TSTWLN,
                ctx,
            )?;
            TSTWLN(b" ", ctx)?;
        }
        //
        // Reactivate the screen and log file.
        //
        TSTIOA(b"SCREEN", ctx)?;
        TSTIOA(b"LOG", ctx)?;
    }

    if ERRLOG {
        if fstr::eq(MESSGE, b" ") {
            TSTWLN(b" ", ctx)?;
        } else {
            if save.SHOW {
                support::NICEPR_1(&save.EXTRA, &save.HIDE, TSTWLN, ctx)?;
                save.SHOW = false;
                TSTWLN(b" ", ctx)?;
            }

            support::NICEPR_1(MESSGE, &save.HIDE, TSTWLN, ctx)?;
        }
    } else {
        if fstr::eq(MESSGE, b" ") {
            TSTWLN(b" ", ctx)?;
        } else {
            support::NICEPR_1(MESSGE, &save.SEEN, TSTWLN, ctx)?;
        }
    }
    //
    // Inhibit writing to the error log.
    //

    TSTIOH(b"SAVE", ctx)?;

    Ok(())
}

//
// This entry point allows users to set the style used for
// logging failure and non-failure and visible commands.
//
pub fn TSTLGS(GSTYLE: &[u8], FSTYLE: &[u8], ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    //  Version
    //
    //-     Test Utilities Version 1.0.0, 3-NOV-1994 (WLT)
    //
    //

    fstr::assign(&mut save.SEEN, GSTYLE);
    fstr::assign(&mut save.HIDE, FSTYLE);
}

//
// This entry point allows users to get the style used for
// logging failure and non-failure and visible commands.
//
pub fn TSTSTY(GSTYLE: &mut [u8], FSTYLE: &mut [u8], ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    //  Version
    //
    //-     Test Utilities Version 1.0.0, 3-NOV-1994 (WLT)
    //
    //
    fstr::assign(GSTYLE, &save.SEEN);
    fstr::assign(FSTYLE, &save.HIDE);
}

//
// This entry point handles the logging of commands when we want
// only verbose logging.
//
pub fn VRBLOG(MESSGE: &[u8], ERRLOG: bool, ctx: &mut Context) -> f2rust_std::Result<()> {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    //
    //  Version
    //
    //-     Test Utilities Version 1.0.0, 3-NOV-1994 (WLT)
    //

    if ERRLOG {
        //
        // We need to possibly open a log file and write some
        // special additional information if this is the first
        // message for this test case.
        //

        T_NAME(&mut save.NAME, ctx);
        T_CNAME(&mut save.CNAME, ctx);
        T_FCOUNT(&mut save.PNUM, ctx);
        T_CFAIL(ctx);
        T_FCOUNT(&mut save.FNUM, ctx);

        if save.OPNERR {
            save.OPNERR = false;

            TSTFIL(
                b"ERR{0-9}{0-9}{0-9}{0-9}.LOG",
                b"SAVE",
                &mut save.ERRFIL,
                ctx,
            )?;

            TSTGET(&mut save.ENV, &mut save.VERSN, &mut save.TIME, ctx);
            TSTIOA(b"SAVE", ctx)?;
            TSTIOH(b"SCREEN", ctx)?;
            TSTIOH(b"LOG", ctx)?;

            TSTWLN(&save.ENV, ctx)?;
            TSTWLN(&save.VERSN, ctx)?;
            TSTWLN(&save.TIME, ctx)?;
        }
        //
        // Activate the port for reporting errors, inhibit writing to the
        // screen or log file.
        //
        TSTIOA(b"SAVE", ctx)?;
        TSTIOA(b"SCREEN", ctx)?;
        TSTIOA(b"LOG", ctx)?;
        //
        // If there had been no previous errors reported for this
        // family of errors, we create a special message concerning
        // this family and case.
        //
        if (save.PNUM == 0) {
            TSTWLN(b" ", ctx)?;
            TSTWLN(b"A test failure occurred in the test family:", ctx)?;
            TSTWLN(b" ", ctx)?;
            TSTWLN(&fstr::concat(b"Family : ", &save.NAME), ctx)?;
            support::NICEPR_1(
                &save.CNAME,
                b"LEFT 1 RIGHT 78 HARDSPACE ^ FLAG CASE^^^:",
                TSTWLN,
                ctx,
            )?;
            TSTWLN(b" ", ctx)?;
        //
        // If this is the first error message to be reported for this
        // test case we note the failure for this test case.
        //
        } else if (save.PNUM != save.FNUM) {
            TSTWLN(b" ", ctx)?;
            TSTWLN(b"Test Case FAILURE. ", ctx)?;
            support::NICEPR_1(
                &save.CNAME,
                b"LEFT 1 RIGHT 78 HARDSPACE ^ FLAG CASE^^^:",
                TSTWLN,
                ctx,
            )?;
            TSTWLN(b" ", ctx)?;
        }
        //
        // Reactivate the screen and log file.
        //
        TSTIOA(b"SCREEN", ctx)?;
        TSTIOA(b"LOG", ctx)?;
    }
    //
    // If there is an error, write to every place.
    //
    if ERRLOG {
        if fstr::eq(MESSGE, b" ") {
            TSTWLN(b" ", ctx)?;
        } else {
            if save.SHOW {
                support::NICEPR_1(&save.EXTRA, &save.HIDE, TSTWLN, ctx)?;
                TSTWLN(b" ", ctx)?;
                save.SHOW = false;
            }

            support::NICEPR_1(MESSGE, &save.HIDE, TSTWLN, ctx)?;
        }
    //
    // Otherwise we write out the message only if in verbose mode.
    //
    } else if VERBOS(ctx) {
        if fstr::eq(MESSGE, b" ") {
            TSTWLN(b" ", ctx)?;
        } else {
            support::NICEPR_1(MESSGE, &save.SEEN, TSTWLN, ctx)?;
        }
    }
    //
    // Inhibit writing to the error log.
    //

    TSTIOH(b"SAVE", ctx)?;

    Ok(())
}

//
// Establish a special message to be printed if an error is
// detected.
//
pub fn TSTMSG(MARKER: &[u8], MESSGE: &[u8], ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    let MARKER = &MARKER[..1 as usize];

    fstr::assign(&mut save.MYMARK, MARKER);
    fstr::assign(&mut save.EXTRA, MESSGE);
    save.SHOW = true;
}

//
// Fill in the next marker with the string representing INT.
//
pub fn TSTMSI(INT: i32, ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    spicelib::REPMI(
        &save.EXTRA.to_vec(),
        &save.MYMARK,
        INT,
        &mut save.EXTRA,
        ctx,
    );
}

//
// Fill in the next marker with the string representing DP
//
pub fn TSTMSD(DP: f64, ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    spicelib::REPMD(
        &save.EXTRA.to_vec(),
        &save.MYMARK,
        DP,
        14,
        &mut save.EXTRA,
        ctx,
    );
}

pub fn TSTMSF(DP: f64, ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    spicelib::REPMF(
        &save.EXTRA.to_vec(),
        &save.MYMARK,
        DP,
        14,
        b"F",
        &mut save.EXTRA,
        ctx,
    );
}

//
// Fill in the next marker with the character string MESSGE.
//
pub fn TSTMSC(MESSGE: &[u8], ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    save.R = spicelib::RTRIM(MESSGE);

    spicelib::REPMC(
        &save.EXTRA.to_vec(),
        &save.MYMARK,
        fstr::substr(MESSGE, 1..=save.R),
        &mut save.EXTRA,
    );
}

//$Procedure TSTMSO ( Replace marker with ordinal )
pub fn TSTMSO(INT: i32, MARKER: &[u8], ctx: &mut Context) -> f2rust_std::Result<()> {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    let MARKER = &MARKER[..1 as usize];

    if (((((fstr::ne(MARKER, b"C") && fstr::ne(MARKER, b"c")) && fstr::ne(MARKER, b"l"))
        && fstr::ne(MARKER, b"u"))
        && fstr::ne(MARKER, b"L"))
        && fstr::ne(MARKER, b"U"))
    {
        spicelib::REPMOT(
            &save.EXTRA.to_vec(),
            &save.MYMARK,
            INT,
            b"l",
            &mut save.EXTRA,
            ctx,
        )?;
    } else {
        spicelib::REPMOT(
            &save.EXTRA.to_vec(),
            &save.MYMARK,
            INT,
            MARKER,
            &mut save.EXTRA,
            ctx,
        )?;
    }
    Ok(())
}

pub fn TSTMST(INT: i32, MARKER: &[u8], ctx: &mut Context) -> f2rust_std::Result<()> {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    let MARKER = &MARKER[..1 as usize];

    if (((((fstr::ne(MARKER, b"C") && fstr::ne(MARKER, b"c")) && fstr::ne(MARKER, b"l"))
        && fstr::ne(MARKER, b"u"))
        && fstr::ne(MARKER, b"L"))
        && fstr::ne(MARKER, b"U"))
    {
        spicelib::REPMCT(
            &save.EXTRA.to_vec(),
            &save.MYMARK,
            INT,
            b"l",
            &mut save.EXTRA,
            ctx,
        )?;
    } else {
        spicelib::REPMCT(
            &save.EXTRA.to_vec(),
            &save.MYMARK,
            INT,
            MARKER,
            &mut save.EXTRA,
            ctx,
        )?;
    }
    Ok(())
}

//
// Turn off the test message so that it will not be shown.
//
pub fn TSTMOF(ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    save.SHOW = false;
}

//$Procedure ZZTSTRE (reset the error log file flag)
pub fn ZZTSTRE(ctx: &mut Context) {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    save.OPNERR = true;
}