1 |
– |
/* Copyright (c) 1992 Regents of the University of California */ |
2 |
– |
|
1 |
|
#ifndef lint |
2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
2 |
> |
static const char RCSid[] = "$Id$"; |
3 |
|
#endif |
6 |
– |
|
4 |
|
/* |
5 |
|
* Generate sections of a picture. |
6 |
|
*/ |
7 |
|
|
8 |
< |
#include "standard.h" |
9 |
< |
#include <fcntl.h> |
8 |
> |
|
9 |
> |
#include <stdio.h> |
10 |
|
#include <signal.h> |
11 |
+ |
#include <sys/types.h> |
12 |
+ |
|
13 |
+ |
#include "platform.h" |
14 |
+ |
#ifndef NON_POSIX /* XXX need abstraction for process management */ |
15 |
+ |
#include <sys/wait.h> |
16 |
+ |
#endif |
17 |
+ |
|
18 |
+ |
#include "standard.h" |
19 |
|
#include "color.h" |
20 |
|
#include "view.h" |
21 |
< |
#include "resolu.h" |
21 |
> |
#include "rtprocess.h" |
22 |
|
|
23 |
+ |
#ifndef F_SETLKW |
24 |
+ |
|
25 |
+ |
int |
26 |
+ |
main( |
27 |
+ |
int argc, |
28 |
+ |
char *argv[] |
29 |
+ |
) |
30 |
+ |
{ |
31 |
+ |
fprintf(stderr, "%s: no NFS lock manager on this machine\n", argv[0]); |
32 |
+ |
exit(1); |
33 |
+ |
} |
34 |
+ |
|
35 |
+ |
#else |
36 |
+ |
|
37 |
+ |
#ifndef NFS |
38 |
+ |
#define NFS 1 |
39 |
+ |
#endif |
40 |
+ |
|
41 |
+ |
#ifndef RHAS_FORK_EXEC |
42 |
+ |
#undef MAXFORK |
43 |
+ |
#define MAXFORK 0 |
44 |
+ |
#endif |
45 |
+ |
#ifndef MAXFORK |
46 |
+ |
#if NFS |
47 |
+ |
#define MAXFORK 3 /* allotment of duped processes */ |
48 |
+ |
#else |
49 |
+ |
#define MAXFORK 0 |
50 |
+ |
#endif |
51 |
+ |
#endif |
52 |
+ |
/* protection from SYSV signals(!) */ |
53 |
+ |
#if defined(sgi) |
54 |
+ |
#define guard_io() sighold(SIGALRM) |
55 |
+ |
#define unguard() sigrelse(SIGALRM) |
56 |
+ |
#endif |
57 |
+ |
#ifndef guard_io |
58 |
+ |
#define guard_io() |
59 |
+ |
#define unguard() |
60 |
+ |
#endif |
61 |
+ |
|
62 |
+ |
extern char *strerror(); |
63 |
+ |
|
64 |
|
/* rpict command */ |
65 |
< |
char *rpargv[128] = {"rpict", "-S", "1", "-x", "512", "-y", "512", "-pa", "1"}; |
66 |
< |
int rpargc = 9; |
21 |
< |
int rpd[3]; |
65 |
> |
char *rpargv[128] = {"rpict", "-S", "1"}; |
66 |
> |
int rpargc = 3; |
67 |
|
FILE *torp, *fromrp; |
68 |
|
COLR *pbuf; |
69 |
|
/* our view parameters */ |
70 |
|
VIEW ourview = STDVIEW; |
71 |
|
double pixaspect = 1.0; |
72 |
< |
int hres = 512, vres = 512, hmult = 2, vmult = 2; |
72 |
> |
int hres = 1024, vres = 1024, hmult = 4, vmult = 4; |
73 |
|
/* output file */ |
74 |
|
char *outfile = NULL; |
75 |
|
int outfd; |
76 |
|
long scanorig; |
77 |
< |
int syncfd = -1; /* lock file descriptor */ |
77 |
> |
FILE *syncfp = NULL; /* synchronization file pointer */ |
78 |
> |
int synclst = F_UNLCK; /* synchronization file lock status */ |
79 |
> |
int nforked = 0; |
80 |
|
|
81 |
+ |
#define sflock(t) if ((t)!=synclst) dolock(fileno(syncfp),synclst=t) |
82 |
+ |
|
83 |
|
char *progname; |
84 |
|
int verbose = 0; |
85 |
+ |
int nowarn = 0; |
86 |
+ |
unsigned timelim = 0; |
87 |
+ |
int rvrlim = -1; |
88 |
|
|
37 |
– |
extern long lseek(), ftell(); |
38 |
– |
|
89 |
|
int gotalrm = 0; |
90 |
< |
int onalrm() { gotalrm++; } |
90 |
> |
void onalrm(int i) { gotalrm++; } |
91 |
|
|
92 |
+ |
static void dolock(int fd, int ltyp); |
93 |
+ |
static void init(int ac, char **av); |
94 |
+ |
static int nextpiece(int *xp, int *yp); |
95 |
+ |
static int rvrpiece(int *xp, int *yp); |
96 |
+ |
static int cleanup(int rstat); |
97 |
+ |
static void rpiece(void); |
98 |
+ |
static int putpiece(int xpos, int ypos); |
99 |
+ |
static void filerr(char *t); |
100 |
|
|
101 |
< |
main(argc, argv) |
102 |
< |
int argc; |
103 |
< |
char *argv[]; |
101 |
> |
|
102 |
> |
int |
103 |
> |
main( |
104 |
> |
int argc, |
105 |
> |
char *argv[] |
106 |
> |
) |
107 |
|
{ |
108 |
< |
register int i, rval; |
108 |
> |
int i, rval; |
109 |
|
|
110 |
|
progname = argv[0]; |
111 |
|
for (i = 1; i < argc; i++) { |
112 |
+ |
/* expand arguments */ |
113 |
+ |
while ((rval = expandarg(&argc, &argv, i)) > 0) |
114 |
+ |
; |
115 |
+ |
if (rval < 0) { |
116 |
+ |
fprintf(stderr, "%s: cannot expand '%s'\n", |
117 |
+ |
argv[0], argv[i]); |
118 |
+ |
exit(1); |
119 |
+ |
} |
120 |
|
if (argv[i][0] == '-') |
121 |
|
switch (argv[i][1]) { |
122 |
+ |
case 'w': |
123 |
+ |
if (!argv[i][2]) |
124 |
+ |
nowarn = !nowarn; |
125 |
+ |
else if (argv[i][2] == '+') |
126 |
+ |
nowarn = 0; |
127 |
+ |
else if (argv[i][2] == '-') |
128 |
+ |
nowarn = 1; |
129 |
+ |
break; |
130 |
|
case 'v': |
131 |
|
switch (argv[i][2]) { |
132 |
|
case '\0': /* verbose option */ |
149 |
|
} |
150 |
|
break; |
151 |
|
case 'p': /* pixel aspect ratio? */ |
152 |
< |
if (argv[i][2] == 'a' && !argv[i][3]) |
153 |
< |
pixaspect = atof(argv[i+1]); |
154 |
< |
break; |
155 |
< |
case 'x': /* piece x resolution */ |
156 |
< |
if (!argv[i][2]) |
157 |
< |
hres = atoi(argv[i+1]); |
158 |
< |
break; |
159 |
< |
case 'y': /* piece y resolution */ |
160 |
< |
if (!argv[i][2]) |
161 |
< |
vres = atoi(argv[i+1]); |
162 |
< |
break; |
152 |
> |
if (argv[i][2] == 'm') { |
153 |
> |
fprintf(stderr, "%s: -pm unsupported\n", |
154 |
> |
argv[0]); |
155 |
> |
++i; |
156 |
> |
continue; |
157 |
> |
} |
158 |
> |
if (argv[i][2] == 'X') { |
159 |
> |
fprintf(stderr, "%s: -pXYZ unsupported\n", |
160 |
> |
argv[0]); |
161 |
> |
++i; |
162 |
> |
continue; |
163 |
> |
} |
164 |
> |
if (argv[i][2] == 'c') { |
165 |
> |
fprintf(stderr, "%s: -pc unsupported\n", |
166 |
> |
argv[0]); |
167 |
> |
i += 9; |
168 |
> |
continue; |
169 |
> |
} |
170 |
> |
if (argv[i][2] != 'a' || argv[i][3]) |
171 |
> |
break; |
172 |
> |
pixaspect = atof(argv[++i]); |
173 |
> |
continue; |
174 |
> |
case 'S': |
175 |
> |
fprintf(stderr, "%s: -S unsupported\n", argv[0]); |
176 |
> |
i++; |
177 |
> |
continue; |
178 |
> |
case 'T': /* time limit (hours) */ |
179 |
> |
if (argv[i][2]) |
180 |
> |
break; |
181 |
> |
timelim = atof(argv[++i])*3600. + .5; |
182 |
> |
continue; |
183 |
> |
case 'x': /* overall x resolution */ |
184 |
> |
if (argv[i][2]) |
185 |
> |
break; |
186 |
> |
hres = atoi(argv[++i]); |
187 |
> |
continue; |
188 |
> |
case 'y': /* overall y resolution */ |
189 |
> |
if (argv[i][2]) |
190 |
> |
break; |
191 |
> |
vres = atoi(argv[++i]); |
192 |
> |
continue; |
193 |
|
case 'X': /* horizontal multiplier */ |
194 |
|
if (argv[i][2]) |
195 |
|
break; |
200 |
|
break; |
201 |
|
vmult = atoi(argv[++i]); |
202 |
|
continue; |
203 |
+ |
case 'R': /* recover */ |
204 |
+ |
if (argv[i][2]) |
205 |
+ |
break; |
206 |
+ |
rvrlim = 0; |
207 |
+ |
/* fall through */ |
208 |
|
case 'F': /* syncronization file */ |
209 |
|
if (argv[i][2]) |
210 |
|
break; |
211 |
< |
if ((syncfd = open(argv[++i], O_RDWR)) < 0) { |
211 |
> |
if ((syncfp = |
212 |
> |
fdopen(open(argv[++i],O_RDWR|O_CREAT,0666),"r+")) == NULL) { |
213 |
|
fprintf(stderr, "%s: cannot open\n", |
214 |
|
argv[i]); |
215 |
|
exit(1); |
216 |
|
} |
217 |
|
continue; |
218 |
+ |
case 'z': /* z-file ist verbotten */ |
219 |
+ |
fprintf(stderr, "%s: -z option not allowed\n", |
220 |
+ |
argv[0]); |
221 |
+ |
exit(1); |
222 |
|
case 'o': /* output file */ |
223 |
|
if (argv[i][2]) |
224 |
|
break; |
225 |
|
outfile = argv[++i]; |
226 |
|
continue; |
227 |
|
} |
228 |
+ |
else if (i >= argc-1) |
229 |
+ |
break; |
230 |
|
rpargv[rpargc++] = argv[i]; |
231 |
|
} |
232 |
< |
rpargv[rpargc] = NULL; |
232 |
> |
if (i >= argc) { |
233 |
> |
fprintf(stderr, "%s: missing octree argument\n", argv[0]); |
234 |
> |
exit(1); |
235 |
> |
} |
236 |
|
if (outfile == NULL) { |
237 |
|
fprintf(stderr, "%s: missing output file\n", argv[0]); |
238 |
|
exit(1); |
239 |
|
} |
240 |
|
init(argc, argv); |
241 |
|
rpiece(); |
242 |
< |
rval = cleanup(); |
121 |
< |
exit(rval); |
242 |
> |
exit(cleanup(0)); |
243 |
|
} |
244 |
|
|
245 |
|
|
246 |
< |
init(ac, av) /* set up output file and start rpict */ |
247 |
< |
int ac; |
248 |
< |
char **av; |
246 |
> |
static void |
247 |
> |
dolock( /* lock or unlock a file */ |
248 |
> |
int fd, |
249 |
> |
int ltyp |
250 |
> |
) |
251 |
|
{ |
252 |
+ |
static struct flock fls; /* static so initialized to zeroes */ |
253 |
+ |
|
254 |
+ |
fls.l_type = ltyp; |
255 |
+ |
if (fcntl(fd, F_SETLKW, &fls) < 0) { |
256 |
+ |
fprintf(stderr, "%s: cannot lock/unlock file: %s\n", |
257 |
+ |
progname, strerror(errno)); |
258 |
+ |
_exit(1); |
259 |
+ |
} |
260 |
+ |
} |
261 |
+ |
|
262 |
+ |
|
263 |
+ |
static void |
264 |
+ |
init( /* set up output file and start rpict */ |
265 |
+ |
int ac, |
266 |
+ |
char **av |
267 |
+ |
) |
268 |
+ |
{ |
269 |
+ |
static char hrbuf[16], vrbuf[16]; |
270 |
|
extern char VersionID[]; |
271 |
|
char *err; |
272 |
|
FILE *fp; |
273 |
|
int hr, vr; |
274 |
+ |
SUBPROC rpd; /* since we don't close_process(), this can be local */ |
275 |
|
/* set up view */ |
276 |
|
if ((err = setview(&ourview)) != NULL) { |
277 |
|
fprintf(stderr, "%s: %s\n", progname, err); |
278 |
|
exit(1); |
279 |
|
} |
280 |
< |
if (syncfd != -1) { |
281 |
< |
char buf[32]; |
282 |
< |
buf[read(syncfd, buf, sizeof(buf)-1)] = '\0'; |
283 |
< |
sscanf(buf, "%d %d", &hmult, &vmult); |
280 |
> |
if (syncfp != NULL) { |
281 |
> |
sflock(F_RDLCK); |
282 |
> |
fscanf(syncfp, "%d %d", &hmult, &vmult); |
283 |
> |
sflock(F_UNLCK); |
284 |
|
} |
285 |
+ |
/* compute piece size */ |
286 |
+ |
hr = hres; vr = vres; |
287 |
+ |
if (pixaspect > FTINY) |
288 |
+ |
normaspect(viewaspect(&ourview), &pixaspect, &hr, &vr); |
289 |
+ |
hres /= hmult; |
290 |
+ |
vres /= vmult; |
291 |
+ |
if (hres <= 0 || vres <= 0) { |
292 |
+ |
fprintf(stderr, "%s: illegal resolution/subdivision\n", progname); |
293 |
+ |
exit(1); |
294 |
+ |
} |
295 |
|
normaspect(viewaspect(&ourview)*hmult/vmult, &pixaspect, &hres, &vres); |
296 |
+ |
if (!nowarn && (hr != hres*hmult) | (vr != vres*vmult)) |
297 |
+ |
fprintf(stderr, |
298 |
+ |
"%s: warning - changed resolution from %dx%d to %dx%d\n", |
299 |
+ |
progname, hr, vr, hres*hmult, vres*vmult); |
300 |
+ |
sprintf(hrbuf, "%d", hres); |
301 |
+ |
rpargv[rpargc++] = "-x"; rpargv[rpargc++] = hrbuf; |
302 |
+ |
sprintf(vrbuf, "%d", vres); |
303 |
+ |
rpargv[rpargc++] = "-y"; rpargv[rpargc++] = vrbuf; |
304 |
+ |
rpargv[rpargc++] = "-pa"; rpargv[rpargc++] = "0"; |
305 |
+ |
rpargv[rpargc++] = "-pm"; rpargv[rpargc++] = "0"; |
306 |
+ |
rpargv[rpargc++] = av[ac-1]; |
307 |
+ |
rpargv[rpargc] = NULL; |
308 |
|
/* open output file */ |
309 |
|
if ((outfd = open(outfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) >= 0) { |
310 |
+ |
dolock(outfd, F_WRLCK); |
311 |
|
if ((fp = fdopen(dup(outfd), "w")) == NULL) |
312 |
|
goto filerr; |
313 |
< |
printargs(ac, av, fp); /* write header */ |
313 |
> |
newheader("RADIANCE", fp); /* create header */ |
314 |
> |
printargs(ac, av, fp); |
315 |
|
fprintf(fp, "SOFTWARE= %s\n", VersionID); |
316 |
|
fputs(VIEWSTR, fp); |
317 |
|
fprintview(&ourview, fp); |
318 |
< |
putc('\n', fp); |
318 |
> |
fputc('\n', fp); |
319 |
> |
fputnow(fp); |
320 |
|
if (pixaspect < .99 || pixaspect > 1.01) |
321 |
|
fputaspect(pixaspect, fp); |
322 |
+ |
fputprims(stdprims, fp); |
323 |
|
fputformat(COLRFMT, fp); |
324 |
< |
putc('\n', fp); |
324 |
> |
fputc('\n', fp); |
325 |
|
fprtresolu(hres*hmult, vres*vmult, fp); |
326 |
|
} else if ((outfd = open(outfile, O_RDWR)) >= 0) { |
327 |
+ |
dolock(outfd, F_RDLCK); |
328 |
|
if ((fp = fdopen(dup(outfd), "r+")) == NULL) |
329 |
|
goto filerr; |
330 |
< |
getheader(fp, NULL); /* skip header */ |
331 |
< |
if (fscnresolu(&hr, &vr, fp) < 0 || /* check resolution */ |
330 |
> |
getheader(fp, NULL, NULL); /* skip header */ |
331 |
> |
if (!fscnresolu(&hr, &vr, fp) || /* check resolution */ |
332 |
|
hr != hres*hmult || vr != vres*vmult) { |
333 |
|
fprintf(stderr, "%s: resolution mismatch on file \"%s\"\n", |
334 |
|
progname, outfile); |
342 |
|
scanorig = ftell(fp); /* record position of first scanline */ |
343 |
|
if (fclose(fp) == -1) /* done with stream i/o */ |
344 |
|
goto filerr; |
345 |
< |
sync(); /* flush NFS buffers */ |
345 |
> |
dolock(outfd, F_UNLCK); |
346 |
|
/* start rpict process */ |
347 |
< |
if (open_process(rpd, rpargv) <= 0) { |
347 |
> |
rpd = sp_inactive; |
348 |
> |
if (open_process(&rpd, rpargv) <= 0) { |
349 |
|
fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]); |
350 |
|
exit(1); |
351 |
|
} |
352 |
< |
if ((fromrp = fdopen(rpd[0], "r")) == NULL || |
353 |
< |
(torp = fdopen(rpd[1], "w")) == NULL) { |
352 |
> |
if ((fromrp = fdopen(rpd.r, "r")) == NULL || |
353 |
> |
(torp = fdopen(rpd.w, "w")) == NULL) { |
354 |
|
fprintf(stderr, "%s: cannot open stream to %s\n", |
355 |
|
progname, rpargv[0]); |
356 |
|
exit(1); |
357 |
|
} |
358 |
< |
if ((pbuf = (COLR *)malloc(hres*vres*sizeof(COLR))) == NULL) { |
358 |
> |
if ((pbuf = (COLR *)bmalloc(hres*vres*sizeof(COLR))) == NULL) { |
359 |
|
fprintf(stderr, "%s: out of memory\n", progname); |
360 |
|
exit(1); |
361 |
|
} |
362 |
|
signal(SIGALRM, onalrm); |
363 |
+ |
if (timelim) |
364 |
+ |
alarm(timelim); |
365 |
|
return; |
366 |
|
filerr: |
367 |
|
fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile); |
369 |
|
} |
370 |
|
|
371 |
|
|
372 |
< |
int |
373 |
< |
nextpiece(xp, yp) /* get next piece assignment */ |
374 |
< |
int *xp, *yp; |
372 |
> |
static int |
373 |
> |
nextpiece( /* get next piece assignment */ |
374 |
> |
int *xp, |
375 |
> |
int *yp |
376 |
> |
) |
377 |
|
{ |
204 |
– |
extern char *fgets(); |
205 |
– |
struct flock fls; |
206 |
– |
char buf[64]; |
207 |
– |
|
378 |
|
if (gotalrm) /* someone wants us to quit */ |
379 |
|
return(0); |
380 |
< |
if (syncfd != -1) { /* use sync file */ |
381 |
< |
fls.l_type = F_WRLCK; /* gain exclusive access */ |
382 |
< |
fls.l_whence = 0; |
383 |
< |
fls.l_start = 0L; |
384 |
< |
fls.l_len = 0L; |
385 |
< |
fcntl(syncfd, F_SETLKW, &fls); |
386 |
< |
lseek(syncfd, 0L, 0); |
387 |
< |
buf[read(syncfd, buf, sizeof(buf)-1)] = '\0'; |
388 |
< |
if (sscanf(buf, "%*d %*d %d %d", xp, yp) < 2) { |
380 |
> |
if (syncfp != NULL) { /* use sync file */ |
381 |
> |
/* |
382 |
> |
* So we don't necessarily have to lock and unlock the file |
383 |
> |
* multiple times (very slow), we establish an exclusive |
384 |
> |
* lock at the beginning on our synchronization file and |
385 |
> |
* maintain it in the subroutine rvrpiece(). |
386 |
> |
*/ |
387 |
> |
sflock(F_WRLCK); |
388 |
> |
fseek(syncfp, 0L, 0); /* read position */ |
389 |
> |
if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) { |
390 |
|
*xp = hmult-1; |
391 |
|
*yp = vmult; |
392 |
|
} |
393 |
+ |
if (rvrlim == 0) /* initialize recovery limit */ |
394 |
+ |
rvrlim = *xp*vmult + *yp; |
395 |
+ |
if (rvrpiece(xp, yp)) { /* do stragglers first */ |
396 |
+ |
sflock(F_UNLCK); |
397 |
+ |
return(1); |
398 |
+ |
} |
399 |
|
if (--(*yp) < 0) { /* decrement position */ |
400 |
|
*yp = vmult-1; |
401 |
< |
if (--(*xp) < 0) { /* all done! */ |
402 |
< |
close(syncfd); |
401 |
> |
if (--(*xp) < 0) { /* all done */ |
402 |
> |
sflock(F_UNLCK); |
403 |
|
return(0); |
404 |
|
} |
405 |
|
} |
406 |
< |
sprintf(buf, "%d %d\n%d %d\n", hmult, vmult, *xp, *yp); |
407 |
< |
lseek(syncfd, 0L, 0); /* write new position */ |
408 |
< |
write(syncfd, buf, strlen(buf)); |
409 |
< |
fls.l_type = F_UNLCK; /* release sync file */ |
233 |
< |
fcntl(syncfd, F_SETLKW, &fls); |
406 |
> |
fseek(syncfp, 0L, 0); /* write new position */ |
407 |
> |
fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp); |
408 |
> |
fflush(syncfp); |
409 |
> |
sflock(F_UNLCK); /* release sync file */ |
410 |
|
return(1); |
411 |
|
} |
412 |
< |
if (fgets(buf, sizeof(buf), stdin) == NULL) /* use stdin */ |
237 |
< |
return(0); |
238 |
< |
if (sscanf(buf, "%d %d", xp, yp) == 2) |
239 |
< |
return(1); |
240 |
< |
fprintf(stderr, "%s: input format error\n", progname); |
241 |
< |
exit(1); |
412 |
> |
return(scanf("%d %d", xp, yp) == 2); /* use stdin */ |
413 |
|
} |
414 |
|
|
415 |
|
|
416 |
< |
int |
417 |
< |
cleanup() /* close rpict process and clean up */ |
416 |
> |
static int |
417 |
> |
rvrpiece( /* check for recoverable pieces */ |
418 |
> |
int *xp, |
419 |
> |
int *yp |
420 |
> |
) |
421 |
|
{ |
422 |
< |
register int rpstat; |
422 |
> |
static char *pdone = NULL; /* which pieces are done */ |
423 |
> |
static long readpos = -1; /* how far we've read */ |
424 |
> |
int px, py, i; |
425 |
> |
/* |
426 |
> |
* This routine is called by nextpiece() with an |
427 |
> |
* exclusive lock on syncfp and the file pointer at the |
428 |
> |
* appropriate position to read in the finished pieces. |
429 |
> |
*/ |
430 |
> |
if (rvrlim < 0) |
431 |
> |
return(0); /* only check if asked */ |
432 |
> |
if (pdone == NULL) /* first call */ |
433 |
> |
pdone = (char *)calloc(hmult*vmult, sizeof(char)); |
434 |
> |
if (pdone == NULL) { |
435 |
> |
fprintf(stderr, "%s: out of memory\n", progname); |
436 |
> |
exit(1); |
437 |
> |
} |
438 |
> |
if (readpos != -1) /* mark what's been done */ |
439 |
> |
fseek(syncfp, readpos, 0); |
440 |
> |
while (fscanf(syncfp, "%d %d", &px, &py) == 2) |
441 |
> |
pdone[px*vmult+py] = 1; |
442 |
> |
if (!feof(syncfp)) { |
443 |
> |
fprintf(stderr, "%s: format error in sync file\n", progname); |
444 |
> |
exit(1); |
445 |
> |
} |
446 |
> |
readpos = ftell(syncfp); |
447 |
> |
i = hmult*vmult; /* find an unaccounted for piece */ |
448 |
> |
while (i-- > rvrlim) |
449 |
> |
if (!pdone[i]) { |
450 |
> |
*xp = i / vmult; |
451 |
> |
*yp = i % vmult; |
452 |
> |
pdone[i] = 1; /* consider it done */ |
453 |
> |
return(1); |
454 |
> |
} |
455 |
> |
rvrlim = -1; /* nothing left to recover */ |
456 |
> |
free(pdone); |
457 |
> |
pdone = NULL; |
458 |
> |
return(0); |
459 |
> |
} |
460 |
|
|
461 |
< |
free((char *)pbuf); |
461 |
> |
|
462 |
> |
static int |
463 |
> |
cleanup( /* close rpict process and clean up */ |
464 |
> |
int rstat |
465 |
> |
) |
466 |
> |
{ |
467 |
> |
int status; |
468 |
> |
|
469 |
> |
bfree((char *)pbuf, hres*vres*sizeof(COLR)); |
470 |
|
fclose(torp); |
471 |
|
fclose(fromrp); |
472 |
< |
rpstat = close_process(rpd); |
473 |
< |
if (rpstat == -1) |
474 |
< |
rpstat = 0; |
475 |
< |
return(rpstat); |
472 |
> |
while (wait(&status) != -1) |
473 |
> |
if (rstat == 0) |
474 |
> |
rstat = status>>8 & 0xff; |
475 |
> |
return(rstat); |
476 |
|
} |
477 |
|
|
478 |
|
|
479 |
< |
rpiece() /* render picture piece by piece */ |
479 |
> |
static void |
480 |
> |
rpiece(void) /* render picture piece by piece */ |
481 |
|
{ |
482 |
+ |
char *err; |
483 |
|
VIEW pview; |
484 |
|
int xorg, yorg; |
485 |
< |
|
485 |
> |
/* render each piece */ |
486 |
|
while (nextpiece(&xorg, &yorg)) { |
487 |
< |
copystruct(&pview, &ourview); /* compute view for piece */ |
488 |
< |
switch (ourview.type) { |
489 |
< |
case VT_PER: |
490 |
< |
pview.horiz = 2.*180./PI*atan( |
491 |
< |
tan(PI/180./2.*ourview.horiz)/hmult ); |
492 |
< |
pview.vert = 2.*180./PI*atan( |
272 |
< |
tan(PI/180./2.*ourview.vert)/vmult ); |
273 |
< |
break; |
274 |
< |
case VT_PAR: |
275 |
< |
case VT_ANG: |
276 |
< |
pview.horiz = ourview.horiz / hmult; |
277 |
< |
pview.vert = ourview.vert / vmult; |
278 |
< |
break; |
279 |
< |
case VT_HEM: |
280 |
< |
pview.horiz = 2.*180./PI*asin( |
281 |
< |
sin(PI/180./2.*ourview.horiz)/hmult ); |
282 |
< |
pview.vert = 2.*180./PI*asin( |
283 |
< |
sin(PI/180./2.*ourview.vert)/vmult ); |
284 |
< |
break; |
285 |
< |
default: |
286 |
< |
fprintf(stderr, "%s: unknown view type '-vt%c'\n", |
287 |
< |
progname, ourview.type); |
288 |
< |
exit(1); |
487 |
> |
pview = ourview; |
488 |
> |
err = cropview(&pview, (double)xorg/hmult, (double)yorg/vmult, |
489 |
> |
(xorg+1.)/hmult, (yorg+1.)/vmult); |
490 |
> |
if (err != NULL) { |
491 |
> |
fprintf(stderr, "%s: %s\n", progname, err); |
492 |
> |
exit(cleanup(1)); |
493 |
|
} |
290 |
– |
pview.hoff += xorg - 0.5*(hmult-1); |
291 |
– |
pview.voff += yorg - 0.5*(vmult-1); |
494 |
|
fputs(VIEWSTR, torp); |
495 |
|
fprintview(&pview, torp); |
496 |
< |
putc('\n', torp); |
497 |
< |
fflush(torp); /* assign piece to rpict */ |
496 |
> |
fputc('\n', torp); |
497 |
> |
fflush(torp); /* assigns piece to rpict */ |
498 |
|
putpiece(xorg, yorg); /* place piece in output */ |
297 |
– |
if (verbose) { /* notify caller */ |
298 |
– |
printf("%d %d done\n", xorg, yorg); |
299 |
– |
fflush(stdout); |
300 |
– |
} |
499 |
|
} |
500 |
|
} |
501 |
|
|
502 |
|
|
503 |
< |
putpiece(xpos, ypos) /* get next piece from rpict */ |
504 |
< |
int xpos, ypos; |
503 |
> |
static int |
504 |
> |
putpiece( /* get next piece from rpict */ |
505 |
> |
int xpos, |
506 |
> |
int ypos |
507 |
> |
) |
508 |
|
{ |
509 |
|
struct flock fls; |
510 |
+ |
int pid, status; |
511 |
|
int hr, vr; |
512 |
< |
register int y; |
512 |
> |
int y; |
513 |
|
/* check bounds */ |
514 |
< |
if (xpos < 0 | ypos < 0 | xpos >= hmult | ypos >= vmult) { |
514 |
> |
if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) { |
515 |
|
fprintf(stderr, "%s: requested piece (%d,%d) out of range\n", |
516 |
|
progname, xpos, ypos); |
517 |
< |
exit(1); |
517 |
> |
exit(cleanup(1)); |
518 |
|
} |
519 |
|
/* check header from rpict */ |
520 |
< |
getheader(fromrp, NULL); |
521 |
< |
if (fscnresolu(&hr, &vr, fromrp) < 0 || hr != hres || vr != vres) { |
520 |
> |
guard_io(); |
521 |
> |
getheader(fromrp, NULL, NULL); |
522 |
> |
if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) { |
523 |
|
fprintf(stderr, "%s: resolution mismatch from %s\n", |
524 |
|
progname, rpargv[0]); |
525 |
< |
exit(1); |
525 |
> |
exit(cleanup(1)); |
526 |
|
} |
527 |
+ |
if (verbose) { /* notify caller */ |
528 |
+ |
printf("%d %d begun\n", xpos, ypos); |
529 |
+ |
fflush(stdout); |
530 |
+ |
} |
531 |
+ |
unguard(); |
532 |
|
/* load new piece into buffer */ |
533 |
< |
for (y = 0; y < vr; y++) |
533 |
> |
for (y = 0; y < vr; y++) { |
534 |
> |
guard_io(); |
535 |
|
if (freadcolrs(pbuf+y*hr, hr, fromrp) < 0) { |
536 |
|
fprintf(stderr, "%s: read error from %s\n", |
537 |
|
progname, rpargv[0]); |
538 |
< |
exit(1); |
538 |
> |
exit(cleanup(1)); |
539 |
|
} |
540 |
+ |
unguard(); |
541 |
+ |
} |
542 |
+ |
#if MAXFORK |
543 |
+ |
/* fork so we don't slow rpict down */ |
544 |
+ |
if ((pid = fork()) > 0) { |
545 |
+ |
if (++nforked >= MAXFORK) { |
546 |
+ |
wait(&status); /* reap a child */ |
547 |
+ |
if (status) |
548 |
+ |
exit(cleanup(status>>8 & 0xff)); |
549 |
+ |
nforked--; |
550 |
+ |
} |
551 |
+ |
return(pid); |
552 |
+ |
} |
553 |
+ |
#else |
554 |
+ |
pid = -1; /* no forking */ |
555 |
+ |
#endif |
556 |
+ |
fls.l_start = scanorig + |
557 |
+ |
((long)(vmult-1-ypos)*vres*hmult+xpos)*hres*sizeof(COLR); |
558 |
+ |
#if NFS |
559 |
+ |
fls.l_len = ((long)(vres-1)*hmult+1)*hres*sizeof(COLR); |
560 |
|
/* lock file section so NFS doesn't mess up */ |
561 |
|
fls.l_whence = 0; |
333 |
– |
fls.l_len = (long)vres*hmult*hres*sizeof(COLR); |
334 |
– |
fls.l_start = scanorig + (vmult-1-ypos)*fls.l_len; |
562 |
|
fls.l_type = F_WRLCK; |
563 |
< |
fcntl(outfd, F_SETLKW, &fls); |
563 |
> |
#if 0 |
564 |
> |
if (fcntl(outfd, F_SETLKW, &fls) < 0) |
565 |
> |
filerr("lock"); |
566 |
> |
#else |
567 |
> |
dolock(outfd, F_WRLCK); |
568 |
> |
#endif |
569 |
> |
#endif |
570 |
|
/* write new piece to file */ |
571 |
< |
if (lseek(outfd, fls.l_start+(long)xpos*hres*sizeof(COLR), 0) == -1) |
572 |
< |
goto seekerr; |
573 |
< |
for (y = 0; y < vr; y++) { |
574 |
< |
if (writebuf(outfd, (char *)(pbuf+y*hr), hr*sizeof(COLR)) != |
575 |
< |
hr*sizeof(COLR)) { |
576 |
< |
fprintf(stderr, "%s: write error on file \"%s\"\n", |
577 |
< |
progname, outfile); |
578 |
< |
exit(1); |
571 |
> |
if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0) |
572 |
> |
filerr("seek"); |
573 |
> |
if (hmult == 1) { |
574 |
> |
if (writebuf(outfd, pbuf, |
575 |
> |
vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR)) |
576 |
> |
filerr("write"); |
577 |
> |
} else |
578 |
> |
for (y = 0; y < vr; y++) { |
579 |
> |
if (writebuf(outfd, pbuf+y*hr, |
580 |
> |
hr*sizeof(COLR)) != hr*sizeof(COLR)) |
581 |
> |
filerr("write"); |
582 |
> |
if (y < vr-1 && lseek(outfd, |
583 |
> |
(off_t)(hmult-1)*hr*sizeof(COLR), |
584 |
> |
SEEK_CUR) < 0) |
585 |
> |
filerr("seek"); |
586 |
|
} |
587 |
< |
if (hmult != 1 && y < vr-1 && lseek(outfd, |
588 |
< |
(long)(hmult-1)*hr*sizeof(COLR), 1) == -1) |
589 |
< |
goto seekerr; |
587 |
> |
#if NFS |
588 |
> |
fls.l_type = F_UNLCK; /* release lock */ |
589 |
> |
#if 0 |
590 |
> |
if (fcntl(outfd, F_SETLKW, &fls) < 0) |
591 |
> |
filerr("lock"); |
592 |
> |
#else |
593 |
> |
dolock(outfd, F_UNLCK); |
594 |
> |
#endif |
595 |
> |
#endif |
596 |
> |
if (verbose) { /* notify caller */ |
597 |
> |
printf("%d %d done\n", xpos, ypos); |
598 |
> |
fflush(stdout); |
599 |
|
} |
600 |
< |
/* unlock file section */ |
601 |
< |
fls.l_type = F_UNLCK; |
602 |
< |
fcntl(outfd, F_SETLKW, &fls); |
603 |
< |
return; |
604 |
< |
seekerr: |
605 |
< |
fprintf(stderr, "%s: seek error on file \"%s\"\n", progname, outfile); |
606 |
< |
exit(1); |
600 |
> |
if (syncfp != NULL) { /* record what's been done */ |
601 |
> |
sflock(F_WRLCK); |
602 |
> |
fseek(syncfp, 0L, 2); /* append index */ |
603 |
> |
fprintf(syncfp, "%4d %4d\n", xpos, ypos); |
604 |
> |
fflush(syncfp); |
605 |
> |
/*** Unlock not necessary, since |
606 |
> |
sflock(F_UNLCK); _exit() or nextpiece() is next ***/ |
607 |
> |
} |
608 |
> |
if (pid == -1) /* didn't fork or fork failed */ |
609 |
> |
return(0); |
610 |
> |
_exit(0); /* else exit child process (releasing locks) */ |
611 |
|
} |
612 |
+ |
|
613 |
+ |
|
614 |
+ |
static void |
615 |
+ |
filerr( /* report file error and exit */ |
616 |
+ |
char *t |
617 |
+ |
) |
618 |
+ |
{ |
619 |
+ |
fprintf(stderr, "%s: %s error on file \"%s\": %s\n", |
620 |
+ |
progname, t, outfile, strerror(errno)); |
621 |
+ |
_exit(1); |
622 |
+ |
} |
623 |
+ |
|
624 |
+ |
#endif |