ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/getinfo.c
(Generate patch)

Comparing ray/src/util/getinfo.c (file contents):
Revision 2.9 by greg, Sat Jun 9 04:24:16 2012 UTC vs.
Revision 2.16 by greg, Tue Mar 20 18:18:39 2018 UTC

# Line 11 | Line 11 | static const char      RCSid[] = "$Id$";
11   #include  <string.h>
12  
13   #include  "platform.h"
14 + #include  "rtprocess.h"
15   #include  "resolu.h"
16  
17   #ifdef getc_unlocked            /* avoid nasty file-locking overhead */
18 + #undef getc
19   #undef getchar
20   #undef putchar
21 + #define getc            getc_unlocked
22   #define getchar         getchar_unlocked
23   #define putchar         putchar_unlocked
24   #endif
25  
23
26   static gethfunc tabstr;
27 < static void getdim(register FILE *fp);
27 > static void getdim(FILE *fp);
28   static void copycat(void);
29  
30  
31   static int
32   tabstr(                         /* put out line followed by tab */
33 <        register char  *s,
33 >        char  *s,
34          void *p
35   )
36   {
# Line 55 | Line 57 | main(
57          if (argc > 1 && !strcmp(argv[1], "-d")) {
58                  argc--; argv++;
59                  dim = 1;
58                SET_DEFAULT_BINARY(); /* for output file */
60                  SET_FILE_BINARY(stdin);
61 +        } else if (argc > 2 && !strcmp(argv[1], "-c")) {
62 +                SET_FILE_BINARY(stdin);
63 +                SET_FILE_BINARY(stdout);
64 +                setvbuf(stdin, NULL, _IONBF, 2);
65 +                getheader(stdin, (gethfunc *)fputs, stdout);
66 +                printargs(argc-2, argv+2, stdout);
67 +                fputc('\n', stdout);
68 +                fflush(stdout);
69 +                execvp(argv[2], argv+2);
70 +                perror(argv[2]);
71 +                return 1;
72 +        } else if (argc > 2 && !strcmp(argv[1], "-a")) {
73 +                SET_FILE_BINARY(stdin);
74 +                SET_FILE_BINARY(stdout);
75 +                getheader(stdin, (gethfunc *)fputs, stdout);
76 +                for (i = 2; i < argc; i++) {
77 +                        int     len = strlen(argv[i]);
78 +                        if (!len) continue;
79 +                        fputs(argv[i], stdout);
80 +                        if (argv[i][len-1] != '\n')
81 +                                fputc('\n', stdout);
82 +                }
83 +                fputc('\n', stdout);
84 +                copycat();
85 +                return 0;
86          } else if (argc == 2 && !strcmp(argv[1], "-")) {
87                  SET_FILE_BINARY(stdin);
88                  SET_FILE_BINARY(stdout);
# Line 75 | Line 101 | main(
101                          } else {
102                                  tabstr(":\n", NULL);
103                                  getheader(fp, tabstr, NULL);
104 <                                putchar('\n');
104 >                                fputc('\n', stdout);
105                          }
106                          fclose(fp);
107                  }
# Line 84 | Line 110 | main(
110                  if (dim) {
111                          getdim(stdin);
112                  } else {
113 <                        getheader(stdin, (gethfunc*)fputs, stdout);
114 <                        putchar('\n');
113 >                        getheader(stdin, (gethfunc *)fputs, stdout);
114 >                        fputc('\n', stdout);
115                  }
116          }
117          return 0;
# Line 94 | Line 120 | main(
120  
121   static void
122   getdim(                         /* get dimensions from file */
123 <        register FILE  *fp
123 >        FILE  *fp
124   )
125   {
126          int  j;
127 <        register int  c;
127 >        int  c;
128  
129          getheader(fp, NULL, NULL);      /* skip header */
130  
# Line 113 | Line 139 | getdim(                                /* get dimensions from file */
139                  getc(fp);
140                  j = 0;
141                  while ((c = getc(fp)) != EOF)
142 <                        if (c == 0)
142 >                        if (c == 0) {
143                                  if (++j >= 4)
144                                          break;
145 <                                else
146 <                                        putchar(' ');
121 <                        else
145 >                                putchar(' ');
146 >                        } else {
147                                  putchar(c);
148 +                        }
149                  putchar('\n');
150                  break;
151          default:                /* ??? */
# Line 132 | Line 158 | getdim(                                /* get dimensions from file */
158   static void
159   copycat(void)                   /* copy input to output */
160   {
161 <        register int    c;
161 >        char    buf[8192];
162 >        int     n;
163  
164 <        while ((c = getchar()) != EOF)
165 <                putchar(c);
164 >        fflush(stdout);
165 >        while ((n = fread(buf, 1, sizeof(buf), stdin)) > 0)
166 >                if (writebuf(fileno(stdout), buf, n) != n)
167 >                        break;
168   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines