ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/radcompare.c
(Generate patch)

Comparing ray/src/util/radcompare.c (file contents):
Revision 2.5 by greg, Mon Oct 15 22:21:45 2018 UTC vs.
Revision 2.18 by greg, Sat Dec 1 21:09:53 2018 UTC

# Line 33 | Line 33 | double max_lim = 0.25;         /* difference limit if non-neg
33  
34   int     lin1cnt=0, lin2cnt=0;   /* file line position */
35  
36 + const char      nsuffix[10][3] = {              /* 1st, 2nd, 3rd, etc. */
37 +                        "th","st","nd","rd","th","th","th","th","th","th"
38 +                };
39 + #define num_sfx(n)      nsuffix[(n)%10]
40 +
41                                  /* file types */
42   const char      *file_type[] = {
43                          "Unrecognized",
# Line 48 | Line 53 | const char     *file_type[] = {
53                          "BINARY_unknown",
54                          NULL    /* terminator */
55                  };
56 <
56 >                                /* keep consistent with above */
57   enum {TYP_UNKNOWN, TYP_TEXT, TYP_ASCII, TYP_RGBE, TYP_XYZE, TYP_FLOAT,
58                  TYP_DOUBLE, TYP_RBFMESH, TYP_OCTREE, TYP_TMESH, TYP_BINARY};
59                  
# Line 59 | Line 64 | const char     *hdr_ignkey[] = {
64                          "SOFTWARE",
65                          "CAPDATE",
66                          "GMT",
67 +                        "FRAME",
68                          NULL    /* terminator */
69                  };
70                                  /* header variable settings */
# Line 69 | Line 75 | LUTAB  hdr2 = LU_SINIT(free,free);
75   #define adv_linecnt(htp)        (lin1cnt += (htp == &hdr1), \
76                                          lin2cnt += (htp == &hdr2))
77  
78 + typedef struct {                /* dynamic line buffer */
79 +        char    *str;
80 +        int     len;
81 +        int     siz;
82 + } LINEBUF;
83 +
84 + #define init_line(bp)   ((bp)->str = NULL, (bp)->siz = 0)
85 +                                /* 100 MByte limit on line buffer */
86 + #define MAXBUF          (100L<<20)
87 +
88                                  /* input files */
89   char            *progname = NULL;
90   const char      stdin_name[] = "<stdin>";
# Line 77 | Line 93 | FILE           *f1in=NULL, *f2in=NULL;
93  
94                                  /* running real differences */
95   double  diff2sum = 0;
96 < int     nsum = 0;
96 > long    nsum = 0;
97  
98   /* Report usage and exit */
99   static void
# Line 87 | Line 103 | usage()
103          fputs(progname, stderr);
104          fputs(" [-h][-s|-w|-v][-rel min_test][-rms epsilon][-max epsilon] reference test\n",
105                          stderr);
106 <        exit(1);
106 >        exit(2);
107   }
108  
109 + /* Read a text line, increasing buffer size as necessary */
110 + static int
111 + read_line(LINEBUF *bp, FILE *fp)
112 + {
113 +        static int      doneWarn = 0;
114 +
115 +        bp->len = 0;
116 +        if (!bp->str) {
117 +                bp->str = (char *)malloc(bp->siz = 512);
118 +                if (!bp->str)
119 +                        goto memerr;
120 +        }
121 +        while (fgets(bp->str + bp->len, bp->siz - bp->len, fp)) {
122 +                bp->len += strlen(bp->str + bp->len);
123 +                if (bp->str[bp->len-1] == '\n')
124 +                        break;          /* found EOL */
125 +                if (bp->len < bp->siz - 4)
126 +                        continue;       /* at EOF? */
127 +                if (bp->siz >= MAXBUF) {
128 +                        if ((report >= REP_WARN) & !doneWarn) {
129 +                                fprintf(stderr,
130 +                        "%s: warning - input line(s) past %ld MByte limit\n",
131 +                                        progname, MAXBUF>>20);
132 +                                doneWarn++;
133 +                        }
134 +                        break;          /* return MAXBUF partial line */
135 +                }
136 +                if ((bp->siz += bp->siz/2) > MAXBUF)
137 +                        bp->siz = MAXBUF;
138 +                bp->str = (char *)realloc(bp->str, bp->siz);
139 +                if (!bp->str)
140 +                        goto memerr;
141 +        }
142 +        return(bp->len);
143 + memerr:
144 +        fprintf(stderr,
145 +                "%s: out of memory in read_line() allocating %d byte buffer\n",
146 +                        progname, bp->siz);
147 +        exit(2);
148 + }
149 +
150 + /* Free line buffer */
151 + static void
152 + free_line(LINEBUF *bp)
153 + {
154 +        if (bp->str) free(bp->str);
155 +        init_line(bp);
156 + }
157 +
158   /* Get type ID from name (or 0 if not found) */
159   static int
160   xlate_type(const char *nm)
# Line 129 | Line 194 | real_check(double r1, double r2)
194          return(1);
195   }
196  
197 + /* Compare two color values for equivalence */
198 + static int
199 + color_check(COLOR c1, COLOR c2)
200 + {
201 +        int     p;
202 +
203 +        if (!real_check((colval(c1,RED)+colval(c1,GRN)+colval(c1,BLU))*(1./3.),
204 +                        (colval(c2,RED)+colval(c2,GRN)+colval(c2,BLU))*(1./3.)))
205 +                return(0);
206 +
207 +        p = (colval(c1,GRN) > colval(c1,RED)) ? GRN : RED;
208 +        if (colval(c1,BLU) > colval(c1,p)) p = BLU;
209 +        
210 +        return(real_check(colval(c1,p), colval(c2,p)));
211 + }
212 +
213   /* Compare two strings for equivalence */
214   static int
215   equiv_string(char *s1, char *s2)
# Line 223 | Line 304 | setheadvar(char *val, void *p)
304                  val++;
305          if (!*val)              /* nothing set? */
306                  return(0);
226        vln = strlen(val);      /* eliminate space and newline at end */
227        while (--vln > 0 && isspace(val[vln]))
228                ;
229        val[++vln] = '\0';
307                                  /* check if key to ignore */
308          for (n = 0; hdr_ignkey[n]; n++)
309                  if (!strcmp(key, hdr_ignkey[n]))
310                          return(0);
311 +        vln = strlen(val);      /* eliminate space and newline at end */
312 +        while (isspace(val[--vln]))
313 +                ;
314 +        val[++vln] = '\0';
315          if (!(tep = lu_find(htp, key)))
316                  return(-1);     /* memory allocation error */
317          if (!tep->key)
# Line 270 | Line 351 | match_val(const LUENT *ep1, void *p2)
351  
352   /* Compare two sets of header variables */
353   static int
354 < headers_match(LUTAB *hp1, LUTAB *hp2)
354 > headers_match()
355   {
356 <        int     ne = lu_doall(hp1, match_val, hp2);
356 >        int     ne = lu_doall(&hdr1, match_val, &hdr2);
357          if (ne < 0)
358                  return(0);      /* something didn't match! */
359                                  /* non-fatal if second header has extra */
360 <        if (report >= REP_WARN && (ne = lu_doall(hp2, NULL, NULL) - ne))
360 >        if (report >= REP_WARN && (ne = lu_doall(&hdr2, NULL, NULL) - ne))
361                  printf("%s: warning - '%s' has %d extra header setting(s)\n",
362                                          progname, f2name, ne);
363          return(1);              /* good match */
# Line 331 | Line 412 | identify_type(const char *name, FILE *fin, LUTAB *htp)
412                  }
413                  if (getheader(fin, setheadvar, htp) < 0) {
414                          fputs(name, stderr);
415 <                        fputs(": Unknown error reading header\n", stderr);
415 >                        fputs(": unknown error reading header\n", stderr);
416                          return(-1);
417                  }
418                  adv_linecnt(htp);               /* for trailing emtpy line */
# Line 350 | Line 431 | identify_type(const char *name, FILE *fin, LUTAB *htp)
431   badeof:
432          if (report != REP_QUIET) {
433                  fputs(name, stdout);
434 <                fputs(": Unexpected end-of-file\n", stdout);
434 >                fputs(": unexpected end-of-file\n", stdout);
435          }
436          return(-1);
437   }
# Line 396 | Line 477 | compare_binary()
477                                  return(1);      /* success! */
478                          if (report != REP_QUIET) {
479                                  fputs(f1name, stdout);
480 <                                fputs(": Unexpected end-of-file\n", stdout);
480 >                                fputs(": unexpected end-of-file\n", stdout);
481                          }
482                          return(0);
483                  }
484                  if (c2 == EOF) {
485                          if (report != REP_QUIET) {
486                                  fputs(f2name, stdout);
487 <                                fputs(": Unexpected end-of-file\n", stdout);
487 >                                fputs(": unexpected end-of-file\n", stdout);
488                          }
489                          return(0);
490                  }
# Line 424 | Line 505 | compare_binary()
505   static int
506   compare_text()
507   {
508 <        char    l1buf[4096], l2buf[4096];
508 >        LINEBUF l1buf, l2buf;
509  
510          if (report >= REP_VERBOSE) {
511                  fputs(progname, stdout);
512                  fputs(": comparing inputs as ASCII text\n", stdout);
513          }
514 <                                                /* compare a line at a time */
515 <        while (fgets(l1buf, sizeof(l1buf), f1in)) {
514 >        init_line(&l1buf); init_line(&l2buf);   /* compare a line at a time */
515 >        while (read_line(&l1buf, f1in)) {
516                  lin1cnt++;
517 <                if (!*sskip2(l1buf,0))
517 >                if (!*sskip2(l1buf.str,0))
518                          continue;               /* ignore empty lines */
519 <                while (fgets(l2buf, sizeof(l2buf), f2in)) {
519 >
520 >                while (read_line(&l2buf, f2in)) {
521                          lin2cnt++;
522 <                        if (*sskip2(l2buf,0))
522 >                        if (*sskip2(l2buf.str,0))
523                                  break;          /* found other non-empty line */
524                  }
525 <                if (feof(f2in)) {
525 >                if (!l2buf.len) {               /* input 2 EOF? */
526                          if (report != REP_QUIET) {
527                                  fputs(f2name, stdout);
528 <                                fputs(": Unexpected end-of-file\n", stdout);
528 >                                fputs(": unexpected end-of-file\n", stdout);
529                          }
530 +                        free_line(&l1buf); free_line(&l2buf);
531                          return(0);
532                  }
533                                                  /* compare non-empty lines */
534 <                if (!equiv_string(l1buf, l2buf)) {
534 >                if (!equiv_string(l1buf.str, l2buf.str)) {
535                          if (report != REP_QUIET) {
536                                  printf("%s: inputs '%s' and '%s' differ at line %d|%d\n",
537                                                  progname, f1name, f2name,
538                                                  lin1cnt, lin2cnt);
539 <                                if (report >= REP_VERBOSE) {
539 >                                if ( report >= REP_VERBOSE &&
540 >                                                (l1buf.len < 256) &
541 >                                                (l2buf.len < 256) ) {
542                                          fputs("------------- Mismatch -------------\n", stdout);
543                                          printf("%s@%d:\t%s", f1name,
544 <                                                        lin1cnt, l1buf);
544 >                                                        lin1cnt, l1buf.str);
545                                          printf("%s@%d:\t%s", f2name,
546 <                                                        lin2cnt, l2buf);
546 >                                                        lin2cnt, l2buf.str);
547                                  }
548                          }
549 +                        free_line(&l1buf); free_line(&l2buf);
550                          return(0);
551                  }
552          }
553 <                                                /* check for EOF on input 2 */
554 <        while (fgets(l2buf, sizeof(l2buf), f2in)) {
555 <                if (!*sskip2(l2buf,0))
553 >        free_line(&l1buf);                      /* check for EOF on input 2 */
554 >        while (read_line(&l2buf, f2in)) {
555 >                if (!*sskip2(l2buf.str,0))
556                          continue;
557                  if (report != REP_QUIET) {
558                          fputs(f1name, stdout);
559 <                        fputs(": Unexpected end-of-file\n", stdout);
559 >                        fputs(": unexpected end-of-file\n", stdout);
560                  }
561 +                free_line(&l2buf);
562                  return(0);
563          }
564 +        free_line(&l2buf);
565          return(good_RMS());                     /* final check for reals */
566   }
567  
# Line 485 | Line 573 | compare_hdr()
573          COLOR   *scan1, *scan2;
574          int     x, y;
575  
576 +        if (report >= REP_VERBOSE) {
577 +                fputs(progname, stdout);
578 +                fputs(": comparing inputs as HDR images\n", stdout);
579 +        }
580          fgetsresolu(&rs1, f1in);
581          fgetsresolu(&rs2, f2in);
582          if (rs1.rt != rs2.rt) {
# Line 511 | Line 603 | compare_hdr()
603                  if ((freadscan(scan1, scanlen(&rs1), f1in) < 0) |
604                                  (freadscan(scan2, scanlen(&rs2), f2in) < 0)) {
605                          if (report != REP_QUIET)
606 <                                printf("%s: Unexpected end-of-file\n",
606 >                                printf("%s: unexpected end-of-file\n",
607                                                  progname);
608                          free(scan1);
609                          free(scan2);
610                          return(0);
611                  }
612                  for (x = 0; x < scanlen(&rs1); x++) {
613 <                        if (real_check(colval(scan1[x],RED),
522 <                                                colval(scan2[x],RED)) &
523 <                                        real_check(colval(scan1[x],GRN),
524 <                                                colval(scan2[x],GRN)) &
525 <                                        real_check(colval(scan1[x],BLU),
526 <                                                colval(scan2[x],BLU)))
613 >                        if (color_check(scan1[x], scan2[x]))
614                                  continue;
615                          if (report != REP_QUIET) {
616                                  printf(
# Line 550 | Line 637 | compare_hdr()
637          return(good_RMS());                     /* final check of RMS */
638   }
639  
553 const char      nsuffix[10][3] = {              /* 1st, 2nd, 3rd, etc. */
554                        "th","st","nd","rd","th","th","th","th","th","th"
555                };
556
640   /* Compare two inputs that are known to be 32-bit floating-point data */
641   static int
642   compare_float()
# Line 561 | Line 644 | compare_float()
644          long    nread = 0;
645          float   f1, f2;
646  
647 +        if (report >= REP_VERBOSE) {
648 +                fputs(progname, stdout);
649 +                fputs(": comparing inputs as 32-bit IEEE floats\n", stdout);
650 +        }
651          while (getbinary(&f1, sizeof(f1), 1, f1in)) {
652                  if (!getbinary(&f2, sizeof(f2), 1, f2in))
653                          goto badeof;
# Line 569 | Line 656 | compare_float()
656                          continue;
657                  if (report != REP_QUIET)
658                          printf("%s: %ld%s float values differ\n",
659 <                                        progname, nread, nsuffix[nread%10]);
659 >                                        progname, nread, num_sfx(nread));
660                  return(0);
661          }
662          if (!getbinary(&f2, sizeof(f2), 1, f2in))
663                  return(good_RMS());             /* final check of RMS */
664   badeof:
665          if (report != REP_QUIET)
666 <                printf("%s: Unexpected end-of-file\n", progname);
666 >                printf("%s: unexpected end-of-file\n", progname);
667          return(0);
668   }
669  
# Line 587 | Line 674 | compare_double()
674          long    nread = 0;
675          double  f1, f2;
676  
677 +        if (report >= REP_VERBOSE) {
678 +                fputs(progname, stdout);
679 +                fputs(": comparing inputs as 64-bit IEEE doubles\n", stdout);
680 +        }
681          while (getbinary(&f1, sizeof(f1), 1, f1in)) {
682                  if (!getbinary(&f2, sizeof(f2), 1, f2in))
683                          goto badeof;
# Line 594 | Line 685 | compare_double()
685                  if (real_check(f1, f2))
686                          continue;
687                  if (report != REP_QUIET)
688 <                        printf("%s: %ld%s float values differ\n",
689 <                                        progname, nread, nsuffix[nread%10]);
688 >                        printf("%s: %ld%s double values differ\n",
689 >                                        progname, nread, num_sfx(nread));
690                  return(0);
691          }
692          if (!getbinary(&f2, sizeof(f2), 1, f2in))
693                  return(good_RMS());             /* final check of RMS */
694   badeof:
695          if (report != REP_QUIET)
696 <                printf("%s: Unexpected end-of-file\n", progname);
696 >                printf("%s: unexpected end-of-file\n", progname);
697          return(0);
698   }
699  
# Line 649 | Line 740 | main(int argc, char *argv[])
740                  }
741                  break;
742          }
743 <        if (a != argc-2)
743 >        if (a != argc-2)                        /* make sure of two inputs */
744                  usage();
745 <        if (!f1name) f1name = argv[a];
655 <        if (!f2name) f2name = argv[a+1];
656 <
657 <        if (!strcmp(f1name, f2name)) {          /* inputs are same? */
745 >        if (!strcmp(argv[a], argv[a+1])) {      /* inputs are same? */
746                  if (report >= REP_WARN)
747                          printf("%s: warning - identical inputs given\n",
748                                          progname);
749                  return(0);
750          }
751 +        if (!f1name) f1name = argv[a];
752 +        if (!f2name) f2name = argv[a+1];
753                                                  /* open inputs */
754          SET_FILE_BINARY(stdin);                 /* in case we're using it */
755          if (!f1in && !(f1in = fopen(f1name, "rb"))) {
756                  fprintf(stderr, "%s: cannot open for reading\n", f1name);
757 <                return(1);
757 >                return(2);
758          }
759          if (!strcmp(f2name, "-")) {
760                  f2in = stdin;
761                  f2name = stdin_name;
762          } else if (!(f2in = fopen(f2name, "rb"))) {
763                  fprintf(stderr, "%s: cannot open for reading\n", f2name);
764 <                return(1);
764 >                return(2);
765          }
766                                                  /* load headers */
767          if ((typ1 = identify_type(f1name, f1in, &hdr1)) < 0)
768 <                return(1);
768 >                return(2);
769          if ((typ2 = identify_type(f2name, f2in, &hdr2)) < 0)
770 <                return(1);
770 >                return(2);
771          if (typ1 != typ2) {
772                  if (report != REP_QUIET)
773                          printf("%s: '%s' is %s and '%s' is %s\n",
# Line 686 | Line 776 | main(int argc, char *argv[])
776                  return(1);
777          }
778          ign_header |= !has_header(typ1);        /* check headers if indicated */
779 <        if (!ign_header && !headers_match(&hdr1, &hdr2))
779 >        if (!ign_header && !headers_match())
780                  return(1);
781 <        lu_done(&hdr1); lu_done(&hdr2);
781 >        lu_done(&hdr1); lu_done(&hdr2);         /* done with header info. */
782          if (!ign_header & (report >= REP_WARN)) {
693                if (typ1 == TYP_UNKNOWN)
694                        printf("%s: warning - unrecognized format, comparing as binary\n",
695                                        progname);
783                  if (lin1cnt != lin2cnt)
784                          printf("%s: warning - headers are different lengths\n",
785 +                                        progname);
786 +                if (typ1 == TYP_UNKNOWN)
787 +                        printf("%s: warning - unrecognized format\n",
788                                          progname);
789          }
790          if (report >= REP_VERBOSE)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines