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.11 by greg, Mon Jul 28 20:12:20 2014 UTC vs.
Revision 2.20 by greg, Fri Jul 19 17:37:56 2019 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 56 | Line 52 | main(
52          FILE  *fp;
53          int  i;
54  
55 <        if (argc > 1 && !strcmp(argv[1], "-d")) {
55 >        if (argc > 1 && (argv[1][0] == '-') | (argv[1][0] == '+') &&
56 >                        argv[1][1] == 'd') {
57 >                dim = 1 - 2*(argv[1][0] == '-');
58                  argc--; argv++;
59 <                dim = 1;
60 <                SET_FILE_BINARY(stdin);
61 <        } else if (argc > 2 && !strcmp(argv[1], "-c")) {
62 <                SET_FILE_BINARY(stdin);
59 >        }
60 > #ifdef getc_unlocked                            /* avoid lock/unlock overhead */
61 >        flockfile(stdin);
62 > #endif
63 >        SET_FILE_BINARY(stdin);
64 >        if (argc > 2 && !strcmp(argv[1], "-c")) {
65                  SET_FILE_BINARY(stdout);
66 <                getheader(stdin, (gethfunc *)fputs, stdout);
66 >                setvbuf(stdin, NULL, _IONBF, 2);
67 >                if (getheader(stdin, (gethfunc *)fputs, stdout) < 0)
68 >                        return 1;
69                  printargs(argc-2, argv+2, stdout);
70                  fputc('\n', stdout);
71 +                if (dim) {                      /* copy resolution string? */
72 +                        RESOLU  rs;
73 +                        if (!fgetsresolu(&rs, stdin)) {
74 +                                fputs("No resolution string\n", stderr);
75 +                                return 1;
76 +                        }
77 +                        if (dim > 0)
78 +                                fputsresolu(&rs, stdout);
79 +                }
80                  fflush(stdout);
81                  execvp(argv[2], argv+2);
82                  perror(argv[2]);
83                  return 1;
84 +        } else if (argc > 2 && !strcmp(argv[1], "-a")) {
85 +                SET_FILE_BINARY(stdout);
86 +                if (getheader(stdin, (gethfunc *)fputs, stdout) < 0)
87 +                        return 1;
88 +                for (i = 2; i < argc; i++) {
89 +                        int     len = strlen(argv[i]);
90 +                        if (!len) continue;
91 +                        fputs(argv[i], stdout);
92 +                        if (argv[i][len-1] != '\n')
93 +                                fputc('\n', stdout);
94 +                }
95 +                fputc('\n', stdout);
96 +                copycat();
97 +                return 0;
98          } else if (argc == 2 && !strcmp(argv[1], "-")) {
74                SET_FILE_BINARY(stdin);
99                  SET_FILE_BINARY(stdout);
100 <                getheader(stdin, NULL, NULL);
100 >                if (getheader(stdin, NULL, NULL) < 0)
101 >                        return 1;
102 >                if (dim < 0) {                  /* skip resolution string? */
103 >                        RESOLU  rs;
104 >                        if (!fgetsresolu(&rs, stdin)) {
105 >                                fputs("No resolution string\n", stderr);
106 >                                return 1;
107 >                        }
108 >                }
109                  copycat();
110                  return 0;
111          }
# Line 82 | Line 114 | main(
114                  if ((fp = fopen(argv[i], "r")) == NULL)
115                          fputs(": cannot open\n", stdout);
116                  else {
117 <                        if (dim) {
117 >                        if (dim < 0) {                  /* dimensions only */
118 >                                if (getheader(fp, NULL, NULL) < 0) {
119 >                                        fputs("bad header\n", stdout);
120 >                                        continue;      
121 >                                }
122                                  fputs(": ", stdout);
123                                  getdim(fp);
124                          } else {
125                                  tabstr(":\n", NULL);
126 <                                getheader(fp, tabstr, NULL);
126 >                                if (getheader(fp, tabstr, NULL) < 0)
127 >                                        return 1;
128                                  fputc('\n', stdout);
129 +                                if (dim > 0) {
130 +                                        fputc('\t', stdout);
131 +                                        getdim(fp);
132 +                                }
133                          }
134                          fclose(fp);
135                  }
136          }
137          if (argc == 1) {
138 <                if (dim) {
138 >                if (dim < 0) {
139 >                        if (getheader(stdin, NULL, NULL) < 0)
140 >                                return 1;      
141                          getdim(stdin);
142                  } else {
143 <                        getheader(stdin, (gethfunc *)fputs, stdout);
143 >                        if (getheader(stdin, (gethfunc *)fputs, stdout) < 0)
144 >                                return 1;
145                          fputc('\n', stdout);
146 +                        if (dim > 0)
147 +                                getdim(stdin);
148                  }
149          }
150          return 0;
# Line 113 | Line 159 | getdim(                                /* get dimensions from file */
159          int  j;
160          int  c;
161  
116        getheader(fp, NULL, NULL);      /* skip header */
117
162          switch (c = getc(fp)) {
163          case '+':               /* picture */
164          case '-':
# Line 150 | Line 194 | copycat(void)                  /* copy input to output */
194  
195          fflush(stdout);
196          while ((n = fread(buf, 1, sizeof(buf), stdin)) > 0)
197 <                if (write(fileno(stdout), buf, n) != n)
197 >                if (writebuf(fileno(stdout), buf, n) != n)
198                          break;
199   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines