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
|
include "cqdef.h"
include "cq.h"
# CQ_HINFO -- Get the header keyword value by keyword name.
int procedure cq_hinfo (res, hkname, hkvalue, sz_hkvalue)
pointer res #I the results descriptor
char hkname[ARB] #I the header keyword name
char hkvalue[ARB] #O the header keyword value
int sz_hkvalue #I the maximum size of the keyword value
pointer sp, kname
int kwno
int strdic(), cq_wrdstr()
begin
# Return if there are no fields.
if (CQ_NHEADER(res) <= 0)
return (0)
call smark (sp)
call salloc (kname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
kwno = strdic (hkname, Memc[kname], CQ_SZ_FNAME, Memc[CQ_HKNAMES(res)])
if (kwno <= 0) {
call sfree (sp)
return (0)
}
# Retrieve the keyword value.
if (cq_wrdstr (kwno, hkvalue, sz_hkvalue, Memc[CQ_HKVALUES(res)]) <= 0)
hkvalue[1] = EOS
call sfree (sp)
return (kwno)
end
# CQ_HINFON -- Get the header keyword name and value using the keyword number.
int procedure cq_hinfon (res, kwno, hkname, sz_hkname, hkvalue, sz_hkvalue)
pointer res #I the results descriptor
int kwno #I the keyword number
char hkname[ARB] #O the header keyword name
int sz_hkname #I the maximum size of the keyword name
char hkvalue[ARB] #O the header keyword value
int sz_hkvalue #I the maximum size of the keyword value
int cq_wrdstr()
begin
# Return if there are no keywords.
if (CQ_NHEADER(res) <= 0)
return (0)
# Return if the keyword is out of bounds.
if (kwno < 1 || kwno > CQ_NHEADER(res))
return (0)
# Retrieve the keyword value.
if (cq_wrdstr (kwno, hkname, sz_hkname, Memc[CQ_HKNAMES(res)]) <= 0)
hkname[1] = EOS
# Retrieve the keyword value.
if (cq_wrdstr (kwno, hkvalue, sz_hkvalue, Memc[CQ_HKVALUES(res)]) <= 0)
hkvalue[1] = EOS
return (kwno)
end
# CQ_FINFO -- Get the field description by field name.
int procedure cq_finfo (res, field, foffset, fsize, ftype, units, sz_units,
fmts, sz_fmts)
pointer res #I the results descriptor
char field[ARB] #I the field name
int foffset #O the output field offset
int fsize #O the output field size
int ftype #O the output field datatype
char units[ARB] #O the outpit field units string
int sz_units #I the maximum size of the units string
char fmts[ARB] #O the outpit field formats string
int sz_fmts #I the maximum size of the formats string
pointer sp, fname
int fieldno
int strdic(), cq_wrdstr()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0)
return (0)
call smark (sp)
call salloc (fname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
fieldno = strdic (field, Memc[fname], CQ_SZ_FNAME, Memc[CQ_FNAMES(res)])
if (fieldno <= 0) {
call sfree (sp)
return (0)
}
# Get the field offset, size, and type.
foffset = Memi[CQ_FOFFSETS(res)+fieldno-1]
fsize = Memi[CQ_FSIZES(res)+fieldno-1]
ftype = Memi[CQ_FTYPES(res)+fieldno-1]
# Get the field units and format.
if (cq_wrdstr (fieldno, units, sz_units, Memc[CQ_FUNITS(res)]) <= 0)
units[1] = EOS
if (cq_wrdstr (fieldno, fmts, sz_fmts, Memc[CQ_FFMTS(res)]) <= 0)
fmts[1] = EOS
call sfree (sp)
return (fieldno)
end
# CQ_FNUMBER -- Get the field number given the field name.
int procedure cq_fnumber (res, field)
pointer res #I the results descriptor
char field[ARB] #I the field name
pointer sp, fname
int fieldno
int strdic()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0)
return (0)
call smark (sp)
call salloc (fname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
fieldno = strdic (field, Memc[fname], CQ_SZ_FNAME, Memc[CQ_FNAMES(res)])
call sfree (sp)
return (fieldno)
end
# CQ_FOFFSET -- Get the field offset given the field name.
int procedure cq_foffset (res, field)
pointer res #I the results descriptor
char field[ARB] #I the field name
pointer sp, fname
int fieldno
int strdic()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0)
return (0)
call smark (sp)
call salloc (fname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
fieldno = strdic (field, Memc[fname], CQ_SZ_FNAME, Memc[CQ_FNAMES(res)])
call sfree (sp)
if (fieldno <= 0)
return (0)
else
return (Memi[CQ_FOFFSETS(res)+fieldno-1])
end
# CQ_FSIZE -- Get the field offset given the field name.
int procedure cq_fsize (res, field)
pointer res #I the results descriptor
char field[ARB] #I the field name
pointer sp, fname
int fieldno
int strdic()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0)
return (0)
call smark (sp)
call salloc (fname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
fieldno = strdic (field, Memc[fname], CQ_SZ_FNAME, Memc[CQ_FNAMES(res)])
call sfree (sp)
if (fieldno <= 0)
return (0)
else
return (Memi[CQ_FSIZES(res)+fieldno-1])
end
# CQ_FTYPE -- Get the field type given the field name.
int procedure cq_ftype (res, field)
pointer res #I the results descriptor
char field[ARB] #I the field name
pointer sp, fname
int fieldno
int strdic()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0)
return (0)
call smark (sp)
call salloc (fname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
fieldno = strdic (field, Memc[fname], CQ_SZ_FNAME, Memc[CQ_FNAMES(res)])
call sfree (sp)
if (fieldno <= 0)
return (0)
else
return (Memi[CQ_FTYPES(res)+fieldno-1])
end
# CQ_FUNITS -- Get the field units given the field name.
procedure cq_funits (res, field, units, sz_units)
pointer res #I the results descriptor
char field[ARB] #I the field name
char units[ARB] #O the output units string
int sz_units #I the maximum size of the units string
pointer sp, fname
int fieldno
int strdic(), cq_wrdstr()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0) {
units[1] = EOS
return
}
call smark (sp)
call salloc (fname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
fieldno = strdic (field, Memc[fname], CQ_SZ_FNAME, Memc[CQ_FNAMES(res)])
# Get the units string.
if (fieldno > 0) {
if (cq_wrdstr (fieldno, units, sz_units, Memc[CQ_FUNITS(res)]) <= 0)
units[1] = EOS
} else
units[1] = EOS
call sfree (sp)
end
# CQ_FFMTS -- Get the field format given the field name.
procedure cq_ffmts (res, field, format, sz_format)
pointer res #I the results descriptor
char field[ARB] #I the field name
char format[ARB] #O the output format string
int sz_format #I the maximum size of the format string
pointer sp, fname
int fieldno
int strdic(), cq_wrdstr()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0) {
format[1] = EOS
return
}
call smark (sp)
call salloc (fname, CQ_SZ_FNAME, TY_CHAR)
# Find the requested field.
fieldno = strdic (field, Memc[fname], CQ_SZ_FNAME, Memc[CQ_FNAMES(res)])
# Get the units string.
if (fieldno > 0) {
if (cq_wrdstr (fieldno, format, sz_format,
Memc[CQ_FFMTS(res)]) <= 0)
format[1] = EOS
} else
format[1] = EOS
call sfree (sp)
end
# CQ_FINFON -- Get the field description by field number.
int procedure cq_finfon (res, fieldno, fname, sz_fname, foffset, fsize, ftype,
units, sz_units, fmts, sz_fmts)
pointer res #I the results descriptor
int fieldno #I the input field number
char fname[ARB] #O the field name
int sz_fname #I the maximum field name size
int foffset #O the output field offset
int fsize #O the output field size
int ftype #O the output field datatype
char units[ARB] #O the outpit field units string
int sz_units #I the maximum size of the units string
char fmts[ARB] #O the outpit field formats string
int sz_fmts #I the maximum size of the formats string
int cq_wrdstr()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0)
return (0)
if (fieldno <= 0 || fieldno > CQ_NFIELDS(res))
return (0)
# Get the field name.
if (cq_wrdstr (fieldno, fname, sz_fname, Memc[CQ_FNAMES(res)]) <= 0)
return (0)
# Set the field offset, size, and type.
foffset = Memi[CQ_FOFFSETS(res)+fieldno-1]
fsize = Memi[CQ_FSIZES(res)+fieldno-1]
ftype = Memi[CQ_FTYPES(res)+fieldno-1]
if (cq_wrdstr (fieldno, units, sz_units, Memc[CQ_FUNITS(res)]) <= 0)
units[1] = EOS
if (cq_wrdstr (fieldno, fmts, sz_fmts, Memc[CQ_FFMTS(res)]) <= 0)
fmts[1] = EOS
return (fieldno)
end
# CQ_FNAME -- Get the field name given the field number.
int procedure cq_fname (res, fieldno, fname, sz_fname)
pointer res #I the results descriptor
int fieldno #I the input field number
char fname[ARB] #O the field name
int sz_fname #I the maximum field name size
int cq_wrdstr()
begin
# Return if there are no fields.
if (CQ_NFIELDS(res) <= 0)
return (0)
if (fieldno <= 0 || fieldno > CQ_NFIELDS(res))
return (0)
# Get the field name.
if (cq_wrdstr (fieldno, fname, sz_fname, Memc[CQ_FNAMES(res)]) <= 0)
return (0)
return (fieldno)
end
|