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
//
// GENERATED FILE
//
use super::*;
use f2rust_std::*;
const FTSIZE: i32 = 5000;
const RSVUNT: i32 = 2;
const SCRUNT: i32 = 1;
const UTSIZE: i32 = ((20 + SCRUNT) + RSVUNT);
const READ: i32 = 1;
const WRITE: i32 = 2;
const SCRTCH: i32 = 3;
const NEW: i32 = 4;
const NUMAMH: i32 = 4;
const BIGI3E: i32 = 1;
const LTLI3E: i32 = 2;
const VAXGFL: i32 = 3;
const VAXDFL: i32 = 4;
const NUMBFF: i32 = 4;
const STRSIZ: i32 = 8;
const STRLEN: i32 = ((STRSIZ + 1) * NUMBFF);
const DAF: i32 = 1;
const DAS: i32 = 2;
const NUMARC: i32 = 2;
const RECL: i32 = 1024;
const FILEN: i32 = 255;
const CBFSIZ: i32 = 1024;
//$Procedure F_DDHISN ( ZZDDHISN Test Family )
pub fn F_DDHISN(OK: &mut bool, ctx: &mut Context) -> f2rust_std::Result<()> {
let mut ARCH = [b' '; 20 as usize];
let mut FNAME = [b' '; FILEN as usize];
let mut FNMPAT = [b' '; FILEN as usize];
let mut METHOD = [b' '; 20 as usize];
let mut STRNAT = [b' '; STRSIZ as usize];
let mut STRNOW = [b' '; STRSIZ as usize];
let mut RDSBFF = [b' '; STRLEN as usize];
let mut HANDLE = StackArray::<i32, 4>::new(1..=NUMBFF);
let mut I: i32 = 0;
let mut NATFID: i32 = 0;
let mut NUMFIL: i32 = 0;
let mut FOUND: bool = false;
let mut NATIVE: bool = false;
//
// SPICELIB Functions
//
//
// Local Variables
//
//
// Start the test family with an open call.
//
testutil::TOPEN(b"F_DDHISN", ctx)?;
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"F_DDHISN Initialization", ctx)?;
//
// Get the native binary file format for this platform.
//
spicelib::ZZPLATFM(b"FILE_FORMAT", &mut STRNAT, ctx);
spicelib::UCASE(&STRNAT.clone(), &mut STRNAT, ctx);
//
// Get the list of supported binary file formats for this platform.
//
spicelib::ZZPLATFM(b"READS_BFF", &mut RDSBFF, ctx);
spicelib::UCASE(&RDSBFF.clone(), &mut RDSBFF, ctx);
//
// Set the filename pattern we will use.
//
fstr::assign(&mut FNMPAT, b"test#.fil");
//
// Now create a file of each supported type. We are just going to
// trick the system into thinking it's an actual file of this type.
//
I = 1;
spicelib::NEXTWD(&RDSBFF.clone(), &mut STRNOW, &mut RDSBFF);
while fstr::ne(&STRNOW, b" ") {
//
// Build the name of the file we intend to use.
//
spicelib::REPMI(&FNMPAT, b"#", I, &mut FNAME, ctx);
//
// Check to see if this is the native format.
//
if spicelib::EQSTR(&STRNOW, &STRNAT) {
NATFID = I;
}
//
// Create the file.
//
T_CPTFIL(
&FNAME,
DAF,
2,
&STRNOW,
b"ABCD",
b"EFGH",
b"IJKL",
true,
false,
b"DAF/SPK ",
ctx,
)?;
//
// Open the file into the handle manager.
//
fstr::assign(&mut METHOD, b"READ");
fstr::assign(&mut ARCH, b"DAF");
spicelib::ZZDDHOPN(&FNAME, &METHOD, &ARCH, &mut HANDLE[I], ctx)?;
//
// Strip off the next word from RDSBFF and increment I.
//
spicelib::NEXTWD(&RDSBFF.clone(), &mut STRNOW, &mut RDSBFF);
I = (I + 1);
}
//
// Store the number of files we placed into the handle list.
//
NUMFIL = (I - 1);
//
// Check for the absence of an exception.
//
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Now that we have finished all of the initialization stuff,
// break the tests into two cases. NATIVE files and NON-NATIVE
// files.
//
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"Exercise Native File Logic", ctx)?;
//
// Setup the inputs and outputs.
//
NATIVE = false;
FOUND = false;
//
// Invoke the module.
//
spicelib::ZZDDHISN(HANDLE[NATFID], &mut NATIVE, &mut FOUND, ctx)?;
//
// Check for the absence of an exception.
//
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Check outputs.
//
testutil::CHCKSL(b"NATIVE", NATIVE, true, OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"Exercise Non-Native File Logic", ctx)?;
{
let m1__: i32 = 1;
let m2__: i32 = NUMFIL;
let m3__: i32 = 1;
I = m1__;
for _ in 0..((m2__ - m1__ + m3__) / m3__) as i32 {
//
// First check to see that this file is not of the native
// format.
//
if (I != NATFID) {
//
// Setup the inputs and outputs.
//
NATIVE = true;
FOUND = false;
//
// Invoke the module.
//
spicelib::ZZDDHISN(HANDLE[I], &mut NATIVE, &mut FOUND, ctx)?;
//
// Check for the absence of an exception.
//
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Check outputs.
//
testutil::CHCKSL(b"NATIVE", NATIVE, false, OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, true, OK, ctx)?;
}
I += m3__;
}
}
//
// --- Case: ------------------------------------------------------
//
testutil::TCASE(b"Exercise Unknown Handle Exception Logic", ctx)?;
//
// Setup inputs and outputs for the zero-valued handle test.
//
NATIVE = false;
FOUND = true;
//
// Invoke the module.
//
spicelib::ZZDDHISN(0, &mut NATIVE, &mut FOUND, ctx)?;
//
// Check for the absence of an exception.
//
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Check the outputs. Since FOUND is FALSE, NATIVE should remain
// unchanged.
//
testutil::CHCKSL(b"NATIVE", NATIVE, false, OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, false, OK, ctx)?;
//
// Setup the inputs and outputs for the opposite-sign handle test.
//
NATIVE = true;
FOUND = false;
//
// Invoke the module.
//
spicelib::ZZDDHISN(-HANDLE[1], &mut NATIVE, &mut FOUND, ctx)?;
//
// Check for the absence of an exception.
//
testutil::CHCKXC(false, b" ", OK, ctx)?;
//
// Check outputs.
//
testutil::CHCKSL(b"NATIVE", NATIVE, true, OK, ctx)?;
testutil::CHCKSL(b"FOUND", FOUND, false, OK, ctx)?;
//
// ----------------------------------------------------------------
//
// Now clean up.
//
{
let m1__: i32 = 1;
let m2__: i32 = NUMFIL;
let m3__: i32 = 1;
I = m1__;
for _ in 0..((m2__ - m1__ + m3__) / m3__) as i32 {
spicelib::ZZDDHCLS(HANDLE[I], &ARCH, false, ctx)?;
spicelib::REPMI(&FNMPAT, b"#", I, &mut FNAME, ctx);
testutil::KILFIL(&FNAME, ctx)?;
I += m3__;
}
}
//
// Close out the test family.
//
testutil::T_SUCCESS(OK, ctx);
Ok(())
}