1 |
– |
/* Copyright (c) 1993 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 |
+ |
|
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 <fcntl.h> |
19 |
> |
#include "color.h" |
20 |
> |
#include "view.h" |
21 |
> |
#include "rtprocess.h" |
22 |
|
|
23 |
|
#ifndef F_SETLKW |
24 |
|
|
25 |
< |
main(argc, argv) |
26 |
< |
int argc; |
27 |
< |
char *argv[]; |
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); |
34 |
|
|
35 |
|
#else |
36 |
|
|
26 |
– |
#include <signal.h> |
27 |
– |
#include "color.h" |
28 |
– |
#include "view.h" |
29 |
– |
#include "resolu.h" |
30 |
– |
|
37 |
|
#ifndef NFS |
38 |
|
#define NFS 1 |
39 |
|
#endif |
40 |
< |
/* set the following to 0 to forgo forking */ |
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 */ |
50 |
|
#endif |
51 |
|
#endif |
52 |
|
/* protection from SYSV signals(!) */ |
53 |
< |
#if defined(sgi) || defined(hpux) |
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() 0 |
59 |
< |
#define unguard() 0 |
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"}; |
66 |
|
int rpargc = 3; |
54 |
– |
int rpd[3]; |
67 |
|
FILE *torp, *fromrp; |
68 |
|
COLR *pbuf; |
69 |
|
/* our view parameters */ |
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 |
|
|
71 |
– |
extern long lseek(), ftell(); |
72 |
– |
|
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)) |
114 |
< |
if (rval < 0) { |
115 |
< |
fprintf(stderr, "%s: cannot expand '%s'", |
116 |
< |
argv[0], argv[i]); |
117 |
< |
exit(1); |
118 |
< |
} |
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] == '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+1]); |
172 |
> |
pixaspect = atof(argv[++i]); |
173 |
|
continue; |
174 |
+ |
case 'T': /* time limit (hours) */ |
175 |
+ |
if (argv[i][2]) |
176 |
+ |
break; |
177 |
+ |
timelim = atof(argv[++i])*3600. + .5; |
178 |
+ |
continue; |
179 |
|
case 'x': /* overall x resolution */ |
180 |
|
if (argv[i][2]) |
181 |
|
break; |
196 |
|
break; |
197 |
|
vmult = atoi(argv[++i]); |
198 |
|
continue; |
199 |
+ |
case 'R': /* recover */ |
200 |
+ |
if (argv[i][2]) |
201 |
+ |
break; |
202 |
+ |
rvrlim = 0; |
203 |
+ |
/* fall through */ |
204 |
|
case 'F': /* syncronization file */ |
205 |
|
if (argv[i][2]) |
206 |
|
break; |
207 |
< |
if ((syncfd = open(argv[++i], |
208 |
< |
O_RDWR|O_CREAT, 0666)) < 0) { |
207 |
> |
if ((syncfp = |
208 |
> |
fdopen(open(argv[++i],O_RDWR|O_CREAT,0666),"r+")) == NULL) { |
209 |
|
fprintf(stderr, "%s: cannot open\n", |
210 |
|
argv[i]); |
211 |
|
exit(1); |
220 |
|
break; |
221 |
|
outfile = argv[++i]; |
222 |
|
continue; |
223 |
< |
} else if (i >= argc-1) |
224 |
< |
break; |
223 |
> |
} |
224 |
> |
else if (i >= argc-1) |
225 |
> |
break; |
226 |
|
rpargv[rpargc++] = argv[i]; |
227 |
|
} |
228 |
|
if (i >= argc) { |
239 |
|
} |
240 |
|
|
241 |
|
|
242 |
< |
init(ac, av) /* set up output file and start rpict */ |
243 |
< |
int ac; |
244 |
< |
char **av; |
242 |
> |
static void |
243 |
> |
dolock( /* lock or unlock a file */ |
244 |
> |
int fd, |
245 |
> |
int ltyp |
246 |
> |
) |
247 |
|
{ |
248 |
+ |
static struct flock fls; /* static so initialized to zeroes */ |
249 |
+ |
|
250 |
+ |
fls.l_type = ltyp; |
251 |
+ |
if (fcntl(fd, F_SETLKW, &fls) < 0) { |
252 |
+ |
fprintf(stderr, "%s: cannot lock/unlock file: %s\n", |
253 |
+ |
progname, strerror(errno)); |
254 |
+ |
_exit(1); |
255 |
+ |
} |
256 |
+ |
} |
257 |
+ |
|
258 |
+ |
|
259 |
+ |
static void |
260 |
+ |
init( /* set up output file and start rpict */ |
261 |
+ |
int ac, |
262 |
+ |
char **av |
263 |
+ |
) |
264 |
+ |
{ |
265 |
|
static char hrbuf[16], vrbuf[16]; |
266 |
|
extern char VersionID[]; |
267 |
|
char *err; |
268 |
|
FILE *fp; |
269 |
|
int hr, vr; |
270 |
+ |
SUBPROC rpd; /* since we don't close_process(), this can be local */ |
271 |
|
/* set up view */ |
272 |
|
if ((err = setview(&ourview)) != NULL) { |
273 |
|
fprintf(stderr, "%s: %s\n", progname, err); |
274 |
|
exit(1); |
275 |
|
} |
276 |
< |
if (syncfd != -1) { |
277 |
< |
char buf[32]; |
278 |
< |
buf[read(syncfd, buf, sizeof(buf)-1)] = '\0'; |
279 |
< |
sscanf(buf, "%d %d", &hmult, &vmult); |
276 |
> |
if (syncfp != NULL) { |
277 |
> |
sflock(F_RDLCK); |
278 |
> |
fscanf(syncfp, "%d %d", &hmult, &vmult); |
279 |
> |
sflock(F_UNLCK); |
280 |
|
} |
281 |
|
/* compute piece size */ |
282 |
+ |
hr = hres; vr = vres; |
283 |
+ |
if (pixaspect > FTINY) |
284 |
+ |
normaspect(viewaspect(&ourview), &pixaspect, &hr, &vr); |
285 |
|
hres /= hmult; |
286 |
|
vres /= vmult; |
287 |
+ |
if (hres <= 0 || vres <= 0) { |
288 |
+ |
fprintf(stderr, "%s: illegal resolution/subdivision\n", progname); |
289 |
+ |
exit(1); |
290 |
+ |
} |
291 |
|
normaspect(viewaspect(&ourview)*hmult/vmult, &pixaspect, &hres, &vres); |
292 |
+ |
if (!nowarn && (hr != hres*hmult) | (vr != vres*vmult)) |
293 |
+ |
fprintf(stderr, |
294 |
+ |
"%s: warning - changed resolution from %dx%d to %dx%d\n", |
295 |
+ |
progname, hr, vr, hres*hmult, vres*vmult); |
296 |
|
sprintf(hrbuf, "%d", hres); |
297 |
|
rpargv[rpargc++] = "-x"; rpargv[rpargc++] = hrbuf; |
298 |
|
sprintf(vrbuf, "%d", vres); |
299 |
|
rpargv[rpargc++] = "-y"; rpargv[rpargc++] = vrbuf; |
300 |
|
rpargv[rpargc++] = "-pa"; rpargv[rpargc++] = "0"; |
301 |
+ |
rpargv[rpargc++] = "-pm"; rpargv[rpargc++] = "0"; |
302 |
|
rpargv[rpargc++] = av[ac-1]; |
303 |
|
rpargv[rpargc] = NULL; |
304 |
|
/* open output file */ |
305 |
|
if ((outfd = open(outfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) >= 0) { |
306 |
+ |
dolock(outfd, F_WRLCK); |
307 |
|
if ((fp = fdopen(dup(outfd), "w")) == NULL) |
308 |
|
goto filerr; |
309 |
< |
printargs(ac, av, fp); /* write header */ |
309 |
> |
newheader("RADIANCE", fp); /* create header */ |
310 |
> |
printargs(ac, av, fp); |
311 |
|
fprintf(fp, "SOFTWARE= %s\n", VersionID); |
312 |
|
fputs(VIEWSTR, fp); |
313 |
|
fprintview(&ourview, fp); |
314 |
< |
putc('\n', fp); |
314 |
> |
fputc('\n', fp); |
315 |
> |
fputnow(fp); |
316 |
|
if (pixaspect < .99 || pixaspect > 1.01) |
317 |
|
fputaspect(pixaspect, fp); |
318 |
+ |
fputprims(stdprims, fp); |
319 |
|
fputformat(COLRFMT, fp); |
320 |
< |
putc('\n', fp); |
320 |
> |
fputc('\n', fp); |
321 |
|
fprtresolu(hres*hmult, vres*vmult, fp); |
322 |
|
} else if ((outfd = open(outfile, O_RDWR)) >= 0) { |
323 |
+ |
dolock(outfd, F_RDLCK); |
324 |
|
if ((fp = fdopen(dup(outfd), "r+")) == NULL) |
325 |
|
goto filerr; |
326 |
|
getheader(fp, NULL, NULL); /* skip header */ |
338 |
|
scanorig = ftell(fp); /* record position of first scanline */ |
339 |
|
if (fclose(fp) == -1) /* done with stream i/o */ |
340 |
|
goto filerr; |
341 |
< |
#if NFS |
240 |
< |
sync(); /* flush NFS buffers */ |
241 |
< |
#endif |
341 |
> |
dolock(outfd, F_UNLCK); |
342 |
|
/* start rpict process */ |
343 |
< |
if (open_process(rpd, rpargv) <= 0) { |
343 |
> |
rpd = sp_inactive; |
344 |
> |
if (open_process(&rpd, rpargv) <= 0) { |
345 |
|
fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]); |
346 |
|
exit(1); |
347 |
|
} |
348 |
< |
if ((fromrp = fdopen(rpd[0], "r")) == NULL || |
349 |
< |
(torp = fdopen(rpd[1], "w")) == NULL) { |
348 |
> |
if ((fromrp = fdopen(rpd.r, "r")) == NULL || |
349 |
> |
(torp = fdopen(rpd.w, "w")) == NULL) { |
350 |
|
fprintf(stderr, "%s: cannot open stream to %s\n", |
351 |
|
progname, rpargv[0]); |
352 |
|
exit(1); |
356 |
|
exit(1); |
357 |
|
} |
358 |
|
signal(SIGALRM, onalrm); |
359 |
+ |
if (timelim) |
360 |
+ |
alarm(timelim); |
361 |
|
return; |
362 |
|
filerr: |
363 |
|
fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile); |
365 |
|
} |
366 |
|
|
367 |
|
|
368 |
< |
int |
369 |
< |
nextpiece(xp, yp) /* get next piece assignment */ |
370 |
< |
int *xp, *yp; |
368 |
> |
static int |
369 |
> |
nextpiece( /* get next piece assignment */ |
370 |
> |
int *xp, |
371 |
> |
int *yp |
372 |
> |
) |
373 |
|
{ |
269 |
– |
struct flock fls; |
270 |
– |
char buf[64]; |
271 |
– |
|
374 |
|
if (gotalrm) /* someone wants us to quit */ |
375 |
|
return(0); |
376 |
< |
if (syncfd != -1) { /* use sync file */ |
377 |
< |
fls.l_type = F_WRLCK; /* gain exclusive access */ |
378 |
< |
fls.l_whence = 0; |
379 |
< |
fls.l_start = 0L; |
380 |
< |
fls.l_len = 0L; |
381 |
< |
fcntl(syncfd, F_SETLKW, &fls); |
382 |
< |
lseek(syncfd, 0L, 0); |
383 |
< |
buf[read(syncfd, buf, sizeof(buf)-1)] = '\0'; |
384 |
< |
if (sscanf(buf, "%*d %*d %d %d", xp, yp) < 2) { |
376 |
> |
if (syncfp != NULL) { /* use sync file */ |
377 |
> |
/* |
378 |
> |
* So we don't necessarily have to lock and unlock the file |
379 |
> |
* multiple times (very slow), we establish an exclusive |
380 |
> |
* lock at the beginning on our synchronization file and |
381 |
> |
* maintain it in the subroutine rvrpiece(). |
382 |
> |
*/ |
383 |
> |
sflock(F_WRLCK); |
384 |
> |
fseek(syncfp, 0L, 0); /* read position */ |
385 |
> |
if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) { |
386 |
|
*xp = hmult-1; |
387 |
|
*yp = vmult; |
388 |
|
} |
389 |
+ |
if (rvrlim == 0) /* initialize recovery limit */ |
390 |
+ |
rvrlim = *xp*vmult + *yp; |
391 |
+ |
if (rvrpiece(xp, yp)) { /* do stragglers first */ |
392 |
+ |
sflock(F_UNLCK); |
393 |
+ |
return(1); |
394 |
+ |
} |
395 |
|
if (--(*yp) < 0) { /* decrement position */ |
396 |
|
*yp = vmult-1; |
397 |
< |
if (--(*xp) < 0) { /* all done! */ |
398 |
< |
close(syncfd); |
397 |
> |
if (--(*xp) < 0) { /* all done */ |
398 |
> |
sflock(F_UNLCK); |
399 |
|
return(0); |
400 |
|
} |
401 |
|
} |
402 |
< |
sprintf(buf, "%4d %4d\n%4d %4d\n", hmult, vmult, *xp, *yp); |
403 |
< |
lseek(syncfd, 0L, 0); /* write new position */ |
404 |
< |
write(syncfd, buf, strlen(buf)); |
405 |
< |
fls.l_type = F_UNLCK; /* release sync file */ |
297 |
< |
fcntl(syncfd, F_SETLKW, &fls); |
402 |
> |
fseek(syncfp, 0L, 0); /* write new position */ |
403 |
> |
fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp); |
404 |
> |
fflush(syncfp); |
405 |
> |
sflock(F_UNLCK); /* release sync file */ |
406 |
|
return(1); |
407 |
|
} |
408 |
< |
if (fgets(buf, sizeof(buf), stdin) == NULL) /* use stdin */ |
301 |
< |
return(0); |
302 |
< |
if (sscanf(buf, "%d %d", xp, yp) == 2) |
303 |
< |
return(1); |
304 |
< |
fprintf(stderr, "%s: input format error\n", progname); |
305 |
< |
exit(cleanup(1)); |
408 |
> |
return(scanf("%d %d", xp, yp) == 2); /* use stdin */ |
409 |
|
} |
410 |
|
|
411 |
|
|
412 |
< |
int |
413 |
< |
cleanup(rstat) /* close rpict process and clean up */ |
414 |
< |
int rstat; |
412 |
> |
static int |
413 |
> |
rvrpiece( /* check for recoverable pieces */ |
414 |
> |
int *xp, |
415 |
> |
int *yp |
416 |
> |
) |
417 |
|
{ |
418 |
+ |
static char *pdone = NULL; /* which pieces are done */ |
419 |
+ |
static long readpos = -1; /* how far we've read */ |
420 |
+ |
int px, py, i; |
421 |
+ |
/* |
422 |
+ |
* This routine is called by nextpiece() with an |
423 |
+ |
* exclusive lock on syncfp and the file pointer at the |
424 |
+ |
* appropriate position to read in the finished pieces. |
425 |
+ |
*/ |
426 |
+ |
if (rvrlim < 0) |
427 |
+ |
return(0); /* only check if asked */ |
428 |
+ |
if (pdone == NULL) /* first call */ |
429 |
+ |
pdone = (char *)calloc(hmult*vmult, sizeof(char)); |
430 |
+ |
if (pdone == NULL) { |
431 |
+ |
fprintf(stderr, "%s: out of memory\n", progname); |
432 |
+ |
exit(1); |
433 |
+ |
} |
434 |
+ |
if (readpos != -1) /* mark what's been done */ |
435 |
+ |
fseek(syncfp, readpos, 0); |
436 |
+ |
while (fscanf(syncfp, "%d %d", &px, &py) == 2) |
437 |
+ |
pdone[px*vmult+py] = 1; |
438 |
+ |
if (!feof(syncfp)) { |
439 |
+ |
fprintf(stderr, "%s: format error in sync file\n", progname); |
440 |
+ |
exit(1); |
441 |
+ |
} |
442 |
+ |
readpos = ftell(syncfp); |
443 |
+ |
i = hmult*vmult; /* find an unaccounted for piece */ |
444 |
+ |
while (i-- > rvrlim) |
445 |
+ |
if (!pdone[i]) { |
446 |
+ |
*xp = i / vmult; |
447 |
+ |
*yp = i % vmult; |
448 |
+ |
pdone[i] = 1; /* consider it done */ |
449 |
+ |
return(1); |
450 |
+ |
} |
451 |
+ |
rvrlim = -1; /* nothing left to recover */ |
452 |
+ |
free(pdone); |
453 |
+ |
pdone = NULL; |
454 |
+ |
return(0); |
455 |
+ |
} |
456 |
+ |
|
457 |
+ |
|
458 |
+ |
static int |
459 |
+ |
cleanup( /* close rpict process and clean up */ |
460 |
+ |
int rstat |
461 |
+ |
) |
462 |
+ |
{ |
463 |
|
int status; |
464 |
|
|
465 |
|
bfree((char *)pbuf, hres*vres*sizeof(COLR)); |
472 |
|
} |
473 |
|
|
474 |
|
|
475 |
< |
rpiece() /* render picture piece by piece */ |
475 |
> |
static void |
476 |
> |
rpiece(void) /* render picture piece by piece */ |
477 |
|
{ |
478 |
+ |
char *err; |
479 |
|
VIEW pview; |
480 |
|
int xorg, yorg; |
329 |
– |
/* compute view parameters */ |
330 |
– |
copystruct(&pview, &ourview); |
331 |
– |
switch (ourview.type) { |
332 |
– |
case VT_PER: |
333 |
– |
pview.horiz = 2.*180./PI*atan( |
334 |
– |
tan(PI/180./2.*ourview.horiz)/hmult ); |
335 |
– |
pview.vert = 2.*180./PI*atan( |
336 |
– |
tan(PI/180./2.*ourview.vert)/vmult ); |
337 |
– |
break; |
338 |
– |
case VT_PAR: |
339 |
– |
case VT_ANG: |
340 |
– |
pview.horiz = ourview.horiz / hmult; |
341 |
– |
pview.vert = ourview.vert / vmult; |
342 |
– |
break; |
343 |
– |
case VT_HEM: |
344 |
– |
pview.horiz = 2.*180./PI*asin( |
345 |
– |
sin(PI/180./2.*ourview.horiz)/hmult ); |
346 |
– |
pview.vert = 2.*180./PI*asin( |
347 |
– |
sin(PI/180./2.*ourview.vert)/vmult ); |
348 |
– |
break; |
349 |
– |
default: |
350 |
– |
fprintf(stderr, "%s: unknown view type '-vt%c'\n", |
351 |
– |
progname, ourview.type); |
352 |
– |
exit(cleanup(1)); |
353 |
– |
} |
481 |
|
/* render each piece */ |
482 |
|
while (nextpiece(&xorg, &yorg)) { |
483 |
< |
pview.hoff = ourview.hoff + xorg - 0.5*(hmult-1); |
484 |
< |
pview.voff = ourview.voff + yorg - 0.5*(vmult-1); |
483 |
> |
pview = ourview; |
484 |
> |
err = cropview(&pview, (double)xorg/hmult, (double)yorg/vmult, |
485 |
> |
(xorg+1.)/hmult, (yorg+1.)/vmult); |
486 |
> |
if (err != NULL) { |
487 |
> |
fprintf(stderr, "%s: %s\n", progname, err); |
488 |
> |
exit(cleanup(1)); |
489 |
> |
} |
490 |
|
fputs(VIEWSTR, torp); |
491 |
|
fprintview(&pview, torp); |
492 |
< |
putc('\n', torp); |
492 |
> |
fputc('\n', torp); |
493 |
|
fflush(torp); /* assigns piece to rpict */ |
494 |
|
putpiece(xorg, yorg); /* place piece in output */ |
495 |
|
} |
496 |
|
} |
497 |
|
|
498 |
|
|
499 |
< |
int |
500 |
< |
putpiece(xpos, ypos) /* get next piece from rpict */ |
501 |
< |
int xpos, ypos; |
499 |
> |
static int |
500 |
> |
putpiece( /* get next piece from rpict */ |
501 |
> |
int xpos, |
502 |
> |
int ypos |
503 |
> |
) |
504 |
|
{ |
505 |
|
struct flock fls; |
506 |
|
int pid, status; |
507 |
|
int hr, vr; |
508 |
< |
register int y; |
508 |
> |
int y; |
509 |
|
/* check bounds */ |
510 |
< |
if (xpos < 0 | ypos < 0 | xpos >= hmult | ypos >= vmult) { |
510 |
> |
if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) { |
511 |
|
fprintf(stderr, "%s: requested piece (%d,%d) out of range\n", |
512 |
|
progname, xpos, ypos); |
513 |
|
exit(cleanup(1)); |
515 |
|
/* check header from rpict */ |
516 |
|
guard_io(); |
517 |
|
getheader(fromrp, NULL, NULL); |
518 |
< |
if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) { |
518 |
> |
if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) { |
519 |
|
fprintf(stderr, "%s: resolution mismatch from %s\n", |
520 |
|
progname, rpargv[0]); |
521 |
|
exit(cleanup(1)); |
556 |
|
/* lock file section so NFS doesn't mess up */ |
557 |
|
fls.l_whence = 0; |
558 |
|
fls.l_type = F_WRLCK; |
559 |
< |
fcntl(outfd, F_SETLKW, &fls); |
559 |
> |
#if 0 |
560 |
> |
if (fcntl(outfd, F_SETLKW, &fls) < 0) |
561 |
> |
filerr("lock"); |
562 |
> |
#else |
563 |
> |
dolock(outfd, F_WRLCK); |
564 |
|
#endif |
565 |
+ |
#endif |
566 |
|
/* write new piece to file */ |
567 |
< |
if (lseek(outfd, fls.l_start, 0) == -1) |
568 |
< |
goto seekerr; |
567 |
> |
if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0) |
568 |
> |
filerr("seek"); |
569 |
|
if (hmult == 1) { |
570 |
< |
if (writebuf(outfd, (char *)pbuf, |
570 |
> |
if (writebuf(outfd, pbuf, |
571 |
|
vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR)) |
572 |
< |
goto writerr; |
572 |
> |
filerr("write"); |
573 |
|
} else |
574 |
|
for (y = 0; y < vr; y++) { |
575 |
< |
if (writebuf(outfd, (char *)(pbuf+y*hr), |
575 |
> |
if (writebuf(outfd, pbuf+y*hr, |
576 |
|
hr*sizeof(COLR)) != hr*sizeof(COLR)) |
577 |
< |
goto writerr; |
577 |
> |
filerr("write"); |
578 |
|
if (y < vr-1 && lseek(outfd, |
579 |
< |
(long)(hmult-1)*hr*sizeof(COLR), |
580 |
< |
1) == -1) |
581 |
< |
goto seekerr; |
579 |
> |
(off_t)(hmult-1)*hr*sizeof(COLR), |
580 |
> |
SEEK_CUR) < 0) |
581 |
> |
filerr("seek"); |
582 |
|
} |
583 |
+ |
#if NFS |
584 |
+ |
fls.l_type = F_UNLCK; /* release lock */ |
585 |
+ |
#if 0 |
586 |
+ |
if (fcntl(outfd, F_SETLKW, &fls) < 0) |
587 |
+ |
filerr("lock"); |
588 |
+ |
#else |
589 |
+ |
dolock(outfd, F_UNLCK); |
590 |
+ |
#endif |
591 |
+ |
#endif |
592 |
|
if (verbose) { /* notify caller */ |
593 |
|
printf("%d %d done\n", xpos, ypos); |
594 |
|
fflush(stdout); |
595 |
|
} |
596 |
< |
if (pid == -1) { /* didn't fork or fork failed */ |
597 |
< |
#if NFS |
598 |
< |
fls.l_type = F_UNLCK; /* release lock */ |
599 |
< |
fcntl(outfd, F_SETLKW, &fls); |
600 |
< |
#endif |
601 |
< |
return(0); |
596 |
> |
if (syncfp != NULL) { /* record what's been done */ |
597 |
> |
sflock(F_WRLCK); |
598 |
> |
fseek(syncfp, 0L, 2); /* append index */ |
599 |
> |
fprintf(syncfp, "%4d %4d\n", xpos, ypos); |
600 |
> |
fflush(syncfp); |
601 |
> |
/*** Unlock not necessary, since |
602 |
> |
sflock(F_UNLCK); _exit() or nextpiece() is next ***/ |
603 |
|
} |
604 |
< |
_exit(0); /* else exit child process (releasing lock) */ |
605 |
< |
seekerr: |
606 |
< |
fprintf(stderr, "%s: seek error on file \"%s\"\n", progname, outfile); |
607 |
< |
_exit(1); |
608 |
< |
writerr: |
609 |
< |
fprintf(stderr, "%s: write error on file \"%s\"\n", progname, outfile); |
604 |
> |
if (pid == -1) /* didn't fork or fork failed */ |
605 |
> |
return(0); |
606 |
> |
_exit(0); /* else exit child process (releasing locks) */ |
607 |
> |
} |
608 |
> |
|
609 |
> |
|
610 |
> |
static void |
611 |
> |
filerr( /* report file error and exit */ |
612 |
> |
char *t |
613 |
> |
) |
614 |
> |
{ |
615 |
> |
fprintf(stderr, "%s: %s error on file \"%s\": %s\n", |
616 |
> |
progname, t, outfile, strerror(errno)); |
617 |
|
_exit(1); |
618 |
|
} |
619 |
|
|