| 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 32 /* maximum number of files */ |
| 18 |
> |
#define MAXFILE 512 /* maximum number of files */ |
| 19 |
|
|
| 20 |
< |
#define MAXLINE 512 /* maximum input line */ |
| 20 |
> |
#define MAXLINE 4096 /* maximum input line */ |
| 21 |
|
|
| 22 |
|
FILE *input[MAXFILE]; |
| 23 |
< |
int tabc[MAXFILE]; |
| 23 |
> |
int bytsiz[MAXFILE]; |
| 24 |
> |
char *tabc[MAXFILE]; |
| 25 |
|
int nfiles; |
| 26 |
|
|
| 27 |
|
char buf[MAXLINE]; |
| 32 |
|
char *argv[]; |
| 33 |
|
{ |
| 34 |
|
register int i; |
| 35 |
< |
int curtab; |
| 36 |
< |
int running; |
| 35 |
> |
char *curtab; |
| 36 |
> |
int curbytes; |
| 37 |
> |
int running, puteol; |
| 38 |
|
|
| 39 |
< |
curtab = '\t'; |
| 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]; |
| 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); |
| 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); |
| 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); |
| 106 |
|
exit(1); |
| 107 |
|
} |
| 108 |
|
} |
| 109 |
< |
|
| 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 (fgets(buf, MAXLINE, input[i]) != NULL) { |
| 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 |
< |
putchar(tabc[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) |
| 134 |
> |
if (running && puteol) |
| 135 |
|
putchar('\n'); |
| 136 |
|
} while (running); |
| 137 |
|
|