ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/radcompare.c
Revision: 2.33
Committed: Tue Nov 21 19:22:38 2023 UTC (5 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.32: +117 -4 lines
Log Message:
feat(radcompare): Added ability to compare spectral images (untested)

File Contents

# User Rev Content
1 greg 2.1 #ifndef lint
2 greg 2.33 static const char RCSid[] = "$Id: radcompare.c,v 2.32 2023/03/08 19:59:48 greg Exp $";
3 greg 2.1 #endif
4     /*
5     * Compare Radiance files for significant differences
6     *
7     * G. Ward
8     */
9    
10     #include <stdlib.h>
11     #include <ctype.h>
12 greg 2.19 #include "rtmath.h"
13 greg 2.1 #include "platform.h"
14     #include "rtio.h"
15     #include "resolu.h"
16     #include "color.h"
17 greg 2.19 #include "depthcodec.h"
18     #include "normcodec.h"
19 greg 2.1 #include "lookup.h"
20     /* Reporting levels */
21     #define REP_QUIET 0 /* no reporting */
22     #define REP_ERROR 1 /* report errors only */
23     #define REP_WARN 2 /* report warnings as well */
24     #define REP_VERBOSE 3 /* verbose reporting */
25    
26     int report = REP_WARN; /* reporting level */
27    
28     int ign_header = 0; /* ignore header differences? */
29    
30 greg 2.29 int escape_newlines = 0; /* allow backslash to skip newlines */
31    
32 greg 2.1 double rel_min = 1e-5; /* positive for relative comparisons */
33    
34     double rms_lim = 0.01; /* RMS difference limit */
35    
36     double max_lim = 0.25; /* difference limit if non-negative */
37    
38     int lin1cnt=0, lin2cnt=0; /* file line position */
39    
40 greg 2.26 int comment_c = '\0'; /* comment delimiter for text files */
41    
42 greg 2.6 const char nsuffix[10][3] = { /* 1st, 2nd, 3rd, etc. */
43     "th","st","nd","rd","th","th","th","th","th","th"
44     };
45     #define num_sfx(n) nsuffix[(n)%10]
46    
47 greg 2.1 /* file types */
48     const char *file_type[] = {
49     "Unrecognized",
50     "TEXT_generic",
51     "ascii",
52     COLRFMT,
53     CIEFMT,
54 greg 2.33 SPECFMT,
55 greg 2.19 DEPTH16FMT,
56     NORMAL32FMT,
57 greg 2.4 "float",
58     "double",
59 greg 2.1 "BSDF_RBFmesh",
60     "Radiance_octree",
61     "Radiance_tmesh",
62 greg 2.19 "8-bit_indexed_name",
63     "16-bit_indexed_name",
64     "24-bit_indexed_name",
65 greg 2.1 "BINARY_unknown",
66     NULL /* terminator */
67     };
68 greg 2.6 /* keep consistent with above */
69 greg 2.33 enum {TYP_UNKNOWN, TYP_TEXT, TYP_ASCII, TYP_RGBE, TYP_XYZE, TYP_SPEC,
70 greg 2.19 TYP_DEPTH, TYP_NORM, TYP_FLOAT, TYP_DOUBLE,
71     TYP_RBFMESH, TYP_OCTREE, TYP_TMESH,
72     TYP_ID8, TYP_ID16, TYP_ID24, TYP_BINARY};
73 greg 2.1
74     #define has_header(t) (!( 1L<<(t) & (1L<<TYP_TEXT | 1L<<TYP_BINARY) ))
75    
76     /* header variables to always ignore */
77     const char *hdr_ignkey[] = {
78     "SOFTWARE",
79     "CAPDATE",
80     "GMT",
81 greg 2.18 "FRAME",
82 greg 2.1 NULL /* terminator */
83     };
84     /* header variable settings */
85     LUTAB hdr1 = LU_SINIT(free,free);
86     LUTAB hdr2 = LU_SINIT(free,free);
87    
88     /* advance appropriate file line count */
89     #define adv_linecnt(htp) (lin1cnt += (htp == &hdr1), \
90     lin2cnt += (htp == &hdr2))
91    
92 greg 2.12 typedef struct { /* dynamic line buffer */
93 greg 2.14 char *str;
94 greg 2.12 int len;
95     int siz;
96     } LINEBUF;
97    
98 greg 2.14 #define init_line(bp) ((bp)->str = NULL, (bp)->siz = 0)
99 greg 2.12 /* 100 MByte limit on line buffer */
100     #define MAXBUF (100L<<20)
101    
102 greg 2.1 /* input files */
103     char *progname = NULL;
104     const char stdin_name[] = "<stdin>";
105     const char *f1name=NULL, *f2name=NULL;
106     FILE *f1in=NULL, *f2in=NULL;
107 greg 2.20 int f1swap=0, f2swap=0;
108 greg 2.3
109 greg 2.1 /* running real differences */
110     double diff2sum = 0;
111 greg 2.8 long nsum = 0;
112 greg 2.1
113     /* Report usage and exit */
114     static void
115     usage()
116     {
117     fputs("Usage: ", stderr);
118     fputs(progname, stderr);
119 greg 2.26 fputs(" [-h][-c#][-s|-w|-v][-rel min_test][-rms epsilon][-max epsilon] reference test\n",
120 greg 2.1 stderr);
121 greg 2.9 exit(2);
122 greg 2.1 }
123    
124 greg 2.12 /* Read a text line, increasing buffer size as necessary */
125     static int
126     read_line(LINEBUF *bp, FILE *fp)
127     {
128 greg 2.15 static int doneWarn = 0;
129    
130 greg 2.12 bp->len = 0;
131 greg 2.14 if (!bp->str) {
132     bp->str = (char *)malloc(bp->siz = 512);
133     if (!bp->str)
134 greg 2.12 goto memerr;
135     }
136 greg 2.14 while (fgets(bp->str + bp->len, bp->siz - bp->len, fp)) {
137     bp->len += strlen(bp->str + bp->len);
138 greg 2.29 if (bp->str[bp->len-1] == '\n') {
139     if (bp->len > 1 && bp->str[bp->len-2] == '\r') {
140     bp->str[--bp->len] = '\0';
141     bp->str[bp->len-1] = '\n';
142     }
143     if (escape_newlines && bp->len > 1 &&
144     bp->str[bp->len-2] == '\\') {
145     bp->str[--bp->len] = '\0';
146     bp->str[bp->len-1] = ' ';
147     continue;
148     }
149 greg 2.12 break; /* found EOL */
150 greg 2.29 }
151 greg 2.12 if (bp->len < bp->siz - 4)
152     continue; /* at EOF? */
153 greg 2.15 if (bp->siz >= MAXBUF) {
154     if ((report >= REP_WARN) & !doneWarn) {
155     fprintf(stderr,
156     "%s: warning - input line(s) past %ld MByte limit\n",
157     progname, MAXBUF>>20);
158     doneWarn++;
159     }
160     break; /* return MAXBUF partial line */
161     }
162 greg 2.12 if ((bp->siz += bp->siz/2) > MAXBUF)
163     bp->siz = MAXBUF;
164 greg 2.14 bp->str = (char *)realloc(bp->str, bp->siz);
165     if (!bp->str)
166 greg 2.12 goto memerr;
167     }
168 greg 2.26 if (comment_c) { /* elide comment? */
169     char *cp = sskip2(bp->str,0);
170     if (*cp == comment_c) {
171     *cp++ = '\n';
172     *cp = '\0';
173     bp->len = cp - bp->str;
174     }
175     }
176 greg 2.12 return(bp->len);
177     memerr:
178     fprintf(stderr,
179     "%s: out of memory in read_line() allocating %d byte buffer\n",
180     progname, bp->siz);
181     exit(2);
182     }
183    
184     /* Free line buffer */
185     static void
186     free_line(LINEBUF *bp)
187     {
188 greg 2.14 if (bp->str) free(bp->str);
189 greg 2.13 init_line(bp);
190 greg 2.12 }
191    
192 greg 2.1 /* Get type ID from name (or 0 if not found) */
193     static int
194     xlate_type(const char *nm)
195     {
196     int i;
197    
198     if (!nm || !*nm)
199     return(TYP_UNKNOWN);
200     for (i = 1; file_type[i]; i++)
201     if (!strcmp(nm, file_type[i]))
202     return(i);
203     return(TYP_UNKNOWN);
204     }
205    
206     /* Compare real values and keep track of differences */
207     static int
208     real_check(double r1, double r2)
209     {
210     double diff2 = (r1 - r2)*(r1 - r2);
211    
212     if (rel_min > 0) { /* doing relative differences? */
213     double av2 = .25*(r1*r1 + 2.*fabs(r1*r2) + r2*r2);
214 greg 2.27 if (av2 < rel_min*rel_min)
215     av2 = rel_min*rel_min;
216     diff2 /= av2;
217 greg 2.1 }
218     if (max_lim >= 0 && diff2 > max_lim*max_lim) {
219     if (report != REP_QUIET)
220 greg 2.4 printf(
221 greg 2.5 "%s: %sdifference between %.8g and %.8g exceeds epsilon of %.8g\n",
222 greg 2.1 progname,
223     (rel_min > 0) ? "relative " : "",
224 greg 2.5 r1, r2, max_lim);
225 greg 2.1 return(0);
226     }
227     diff2sum += diff2;
228     nsum++;
229     return(1);
230     }
231    
232 greg 2.8 /* Compare two color values for equivalence */
233     static int
234     color_check(COLOR c1, COLOR c2)
235     {
236     int p;
237    
238 greg 2.17 if (!real_check((colval(c1,RED)+colval(c1,GRN)+colval(c1,BLU))*(1./3.),
239     (colval(c2,RED)+colval(c2,GRN)+colval(c2,BLU))*(1./3.)))
240 greg 2.8 return(0);
241    
242     p = (colval(c1,GRN) > colval(c1,RED)) ? GRN : RED;
243     if (colval(c1,BLU) > colval(c1,p)) p = BLU;
244    
245     return(real_check(colval(c1,p), colval(c2,p)));
246     }
247    
248 greg 2.33 /* Compare two color spectra for equivalence */
249     static int
250     spec_check(COLORV *sc1, COLORV *sc2)
251     {
252     int p, k;
253    
254     if (!real_check(scolor_mean(sc1), scolor_mean(sc2)))
255     return(0);
256    
257     p = 0; /* find max. component */
258     for (k = NCSAMP; --k; )
259     if (sc1[k] > sc1[p])
260     p = k;
261    
262     return(real_check(sc1[p], sc2[p]));
263     }
264    
265 greg 2.19 /* Compare two normal directions for equivalence */
266     static int
267     norm_check(FVECT nv1, FVECT nv2)
268     {
269 greg 2.22 double max2 = nv1[2]*nv2[2];
270 greg 2.19 int imax = 2;
271     int i = 2;
272     /* identify largest component */
273     while (i--) {
274 greg 2.22 double tm2 = nv1[i]*nv2[i];
275 greg 2.19 if (tm2 > max2) {
276     imax = i;
277     max2 = tm2;
278     }
279     }
280     i = 3; /* compare smaller components */
281     while (i--) {
282     if (i == imax)
283     continue;
284     if (!real_check(nv1[i], nv2[i]))
285     return(0);
286     }
287     return(1);
288     }
289    
290 greg 2.1 /* Compare two strings for equivalence */
291     static int
292     equiv_string(char *s1, char *s2)
293     {
294     #define CLS_STR 0
295     #define CLS_INT 1
296     #define CLS_FLT 2
297     /* skip whitespace at beginning */
298     while (isspace(*s1)) s1++;
299     while (isspace(*s2)) s2++;
300     while (*s1) { /* check each word */
301 greg 2.2 int inquote;
302     if (!*s2) /* unexpected EOL in s2? */
303     return(0);
304     inquote = *s1;
305 greg 2.1 if ((inquote != '\'') & (inquote != '"'))
306     inquote = 0;
307     if (inquote) { /* quoted text must match exactly */
308     if (*s1++ != *s2++)
309     return(0);
310     while (*s1 != inquote) {
311     if (!*s1)
312     return(0);
313     if (*s1++ != *s2++)
314     return(0);
315     }
316     s1++;
317     if (*s2++ != inquote)
318     return(0);
319     } else { /* else classify word type */
320     char *s1s = s1;
321     char *s2s = s2;
322     int cls = CLS_STR;
323     s1 = sskip(s1);
324     s2 = sskip(s2);
325     if (iskip(s1s) == s1) {
326     if (iskip(s2s) == s2)
327     cls = CLS_INT;
328     else if (fskip(s2s) == s2)
329     cls = CLS_FLT;
330     } else if (fskip(s1s) == s1) {
331     if (fskip(s2s) != s2)
332     return(0);
333     cls = CLS_FLT;
334     }
335     switch (cls) {
336     case CLS_INT: /* strncmp() faster */
337     case CLS_STR:
338     if (s1 - s1s != s2 - s2s)
339     return(0);
340     if (strncmp(s1s, s2s, s1 - s1s))
341     return(0);
342     break;
343     case CLS_FLT:
344     if (!real_check(atof(s1s), atof(s2s)))
345     return(0);
346     break;
347     }
348     }
349     while (isspace(*s1)) s1++;
350     while (isspace(*s2)) s2++;
351     }
352     return(!*s2); /* match if we reached the end of s2, too */
353     #undef CLS_STR
354     #undef CLS_INT
355     #undef CLS_FLT
356     }
357    
358     /* Check if string is var=value pair and set if not in ignore list */
359     static int
360     setheadvar(char *val, void *p)
361     {
362 greg 2.24 char newval[128];
363 greg 2.1 LUTAB *htp = (LUTAB *)p;
364     LUENT *tep;
365     char *key;
366     int kln, vln;
367     int n;
368    
369 greg 2.3 adv_linecnt(htp); /* side-effect is to count lines */
370 greg 2.1 if (!isalpha(*val)) /* key must start line */
371     return(0);
372 greg 2.20 /* check if we need to swap binary data */
373     if ((n = isbigendian(val)) >= 0) {
374     if (nativebigendian() == n)
375     return(0);
376     f1swap += (htp == &hdr1);
377     f2swap += (htp == &hdr2);
378     return(0);
379     }
380 greg 2.1 key = val++;
381     while (*val && !isspace(*val) & (*val != '='))
382     val++;
383     kln = val - key;
384     while (isspace(*val)) /* check for value */
385     *val++ = '\0';
386     if (*val != '=')
387     return(0);
388     *val++ = '\0';
389     while (isspace(*val))
390     val++;
391     if (!*val) /* nothing set? */
392     return(0);
393     /* check if key to ignore */
394     for (n = 0; hdr_ignkey[n]; n++)
395     if (!strcmp(key, hdr_ignkey[n]))
396     return(0);
397 greg 2.6 vln = strlen(val); /* eliminate space and newline at end */
398     while (isspace(val[--vln]))
399     ;
400     val[++vln] = '\0';
401 greg 2.1 if (!(tep = lu_find(htp, key)))
402 greg 2.4 return(-1); /* memory allocation error */
403 greg 2.1 if (!tep->key)
404     tep->key = strcpy(malloc(kln+1), key);
405 greg 2.24 if (tep->data) { /* check for special cases */
406     if (!strcmp(key, "EXPOSURE")) {
407 greg 2.28 sprintf(newval, "%.6e", atof(tep->data)*atof(val));
408 greg 2.24 vln = strlen(val = newval);
409     }
410 greg 2.1 free(tep->data);
411 greg 2.24 }
412 greg 2.1 tep->data = strcpy(malloc(vln+1), val);
413     return(1);
414     }
415    
416     /* Lookup correspondent in other header */
417     static int
418     match_val(const LUENT *ep1, void *p2)
419     {
420     const LUENT *ep2 = lu_find((LUTAB *)p2, ep1->key);
421     if (!ep2 || !ep2->data) {
422     if (report != REP_QUIET)
423 greg 2.5 printf("%s: variable '%s' missing in '%s'\n",
424 greg 2.1 progname, ep1->key, f2name);
425     return(-1);
426     }
427     if (!equiv_string((char *)ep1->data, (char *)ep2->data)) {
428 greg 2.4 if (report != REP_QUIET) {
429 greg 2.5 printf("%s: header variable '%s' has different values\n",
430 greg 2.1 progname, ep1->key);
431 greg 2.4 if (report >= REP_VERBOSE) {
432     printf("%s: %s=%s\n", f1name,
433     ep1->key, (char *)ep1->data);
434     printf("%s: %s=%s\n", f2name,
435     ep2->key, (char *)ep2->data);
436     }
437     }
438 greg 2.1 return(-1);
439     }
440     return(1); /* good match */
441     }
442    
443     /* Compare two sets of header variables */
444     static int
445 greg 2.10 headers_match()
446 greg 2.1 {
447 greg 2.10 int ne = lu_doall(&hdr1, match_val, &hdr2);
448 greg 2.1 if (ne < 0)
449     return(0); /* something didn't match! */
450 greg 2.4 /* non-fatal if second header has extra */
451 greg 2.10 if (report >= REP_WARN && (ne = lu_doall(&hdr2, NULL, NULL) - ne))
452 greg 2.5 printf("%s: warning - '%s' has %d extra header setting(s)\n",
453 greg 2.1 progname, f2name, ne);
454     return(1); /* good match */
455     }
456    
457     /* Check generic input to determine if it is binary, -1 on error */
458     static int
459     input_is_binary(FILE *fin)
460     {
461     int n = 0;
462     int c = 0;
463    
464     while ((c = getc(fin)) != EOF) {
465 greg 2.5 ++n;
466 greg 2.1 if (!c | (c > 127))
467     break; /* non-ascii character */
468 greg 2.5 if (n >= 10240)
469 greg 2.1 break; /* enough to be confident */
470     }
471     if (!n)
472     return(-1); /* first read failed */
473     if (fseek(fin, 0L, 0) < 0)
474     return(-1); /* rewind failed */
475     return(!c | (c > 127));
476     }
477    
478     /* Identify and return data type from header (if one) */
479     static int
480     identify_type(const char *name, FILE *fin, LUTAB *htp)
481     {
482     extern const char HDRSTR[];
483     int c;
484     /* check magic header start */
485     if ((c = getc(fin)) != HDRSTR[0]) {
486     if (c == EOF) goto badeof;
487     ungetc(c, fin);
488     c = 0;
489     } else if ((c = getc(fin)) != HDRSTR[1]) {
490     if (c == EOF) goto badeof;
491     ungetc(c, fin); ungetc(HDRSTR[0], fin);
492     c = 0;
493     }
494     if (c) { /* appears to have a header */
495     char sbuf[32];
496     if (!fgets(sbuf, sizeof(sbuf), fin))
497     goto badeof;
498 greg 2.3 adv_linecnt(htp); /* for #?ID string */
499 greg 2.1 if (report >= REP_WARN && strncmp(sbuf, "RADIANCE", 8)) {
500 greg 2.4 fputs(name, stdout);
501     fputs(": warning - unexpected header ID: ", stdout);
502     fputs(sbuf, stdout);
503 greg 2.1 }
504     if (getheader(fin, setheadvar, htp) < 0) {
505     fputs(name, stderr);
506 greg 2.6 fputs(": unknown error reading header\n", stderr);
507 greg 2.1 return(-1);
508     }
509     adv_linecnt(htp); /* for trailing emtpy line */
510     return(xlate_type((const char *)lu_find(htp,"FORMAT")->data));
511     }
512     c = input_is_binary(fin); /* else peek to see if binary */
513     if (c < 0) {
514     fputs(name, stderr);
515     fputs(": read/seek error\n", stderr);
516     return(-1);
517     }
518     if (c)
519     return(TYP_BINARY);
520     return(TYP_TEXT);
521     badeof:
522     if (report != REP_QUIET) {
523 greg 2.4 fputs(name, stdout);
524 greg 2.6 fputs(": unexpected end-of-file\n", stdout);
525 greg 2.1 }
526     return(-1);
527     }
528    
529     /* Check that overall RMS error is below threshold */
530     static int
531     good_RMS()
532     {
533     if (!nsum)
534     return(1);
535     if (diff2sum/(double)nsum > rms_lim*rms_lim) {
536     if (report != REP_QUIET)
537 greg 2.4 printf(
538 greg 2.5 "%s: %sRMS difference between '%s' and '%s' of %.5g exceeds limit of %.5g\n",
539 greg 2.1 progname,
540     (rel_min > 0) ? "relative " : "",
541     f1name, f2name,
542 greg 2.5 sqrt(diff2sum/(double)nsum), rms_lim);
543 greg 2.1 return(0);
544     }
545     if (report >= REP_VERBOSE)
546 greg 2.4 printf("%s: %sRMS difference of reals in '%s' and '%s' is %.5g\n",
547 greg 2.1 progname, (rel_min > 0) ? "relative " : "",
548     f1name, f2name, sqrt(diff2sum/(double)nsum));
549     return(1);
550     }
551    
552     /* Compare two inputs as generic binary files */
553     static int
554     compare_binary()
555     {
556 greg 2.5 int c1=0, c2=0;
557    
558 greg 2.1 if (report >= REP_VERBOSE) {
559 greg 2.4 fputs(progname, stdout);
560     fputs(": comparing inputs as binary\n", stdout);
561 greg 2.1 }
562     for ( ; ; ) { /* exact byte matching */
563 greg 2.5 c1 = getc(f1in);
564     c2 = getc(f2in);
565 greg 2.1 if (c1 == EOF) {
566     if (c2 == EOF)
567     return(1); /* success! */
568     if (report != REP_QUIET) {
569 greg 2.4 fputs(f1name, stdout);
570 greg 2.6 fputs(": unexpected end-of-file\n", stdout);
571 greg 2.1 }
572     return(0);
573     }
574     if (c2 == EOF) {
575     if (report != REP_QUIET) {
576 greg 2.4 fputs(f2name, stdout);
577 greg 2.6 fputs(": unexpected end-of-file\n", stdout);
578 greg 2.1 }
579     return(0);
580     }
581     if (c1 != c2)
582     break; /* quit and report difference */
583     }
584     if (report == REP_QUIET)
585     return(0);
586 greg 2.5 printf("%s: binary files '%s' and '%s' differ at byte offset %ld|%ld\n",
587 greg 2.1 progname, f1name, f2name, ftell(f1in), ftell(f2in));
588 greg 2.5 if (report >= REP_VERBOSE)
589     printf("%s: byte in '%s' is 0x%X, byte in '%s' is 0x%X\n",
590     progname, f1name, c1, f2name, c2);
591 greg 2.1 return(0);
592     }
593    
594     /* Compare two inputs as generic text files */
595     static int
596     compare_text()
597     {
598 greg 2.12 LINEBUF l1buf, l2buf;
599 greg 2.1
600     if (report >= REP_VERBOSE) {
601 greg 2.4 fputs(progname, stdout);
602 greg 2.26 fputs(": comparing inputs as ASCII text", stdout);
603 greg 2.29 if (escape_newlines)
604     fputs(", allowing escaped newlines", stdout);
605 greg 2.26 if (comment_c) {
606     fputs(", ignoring comments starting with '", stdout);
607     fputc(comment_c, stdout);
608     fputc('\'', stdout);
609     }
610     fputc('\n', stdout);
611 greg 2.1 }
612 greg 2.25 SET_FILE_TEXT(f1in); /* originally set to binary */
613     SET_FILE_TEXT(f2in);
614 greg 2.12 init_line(&l1buf); init_line(&l2buf); /* compare a line at a time */
615     while (read_line(&l1buf, f1in)) {
616     lin1cnt++;
617 greg 2.14 if (!*sskip2(l1buf.str,0))
618 greg 2.1 continue; /* ignore empty lines */
619 greg 2.12
620     while (read_line(&l2buf, f2in)) {
621     lin2cnt++;
622 greg 2.14 if (*sskip2(l2buf.str,0))
623 greg 2.1 break; /* found other non-empty line */
624     }
625 greg 2.13 if (!l2buf.len) { /* input 2 EOF? */
626 greg 2.1 if (report != REP_QUIET) {
627 greg 2.4 fputs(f2name, stdout);
628 greg 2.6 fputs(": unexpected end-of-file\n", stdout);
629 greg 2.1 }
630 greg 2.12 free_line(&l1buf); free_line(&l2buf);
631 greg 2.1 return(0);
632     }
633     /* compare non-empty lines */
634 greg 2.14 if (!equiv_string(l1buf.str, l2buf.str)) {
635 greg 2.1 if (report != REP_QUIET) {
636 greg 2.32 printf("%s: inputs '%s' and '%s' differ at line %d",
637     progname, f1name, f2name, lin1cnt);
638     if (lin1cnt != lin2cnt)
639     printf("|%d\n", lin2cnt);
640     else
641     putchar('\n');
642 greg 2.12 if ( report >= REP_VERBOSE &&
643     (l1buf.len < 256) &
644     (l2buf.len < 256) ) {
645 greg 2.4 fputs("------------- Mismatch -------------\n", stdout);
646 greg 2.5 printf("%s@%d:\t%s", f1name,
647 greg 2.14 lin1cnt, l1buf.str);
648 greg 2.5 printf("%s@%d:\t%s", f2name,
649 greg 2.14 lin2cnt, l2buf.str);
650 greg 2.1 }
651     }
652 greg 2.12 free_line(&l1buf); free_line(&l2buf);
653 greg 2.1 return(0);
654     }
655     }
656 greg 2.13 free_line(&l1buf); /* check for EOF on input 2 */
657 greg 2.12 while (read_line(&l2buf, f2in)) {
658 greg 2.14 if (!*sskip2(l2buf.str,0))
659 greg 2.1 continue;
660     if (report != REP_QUIET) {
661 greg 2.4 fputs(f1name, stdout);
662 greg 2.6 fputs(": unexpected end-of-file\n", stdout);
663 greg 2.1 }
664 greg 2.13 free_line(&l2buf);
665 greg 2.1 return(0);
666     }
667 greg 2.13 free_line(&l2buf);
668 greg 2.1 return(good_RMS()); /* final check for reals */
669     }
670    
671 greg 2.33 /* Set resolution based on NROWS, NCOLS in header */
672     static int
673     set_resolu(RESOLU *rs, LUTAB *htp)
674     {
675     const char *val;
676    
677     rs->rt = PIXSTANDARD;
678     val = (const char *)lu_find(htp, "NROWS")->data;
679     if (!val) return(0);
680     rs->yr = atoi(val);
681     if (rs->yr <= 0) return(-1);
682     val = (const char *)lu_find(htp, "NCOLS")->data;
683     if (!val) return(0);
684     rs->xr = atoi(val);
685     if (rs->xr <= 0) return(-1);
686     return(1);
687     }
688    
689 greg 2.19 /* Check image/map resolutions */
690     static int
691     check_resolu(const char *class, RESOLU *r1p, RESOLU *r2p)
692     {
693     if (r1p->rt != r2p->rt) {
694     if (report != REP_QUIET)
695     printf(
696     "%s: %ss '%s' and '%s' have different pixel ordering\n",
697     progname, class, f1name, f2name);
698     return(0);
699     }
700     if ((r1p->xr != r2p->xr) | (r1p->yr != r2p->yr)) {
701     if (report != REP_QUIET)
702     printf(
703     "%s: %ss '%s' and '%s' are different sizes\n",
704     progname, class, f1name, f2name);
705     return(0);
706     }
707     return(1);
708     }
709    
710 greg 2.1 /* Compare two inputs that are known to be RGBE or XYZE images */
711     static int
712     compare_hdr()
713     {
714     RESOLU rs1, rs2;
715     COLOR *scan1, *scan2;
716     int x, y;
717    
718 greg 2.6 if (report >= REP_VERBOSE) {
719     fputs(progname, stdout);
720     fputs(": comparing inputs as HDR images\n", stdout);
721     }
722 greg 2.1 fgetsresolu(&rs1, f1in);
723     fgetsresolu(&rs2, f2in);
724 greg 2.19 if (!check_resolu("HDR image", &rs1, &rs2))
725 greg 2.1 return(0);
726     scan1 = (COLOR *)malloc(scanlen(&rs1)*sizeof(COLOR));
727     scan2 = (COLOR *)malloc(scanlen(&rs2)*sizeof(COLOR));
728     if (!scan1 | !scan2) {
729     fprintf(stderr, "%s: out of memory in compare_hdr()\n", progname);
730     exit(2);
731     }
732     for (y = 0; y < numscans(&rs1); y++) {
733     if ((freadscan(scan1, scanlen(&rs1), f1in) < 0) |
734     (freadscan(scan2, scanlen(&rs2), f2in) < 0)) {
735     if (report != REP_QUIET)
736 greg 2.6 printf("%s: unexpected end-of-file\n",
737 greg 2.1 progname);
738     free(scan1);
739     free(scan2);
740     return(0);
741     }
742 greg 2.5 for (x = 0; x < scanlen(&rs1); x++) {
743 greg 2.8 if (color_check(scan1[x], scan2[x]))
744 greg 2.1 continue;
745     if (report != REP_QUIET) {
746 greg 2.33 printf("%s: pixels at scanline %d offset %d differ\n",
747 greg 2.1 progname, y, x);
748     if (report >= REP_VERBOSE) {
749 greg 2.4 printf("%s: (R,G,B)=(%g,%g,%g)\n",
750 greg 2.1 f1name, colval(scan1[x],RED),
751     colval(scan1[x],GRN),
752     colval(scan1[x],BLU));
753 greg 2.4 printf("%s: (R,G,B)=(%g,%g,%g)\n",
754 greg 2.1 f2name, colval(scan2[x],RED),
755     colval(scan2[x],GRN),
756     colval(scan2[x],BLU));
757     }
758     }
759     free(scan1);
760     free(scan2);
761     return(0);
762     }
763     }
764     free(scan1);
765     free(scan2);
766     return(good_RMS()); /* final check of RMS */
767     }
768    
769 greg 2.33 /* Compare two inputs that are known to be spectral images */
770     static int
771     compare_spec()
772     {
773     static char NCstr[] = NCOMPSTR;
774     RESOLU rs1, rs2;
775     COLORV *scan1, *scan2;
776     const char *val;
777     int x, y;
778    
779     if (report >= REP_VERBOSE) {
780     fputs(progname, stdout);
781     fputs(": comparing inputs as spectral images\n", stdout);
782     }
783     if (!(set_resolu(&rs1, &hdr1) || fgetsresolu(&rs1, f1in)))
784     return(0);
785     if (!(set_resolu(&rs2, &hdr2) || fgetsresolu(&rs2, f2in)))
786     return(0);
787     if (!check_resolu("Spectral image", &rs1, &rs2))
788     return(0);
789     NCstr[LNCOMPSTR-1] = '\0';
790     val = (const char *)lu_find(&hdr1, NCstr)->data;
791     if (!val || (NCSAMP = atoi(val)) < 3) {
792     if (report != REP_QUIET) {
793     if (val)
794     printf("%s: illegal # components (%d) for spectral image\n",
795     progname, NCSAMP);
796     else
797     printf("%s: missing %s in header for spectral image\n",
798     progname, NCstr);
799     }
800     return(0);
801     }
802     scan1 = (COLORV *)malloc(sizeof(COLORV)*NCSAMP*scanlen(&rs1));
803     scan2 = (COLORV *)malloc(sizeof(COLORV)*NCSAMP*scanlen(&rs2));
804     if (!scan1 | !scan2) {
805     fprintf(stderr, "%s: out of memory in compare_hdr()\n", progname);
806     exit(2);
807     }
808     for (y = 0; y < numscans(&rs1); y++) {
809     if ((freadsscan(scan1, NCSAMP, scanlen(&rs1), f1in) < 0) |
810     (freadsscan(scan2, NCSAMP, scanlen(&rs2), f2in) < 0)) {
811     if (report != REP_QUIET)
812     printf("%s: unexpected end-of-file\n", progname);
813     free(scan1);
814     free(scan2);
815     return(0);
816     }
817     for (x = 0; x < scanlen(&rs1); x++) {
818     if (spec_check(scan1+x*NCSAMP, scan2+x*NCSAMP))
819     continue;
820     if (report != REP_QUIET) {
821     int k;
822     printf("%s: spectra at scanline %d offset %d differ\n",
823     progname, y, x);
824     if (report >= REP_VERBOSE) {
825     printf("%s: spectrum =", f1name);
826     for (k = 0; k < NCSAMP; k++)
827     printf(" %g", scan1[x*NCSAMP+k]);
828     fputc('\n', stdout);
829     printf("%s: spectrum =", f2name);
830     for (k = 0; k < NCSAMP; k++)
831     printf(" %g", scan2[x*NCSAMP+k]);
832     fputc('\n', stdout);
833     }
834     }
835     free(scan1);
836     free(scan2);
837     return(0);
838     }
839     }
840     free(scan1);
841     free(scan2);
842     return(good_RMS()); /* final check of RMS */
843     }
844    
845 greg 2.19 /* Set reference depth based on header variable */
846     static int
847     set_refdepth(DEPTHCODEC *dcp, LUTAB *htp)
848     {
849     static char depthvar[] = DEPTHSTR;
850     const char *drval;
851    
852 greg 2.23 depthvar[LDEPTHSTR-1] = '\0';
853 greg 2.19 drval = (const char *)lu_find(htp, depthvar)->data;
854     if (!drval)
855     return(0);
856     dcp->refdepth = atof(drval);
857     if (dcp->refdepth <= 0) {
858     if (report != REP_QUIET) {
859     fputs(dcp->inpname, stderr);
860     fputs(": bad reference depth '", stderr);
861     fputs(drval, stderr);
862     fputs("'\n", stderr);
863     }
864     return(-1);
865     }
866     return(1);
867     }
868    
869     /* Compare two encoded depth maps */
870     static int
871     compare_depth()
872     {
873     long nread = 0;
874     DEPTHCODEC dc1, dc2;
875    
876     if (report >= REP_VERBOSE) {
877     fputs(progname, stdout);
878     fputs(": comparing inputs as depth maps\n", stdout);
879     }
880     set_dc_defaults(&dc1);
881     dc1.hdrflags = HF_RESIN;
882     dc1.finp = f1in;
883     dc1.inpname = f1name;
884     set_dc_defaults(&dc2);
885     dc2.hdrflags = HF_RESIN;
886     dc2.finp = f2in;
887     dc2.inpname = f2name;
888     if (report != REP_QUIET) {
889     dc1.hdrflags |= HF_STDERR;
890     dc2.hdrflags |= HF_STDERR;
891     }
892     if (!process_dc_header(&dc1, 0, NULL))
893     return(0);
894     if (!process_dc_header(&dc2, 0, NULL))
895     return(0);
896     if (!check_resolu("Depth map", &dc1.res, &dc2.res))
897     return(0);
898     if (set_refdepth(&dc1, &hdr1) < 0)
899     return(0);
900     if (set_refdepth(&dc2, &hdr2) < 0)
901     return(0);
902     while (nread < dc1.res.xr*dc1.res.yr) {
903     double d1 = decode_depth_next(&dc1);
904     double d2 = decode_depth_next(&dc2);
905     if ((d1 < 0) | (d2 < 0)) {
906     if (report != REP_QUIET)
907     printf("%s: unexpected end-of-file\n",
908     progname);
909     return(0);
910     }
911     ++nread;
912     if (real_check(d1, d2))
913     continue;
914     if (report != REP_QUIET)
915     printf("%s: %ld%s depth values differ\n",
916     progname, nread, num_sfx(nread));
917     return(0);
918     }
919     return(good_RMS()); /* final check of RMS */
920     }
921    
922     /* Compare two encoded normal maps */
923     static int
924     compare_norm()
925     {
926     long nread = 0;
927     NORMCODEC nc1, nc2;
928    
929     if (report >= REP_VERBOSE) {
930     fputs(progname, stdout);
931     fputs(": comparing inputs as normal maps\n", stdout);
932     }
933     set_nc_defaults(&nc1);
934     nc1.hdrflags = HF_RESIN;
935     nc1.finp = f1in;
936     nc1.inpname = f1name;
937     set_nc_defaults(&nc2);
938     nc2.hdrflags = HF_RESIN;
939     nc2.finp = f2in;
940     nc2.inpname = f2name;
941     if (report != REP_QUIET) {
942     nc1.hdrflags |= HF_STDERR;
943     nc2.hdrflags |= HF_STDERR;
944     }
945     if (!process_nc_header(&nc1, 0, NULL))
946     return(0);
947     if (!process_nc_header(&nc2, 0, NULL))
948     return(0);
949     if (!check_resolu("Normal map", &nc1.res, &nc2.res))
950     return(0);
951     while (nread < nc1.res.xr*nc1.res.yr) {
952     FVECT nv1, nv2;
953     int rv1 = decode_normal_next(nv1, &nc1);
954     int rv2 = decode_normal_next(nv2, &nc2);
955     if ((rv1 < 0) | (rv2 < 0)) {
956     if (report != REP_QUIET)
957     printf("%s: unexpected end-of-file\n",
958     progname);
959     return(0);
960     }
961     ++nread;
962     if (rv1 == rv2 && (!rv1 || norm_check(nv1, nv2)))
963     continue;
964     if (report != REP_QUIET)
965     printf("%s: %ld%s normal vectors differ\n",
966     progname, nread, num_sfx(nread));
967     return(0);
968     }
969     return(good_RMS()); /* final check of RMS */
970     }
971    
972 greg 2.1 /* Compare two inputs that are known to be 32-bit floating-point data */
973     static int
974     compare_float()
975     {
976     long nread = 0;
977     float f1, f2;
978    
979 greg 2.6 if (report >= REP_VERBOSE) {
980     fputs(progname, stdout);
981 greg 2.7 fputs(": comparing inputs as 32-bit IEEE floats\n", stdout);
982 greg 2.6 }
983 greg 2.1 while (getbinary(&f1, sizeof(f1), 1, f1in)) {
984     if (!getbinary(&f2, sizeof(f2), 1, f2in))
985     goto badeof;
986     ++nread;
987 greg 2.20 if (f1swap) swap32((char *)&f1, 1);
988     if (f2swap) swap32((char *)&f2, 1);
989 greg 2.1 if (real_check(f1, f2))
990     continue;
991     if (report != REP_QUIET)
992 greg 2.4 printf("%s: %ld%s float values differ\n",
993 greg 2.6 progname, nread, num_sfx(nread));
994 greg 2.1 return(0);
995     }
996     if (!getbinary(&f2, sizeof(f2), 1, f2in))
997     return(good_RMS()); /* final check of RMS */
998     badeof:
999     if (report != REP_QUIET)
1000 greg 2.6 printf("%s: unexpected end-of-file\n", progname);
1001 greg 2.1 return(0);
1002     }
1003    
1004     /* Compare two inputs that are known to be 64-bit floating-point data */
1005     static int
1006     compare_double()
1007     {
1008     long nread = 0;
1009     double f1, f2;
1010    
1011 greg 2.6 if (report >= REP_VERBOSE) {
1012     fputs(progname, stdout);
1013 greg 2.7 fputs(": comparing inputs as 64-bit IEEE doubles\n", stdout);
1014 greg 2.6 }
1015 greg 2.1 while (getbinary(&f1, sizeof(f1), 1, f1in)) {
1016     if (!getbinary(&f2, sizeof(f2), 1, f2in))
1017     goto badeof;
1018     ++nread;
1019 greg 2.20 if (f1swap) swap64((char *)&f1, 1);
1020     if (f2swap) swap64((char *)&f2, 1);
1021 greg 2.1 if (real_check(f1, f2))
1022     continue;
1023     if (report != REP_QUIET)
1024 greg 2.6 printf("%s: %ld%s double values differ\n",
1025     progname, nread, num_sfx(nread));
1026 greg 2.1 return(0);
1027     }
1028     if (!getbinary(&f2, sizeof(f2), 1, f2in))
1029     return(good_RMS()); /* final check of RMS */
1030     badeof:
1031     if (report != REP_QUIET)
1032 greg 2.6 printf("%s: unexpected end-of-file\n", progname);
1033 greg 2.1 return(0);
1034     }
1035    
1036     /* Compare two Radiance files for equivalence */
1037     int
1038     main(int argc, char *argv[])
1039     {
1040     int typ1, typ2;
1041     int a;
1042    
1043     progname = argv[0];
1044     for (a = 1; a < argc && argv[a][0] == '-'; a++) {
1045     switch (argv[a][1]) {
1046     case 'h': /* ignore header info. */
1047     ign_header = !ign_header;
1048     continue;
1049 greg 2.29 case 'n': /* allow newline escapes */
1050     escape_newlines = !escape_newlines;
1051     continue;
1052 greg 2.26 case 'c': /* ignore comments */
1053     comment_c = argv[a][2];
1054     continue;
1055 greg 2.1 case 's': /* silent operation */
1056     report = REP_QUIET;
1057     continue;
1058     case 'w': /* turn off warnings */
1059     if (report > REP_ERROR)
1060     report = REP_ERROR;
1061     continue;
1062     case 'v': /* turn on verbose mode */
1063     report = REP_VERBOSE;
1064     continue;
1065     case 'm': /* maximum epsilon */
1066     max_lim = atof(argv[++a]);
1067     continue;
1068     case 'r':
1069     if (argv[a][2] == 'e') /* relative difference */
1070     rel_min = atof(argv[++a]);
1071     else if (argv[a][2] == 'm') /* RMS limit */
1072     rms_lim = atof(argv[++a]);
1073     else
1074     usage();
1075     continue;
1076     case '\0': /* first file from stdin */
1077     f1in = stdin;
1078     f1name = stdin_name;
1079     break;
1080     default:
1081     usage();
1082     }
1083     break;
1084     }
1085 greg 2.7 if (a != argc-2) /* make sure of two inputs */
1086 greg 2.1 usage();
1087 greg 2.7 if (!strcmp(argv[a], argv[a+1])) { /* inputs are same? */
1088 greg 2.1 if (report >= REP_WARN)
1089 greg 2.4 printf("%s: warning - identical inputs given\n",
1090 greg 2.1 progname);
1091     return(0);
1092     }
1093 greg 2.7 if (!f1name) f1name = argv[a];
1094     if (!f2name) f2name = argv[a+1];
1095 greg 2.1 /* open inputs */
1096     SET_FILE_BINARY(stdin); /* in case we're using it */
1097     if (!f1in && !(f1in = fopen(f1name, "rb"))) {
1098     fprintf(stderr, "%s: cannot open for reading\n", f1name);
1099 greg 2.9 return(2);
1100 greg 2.1 }
1101     if (!strcmp(f2name, "-")) {
1102     f2in = stdin;
1103     f2name = stdin_name;
1104     } else if (!(f2in = fopen(f2name, "rb"))) {
1105     fprintf(stderr, "%s: cannot open for reading\n", f2name);
1106 greg 2.9 return(2);
1107 greg 2.1 }
1108     /* load headers */
1109     if ((typ1 = identify_type(f1name, f1in, &hdr1)) < 0)
1110 greg 2.9 return(2);
1111 greg 2.1 if ((typ2 = identify_type(f2name, f2in, &hdr2)) < 0)
1112 greg 2.9 return(2);
1113 greg 2.1 if (typ1 != typ2) {
1114     if (report != REP_QUIET)
1115 greg 2.21 printf("%s: '%s' format is %s and '%s' is %s\n",
1116 greg 2.1 progname, f1name, file_type[typ1],
1117     f2name, file_type[typ2]);
1118     return(1);
1119     }
1120     ign_header |= !has_header(typ1); /* check headers if indicated */
1121 greg 2.10 if (!ign_header && !headers_match())
1122 greg 2.1 return(1);
1123     if (!ign_header & (report >= REP_WARN)) {
1124     if (lin1cnt != lin2cnt)
1125 greg 2.4 printf("%s: warning - headers are different lengths\n",
1126 greg 2.1 progname);
1127 greg 2.16 if (typ1 == TYP_UNKNOWN)
1128     printf("%s: warning - unrecognized format\n",
1129     progname);
1130 greg 2.1 }
1131 greg 2.21 if (report >= REP_VERBOSE) {
1132     printf("%s: data format is %s\n", progname, file_type[typ1]);
1133     if ((typ1 == TYP_FLOAT) | (typ1 == TYP_DOUBLE)) {
1134     if (f1swap)
1135     printf("%s: input '%s' is byte-swapped\n",
1136     progname, f1name);
1137     if (f2swap)
1138     printf("%s: input '%s' is byte-swapped\n",
1139     progname, f2name);
1140     }
1141     }
1142 greg 2.1 switch (typ1) { /* compare based on type */
1143     case TYP_BINARY:
1144     case TYP_TMESH:
1145     case TYP_OCTREE:
1146     case TYP_RBFMESH:
1147 greg 2.19 case TYP_ID8:
1148     case TYP_ID16:
1149     case TYP_ID24:
1150 greg 2.1 case TYP_UNKNOWN:
1151     return( !compare_binary() );
1152     case TYP_TEXT:
1153     case TYP_ASCII:
1154     return( !compare_text() );
1155     case TYP_RGBE:
1156     case TYP_XYZE:
1157     return( !compare_hdr() );
1158 greg 2.33 case TYP_SPEC:
1159     return( !compare_spec() );
1160 greg 2.19 case TYP_DEPTH:
1161     return( !compare_depth() );
1162     case TYP_NORM:
1163     return( !compare_norm() );
1164 greg 2.1 case TYP_FLOAT:
1165     return( !compare_float() );
1166     case TYP_DOUBLE:
1167     return( !compare_double() );
1168     }
1169     return(1);
1170     }