ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/cal/lam.c
Revision: 1.8
Committed: Wed Oct 5 05:20:50 2005 UTC (18 years, 6 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.7: +3 -1 lines
Log Message:
Made empty string default separator for binary input

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: lam.c,v 1.7 2005/09/25 20:36:02 greg Exp $";
3 #endif
4 /*
5 * lam.c - simple program to laminate files.
6 *
7 * 7/14/88 Greg Ward
8 */
9
10 #include <stdlib.h>
11 #include <string.h>
12 #include <stdio.h>
13 #include <ctype.h>
14
15 #include "platform.h"
16 #include "rtprocess.h"
17
18 #define MAXFILE 512 /* maximum number of files */
19
20 #define MAXLINE 4096 /* maximum input line */
21
22 FILE *input[MAXFILE];
23 int bytsiz[MAXFILE];
24 char *tabc[MAXFILE];
25 int nfiles;
26
27 char buf[MAXLINE];
28
29 int
30 main(argc, argv)
31 int argc;
32 char *argv[];
33 {
34 register int i;
35 char *curtab;
36 int curbytes;
37 int running, puteol;
38
39 curtab = "\t";
40 curbytes = 0;
41 nfiles = 0;
42 for (i = 1; i < argc; i++) {
43 if (argv[i][0] == '-') {
44 switch (argv[i][1]) {
45 case 't':
46 curtab = argv[i]+2;
47 break;
48 case 'i':
49 switch (argv[i][2]) {
50 case 'f':
51 curbytes = sizeof(float);
52 break;
53 case 'd':
54 curbytes = sizeof(double);
55 break;
56 case 'w':
57 curbytes = sizeof(int);
58 break;
59 case 'a':
60 curbytes = argv[i][3] ? 1 : 0;
61 break;
62 default:
63 goto badopt;
64 }
65 if (isdigit(argv[i][3]))
66 curbytes *= atoi(argv[i]+3);
67 if (curbytes < 0 || curbytes > MAXLINE) {
68 fputs(argv[0], stderr);
69 fputs(": illegal input size\n", stderr);
70 exit(1);
71 }
72 if (curbytes)
73 curtab = "";
74 break;
75 case '\0':
76 tabc[nfiles] = curtab;
77 bytsiz[nfiles] = curbytes;
78 input[nfiles++] = stdin;
79 break;
80 badopt:;
81 default:
82 fputs(argv[0], stderr);
83 fputs(": bad option\n", stderr);
84 exit(1);
85 }
86 } else if (argv[i][0] == '!') {
87 tabc[nfiles] = curtab;
88 bytsiz[nfiles] = curbytes;
89 if ((input[nfiles++] = popen(argv[i]+1, "r")) == NULL) {
90 fputs(argv[i], stderr);
91 fputs(": cannot start command\n", stderr);
92 exit(1);
93 }
94 } else {
95 tabc[nfiles] = curtab;
96 bytsiz[nfiles] = curbytes;
97 if ((input[nfiles++] = fopen(argv[i], "r")) == NULL) {
98 fputs(argv[i], stderr);
99 fputs(": cannot open file\n", stderr);
100 exit(1);
101 }
102 }
103 if (nfiles >= MAXFILE) {
104 fputs(argv[0], stderr);
105 fputs(": too many input streams\n", stderr);
106 exit(1);
107 }
108 }
109 puteol = 0; /* check for tab character */
110 for (i = nfiles; i--; )
111 if (isprint(tabc[i][0]) || tabc[i][0] == '\t') {
112 puteol++;
113 break;
114 }
115 do {
116 running = 0;
117 for (i = 0; i < nfiles; i++) {
118 if (bytsiz[i]) { /* binary file */
119 if (fread(buf, bytsiz[i], 1, input[i]) == 1) {
120 if (i)
121 fputs(tabc[i], stdout);
122 fwrite(buf, bytsiz[i], 1, stdout);
123 running++;
124 }
125 } else if (fgets(buf, MAXLINE, input[i]) != NULL) {
126 if (i)
127 fputs(tabc[i], stdout);
128 buf[strlen(buf)-1] = '\0';
129 fputs(buf, stdout);
130 puteol++;
131 running++;
132 }
133 }
134 if (running && puteol)
135 putchar('\n');
136 } while (running);
137
138 exit(0);
139 }