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
//
// GENERATED FILE
//
use super::*;
use f2rust_std::*;
const TXT: &[u8] = b"test.ker";
const LBCELL: i32 = -5;
const TABCDE: i32 = 9;
const LNSIZE: i32 = 60;
const MAXBUF: i32 = 21;
//$Procedure F_TABTXT ( Text kernel tab processing tests )
pub fn F_TABTXT(OK: &mut bool, ctx: &mut Context) -> f2rust_std::Result<()> {
let mut FILBUF = ActualCharArray::new(LNSIZE, LBCELL..=MAXBUF);
let mut TABBUF = ActualCharArray::new(LNSIZE, LBCELL..=MAXBUF);
let mut KV1 = ActualCharArray::new(LNSIZE, 1..=3);
let mut XCVAR = ActualCharArray::new(LNSIZE, 1..=3);
let mut KV2 = StackArray::<f64, 3>::new(1..=3);
let mut KV3 = StackArray::<f64, 3>::new(1..=3);
let mut XDPVAR = StackArray::<f64, 3>::new(1..=3);
let mut I: i32 = 0;
let mut N: i32 = 0;
let mut UNIT: i32 = 0;
let mut FOUND: bool = false;
let mut BEGDATC = [b' '; 20 as usize];
let mut BEGTXTC = [b' '; 20 as usize];
//
// SPICELIB functions
//
//
// Non-SPICELIB functions
//
//
// Local Parameters
//
//
// Local Variables
//
//
// Open the test family.
//
testutil::TOPEN(b"F_TABTXT", ctx)?;
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"Init: create a normal text kernel file.", ctx)?;
//
// Initialize cell arrays, so Valgrind won't complain about
// copying cells.
//
{
let m1__: i32 = LBCELL;
let m2__: i32 = MAXBUF;
let m3__: i32 = 1;
I = m1__;
for _ in 0..((m2__ - m1__ + m3__) / m3__) as i32 {
fstr::assign(FILBUF.get_mut(I), b" ");
fstr::assign(TABBUF.get_mut(I), b" ");
I += m3__;
}
}
//
// Rather than create a text kernel using an existing utility
// routine, we create the file in-line so that we can ensure
// the file has an instance of each structural feature.
//
spicelib::SSIZEC(MAXBUF, FILBUF.as_arg_mut(), ctx)?;
testutil::BEGDAT(&mut BEGDATC);
testutil::BEGTXT(&mut BEGTXTC);
fstr::assign(FILBUF.get_mut(1), b" ");
fstr::assign(FILBUF.get_mut(2), b" KPL/PCK");
fstr::assign(FILBUF.get_mut(3), b" ");
fstr::assign(FILBUF.get_mut(4), &fstr::concat(b" ", &BEGDATC));
fstr::assign(FILBUF.get_mut(5), b" ");
fstr::assign(FILBUF.get_mut(6), b" KV1 = ( \' A \', \' B \', \' C \' )");
fstr::assign(FILBUF.get_mut(7), b" KV2 = ( 1.0, 2.0, 3.0 )");
fstr::assign(FILBUF.get_mut(8), b" ");
fstr::assign(FILBUF.get_mut(9), &fstr::concat(b" ", &BEGTXTC));
fstr::assign(FILBUF.get_mut(10), b" ");
fstr::assign(FILBUF.get_mut(11), b" Comment line 1");
fstr::assign(FILBUF.get_mut(12), b" Comment line 2");
fstr::assign(FILBUF.get_mut(13), b" Comment line 3");
fstr::assign(FILBUF.get_mut(14), b" ");
fstr::assign(FILBUF.get_mut(15), &fstr::concat(b" ", &BEGDATC));
fstr::assign(FILBUF.get_mut(16), b" KV3 = ( -1.0, -2.0, ");
fstr::assign(FILBUF.get_mut(17), b" ");
fstr::assign(FILBUF.get_mut(18), b" -3.0 )");
fstr::assign(FILBUF.get_mut(19), b" ");
fstr::assign(FILBUF.get_mut(20), &fstr::concat(b" ", &BEGTXTC));
fstr::assign(FILBUF.get_mut(21), b" ");
spicelib::SCARDC(MAXBUF, FILBUF.as_arg_mut(), ctx)?;
//
// Open and write the file.
//
spicelib::TXTOPN(TXT, &mut UNIT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
if *OK {
I = 1;
while (*OK && (I <= spicelib::CARDC(FILBUF.as_arg(), ctx)?)) {
spicelib::WRITLN(&FILBUF[I], UNIT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
I = (I + 1);
}
}
{
use f2rust_std::io;
let specs = io::CloseSpecs {
unit: Some(UNIT),
..Default::default()
};
ctx.close(specs)?;
}
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"Control case: load normal file and check.", ctx)?;
spicelib::LDPOOL(TXT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Check the string variable KV1.
//
spicelib::GCPOOL(b"KV1", 1, 3, &mut N, KV1.as_arg_mut(), &mut FOUND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
if FOUND {
testutil::CHCKSI(b"N", N, b"=", 3, 0, OK, ctx)?;
fstr::assign(XCVAR.get_mut(1), b" A");
fstr::assign(XCVAR.get_mut(2), b" B");
fstr::assign(XCVAR.get_mut(3), b" C");
testutil::CHCKAC(b"KV1", KV1.as_arg(), b"=", XCVAR.as_arg(), 3, OK, ctx)?;
}
//
// Check the d.p. variable KV2.
//
spicelib::GDPOOL(b"KV2", 1, 3, &mut N, KV2.as_slice_mut(), &mut FOUND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
if FOUND {
testutil::CHCKSI(b"N", N, b"=", 3, 0, OK, ctx)?;
XDPVAR[1] = 1.0;
XDPVAR[2] = 2.0;
XDPVAR[3] = 3.0;
testutil::CHCKAD(
b"KV2",
KV2.as_slice(),
b"=",
XDPVAR.as_slice(),
3,
0.0,
OK,
ctx,
)?;
}
//
// Check the d.p. variable KV3.
//
spicelib::GDPOOL(b"KV3", 1, 3, &mut N, KV3.as_slice_mut(), &mut FOUND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
if FOUND {
testutil::CHCKSI(b"N", N, b"=", 3, 0, OK, ctx)?;
XDPVAR[1] = -1.0;
XDPVAR[2] = -2.0;
XDPVAR[3] = -3.0;
testutil::CHCKAD(
b"KV3",
KV3.as_slice(),
b"=",
XDPVAR.as_slice(),
3,
0.0,
OK,
ctx,
)?;
}
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"Money case: load tab-ridden file and check.", ctx)?;
//
// TABBUF will contain the same string data as FILBUF, except
// that every blank in FILBUF is replaced by a tab character.
//
spicelib::SSIZEC(MAXBUF, TABBUF.as_arg_mut(), ctx)?;
spicelib::COPYC(FILBUF.as_arg(), TABBUF.as_arg_mut(), ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
{
let m1__: i32 = 1;
let m2__: i32 = spicelib::CARDC(TABBUF.as_arg(), ctx)?;
let m3__: i32 = 1;
I = m1__;
for _ in 0..((m2__ - m1__ + m3__) / m3__) as i32 {
spicelib::REPLCH(
&TABBUF[I].to_vec(),
b" ",
&intrinsics::CHAR(TABCDE),
&mut TABBUF[I],
);
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// The following lines of code, which are intentionally commented
// out, can be used to verify that tab characters have been
// inserted where expected. This can be useful because
// applications one might use to view the file we're creating
// don't necessarily display all tab characters as a fixed set of
// consecutive blank spaces. For example, the programs cat, more,
// vi, and emacs, at least as configured on the author's
// computer, all show a single blank space between the words
// "Comment" and "line", even though a tab character is actually
// present between them, while other tabs are shown as multiple
// consecutive blanks.
//
// CALL REPLCH ( TABBUF(I), CHAR(TABCDE), '@', TABBUF(I) )
// WRITE (*,*) TABBUF(I)
// CALL REPLCH ( TABBUF(I), '@', CHAR(TABCDE), TABBUF(I) )
//
//
// The output created by these lines is shown below.
//
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @KPL/PCK@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @\begindata@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @KV1@=@(@'@A@',@'@B@',@'@C@'@)@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @KV2@=@(@1.0,@2.0,@3.0@)@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @\begintext@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @Comment@line@1@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @Comment@line@2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @Comment@line@3@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @\begindata@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @KV3@=@(@-1.0,@-2.0,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @-3.0@)@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @\begintext@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//
I += m3__;
}
}
//
// Empty the kernel pool. Delete the normal kernel.
//
spicelib::CLPOOL(ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
spicelib::DELFIL(TXT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Open and write the new file containing tabs.
//
spicelib::TXTOPN(TXT, &mut UNIT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
if *OK {
I = 1;
while (*OK && (I <= spicelib::CARDC(TABBUF.as_arg(), ctx)?)) {
spicelib::WRITLN(&TABBUF[I], UNIT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
I = (I + 1);
}
}
{
use f2rust_std::io;
let specs = io::CloseSpecs {
unit: Some(UNIT),
..Default::default()
};
ctx.close(specs)?;
}
//
// Load the new kernel. We don't expect to hit any
// SPICE errors, even though the file contains tabs.
//
spicelib::LDPOOL(TXT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Check the string variable KV1.
//
spicelib::GCPOOL(b"KV1", 1, 3, &mut N, KV1.as_arg_mut(), &mut FOUND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
if FOUND {
testutil::CHCKSI(b"N", N, b"=", 3, 0, OK, ctx)?;
fstr::assign(XCVAR.get_mut(1), b" A");
fstr::assign(XCVAR.get_mut(2), b" B");
fstr::assign(XCVAR.get_mut(3), b" C");
//
// On some systems, each tab in an input text line will be
// replaced by one or more blanks on input, before RDKER has a
// chance to process the line. This can cause the values
// of the string variables to have extra leading blanks.
// Compress out any such blanks.
//
{
let m1__: i32 = 1;
let m2__: i32 = 3;
let m3__: i32 = 1;
I = m1__;
for _ in 0..((m2__ - m1__ + m3__) / m3__) as i32 {
spicelib::CMPRSS(b" ", 1, &KV1[I].to_vec(), &mut KV1[I]);
I += m3__;
}
}
testutil::CHCKAC(b"KV1", KV1.as_arg(), b"=", XCVAR.as_arg(), 3, OK, ctx)?;
}
//
// Check the d.p. variable KV2.
//
spicelib::GDPOOL(b"KV2", 1, 3, &mut N, KV2.as_slice_mut(), &mut FOUND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
if FOUND {
testutil::CHCKSI(b"N", N, b"=", 3, 0, OK, ctx)?;
XDPVAR[1] = 1.0;
XDPVAR[2] = 2.0;
XDPVAR[3] = 3.0;
testutil::CHCKAD(
b"KV2",
KV2.as_slice(),
b"=",
XDPVAR.as_slice(),
3,
0.0,
OK,
ctx,
)?;
}
//
// Check the d.p. variable KV3.
//
spicelib::GDPOOL(b"KV3", 1, 3, &mut N, KV3.as_slice_mut(), &mut FOUND, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
if FOUND {
testutil::CHCKSI(b"N", N, b"=", 3, 0, OK, ctx)?;
XDPVAR[1] = -1.0;
XDPVAR[2] = -2.0;
XDPVAR[3] = -3.0;
testutil::CHCKAD(
b"KV3",
KV3.as_slice(),
b"=",
XDPVAR.as_slice(),
3,
0.0,
OK,
ctx,
)?;
}
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"Clean up: delete text kernel file.", ctx)?;
spicelib::CLPOOL(ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
spicelib::DELFIL(TXT, ctx)?;
testutil::CHCKXC(false, b" ", OK, ctx)?;
testutil::T_SUCCESS(OK, ctx);
Ok(())
}