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.12 by greg, Mon Sep 8 18:21:39 2014 UTC vs.
Revision 2.22 by greg, Thu Mar 3 22:54:49 2022 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7   *     1/3/86
8   */
9  
10 < #include  <stdio.h>
11 < #include  <string.h>
12 <
10 > #include  "rtio.h"
11   #include  "platform.h"
12 + #include  "rtprocess.h"
13   #include  "resolu.h"
14  
15   #ifdef getc_unlocked            /* avoid nasty file-locking overhead */
16 + #undef getc
17   #undef getchar
18   #undef putchar
19 + #define getc            getc_unlocked
20   #define getchar         getchar_unlocked
21   #define putchar         putchar_unlocked
22   #endif
23  
23 #ifdef _WIN32
24 #include <process.h>
25 #define execvp  _execvp
26 #endif
27
24   static gethfunc tabstr;
25   static void getdim(FILE *fp);
26   static void copycat(void);
# Line 53 | Line 49 | main(
49   )
50   {
51          int  dim = 0;
52 +        char    fmt[MAXFMTLEN];
53          FILE  *fp;
54          int  i;
55  
56 <        if (argc > 1 && !strcmp(argv[1], "-d")) {
56 >        if (argc > 1 && (argv[1][0] == '-') | (argv[1][0] == '+') &&
57 >                        argv[1][1] == 'd') {
58 >                dim = 1 - 2*(argv[1][0] == '-');
59                  argc--; argv++;
60 <                dim = 1;
61 <                SET_FILE_BINARY(stdin);
62 <        } else if (argc > 2 && !strcmp(argv[1], "-c")) {
63 <                SET_FILE_BINARY(stdin);
60 >        }
61 > #ifdef getc_unlocked                            /* avoid lock/unlock overhead */
62 >        flockfile(stdin);
63 > #endif
64 >        SET_FILE_BINARY(stdin);
65 >        fmt[0] = '*'; fmt[1] = '\0';
66 >        if (argc > 2 && !strcmp(argv[1], "-c")) {
67                  SET_FILE_BINARY(stdout);
68                  setvbuf(stdin, NULL, _IONBF, 2);
69 <                getheader(stdin, (gethfunc *)fputs, stdout);
69 >                if (checkheader(stdin, fmt, stdout) < 0) {
70 >                        fputs("Bad header!\n", stderr);
71 >                        return 1;
72 >                }
73                  printargs(argc-2, argv+2, stdout);
74 +                if (fmt[0] != '*')              /* better be the same! */
75 +                        fputformat(fmt, stdout);
76                  fputc('\n', stdout);
77 +                if (dim) {                      /* copy resolution string? */
78 +                        RESOLU  rs;
79 +                        if (!fgetsresolu(&rs, stdin)) {
80 +                                fputs("No resolution string!\n", stderr);
81 +                                return 1;
82 +                        }
83 +                        if (dim > 0)
84 +                                fputsresolu(&rs, stdout);
85 +                }
86                  fflush(stdout);
87                  execvp(argv[2], argv+2);
88                  perror(argv[2]);
89                  return 1;
90 +        } else if (argc > 2 && !strcmp(argv[1], "-a")) {
91 +                SET_FILE_BINARY(stdout);
92 +                if (checkheader(stdin, fmt, stdout) < 0) {
93 +                        fputs("Bad header!\n", stderr);
94 +                        return 1;
95 +                }
96 +                for (i = 2; i < argc; i++) {
97 +                        int     len = strlen(argv[i]);
98 +                        if (!len) continue;
99 +                        fputs(argv[i], stdout);
100 +                        if (argv[i][len-1] != '\n')
101 +                                fputc('\n', stdout);
102 +                }
103 +                if (fmt[0] != '*')
104 +                        fputformat(fmt, stdout);
105 +                fputc('\n', stdout);
106 +                copycat();
107 +                return 0;
108          } else if (argc == 2 && !strcmp(argv[1], "-")) {
75                SET_FILE_BINARY(stdin);
109                  SET_FILE_BINARY(stdout);
110 <                getheader(stdin, NULL, NULL);
110 >                if (getheader(stdin, NULL, NULL) < 0) {
111 >                        fputs("Bad header!\n", stderr);
112 >                        return 1;
113 >                }
114 >                if (dim < 0) {                  /* skip resolution string? */
115 >                        RESOLU  rs;
116 >                        if (!fgetsresolu(&rs, stdin)) {
117 >                                fputs("No resolution string!\n", stderr);
118 >                                return 1;
119 >                        }
120 >                }
121                  copycat();
122                  return 0;
123          }
# Line 83 | Line 126 | main(
126                  if ((fp = fopen(argv[i], "r")) == NULL)
127                          fputs(": cannot open\n", stdout);
128                  else {
129 <                        if (dim) {
129 >                        if (dim < 0) {                  /* dimensions only */
130 >                                if (getheader(fp, NULL, NULL) < 0) {
131 >                                        fputs("bad header!\n", stdout);
132 >                                        continue;      
133 >                                }
134                                  fputs(": ", stdout);
135                                  getdim(fp);
136                          } else {
137                                  tabstr(":\n", NULL);
138 <                                getheader(fp, tabstr, NULL);
138 >                                if (getheader(fp, tabstr, NULL) < 0) {
139 >                                        fputs(argv[i], stderr);
140 >                                        fputs(": bad header!\n", stderr);
141 >                                        return 1;
142 >                                }
143                                  fputc('\n', stdout);
144 +                                if (dim > 0) {
145 +                                        fputc('\t', stdout);
146 +                                        getdim(fp);
147 +                                }
148                          }
149                          fclose(fp);
150                  }
151          }
152          if (argc == 1) {
153 <                if (dim) {
153 >                if (dim < 0) {
154 >                        if (getheader(stdin, NULL, NULL) < 0) {
155 >                                fputs("Bad header!\n", stderr);
156 >                                return 1;      
157 >                        }
158                          getdim(stdin);
159                  } else {
160 <                        getheader(stdin, (gethfunc *)fputs, stdout);
160 >                        if (getheader(stdin, (gethfunc *)fputs, stdout) < 0) {
161 >                                fputs("Bad header!\n", stderr);
162 >                                return 1;
163 >                        }
164                          fputc('\n', stdout);
165 +                        if (dim > 0)
166 +                                getdim(stdin);
167                  }
168          }
169          return 0;
# Line 114 | Line 178 | getdim(                                /* get dimensions from file */
178          int  j;
179          int  c;
180  
117        getheader(fp, NULL, NULL);      /* skip header */
118
181          switch (c = getc(fp)) {
182          case '+':               /* picture */
183          case '-':
# Line 151 | Line 213 | copycat(void)                  /* copy input to output */
213  
214          fflush(stdout);
215          while ((n = fread(buf, 1, sizeof(buf), stdin)) > 0)
216 <                if (write(fileno(stdout), buf, n) != n)
216 >                if (writebuf(fileno(stdout), buf, n) != n)
217                          break;
218   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines