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.18 by greg, Sat Jul 6 14:08:07 2019 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"
# Line 51 | 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++;
59                dim = 1;
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 <                if (getheader(stdin, (gethfunc *)fputs, stdout) < 0)
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);
80 >                                fputs("No resolution string!\n", stderr);
81                                  return 1;
82                          }
83 <                        fputsresolu(&rs, stdout);
83 >                        if (dim > 0)
84 >                                fputsresolu(&rs, stdout);
85                  }
86                  fflush(stdout);
87                  execvp(argv[2], argv+2);
# Line 83 | Line 89 | main(
89                  return 1;
90          } else if (argc > 2 && !strcmp(argv[1], "-a")) {
91                  SET_FILE_BINARY(stdout);
92 <                if (getheader(stdin, (gethfunc *)fputs, stdout) < 0)
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;
# Line 92 | Line 100 | main(
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], "-")) {
109                  SET_FILE_BINARY(stdout);
110 <                if (getheader(stdin, NULL, NULL) < 0)
110 >                if (getheader(stdin, NULL, NULL) < 0) {
111 >                        fputs("Bad header!\n", stderr);
112                          return 1;
113 <                if (dim) {                      /* skip resolution string? */
113 >                }
114 >                if (dim < 0) {                  /* skip resolution string? */
115                          RESOLU  rs;
116                          if (!fgetsresolu(&rs, stdin)) {
117 <                                fputs("No resolution string\n", stderr);
117 >                                fputs("No resolution string!\n", stderr);
118                                  return 1;
119                          }
120                  }
# Line 114 | 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 <                        if (getheader(stdin, (gethfunc *)fputs, stdout) < 0)
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 145 | Line 177 | getdim(                                /* get dimensions from file */
177   {
178          int  j;
179          int  c;
180 <                                /* skip header */
149 <        if (getheader(fp, NULL, NULL) < 0) {
150 <                fputs("bad header\n", stdout);
151 <                return;
152 <        }
180 >
181          switch (c = getc(fp)) {
182          case '+':               /* picture */
183          case '-':

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines