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
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
|
include <ctotok.h>
include <error.h>
include <ctype.h>
include "mctable.h"
task mctable = t_mctable
# Types
define TYPES "|char|short|int|long|real|double|complex|pointer|"
define TYPE_CHAR 1
define TYPE_SHORT 2
define TYPE_INT 3
define TYPE_LONG 4
define TYPE_REAL 5
define TYPE_DOUBLE 6
define TYPE_COMPLEX 7
define TYPE_POINTER 8
# File modes
define MODES "|write_only|read_write|new_file|temp_file|"
define MODE_WRITE_ONLY 1
define MODE_READ_WRITE 2
define MODE_NEW_FILE 3
define MODE_TEMP_FILE 4
# Commands
define COMMANDS "|allocate|free|copy|save|restore|\
|reset|shrink|clear|nrows|ncols|maxrows|maxcol|type|\
|getbuf|getrow|getrandom|putrandom|\
|rewind|getsequential|putsequential|\
|data|header|help|tables|time|quit|"
define ALLOCATE 1
define FREE 2
define COPY 3
define SAVE 4
define RESTORE 5
# newline 6
define RESET 7
define SHRINK 8
define CLEAR 9
define NROWS 10
define NCOLS 11
define MAXROW 12
define MAXCOL 13
define TYPE 14
# newline 15
define GETBUF 16
define GETROW 17
define GETRAN 18
define PUTRAN 19
# newline 20
define REWIND 21
define GETSEQ 22
define PUTSEQ 23
# newline 24
define DATA 25
define HEADER 26
define HELP 27
define TABLES 28
define TIME 29
define QUIT 30
# Max number of tables
define MAX_TABLES 10
# MCTABLE -- Test MCTABLE package.
procedure t_mctable()
bool timeit # time commands ?
char line[SZ_LINE] # input line
char key[SZ_FNAME]
char cmd[SZ_LINE] # command string
int ncmd # command number
int i, ip
long svtime[2]
pointer table[MAX_TABLES] # table pointers
int getline()
int strdic(), strlen()
int strext()
begin
# Clear table pointers
call amovki (NULL, table, MAX_TABLES)
# Do not time commands
timeit = false
# Print initial message
call printf ("Multicolumn table test program\n")
call printf ("Type `help` to get a list of commands\n\n")
# Loop reading commands
repeat {
# Get next command
call printf ("mctable> ")
call flush (STDOUT)
if (getline (STDIN, line) == EOF) {
call printf ("\n")
break
}
line[strlen (line)] = EOS
# Extract command from line
ip = 1
if (strext (line, ip, " ", YES, cmd, SZ_LINE) == 0)
next
ncmd = strdic (cmd, cmd, SZ_LINE, COMMANDS)
if (ncmd == 0) {
call eprintf ("Unknown or ambiguous command (%s)\n")
call pargstr (cmd)
next
}
# Time command
if (timeit)
call sys_mtime (svtime)
switch (ncmd) {
case ALLOCATE:
call zzallocate (table, line, ip)
case FREE:
call zzfree (table, line, ip)
case COPY:
call zzcopy (table, line, ip)
case SAVE:
call zzsave (table, line, ip)
case RESTORE:
call zzrestore (table, line, ip)
case RESET:
call zzreset (table, line, ip)
case SHRINK:
call zzshrink (table, line, ip)
case CLEAR:
call zzclear (table, line, ip)
case NROWS:
call zznrows (table, line, ip)
case NCOLS:
call zzncols (table, line, ip)
case MAXROW:
call zzmaxrow (table, line, ip)
case MAXCOL:
call zzmaxcol (table, line, ip)
case TYPE:
call zztype (table, line, ip)
case GETBUF:
call zzgetbuf (table, line, ip)
case GETROW:
call zzgetrow (table, line, ip)
case GETRAN:
call zzgetran (table, line, ip)
case PUTRAN:
call zzputran (table, line, ip)
case REWIND:
call zzrewind (table, line, ip)
case GETSEQ:
call zzgetseq (table, line, ip)
case PUTSEQ:
call zzputseq (table, line, ip)
case DATA:
call zzdata (table, line, ip)
case HEADER:
call zzheader (table, line, ip)
case HELP:
call zzhelp (STDOUT)
case TABLES:
call printf ("table..\n")
do i = 1, MAX_TABLES {
call printf ("%d\t%d\n")
call pargi (i)
call pargi (table[i])
}
call flush (STDOUT)
case TIME:
timeit = !timeit
if (timeit)
call printf ("time..\n")
else
call printf ("do not time..\n")
call flush (STDOUT)
case QUIT:
call printf ("quit..\n")
call flush (STDOUT)
return
default:
call eprintf ("Syntax error\n")
}
if (timeit)
call sys_ptime (STDOUT, key, svtime)
}
end
# ZZALLOCATE -- Allocate table.
procedure zzallocate (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # character pointer
int tnum, nrows, ncols, type
begin
call printf ("allocate..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgtype (line, ip, type)
call zzgeti (line, ip, nrows)
call zzgeti (line, ip, ncols)
} then {
call erract (EA_WARN)
return
}
iferr (call mct_alloc (table[tnum], nrows, ncols, type)) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) allocated, nrows = (%d), ncols = (%d), type = (%d)\n")
call pargi (tnum)
call pargi (nrows)
call pargi (ncols)
call pargi (type)
call flush (STDOUT)
end
# ZZFREE -- Free table.
procedure zzfree (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum
begin
call printf ("free..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (call mct_free (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) freed\n")
call pargi (tnum)
call flush (STDOUT)
end
# ZZCOPY -- Copy one table into another.
procedure zzcopy (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum1, tnum2
begin
call printf ("copy..\n")
iferr {
call zzgtable (line, ip, tnum1)
call zzgtable (line, ip, tnum2)
} then {
call erract (EA_WARN)
return
}
iferr (call mct_copy (table[tnum1], table[tnum2])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) copied into table (%d)\n")
call pargi (tnum1)
call pargi (tnum2)
call flush (STDOUT)
end
# ZZSAVE -- Save table into a file.
procedure zzsave (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
char fname[SZ_FNAME]
int fmode, tnum
begin
call printf ("save..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgstr (line, ip, fname)
call zzgmode (line, ip, fmode)
} then {
call erract (EA_WARN)
return
}
iferr (call mct_save (fname, fmode, table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) saved into file (%s)\n")
call pargi (tnum)
call pargstr (fname)
call flush (STDOUT)
end
# ZZRESTORE -- Restore table from a file.
procedure zzrestore (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
char fname[SZ_FNAME]
int tnum
begin
call printf ("restore..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgstr (line, ip, fname, SZ_FNAME)
} then {
call erract (EA_WARN)
return
}
iferr (call mct_restore (fname, table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) restored from file (%s)\n")
call pargi (tnum)
call pargstr (fname)
call flush (STDOUT)
end
# ZZRESET -- Reset table counters.
procedure zzreset (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum
begin
call printf ("reset..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (call mct_reset (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) reseted\n")
call pargi (tnum)
call flush (STDOUT)
end
# ZZSHRINK -- Shibk table.
procedure zzshrink (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum
begin
call printf ("shrink..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (call mct_shrink (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) shrunk\n")
call pargi (tnum)
call flush (STDOUT)
end
# ZZCLEAR -- Clear table.
procedure zzclear (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int type, tnum
$for (csilrdxp)
PIXEL $tval
$endfor
begin
call printf ("clear..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgtype (line, ip, type)
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
call zzget$t (line, ip, $tval)
$endfor
}
} then {
call erract (EA_WARN)
return
}
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
iferr (call mct_clear$t (table[tnum], $tval)) {
call erract (EA_WARN)
return
}
$endfor
}
call printf ("Table (%d) cleared\n")
call pargi (tnum)
call flush (STDOUT)
end
# ZZNROWS -- Get number of rows in table.
procedure zznrows (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum, nrows
int mct_nrows()
begin
call printf ("nrows..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (nrows = mct_nrows (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d), nrows = (%d)\n")
call pargi (tnum)
call pargi (nrows)
call flush (STDOUT)
end
# ZZNCOLS -- Get number of columns in table.
procedure zzncols (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum, ncols
int mct_ncols()
begin
call printf ("ncols..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (ncols = mct_ncols (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d), ncols = (%d)\n")
call pargi (tnum)
call pargi (ncols)
call flush (STDOUT)
end
# ZZMAXROW -- Get maximum number of rows in table.
procedure zzmaxrow (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum, nrows
int mct_maxrow()
begin
call printf ("maxrow..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (nrows = mct_maxrow (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d), maxrow = (%d)\n")
call pargi (tnum)
call pargi (nrows)
call flush (STDOUT)
end
# ZZMAXCOL -- Get maximum number of columns in table.
procedure zzmaxcol (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum, ncols
int mct_maxcol()
begin
call printf ("maxcol..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (ncols = mct_maxcol (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d), maxcol = (%d)\n")
call pargi (tnum)
call pargi (ncols)
call flush (STDOUT)
end
# ZZTYPE -- Get table type.
procedure zztype (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum, type
int mct_type()
begin
call printf ("type..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (type = mct_type (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d), type = (%d)\n")
call pargi (tnum)
call pargi (type)
call flush (STDOUT)
end
# ZZGETBUF -- Get data buffer pointer.
procedure zzgetbuf (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum
pointer pval
pointer mct_getbuf()
begin
call printf ("getbuf..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (pval = mct_getbuf (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d), buffer = (%d)\n")
call pargi (tnum)
call pargi (pval)
call flush (STDOUT)
end
# ZZGETROW -- Get row pointer.
procedure zzgetrow (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum, row
pointer pval
pointer mct_getrow()
begin
call printf ("getrow..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgeti (line, ip, row)
} then {
call erract (EA_WARN)
return
}
iferr (pval = mct_getrow (table[tnum], row)) {
call erract (EA_WARN)
return
}
call printf ("Table (%d), row buffer (%d) = (%d)\n")
call pargi (tnum)
call pargi (row)
call pargi (pval)
call flush (STDOUT)
end
# ZZGETRAN -- Get value randomly from table.
procedure zzgetran (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int type, tnum, row, col
$for (csilrdxp)
PIXEL $tval
$endfor
$for (csilrdxp)
PIXEL mct_get$t()
$endfor
begin
call printf ("getrandom..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgtype (line, ip, type)
call zzgeti (line, ip, row)
call zzgeti (line, ip, col)
} then {
call erract (EA_WARN)
return
}
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
iferr ($tval = mct_get$t (table[tnum], row, col)) {
call erract (EA_WARN)
return
}
call printf (
"Table get (%d), type = (%d), row = (%d), col = (%d), value = (%g)\n")
call pargi (tnum)
call pargi (type)
call pargi (row)
call pargi (col)
$if (datatype == p)
call pargi ($tval)
$else
call parg$t ($tval)
$endif
$endfor
}
call flush (STDOUT)
end
# ZZPUTRAN -- Put value randomly in table.
procedure zzputran (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int type, tnum, row, col
$for (csilrdxp)
PIXEL $tval
$endfor
begin
call printf ("putrandom..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgtype (line, ip, type)
call zzgeti (line, ip, row)
call zzgeti (line, ip, col)
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
call zzget$t (line, ip, $tval)
$endfor
}
} then {
call erract (EA_WARN)
return
}
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
iferr (call mct_put$t (table[tnum], row, col, $tval)) {
call erract (EA_WARN)
return
}
call printf (
"Table put (%d), type = (%d), row = (%d), col = (%d), value = (%g)\n")
call pargi (tnum)
call pargi (type)
call pargi (row)
call pargi (col)
$if (datatype == p)
call pargi ($tval)
$else
call parg$t ($tval)
$endif
$endfor
}
call flush (STDOUT)
end
# ZZREWIND -- Rewind table.
procedure zzrewind (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum
begin
call printf ("rewind..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (call mct_rew (table[tnum])) {
call erract (EA_WARN)
return
}
call printf ("Table (%d) rewound\n")
call pargi (tnum)
call flush (STDOUT)
end
# ZZGETSEQ -- Get value sequentialy from table.
procedure zzgetseq (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int type, tnum, stat
$for (csilrdxp)
PIXEL $tval
$endfor
$for (csilrdxp)
int mct_sget$t()
$endfor
begin
call printf ("getsequential..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgtype (line, ip, type)
} then {
call erract (EA_WARN)
return
}
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
iferr (stat = mct_sget$t (table[tnum], $tval)) {
call erract (EA_WARN)
return
}
call printf (
"Table getsequential (%d), type = (%s), value = (%g) (stat=%s)\n")
call pargi (tnum)
call pargi (type)
$if (datatype == p)
call pargi ($tval)
$else
call parg$t ($tval)
if (stat == EOF)
call pargstr ("EOF")
else if (stat == OK)
call pargstr ("OK")
else
call pargstr ("???")
$endif
$endfor
}
call flush (STDOUT)
end
# ZZPUTSEQ -- Put value sequentaly.
procedure zzputseq (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int type, tnum
$for (csilrdxp)
PIXEL $tval
$endfor
begin
call printf ("putsequential..\n")
iferr {
call zzgtable (line, ip, tnum)
call zzgtype (line, ip, type)
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
call zzget$t (line, ip, $tval)
$endfor
}
} then {
call erract (EA_WARN)
return
}
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
iferr (call mct_sput$t (table[tnum], $tval)) {
call erract (EA_WARN)
return
}
call printf (
"Table putsequential (%d), type = (%d), value = (%g)\n")
call pargi (tnum)
call pargi (type)
$if (datatype == p)
call pargi ($tval)
$else
call parg$t ($tval)
$endif
$endfor
}
call flush (STDOUT)
end
# ZZDATA -- Display table data.
procedure zzdata (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum, type, offset
int row, row1, row2, col
$for (csilrdxp)
PIXEL $tval
$endfor
begin
call printf ("data..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
iferr (call zzgeti (line, ip, row1))
row1 = 1
else
row1 = min (max (row1, 1), MCT_MAXROW (table[tnum]))
iferr (call zzgeti (line, ip, row2))
row2 = MCT_MAXROW (table[tnum])
else
row2 = max (min (row2, MCT_MAXROW (table[tnum])), row1)
call eprintf ("table[%d]=%d\n")
call pargi (tnum)
call pargi (table[tnum])
if (table[tnum] == NULL) {
call eprintf ("ERROR: Null table pointer\n")
return
}
if (MCT_DATA (table[tnum]) == NULL) {
call eprintf ("ERROR: Null data pointer\n")
return
}
type = MCT_TYPE (table[tnum])
call printf ("(%d x %d) -> (%d:%d)\n")
call pargi (MCT_MAXROW (table[tnum]))
call pargi (MCT_MAXCOL (table[tnum]))
call pargi (row1)
call pargi (row2)
do row = row1, row2 {
call printf ("%d\t")
call pargi (row)
do col = 1, MCT_MAXCOL (table[tnum]) {
offset = MCT_MAXCOL (table[tnum]) * (row - 1) + col - 1
switch (type) {
$for (csilrdxp)
case TY_PIXEL:
$if (datatype == p)
$tval = Memi[MCT_DATA (table[tnum]) + offset]
$else
$tval = Mem$t[MCT_DATA (table[tnum]) + offset]
$endif
call printf (" %g")
$if (datatype == p)
call pargi ($tval)
$else
call parg$t ($tval)
$endif
$endfor
}
}
call printf ("\n")
call flush (STDOUT)
}
call flush (STDOUT)
end
# ZZHEADER -- Print table header.
procedure zzheader (table, line, ip)
pointer table[MAX_TABLES] # table array
char line[ARB] # command line
int ip # input character pointer
int tnum
begin
call printf ("header..\n")
iferr (call zzgtable (line, ip, tnum)) {
call erract (EA_WARN)
return
}
if (table[tnum] == NULL) {
call eprintf ("ERROR: Null table pointer\n")
return
}
call printf ("magic %d\n")
call pargi (MCT_MAGIC (table[tnum]))
call printf ("type %d\n")
call pargi (MCT_TYPE (table[tnum]))
call printf ("incrow %d\n")
call pargi (MCT_INCROWS (table[tnum]))
call printf ("maxrow %d\n")
call pargi (MCT_MAXROW (table[tnum]))
call printf ("maxcol %d\n")
call pargi (MCT_MAXCOL (table[tnum]))
call printf ("nprows %d\n")
call pargi (MCT_NPROWS (table[tnum]))
call printf ("npcols %d\n")
call pargi (MCT_NPCOLS (table[tnum]))
call printf ("ngrows %d\n")
call pargi (MCT_NGROWS (table[tnum]))
call printf ("ngcols %d\n")
call pargi (MCT_NGCOLS (table[tnum]))
call printf ("data %d\n")
call pargi (MCT_DATA (table[tnum]))
call flush (STDOUT)
end
# ZZHELP -- Print command dictionary for interpreter.
procedure zzhelp ()
begin
call printf ("help..\n")
call printf ("allocate <table> <type> <nrows> <ncols>\n")
call printf ("free <table>\n")
call printf ("copy <table> <table>\n\n")
call printf ("save <table> <fname> <fmode>\n")
call printf ("restore <table> <fname>\n\n")
call printf ("reset <table>\n")
call printf ("rewind <table>\n")
call printf ("clear <table> <value>\n\n")
call printf ("maxrow <table>\n")
call printf ("maxcol <table>\n")
call printf ("nrows <table>\n")
call printf ("ncols <table>\n")
call printf ("type <table>\n\n")
call printf ("getbuf <table>\n")
call printf ("getrow <table> <row>\n\n")
call printf ("getrandom <table> <type> <row> <col>\n")
call printf ("putrandom <table> <type> <row> <col> <value>\n\n")
call printf ("putsequential <table> <type> <value>\n")
call printf ("getsequential <table> <type>\n\n")
call printf ("tables\n")
call printf ("header <table>\n")
call printf ("data <table> <row1> <row2>\n")
call printf ("help\n")
call printf ("quit\n")
call printf ("\nwhere:\n")
call printf (" <table> = 1..10\n")
call printf (" <type> = %s\n")
call pargstr (TYPES)
call printf (" <fmode> = %s\n")
call pargstr (MODES)
call flush (STDOUT)
end
# ZZGTABLE -- Get table number and check its range.
procedure zzgtable (line, ip, num)
char line[ARB] # command line
int ip # input character pointer
int num # table number
errchk zzgeti()
begin
call zzgeti (line, ip, num)
if (num < 1 || num > MAX_TABLES)
call error (0, "Table number out of range")
end
# ZZGTYPE -- Convert from string to integer type
procedure zzgtype (line, ip, type)
char line[ARB] # input line
int ip # input character pointer
int type # table type (output)
char strval[SZ_LINE]
int ntype
int strdic()
begin
call zzgstr (line, ip, strval, SZ_LINE)
ntype = strdic (strval, strval, SZ_LINE, TYPES)
switch (ntype) {
case TYPE_CHAR:
type = TY_CHAR
case TYPE_SHORT:
type = TY_SHORT
case TYPE_INT:
type = TY_INT
case TYPE_LONG:
type = TY_LONG
case TYPE_REAL:
type = TY_REAL
case TYPE_DOUBLE:
type = TY_DOUBLE
case TYPE_COMPLEX:
type = TY_COMPLEX
case TYPE_POINTER:
type = TY_POINTER
default:
call error (0, "Unknown table type")
}
end
# ZZGMODE -- Get mode string and convert it into a file mode.
procedure zzgmode (line, ip, mode)
char line[ARB] # input line
int ip # input character pointer
int mode # file mode (output)
char strval[SZ_LINE]
int nmode
int strdic()
begin
call zzgstr (line, ip, strval, SZ_LINE)
nmode = strdic (strval, strval, SZ_LINE, MODES)
switch (nmode) {
case MODE_WRITE_ONLY:
mode = WRITE_ONLY
case MODE_READ_WRITE:
mode = READ_WRITE
case MODE_NEW_FILE:
mode = NEW_FILE
case MODE_TEMP_FILE:
mode = TEMP_FILE
default:
call error (0, "zzgmode: Unknown file mode")
}
end
$for (csilrdxp)
# ZZGET -- Get number from command line
procedure zzget$t (line, ip, $tval)
char line[ARB] # command line
int ip # input character pointer
PIXEL $tval # number
char number[SZ_LINE]
int op
$if (datatype == csp)
$if (datatype == c)
int cctoc()
$endif
$if (datatype == s)
int ctoi()
$endif
$if (datatype == p)
int ctoi()
$endif
$else
int cto$t()
$endif
int strext()
begin
if (strext (line, ip, " ", YES, number, SZ_LINE) == 0)
call error (0, "Missing numeric parameter\n")
op = 1
$if (datatype == csp)
$if (datatype == c)
if (cctoc (number, op, cval) == 0)
call error (0, "zzget: Impossible number conversion\n")
$endif
$if (datatype == s)
if (ctoi (number, op, int (sval)) == 0)
call error (0, "zzget: Impossible number conversion\n")
$endif
$if (datatype == p)
if (ctoi (number, op, pval) == 0)
call error (0, "zzget: Impossible number conversion\n")
$endif
$else
if (cto$t (number, op, $tval) == 0)
call error (0, "zzget: Impossible number conversion\n")
$endif
end
$endfor
# ZZGSTR -- Get string from command line
int procedure zzgstr (line, ip, strval, maxch)
char line[ARB] # command line
int ip # input character pointer
char strval[maxch] # output string
int maxch # max number of characters
int strext()
begin
if (strext (line, ip, " ", YES, strval, maxch) == 0)
call error (0, "Missing string parameter")
end
|