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
|
include <ctype.h>
$for (r)
# LI_FIND_FIELDS -- This procedure finds the starting column for each field
# in the input line. These column numbers are returned in the array
# field_pos; the number of fields is also returned.
procedure li_find_fields (linebuf, field_pos, max_fields, nfields)
char linebuf[ARB] #I the input buffer
int field_pos[max_fields] #O the output field positions
int max_fields #I the maximum number of fields
int nfields #O the computed number of fields
bool in_field
int ip, field_num
begin
field_num = 1
field_pos[1] = 1
in_field = false
for (ip=1; linebuf[ip] != '\n' && linebuf[ip] != EOS; ip=ip+1) {
if (! IS_WHITE(linebuf[ip]))
in_field = true
else if (in_field) {
in_field = false
field_num = field_num + 1
field_pos[field_num] = ip
}
}
field_pos[field_num+1] = ip
nfields = field_num
end
# LI_CAPPEND_LINE -- Fields are copied from the input buffer to the
# output buffer.
procedure li_cappend_line (inbuf, outbuf, maxch, xoffset, yoffset,
xwidth, ywidth)
char inbuf[ARB] #I the input string buffer
char outbuf[maxch] #O the output string buffer
int maxch #I the maximum size of the output buffer
int xoffset #I the offset to the x field
int yoffset #I the offset to the y field
int xwidth #I the width of the x field
int ywidth #I the width of the y field
int ip, op
int gstrcpy()
begin
# Copy the input buffer into the output buffer minus the newline.
op = 1
for (ip = 1; ip <= maxch; ip = ip + 1) {
if (inbuf[ip] == '\n' || inbuf[ip] == EOS)
break
outbuf[op] = inbuf[ip]
op = op + 1
}
# Add a blank.
if (op <= maxch) {
outbuf[op] = ' '
op = op + 1
}
# Copy the two fields.
op = op + gstrcpy (inbuf[xoffset], outbuf[op], min (maxch - op + 1,
xwidth))
op = op + gstrcpy (inbuf[yoffset], outbuf[op], min (maxch - op + 1,
ywidth))
# Add a newline.
if (op <= maxch) {
outbuf[op] = '\n'
op = op + 1
}
outbuf[op] = EOS
end
define LOGPTR 20 # log2(maxpts) (1e6)
# LI_PQSORTI -- Vector quicksort an integer array. In this version the index
# array is actually sorted not the data array. The input and output index
# arrays may be the same.
procedure li_pqsorti (data, a, b, npix)
int data[ARB] # data array
int a[ARB] # input index array
int b[ARB] # output index array
int npix # number of pixels
int i, j, lv[LOGPTR], p, uv[LOGPTR], temp, pivot
begin
# Initialize the indices for an inplace sort.
call amovi (a, b, npix)
p = 1
lv[1] = 1
uv[1] = npix
while (p > 0) {
# If only one elem in subset pop stack otherwise pivot line.
if (lv[p] >= uv[p])
p = p - 1
else {
i = lv[p] - 1
j = uv[p]
pivot = data[b[j]]
while (i < j) {
for (i=i+1; data[b[i]] < pivot; i=i+1)
;
for (j=j-1; j > i; j=j-1)
if (data[b[j]] <= pivot)
break
if (i < j) { # out of order pair
temp = b[j] # interchange elements
b[j] = b[i]
b[i] = temp
}
}
j = uv[p] # move pivot to position i
temp = b[j] # interchange elements
b[j] = b[i]
b[i] = temp
if (i-lv[p] < uv[p] - i) { # stack so shorter done first
lv[p+1] = lv[p]
uv[p+1] = i - 1
lv[p] = i + 1
} else {
lv[p+1] = i + 1
uv[p+1] = uv[p]
uv[p] = i - 1
}
p = p + 1 # push onto stack
}
}
end
$endfor
$for (rd)
# LT_GET_NUM -- The field entry is converted from character to real or double
# in preparation for the transformation. The number of significant
# digits is counted and returned as an argument; the number of chars in
# the number is returned as the function value.
int procedure li_get_num$t (linebuf, fval, nsdig)
char linebuf[ARB] #I the input line buffer
PIXEL fval #O the output floating point value
int nsdig #O the number of significant digits
char ch
int nchar, ip
int cto$t(), stridx()
begin
ip = 1
nsdig = 0
nchar = cto$t (linebuf, ip, fval)
if (nchar == 0 || fval == $INDEF$T)
return (nchar)
# Skip leading white space.
ip = 1
repeat {
ch = linebuf[ip]
if (! IS_WHITE(ch))
break
ip = ip + 1
}
# Count signifigant digits
for (; ! IS_WHITE(ch) && ch != '\n' && ch != EOS; ch=linebuf[ip]) {
if (stridx (ch, "eEdD") > 0)
break
if (IS_DIGIT (ch))
nsdig = nsdig + 1
ip = ip + 1
}
return (nchar)
end
# LI_PACK_LINE -- Fields are packed into the outbuf buffer. Transformed
# fields are converted to strings; other fields are copied from
# the input line to output buffer.
procedure li_pack_line$t (inbuf, outbuf, maxch, field_pos, nfields,
xfield, yfield, xt, yt, xformat, yformat, nsdig_x, nsdig_y,
min_sigdigits)
char inbuf[ARB] #I the input string buffer
char outbuf[maxch] #O the output string buffer
int maxch #I the maximum size of the output buffer
int field_pos[ARB] #I starting positions for the fields
int nfields #I the number of fields
int xfield #I the field number of the x coordinate column
int yfield #I the field number of the y coordinate column
PIXEL xt #I the transformed x coordinate
PIXEL yt #I the transformed y coordinate
char xformat[ARB] #I the output format for the x column
char yformat[ARB] #I the output format for the y column
int nsdig_x #I the number of significant digits in x
int nsdig_y #I the number of significant digits in y
int min_sigdigits #I the minimum number of significant digits
int num_field, width, op
pointer sp, field
int gstrcpy()
begin
call smark (sp)
call salloc (field, SZ_LINE, TY_CHAR)
# Initialize output pointer.
op = 1
do num_field = 1, nfields {
width = field_pos[num_field + 1] - field_pos[num_field]
if (num_field == xfield) {
call li_format_field$t (xt, Memc[field], maxch, xformat,
nsdig_x, width, min_sigdigits)
} else if (num_field == yfield) {
call li_format_field$t (yt, Memc[field], maxch, yformat,
nsdig_y, width, min_sigdigits)
} else {
# Put "width" characters from inbuf into field
call strcpy (inbuf[field_pos[num_field]], Memc[field], width)
}
# Fields must be delimited by at least one blank.
if (num_field > 1 && !IS_WHITE (Memc[field])) {
outbuf[op] = ' '
op = op + 1
}
# Copy "field" to output buffer.
op = op + gstrcpy (Memc[field], outbuf[op], maxch)
}
outbuf[op] = '\n'
outbuf[op+1] = EOS
call sfree (sp)
end
# LI_NPACK_LINE -- Fields are packed into the outbuf buffer. Transformed
# fields are converted to strings; other fields are copied from
# the input line to output buffer.
procedure li_npack_line$t (inbuf, outbuf, maxch, field_pos, nfields,
vfields, values, nsdigits, nvalues, vformats, sz_fmt, min_sigdigits)
char inbuf[ARB] #I the input string buffer
char outbuf[maxch] #O the output string buffer
int maxch #I the maximum size of the output buffer
int field_pos[ARB] #I starting positions for the fields
int nfields #I the number of fields
int vfields[ARB] #I the fields to be formatted
PIXEL values[ARB] #I the field values to be formatted
int nsdigits[ARB] #I the number of field significant digits
int nvalues #I the number of fields to be formatted
char vformats[sz_fmt,ARB] #I the field formats
int sz_fmt #I the size of the format string
int min_sigdigits #I the minimum number of significant digits
bool found
int op, num_field, num_var, width
pointer sp, field
int gstrcpy()
begin
call smark (sp)
call salloc (field, SZ_LINE, TY_CHAR)
# Initialize output pointer.
op = 1
do num_field = 1, nfields {
width = field_pos[num_field + 1] - field_pos[num_field]
found = false
do num_var = 1, nvalues {
if (num_field == vfields[num_var]) {
found = true
break
}
}
if (found) {
call li_format_field$t (values[num_var], Memc[field],
maxch, vformats[1,num_var], nsdigits[num_var], width,
min_sigdigits)
} else {
# Put "width" characters from inbuf into field
call strcpy (inbuf[field_pos[num_field]], Memc[field], width)
}
# Fields must be delimited by at least one blank.
if (num_field > 1 && !IS_WHITE (Memc[field])) {
outbuf[op] = ' '
op = op + 1
}
# Copy "field" to output buffer.
op = op + gstrcpy (Memc[field], outbuf[op], maxch)
}
outbuf[op] = '\n'
outbuf[op+1] = EOS
call sfree (sp)
end
# LI_APPEND_LINE -- Fields are appened to the input buffer. Transformed
# fields are converted to strings and added to the end of the input buffer.
procedure li_append_line$t (inbuf, outbuf, maxch, xt, yt, xformat, yformat,
nsdig_x, nsdig_y, min_sigdigits)
char inbuf[ARB] #I the input string buffer
char outbuf[maxch] #O the output string buffer
int maxch #I the maximum size of the output buffer
PIXEL xt #I the transformed x coordinate
PIXEL yt #I the transformed y coordinate
char xformat[ARB] #I the output format for the x column
char yformat[ARB] #I the output format for the y column
int nsdig_x #I the number of significant digits in x
int nsdig_y #I the number of significant digits in y
int min_sigdigits #I the minimum number of significant digits
int ip, op
pointer sp, field
int gstrcpy()
begin
# Allocate some working space.
call smark (sp)
call salloc (field, SZ_LINE, TY_CHAR)
# Copy the input buffer into the output buffer minus the newline.
op = 1
for (ip = 1; ip <= maxch; ip = ip + 1) {
if (inbuf[ip] == '\n' || inbuf[ip] == EOS)
break
outbuf[op] = inbuf[ip]
op = op + 1
}
# Add two blanks.
op = op + gstrcpy (" ", outbuf[op], maxch - op + 1)
# Format and add the the two extra fields with a blank between.
call li_format_field$t (xt, Memc[field], SZ_LINE, xformat,
nsdig_x, 0, min_sigdigits)
op = op + gstrcpy (Memc[field], outbuf[op], maxch - op + 1)
if (op <= maxch) {
outbuf[op] = ' '
op = op + 1
}
call li_format_field$t (yt, Memc[field], SZ_LINE, yformat,
nsdig_y, 0, min_sigdigits)
op = op + gstrcpy (Memc[field], outbuf[op], maxch - op + 1)
# Add a newline.
if (op <= maxch) {
outbuf[op] = '\n'
op = op + 1
}
outbuf[op] = EOS
call sfree (sp)
end
# LI_NAPPEND_LINE -- Fields are appened to the input buffer. Transformed
# fields are converted to strings and added to the end of the input buffer.
procedure li_nappend_line$t (inbuf, outbuf, maxch, field_pos, nfields,
vfields, values, nsdigits, nvalues, vformats, sz_fmt, min_sigdigits)
char inbuf[ARB] #I the input string buffer
char outbuf[maxch] #O the output string buffer
int maxch #I the maximum size of the output buffer
int field_pos[ARB] #I starting positions for the fields
int nfields #I the number of fields
int vfields[ARB] #I the fields to be formatted
PIXEL values[ARB] #I the field values to be formatted
int nsdigits[ARB] #I the number of field significant digits
int nvalues #I the number of fields to be formatted
char vformats[sz_fmt,ARB] #I the field formats
int sz_fmt #I the size of the format string
int min_sigdigits #I the minimum number of significant digits
int num_var, ip, op, index
pointer sp, field, nvfields
int gstrcpy()
begin
# Allocate some working space.
call smark (sp)
call salloc (field, SZ_LINE, TY_CHAR)
call salloc (nvfields, nvalues, TY_INT)
do num_var = 1, nvalues
Memi[nvfields+num_var-1] = num_var
call li_pqsorti (vfields, Memi[nvfields], Memi[nvfields], nvalues)
# Copy the input buffer into the output buffer minus the newline.
op = 1
for (ip = 1; ip <= maxch; ip = ip + 1) {
if (inbuf[ip] == '\n' || inbuf[ip] == EOS)
break
outbuf[op] = inbuf[ip]
op = op + 1
}
# Add two blanks.
op = op + gstrcpy (" ", outbuf[op], maxch - op + 1)
do num_var = 1, nvalues {
index = Memi[nvfields+num_var-1]
call li_format_field$t (values[index], Memc[field], SZ_LINE,
vformats[sz_fmt,index], nsdigits[index], 0, min_sigdigits)
op = op + gstrcpy (Memc[field], outbuf[op], maxch - op + 1)
if (num_var == nvalues) {
if (op <= maxch) {
outbuf[op] = '\n'
op = op + 1
}
} else {
if (op <= maxch) {
outbuf[op] = ' '
op = op + 1
}
}
}
outbuf[op] = EOS
call sfree (sp)
end
# LI_FORMAT_FIELD -- A transformed coordinate is written into a string
# buffer. The output field is of (at least) the same width and significance
# as the input list entry.
procedure li_format_field$t (fval, wordbuf, maxch, format, nsdig, width,
min_sigdigits)
PIXEL fval #I the input value to be formatted
char wordbuf[maxch] #O the output formatted string
int maxch #I the maximum length of the output string
char format[ARB] #I the output format
int nsdig #I the number of sig-digits in current value
int width #I the width of the curent field
int min_sigdigits #I the minimum number of significant digits
int fdigits, fwidth
begin
if (format[1] == EOS) {
fdigits = max (min_sigdigits, nsdig)
fwidth = max (width, fdigits + 1)
call sprintf (wordbuf, maxch, "%*.*g")
call pargi (fwidth)
call pargi (fdigits)
call parg$t (fval)
} else {
call sprintf (wordbuf, maxch, format)
call parg$t (fval)
}
end
$endfor
|