]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/picsmap.c
ncurses 6.2 - patch 20200627
[ncurses.git] / test / picsmap.c
1 /****************************************************************************
2  * Copyright 2018-2019,2020 Thomas E. Dickey                                *
3  * Copyright 2017,2018 Free Software Foundation, Inc.                       *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29 /*
30  * $Id: picsmap.c,v 1.132 2020/02/02 23:34:34 tom Exp $
31  *
32  * Author: Thomas E. Dickey
33  *
34  * A little more interesting than "dots", read a simple image into memory and
35  * measure the time taken to paint it normally vs randomly.
36  *
37  * TODO improve use of rgb-names using tsearch.
38  *
39  * TODO add option to dump picture in non-optimized mode, e.g., like tput.
40  * TODO write cells/second to stderr (or log)
41  * TODO write picture left-to-right/top-to-bottom
42  * TODO write picture randomly
43  * TODO add one-shot option vs repeat-count before exiting
44  * TODO add option "-xc" for init_color vs init_extended_color
45  * TODO add option "-xa" for init_pair vs alloc_pair
46  * TODO use pad to allow pictures larger than screen
47  * TODO add option to just use convert (which can scale) vs builtin xbm/xpm.
48  * TODO add scr_dump and scr_restore calls
49  * TODO add option for assume_default_colors
50  */
51 #include <test.priv.h>
52
53 #include <sys/types.h>
54 #include <sys/stat.h>
55
56 #if HAVE_STDINT_H
57 #include <stdint.h>
58 #define my_intptr_t     intptr_t
59 #else
60 #define my_intptr_t     long
61 #endif
62
63 #if HAVE_TSEARCH
64 #include <search.h>
65 #endif
66
67 #undef CUR                      /* use only the curses interface */
68
69 #define  L_BLOCK '['
70 #define  R_BLOCK ']'
71
72 #define  L_CURLY '{'
73 #define  R_CURLY '}'
74
75 #define MaxSCALE        1000    /* input curses ranges 0..1000 */
76 #define MaxRGB          255     /* output color ranges 0..255 */
77 #define okCOLOR(n)      ((n) >= 0 && (n) < COLORS)
78 #define okSCALE(n)      ((n) >= 0 && (n) <= MaxSCALE)
79 #define Scaled256(n)    (NCURSES_COLOR_T) (int)(((double)(n) * MaxSCALE) / 255)
80 #define ScaledColor(n)  (NCURSES_COLOR_T) (int)(((double)(n) * MaxSCALE) / scale)
81
82 #ifndef RGB_PATH
83 #define RGB_PATH "/etc/X11/rgb.txt"
84 #endif
85
86 #include <picsmap.h>
87
88 typedef struct {
89     size_t file;
90     size_t name;
91     size_t list;
92     size_t data;
93     size_t head;
94     size_t pair;
95     size_t cell;
96 } HOW_MUCH;
97
98 #undef MAX
99 #define MAX(a,b) ((a)>(b)?(a):(b))
100
101 /*
102  * tfind will return null on failure, so we map subscripts starting at one.
103  */
104 #define P2I(n) (((int)(my_intptr_t)(n)) - 1)
105 #define I2P(n) (void *)(my_intptr_t)((n) + 1)
106
107 #define pause_curses() if (in_curses) stop_curses()
108
109 #define debugmsg if (debugging) logmsg
110 #define debugmsg2 if (debugging) logmsg2
111
112 static void cleanup(int) GCC_NORETURN;
113 static void giveup(const char *fmt, ...) GCC_PRINTFLIKE(1, 2);
114 static void logmsg(const char *fmt, ...) GCC_PRINTFLIKE(1, 2);
115 static void logmsg2(const char *fmt, ...) GCC_PRINTFLIKE(1, 2);
116 static void warning(const char *fmt, ...) GCC_PRINTFLIKE(1, 2);
117 static int gather_c_values(int);
118
119 static FILE *logfp = 0;
120 static double aspect_ratio = 0.6;
121 static bool in_curses = FALSE;
122 static bool debugging = FALSE;
123 static bool quiet = FALSE;
124 static int slow_time = -1;
125 static RGB_NAME *rgb_table;
126 static RGB_DATA *all_colors;
127 static HOW_MUCH how_much;
128
129 static int reading_last;
130 static int reading_size;
131 static FG_NODE *reading_ncols;
132
133 #if HAVE_TSEARCH
134 static void *reading_ntree;
135 #endif
136
137 #if HAVE_ALLOC_PAIR && USE_EXTENDED_COLOR
138 #define USE_EXTENDED_COLORS 1
139 static bool use_extended_pairs = FALSE;
140 static bool use_extended_colors = FALSE;
141 #else
142 #define USE_EXTENDED_COLORS 0
143 #endif
144
145 static void
146 logmsg(const char *fmt, ...)
147 {
148     if (logfp != 0) {
149         va_list ap;
150         va_start(ap, fmt);
151         vfprintf(logfp, fmt, ap);
152         va_end(ap);
153         fputc('\n', logfp);
154         fflush(logfp);
155     }
156 }
157
158 static void
159 logmsg2(const char *fmt, ...)
160 {
161     if (logfp != 0) {
162         va_list ap;
163         va_start(ap, fmt);
164         vfprintf(logfp, fmt, ap);
165         va_end(ap);
166         fflush(logfp);
167     }
168 }
169
170 static void
171 close_log(void)
172 {
173     if (logfp != 0) {
174         logmsg("Allocations:");
175         logmsg("%8ld file", (long) how_much.file);
176         logmsg("%8ld name", (long) how_much.name);
177         logmsg("%8ld list", (long) how_much.list);
178         logmsg("%8ld data", (long) how_much.data);
179         logmsg("%8ld head", (long) how_much.head);
180         logmsg("%8ld pair", (long) how_much.pair);
181         logmsg("%8ld cell", (long) how_much.cell);
182         logmsg("%8ld window", LINES * COLS * (long) sizeof(NCURSES_CH_T));
183         fclose(logfp);
184         logfp = 0;
185     }
186 }
187
188 static void
189 cleanup(int code)
190 {
191     pause_curses();
192     close_log();
193     ExitProgram(code);
194     /* NOTREACHED */
195 }
196
197 static void
198 failed(const char *msg)
199 {
200     int save = errno;
201     perror(msg);
202     logmsg("failed with %s", strerror(save));
203     cleanup(EXIT_FAILURE);
204 }
205
206 static void
207 warning(const char *fmt, ...)
208 {
209     if (logfp != 0) {
210         va_list ap;
211         va_start(ap, fmt);
212         vfprintf(logfp, fmt, ap);
213         va_end(ap);
214         fputc('\n', logfp);
215         fflush(logfp);
216     } else {
217         va_list ap;
218         va_start(ap, fmt);
219         vfprintf(stderr, fmt, ap);
220         va_end(ap);
221         fputc('\n', stderr);
222         cleanup(EXIT_FAILURE);
223     }
224 }
225
226 static void
227 free_data(char **data)
228 {
229     if (data != 0) {
230         free(data[0]);
231         free(data);
232     }
233 }
234
235 static PICS_HEAD *
236 free_pics_head(PICS_HEAD * pics)
237 {
238     if (pics != 0) {
239         free(pics->fgcol);
240         free(pics->cells);
241         free(pics->name);
242         free(pics);
243         pics = 0;
244     }
245     return pics;
246 }
247
248 static void
249 begin_c_values(int size)
250 {
251     reading_last = 0;
252     reading_size = size;
253     reading_ncols = typeCalloc(FG_NODE, size + 1);
254     how_much.pair += (sizeof(FG_NODE) * (size_t) size);
255     /* black is always the first slot, to work around P2I/I2P logic */
256     gather_c_values(0);
257 }
258
259 #if HAVE_TSEARCH
260 static int
261 compare_c_values(const void *p, const void *q)
262 {
263     const int a = P2I(p);
264     const int b = P2I(q);
265     return (reading_ncols[a].fgcol - reading_ncols[b].fgcol);
266 }
267
268 #ifdef DEBUG_TSEARCH
269 static void
270 check_c_values(int ln)
271 {
272     static int oops = 5;
273     FG_NODE **ft;
274     int n;
275     for (n = 0; n < reading_last; ++n) {
276         ft = tfind(I2P(n), &reading_ntree, compare_c_values);
277         if (ft != 0) {
278             int q = P2I(*ft);
279             if (reading_ncols[q].fgcol != reading_ncols[n].fgcol) {
280                 logmsg("@%d, %d:%d (%d) %d %d fgcol %06X %06X", ln, n,
281                        reading_last - 1,
282                        reading_size,
283                        q, n,
284                        reading_ncols[n].fgcol,
285                        reading_ncols[q].fgcol);
286             }
287         } else {
288             logmsg("@%d, %d:%d (%d) ? %d null %06X", ln, n,
289                    reading_last - 1,
290                    reading_size,
291                    n,
292                    reading_ncols[n].fgcol);
293             if (oops-- <= 0)
294                 return;
295         }
296     }
297 }
298 #else
299 #define check_c_values(n)       /* nothing */
300 #endif
301 #endif
302
303 static int
304 gather_c_values(int fg)
305 {
306     int found = -1;
307 #if HAVE_TSEARCH
308     FG_NODE **ft;
309     int next = reading_last;
310
311     reading_ncols[next].fgcol = fg;
312     reading_ncols[next].count = 0;
313
314     check_c_values(__LINE__);
315     if ((ft = tfind(I2P(next), &reading_ntree, compare_c_values)) != 0) {
316         found = P2I(*ft);
317     } else {
318         if (reading_last + 2 >= reading_size) {
319             int more = ((MAX(reading_last, reading_size) + 2) * 3) / 2;
320             int last = reading_last + 1;
321             FG_NODE *p = typeRealloc(FG_NODE, more, reading_ncols);
322             if (p == 0)
323                 goto done;
324
325             reading_size = more;
326             reading_ncols = p;
327             memset(reading_ncols + last, 0,
328                    sizeof(FG_NODE) * (size_t) (more - last));
329             check_c_values(__LINE__);
330         }
331         ++reading_last;
332         how_much.pair += sizeof(FG_NODE);
333         if ((ft = tsearch(I2P(next), &reading_ntree, compare_c_values)) != 0) {
334             found = P2I(*ft);
335             if (found != next)
336                 logmsg("OOPS expected slot %d, got %d", next, found);
337             debugmsg("allocated color #%d as #%06X", next, fg);
338             check_c_values(__LINE__);
339         }
340     }
341 #else
342     int n;
343
344     for (n = 0; n < reading_last; ++n) {
345         if (reading_ncols[n].fgcol == fg) {
346             found = n;
347             break;
348         }
349     }
350     if (found < 0) {
351         if (reading_last + 2 >= reading_size) {
352             int more = ((reading_last + 2) * 3) / 2;
353             FG_NODE *p = typeRealloc(FG_NODE, more, reading_ncols);
354             if (p == 0)
355                 goto done;
356
357             how_much.pair -= (sizeof(FG_NODE) * (size_t) reading_size);
358             how_much.pair += (sizeof(FG_NODE) * (size_t) more);
359             reading_size = more;
360             reading_ncols = p;
361             memset(reading_ncols + reading_last, 0,
362                    sizeof(FG_NODE) * (size_t) (more - reading_last));
363         }
364         reading_ncols[reading_last].fgcol = fg;
365         found = reading_last++;
366     }
367 #endif
368   done:
369     return found;
370 }
371
372 static void
373 finish_c_values(PICS_HEAD * head)
374 {
375     head->colors = reading_last;
376     head->fgcol = reading_ncols;
377
378     reading_last = 0;
379     reading_size = 0;
380     reading_ncols = 0;
381 }
382
383 static void
384 dispose_c_values(void)
385 {
386 #if HAVE_TSEARCH
387     if (reading_ntree != 0) {
388         int n;
389         for (n = 0; n < reading_last; ++n) {
390             tdelete(I2P(n), &reading_ntree, compare_c_values);
391         }
392         reading_ntree = 0;
393     }
394 #endif
395     if (reading_ncols != 0) {
396         free(reading_ncols);
397         reading_ncols = 0;
398     }
399     reading_last = 0;
400     reading_size = 0;
401 }
402
403 static int
404 is_file(const char *filename, struct stat *sb)
405 {
406     int result = 0;
407     if (stat(filename, sb) == 0
408         && (sb->st_mode & S_IFMT) == S_IFREG
409         && sb->st_size != 0) {
410         result = 1;
411     }
412     debugmsg("is_file(%s) %d", filename, result);
413     return result;
414 }
415
416 /*
417  * Simplify reading xbm/xpm files by first making an array of lines.  Blank
418  * lines are filtered out.
419  */
420 static char **
421 read_file(const char *filename)
422 {
423     char **result = 0;
424     struct stat sb;
425
426     if (!quiet) {
427         pause_curses();
428         printf("** %s\n", filename);
429     }
430
431     if (is_file(filename, &sb)) {
432         size_t size = (size_t) sb.st_size;
433         char *blob = typeCalloc(char, size + 1);
434         bool binary = FALSE;
435         unsigned k = 0;
436
437         result = typeCalloc(char *, size + 1);
438         how_much.file += ((size + 1) * 2);
439
440         if (blob != 0 && result != 0) {
441             FILE *fp = fopen(filename, "r");
442             if (fp != 0) {
443                 logmsg("opened %s", filename);
444
445                 if (fread(blob, sizeof(char), size, fp) == size) {
446                     bool had_line = TRUE;
447                     unsigned j;
448
449                     for (j = 0; (size_t) j < size; ++j) {
450                         if (blob[j] == '\0' ||
451                             (UChar(blob[j]) < 32 &&
452                              !isspace(UChar(blob[j]))) ||
453                             (UChar(blob[j]) >= 128 && UChar(blob[j]) < 160)) {
454                             binary = TRUE;
455                         }
456                         if (blob[j] == '\n') {
457                             blob[j] = '\0';
458                             if (k && !binary) {
459                                 debugmsg2("[%5d] %s\n", k, result[k - 1]);
460                             }
461                             had_line = TRUE;
462                         } else if (had_line) {
463                             had_line = FALSE;
464                             result[k++] = blob + j;
465                         }
466                     }
467                     result[k] = 0;
468                     if (k && !binary) {
469                         debugmsg2("[%5d] %s\n", k, result[k - 1]);
470                     }
471                 }
472                 fclose(fp);
473             } else {
474                 logmsg("cannot open %s", filename);
475             }
476         }
477         if (k == 0) {
478             debugmsg("...file is empty");
479             free(blob);
480             free(result);
481             result = 0;
482         } else if (binary) {
483             debugmsg("...file is non-text");
484         }
485     }
486     return result;
487 }
488
489 static void
490 usage(void)
491 {
492     static const char *msg[] =
493     {
494         "Usage: picsmap [options] [imagefile [...]]"
495         ,"Read/display one or more xbm/xpm files (possibly use \"convert\")"
496         ,""
497         ,"Options:"
498         ,"  -a ratio     aspect-ratio correction for ImageMagick"
499 #if HAVE_USE_DEFAULT_COLORS
500         ,"  -d           invoke use_default_colors"
501 #endif
502         ,"  -L           add debugging information to logfile"
503         ,"  -l logfile   write informational messages to logfile"
504         ,"  -p palette   color-palette file (default \"$TERM.dat\")"
505         ,"  -q           less verbose"
506         ,"  -r rgb-path  xpm uses X rgb color-names (default \"" RGB_PATH "\")"
507         ,"  -s SECS      pause for SECS seconds after display vs getch"
508 #if USE_EXTENDED_COLORS
509         ,"  -x [pc]      use extension (p=extended-pairs, c=extended-colors)"
510         ,"               Either/both extension may be given"
511 #endif
512     };
513     size_t n;
514
515     pause_curses();
516
517     fflush(stdout);
518     for (n = 0; n < SIZEOF(msg); n++)
519         fprintf(stderr, "%s\n", msg[n]);
520     cleanup(EXIT_FAILURE);
521 }
522
523 static void
524 giveup(const char *fmt, ...)
525 {
526     va_list ap;
527
528     pause_curses();
529     fflush(stdout);
530
531     va_start(ap, fmt);
532     vfprintf(stderr, fmt, ap);
533     fputc('\n', stderr);
534     va_end(ap);
535
536     if (logfp) {
537         va_start(ap, fmt);
538         vfprintf(logfp, fmt, ap);
539         fputc('\n', logfp);
540         va_end(ap);
541         fflush(logfp);
542     }
543
544     usage();
545 }
546
547 /*
548  * Palette files are named for $TERM values.  However, there are fewer palette
549  * files than $TERM's.  Although there are known problems (some cannot even get
550  * black and white correct), for the purpose of comparison, pretending that
551  * those map into "xterm" is useful.
552  */
553 static char **
554 read_palette(const char *filename)
555 {
556     static const char *data_dir = DATA_DIR;
557     char **result = 0;
558     size_t last = strlen(filename);
559     size_t need = (strlen(data_dir) + 20 + last);
560     char *full_name = malloc(need);
561     char *s;
562     struct stat sb;
563
564     if (full_name != 0) {
565         int tries;
566         for (tries = 0; tries < 8; ++tries) {
567
568             *(s = full_name) = '\0';
569             if (tries & 1) {
570                 if (strchr(filename, '/') == 0) {
571                     _nc_SPRINTF(full_name, _nc_SLIMIT(need) "%s/", data_dir);
572                 } else {
573                     continue;
574                 }
575             }
576             s += strlen(s);
577             if (((size_t) (s - full_name) + last + 1) >= need)
578                 continue;
579
580             _nc_STRCAT(full_name, filename, need);
581             if (tries & 4) {
582                 char *t = s;
583                 char *tc;
584                 int num;
585                 char chr;
586                 int found = 0;
587                 while (*t != '\0') {
588                     if (*t == '-') {
589                         if (sscanf(t, "-%d%c", &num, &chr) == 2 &&
590                             chr == 'c' &&
591                             (tc = strchr(t, chr)) != 0 &&
592                             !(strncmp) (tc, "color", 5)) {
593                             found = 1;
594                         }
595                         break;
596                     }
597                     ++t;
598                 }
599                 if (found && (t != s)
600                     && (strncmp) (s, "xterm", (size_t) (t - s))) {
601                     _nc_SPRINTF(s, _nc_SLIMIT(need - (size_t) (s - full_name))
602                                 "xterm%s", filename + (t - s));
603                 } else {
604                     continue;
605                 }
606             }
607             s += strlen(s);
608
609             if (tries & 2) {
610                 int len = (int) strlen(filename);
611                 if (len <= 4 || strcmp(filename + len - 4, ".dat")) {
612                     _nc_STRCAT(full_name, ".dat", need);
613                 } else {
614                     continue;
615                 }
616             }
617             if (is_file(full_name, &sb))
618                 goto ok;
619         }
620         goto failed;
621       ok:
622         result = read_file(full_name);
623       failed:
624         free(full_name);
625     }
626     return result;
627 }
628
629 static void
630 init_palette(const char *palette_file)
631 {
632     if (palette_file != 0) {
633         char **data = read_palette(palette_file);
634
635         all_colors = typeMalloc(RGB_DATA, (unsigned) COLORS);
636         how_much.data += (sizeof(RGB_DATA) * (unsigned) COLORS);
637
638 #if HAVE_COLOR_CONTENT
639         {
640             int cp;
641             for (cp = 0; cp < COLORS; ++cp) {
642                 color_content((short) cp,
643                               &all_colors[cp].red,
644                               &all_colors[cp].green,
645                               &all_colors[cp].blue);
646             }
647         }
648 #else
649         memset(all_colors, 0, sizeof(RGB_DATA) * (size_t) COLORS);
650 #endif
651         if (data != 0) {
652             int n;
653             int red, green, blue;
654             int scale = MaxSCALE;
655             int c;
656             for (n = 0; data[n] != 0; ++n) {
657                 if (sscanf(data[n], "scale:%d", &c) == 1) {
658                     scale = c;
659                 } else if (sscanf(data[n], "%d:%d %d %d",
660                                   &c,
661                                   &red,
662                                   &green,
663                                   &blue) == 4
664                            && okCOLOR(c)
665                            && okSCALE(red)
666                            && okSCALE(green)
667                            && okSCALE(blue)) {
668                     /* *INDENT-EQLS* */
669                     all_colors[c].red   = ScaledColor(red);
670                     all_colors[c].green = ScaledColor(green);
671                     all_colors[c].blue  = ScaledColor(blue);
672                 }
673             }
674         }
675         free_data(data);
676         /* *INDENT-EQLS* */
677     } else if (COLORS > 1) {
678         int power2 = 1;
679         int shift = 0;
680
681         while (power2 < COLORS) {
682             ++shift;
683             power2 <<= 1;
684         }
685
686         if ((power2 != COLORS) || ((shift % 3) != 0)) {
687             if (all_colors == 0) {
688                 init_palette(getenv("TERM"));
689                 if (all_colors == 0) {
690                     giveup("With %d colors, you need a palette-file", COLORS);
691                 }
692             }
693         }
694     }
695 }
696
697 /*
698  * Map the 24-bit RGB value to a color index if using a palette, otherwise to a
699  * direct color value.
700  */
701 static int
702 map_color(int value)
703 {
704     int result = value;
705
706     if (result < 0) {
707         result = -1;
708     } else {
709         /* *INDENT-EQLS* */
710         int red   = (value & 0xff0000) >> 16;
711         int green = (value & 0x00ff00) >> 8;
712         int blue  = (value & 0x0000ff) >> 0;
713
714         if (all_colors != 0) {
715 #define Diff2(n,m) ((m) - all_colors[n].m) * ((m) - all_colors[n].m)
716 #define Diff2S(n) Diff2(n,red) + Diff2(n,green) + Diff2(n,blue)
717             int d2 = Diff2S(0);
718             int n;
719
720             /* *INDENT-EQLS* */
721             red   = Scaled256(red);
722             green = Scaled256(green);
723             blue  = Scaled256(blue);
724
725             for (result = 0, n = 1; n < COLORS; ++n) {
726                 int d = Diff2(n, red) + Diff2(n, green) + Diff2(n, blue);
727                 if (d < d2) {
728                     d2 = d;
729                     result = n;
730                 }
731             }
732         } else {                /* direct color */
733             int power2 = 1;
734             int shifts = 8;
735
736             while (power2 < COLORS) {
737                 power2 <<= 3;
738                 shifts--;
739             }
740
741             if (shifts > 0) {
742                 /* TODO: round up */
743                 red >>= shifts;
744                 green >>= shifts;
745                 blue >>= shifts;
746                 result = ((red << (2 * (8 - shifts)))
747                           + (green << (8 - shifts))
748                           + blue);
749             }
750         }
751     }
752     return result;
753 }
754
755 static int
756 bytes_of(int value)
757 {
758     if (value & 7) {
759         value |= 7;
760         value++;
761     }
762     return value;
763 }
764
765 static int match_c(const char *, const char *, ...) GCC_SCANFLIKE(2,3);
766
767 static char *
768 skip_s(char *s)
769 {
770     while (isspace(UChar(*s)))
771         s++;
772     return s;
773 }
774
775 static const char *
776 skip_cs(const char *s)
777 {
778     while (isspace(UChar(*s)))
779         s++;
780     return s;
781 }
782
783 static char *
784 skip_word(char *s)
785 {
786     s = skip_s(s);
787     while (isgraph(UChar(*s)))
788         s++;
789     return s;
790 }
791
792 static int
793 match_c(const char *source, const char *pattern, ...)
794 {
795     int limit = (int) strlen(source);
796     const char *last_s = source + limit;
797     va_list ap;
798     int ch;
799     int *ip;
800     char *cp;
801     long lv;
802
803     va_start(ap, pattern);
804
805     limit = -1;
806     while (*pattern != '\0') {
807         ch = UChar(*pattern++);
808         /* blank in the pattern matches zero-or-more blanks in source */
809         if (isspace(ch)) {
810             source = skip_cs(source);
811             continue;
812         }
813         /* %c, %d, %s are like sscanf except for special treatment of blanks */
814         if (ch == '%' && *pattern != '\0' && strchr("cdnsx", *pattern)) {
815             bool found = FALSE;
816             ch = *pattern++;
817             switch (ch) {
818             case 'c':
819                 cp = va_arg(ap, char *);
820                 do {
821                     *cp++ = *source++;
822                 } while (--limit > 0);
823                 break;
824             case 'd':
825             case 'x':
826                 limit = -1;
827                 ip = va_arg(ap, int *);
828                 lv = strtol(source, &cp, ch == 'd' ? 10 : 16);
829                 if (cp != 0 && cp != source) {
830                     *ip = (int) lv;
831                     source = cp;
832                 } else {
833                     goto finish;
834                 }
835                 break;
836             case 'n':
837                 /* not really sscanf... */
838                 limit = *va_arg(ap, int *);
839                 break;
840             case 's':
841                 limit = -1;
842                 cp = va_arg(ap, char *);
843                 while (*source != '\0') {
844                     ch = UChar(*source);
845                     if (isspace(ch)) {
846                         break;
847                     } else if (found && (ch == *skip_cs(pattern))) {
848                         break;
849                     } else {
850                         *cp++ = *source++;
851                         found = TRUE;
852                     }
853                 }
854                 *cp = '\0';
855                 break;
856             }
857             continue;
858         }
859         /* other characters are matched literally */
860         if (*source++ != ch) {
861             break;
862         }
863     }
864   finish:
865
866     va_end(ap);
867     if (source > last_s)
868         source = last_s;
869     return (*source || *pattern) ? 0 : 1;
870 }
871
872 static int
873 match_colors(const char *source, int cpp, char *arg1, char *arg2, char *arg3)
874 {
875     int result = 0;
876
877     /* most files use a quasi-fixed format */
878     if (match_c(source, " \"%n%c %s %s \" , ", &cpp, arg1, arg2, arg3)) {
879         arg1[cpp] = '\0';
880         result = 1;
881     } else {
882         const char *s = skip_cs(source);
883         size_t have = strlen(source);
884
885         if (*s++ == '"' && have > ((size_t) cpp + 2)) {
886             memcpy(arg1, s, (size_t) cpp);
887             s += cpp;
888             while (*s++ == '\t') {
889                 char *t;
890                 for (t = arg2; (*s != '\0') && strchr("\t\"", *s) == 0;) {
891                     if (*s == ' ') {
892                         s = skip_cs(s);
893                         break;
894                     }
895                     *t++ = *s++;
896                     *t = '\0';
897                 }
898                 for (t = arg3; (*s != '\0') && strchr("\t\"", *s) == 0;) {
899                     *t++ = *s++;
900                     *t = '\0';
901                 }
902                 if (!strcmp(arg2, "c")) {
903                     result = 1;
904                     break;
905                 }
906             }
907         }
908     }
909     return result;
910 }
911
912 static RGB_NAME *
913 parse_rgb(char **data)
914 {
915     char buf[BUFSIZ];
916     int n;
917     unsigned long r, g, b;
918     char *s, *t;
919     size_t item = 0;
920     size_t need;
921     RGB_NAME *result = 0;
922
923     for (need = 0; data[need] != 0; ++need) ;
924
925     result = typeCalloc(RGB_NAME, need + 2);
926     how_much.name += (sizeof(RGB_NAME) * (need + 2));
927
928     for (n = 0; data[n] != 0; ++n) {
929         if (strlen(t = data[n]) >= sizeof(buf) - 1)
930             continue;
931         if (*(s = skip_s(t)) == '!')
932             continue;
933
934         r = strtoul(s, &t, 10);
935         s = skip_s(t);
936         g = strtoul(s, &t, 10);
937         s = skip_s(t);
938         b = strtoul(s, &t, 10);
939         s = skip_s(t);
940
941         result[item].name = s;
942         t = s + strlen(s);
943         while (t-- != s && isspace(UChar(*t))) {
944             *t = '\0';
945         }
946         result[item].value = (int) ((r & 0xff) << 16 |
947                                     (g & 0xff) << 8 |
948                                     (b & 0xff));
949         ++item;
950     }
951
952     result[item].name = "none";
953     result[item].value = -1;
954
955     return result;
956 }
957
958 static RGB_NAME *
959 lookup_rgb(const char *name)
960 {
961     RGB_NAME *result = 0;
962     if (rgb_table != 0) {
963         int n;
964         for (n = 0; rgb_table[n].name != 0; ++n) {
965             if (!strcasecmp(name, rgb_table[n].name)) {
966                 result = &rgb_table[n];
967                 break;
968             }
969         }
970     }
971     return result;
972 }
973
974 static PICS_HEAD *
975 parse_xbm(char **data)
976 {
977     int n;
978     int state = 0;
979     char buf[BUFSIZ];
980     int num;
981     char ch;
982     char *s;
983     char *t;
984     PICS_HEAD *result;
985     size_t which = 0;
986     size_t cells = 0;
987
988     debugmsg("called parse_xbm");
989
990     result = typeCalloc(PICS_HEAD, 1);
991     how_much.head += sizeof(PICS_HEAD);
992
993     begin_c_values(2);
994     gather_c_values(0);
995     gather_c_values(0xffffff);
996
997     for (n = 0; data[n] != 0; ++n) {
998         if (strlen(s = data[n]) >= sizeof(buf) - 1)
999             continue;
1000         switch (state) {
1001         case 0:
1002         case 1:
1003         case 2:
1004             if (sscanf(s, "#define %s %d%c", buf, &num, &ch) >= 2) {
1005                 if ((t = strstr(buf, "_width")) != 0) {
1006                     state |= 1;
1007                     result->wide = (short) bytes_of(num);
1008                 } else if ((t = strstr(buf, "_height")) != 0) {
1009                     state |= 2;
1010                     result->high = (short) num;
1011                 } else {
1012                     break;
1013                 }
1014                 *t = '\0';
1015                 if (result->name) {
1016                     if (strcmp(result->name, buf)) {
1017                         goto finish;
1018                     }
1019                 } else {
1020                     result->name = strdup(buf);
1021                 }
1022             }
1023             break;
1024         case 3:
1025             if (sscanf(s, "static char %[^_ ]_bits[]%c", buf, &ch) >= 1) {
1026                 if (strcmp(result->name, buf)) {
1027                     goto finish;
1028                 }
1029                 state = 4;
1030                 cells = (size_t) (result->wide * result->high);
1031
1032                 result->cells = typeCalloc(PICS_CELL, cells);
1033                 how_much.cell += (sizeof(PICS_CELL) * cells);
1034
1035                 if ((s = strchr(s, L_CURLY)) == 0)
1036                     break;
1037                 ++s;
1038             } else {
1039                 break;
1040             }
1041         case 4:
1042             while (*s != '\0') {
1043                 while (isspace(UChar(*s))) {
1044                     ++s;
1045                 }
1046                 if (isdigit(UChar(*s))) {
1047                     long value = strtol(s, &t, 0);
1048                     int b;
1049                     if (t != s || value > MaxRGB || value < 0) {
1050                         s = t;
1051                     } else {
1052                         state = -1;
1053                         goto finish;
1054                     }
1055                     for (b = 0; b < 8; ++b) {
1056                         if (((1L << b) & value) != 0) {
1057                             result->cells[which].ch = '*';
1058                             result->cells[which].fg = 1;
1059                             reading_ncols[1].count++;
1060                         } else {
1061                             result->cells[which].ch = ' ';
1062                             result->cells[which].fg = 0;
1063                             reading_ncols[0].count++;
1064                         }
1065                         if (++which > cells) {
1066                             state = -1;
1067                             goto finish;
1068                         }
1069                     }
1070                 }
1071                 if (*s == R_CURLY) {
1072                     state = 5;
1073                     goto finish;
1074                 } else if (*s == ',') {
1075                     ++s;
1076                 }
1077             }
1078             break;
1079         default:
1080             break;
1081         }
1082     }
1083   finish:
1084     if (state < 4) {
1085         debugmsg("...state was only %d", state);
1086         if (result) {
1087             result = free_pics_head(result);
1088         }
1089     } else {
1090         finish_c_values(result);
1091     }
1092     return result;
1093 }
1094
1095 static PICS_HEAD *
1096 parse_xpm(char **data)
1097 {
1098     int state = 0;
1099     PICS_HEAD *result;
1100     RGB_NAME *by_name;
1101     int n;
1102     int cells = 0;
1103     int cpp = 1;                /* chars per pixel */
1104     int num[6];
1105     int found;
1106     int which = 0;
1107     int num_colors = 0;
1108     char ch;
1109     const char *cs;
1110     char *s;
1111     char buf[BUFSIZ];
1112     char arg1[BUFSIZ];
1113     char arg2[BUFSIZ];
1114     char arg3[BUFSIZ];
1115     char **list = 0;
1116
1117     debugmsg("called parse_xpm");
1118
1119     result = typeCalloc(PICS_HEAD, 1);
1120     how_much.head += sizeof(PICS_HEAD);
1121
1122     for (n = 0; data[n] != 0; ++n) {
1123         if (strlen(s = data[n]) >= sizeof(buf) - 1)
1124             continue;
1125         switch (state) {
1126         case 0:
1127             if (match_c(s, " /* XPM */ ")) {
1128                 state = 1;
1129             }
1130             break;
1131         case 1:
1132             if (match_c(s, " static char * %s [] = %c ", arg1, &ch) &&
1133                 ch == L_CURLY) {
1134                 result->name = strdup(arg1);
1135                 state = 2;
1136             }
1137             break;
1138         case 2:
1139             if (match_c(s, " \" %d %d %d %d \" , ",
1140                         num + 0, num + 1, num + 2, num + 3) ||
1141                 match_c(s, " \" %d %d %d %d %d %d \" , ",
1142                         num + 0, num + 1, num + 2, num + 3, num + 4, num + 5)) {
1143                 result->wide = (short) num[0];
1144                 result->high = (short) num[1];
1145                 result->colors = num[2];
1146
1147                 begin_c_values(num[2]);
1148
1149                 cells = (result->wide * result->high);
1150
1151                 result->cells = typeCalloc(PICS_CELL, cells);
1152                 how_much.cell += sizeof(PICS_CELL) * (size_t) cells;
1153
1154                 list = typeCalloc(char *, result->colors + 1);
1155                 how_much.list += sizeof(char *) * (size_t) (result->colors + 1);
1156
1157                 cpp = num[3];
1158                 state = 3;
1159             }
1160             break;
1161         case 3:
1162             if (!match_colors(s, cpp, arg1, arg2, arg3)) {
1163                 break;
1164             }
1165             num_colors++;
1166             free(list[reading_last]);
1167             list[reading_last] = strdup(arg1);
1168             if ((by_name = lookup_rgb(arg3)) != 0) {
1169                 found = gather_c_values(by_name->value);
1170             } else if (*arg3 == '#') {
1171                 char *rgb = arg3 + 1;
1172                 unsigned long value = strtoul(rgb, &s, 16);
1173                 switch ((int) strlen(rgb)) {
1174                 case 6:
1175                     break;
1176                 case 12:
1177                     value = (((value >> 24) & 0xff0000L)
1178                              | ((value >> 16) & 0xff00L)
1179                              | ((value >> 8) & 0xffL));
1180                     break;
1181                 default:
1182                     warning("unexpected rgb value %s", rgb);
1183                     break;
1184                 }
1185                 found = gather_c_values((int) value);
1186             } else {
1187                 found = gather_c_values(0);     /* actually an error */
1188             }
1189             debugmsg("  [%d:%d] %06X", num_colors, result->colors,
1190                      reading_ncols[(found >= 0) ? found : 0].fgcol);
1191             if (num_colors >= result->colors) {
1192                 finish_c_values(result);
1193                 state = 4;
1194                 if (list[0] == 0)
1195                     list[0] = strdup("\033");
1196             }
1197             break;
1198         case 4:
1199             if (*(cs = skip_cs(s)) == '"') {
1200                 ++cs;
1201                 while (*cs != '\0' && *cs != '"') {
1202                     int c;
1203
1204                     /* FIXME - factor out */
1205                     for (c = 0; c < result->colors; ++c) {
1206                         if (list[c] == 0) {
1207                             /* should not happen... */
1208                             continue;
1209                         }
1210                         if (!(strncmp) (cs, list[c], (size_t) cpp)) {
1211                             result->cells[which].ch = list[c][0];
1212                             result->cells[which].fg = c;
1213                             result->fgcol[c].count++;
1214                             break;
1215                         }
1216                     }
1217
1218                     if (result->cells[which].ch == 0) {
1219                         result->cells[which].ch = '?';
1220                         result->cells[which].fg = 0;
1221                     }
1222
1223                     if (++which >= cells) {
1224                         state = 5;
1225                         break;
1226                     }
1227                     for (c = cpp; c > 0; --c, ++cs) {
1228                         if (*cs == '\0')
1229                             break;
1230                     }
1231                 }
1232             }
1233             break;
1234         }
1235     }
1236
1237     if (result && list) {
1238         for (n = 0; n < result->colors; ++n)
1239             free(list[n]);
1240         free(list);
1241     }
1242
1243     if (state < 5) {
1244         debugmsg("...state was only %d", state);
1245         result = free_pics_head(result);
1246     }
1247
1248     if (result) {
1249         debugmsg("...allocated %d colors", result->colors);
1250     }
1251
1252     return result;
1253 }
1254
1255 /*
1256  * The obscurely-named "convert" is provided by ImageMagick
1257  */
1258 static PICS_HEAD *
1259 parse_img(const char *filename)
1260 {
1261     size_t need = strlen(filename) + 256;
1262     char *cmd = malloc(need);
1263     FILE *pp;
1264     char buffer[BUFSIZ];
1265     char dummy[BUFSIZ];
1266     bool okay = TRUE;
1267     PICS_HEAD *result;
1268     int pic_x = 0;
1269     int pic_y = 0;
1270     int width = in_curses ? COLS : 80;
1271
1272     _nc_SPRINTF(cmd, _nc_SLIMIT(need) "identify \"%s\"", filename);
1273     if (quiet)
1274         _nc_STRCAT(cmd, " 2>/dev/null", need);
1275
1276     logmsg("...opening pipe to %s", cmd);
1277
1278     result = typeCalloc(PICS_HEAD, 1);
1279     how_much.head += sizeof(PICS_HEAD);
1280
1281     if ((pp = popen(cmd, "r")) != 0) {
1282         if (fgets(buffer, sizeof(buffer), pp) != 0) {
1283             size_t n = strlen(filename);
1284             debugmsg2("...read %s", buffer);
1285             if (strlen(buffer) > n &&
1286                 !(strncmp) (buffer, filename, n) &&
1287                 isspace(UChar(buffer[n])) &&
1288                 sscanf(skip_word(buffer + n), " %dx%d ", &pic_x, &pic_y) == 2) {
1289                 /* distort image to make it show normally on terminal */
1290                 pic_x = (int) ((double) pic_x / aspect_ratio);
1291             } else {
1292                 pic_x = pic_y = 0;
1293             }
1294         }
1295         pclose(pp);
1296     }
1297     if (pic_x <= 0 || pic_y <= 0)
1298         goto finish;
1299
1300     _nc_SPRINTF(cmd, _nc_SLIMIT(need)
1301                 "convert " "-resize %dx%d\\! " "-thumbnail %dx \"%s\" "
1302                 "-define txt:compliance=SVG txt:-",
1303                 pic_x, pic_y, width, filename);
1304     if (quiet)
1305         _nc_STRCAT(cmd, " 2>/dev/null", need);
1306
1307     logmsg("...opening pipe to %s", cmd);
1308     if ((pp = popen(cmd, "r")) != 0) {
1309         int count = 0;
1310         int col = 0;
1311         int row = 0;
1312         int len = 0;
1313         while (fgets(buffer, sizeof(buffer), pp) != 0) {
1314             debugmsg2("[%5d] %s", count + 1, buffer);
1315             if (strlen(buffer) > 160) {         /* 80 columns would be enough */
1316                 okay = FALSE;
1317                 break;
1318             }
1319             if (count++ == 0) {
1320                 if (match_c(buffer,
1321                             "# ImageMagick pixel enumeration: %d,%d,%d,%s ",
1322                             &col, &row, &len, dummy)) {
1323                     result->name = strdup(filename);
1324                     result->wide = (short) col;
1325                     result->high = (short) row;
1326
1327                     begin_c_values(256);
1328
1329                     result->cells = typeCalloc(PICS_CELL, (size_t) (col * row));
1330                     how_much.cell += (sizeof(PICS_CELL) * (size_t) (col * row));
1331                 } else {
1332                     okay = FALSE;
1333                     break;
1334                 }
1335             } else {
1336                 /* subsequent lines begin "col,row: (r,g,b,a) #RGB" */
1337                 int r, g, b, nocolor;
1338                 unsigned check;
1339                 char *t;
1340                 char *s = t = strchr(buffer, '#');
1341
1342                 if (s != 0) {
1343                     /* after the "#RGB", there are differences - just ignore */
1344                     while (*s != '\0' && !isspace(UChar(*s)))
1345                         ++s;
1346                     *++s = '\0';
1347                 }
1348                 if (match_c(buffer,
1349                             "%d,%d: (%d,%d,%d,%d) #%x ",
1350                             &col, &row,
1351                             &r, &g, &b, &nocolor,
1352                             &check)) {
1353                     int which, c;
1354
1355                     if ((s - t) > 8)    /* 6 hex digits vs 8 */
1356                         check /= 256;
1357                     if (r > MaxRGB ||
1358                         g > MaxRGB ||
1359                         b > MaxRGB ||
1360                         check != (unsigned) ((r << 16) | (g << 8) | b)) {
1361                         okay = FALSE;
1362                         break;
1363                     }
1364                     c = gather_c_values((int) check);
1365                     which = col + (row * result->wide);
1366                     result->cells[which].ch = ((in_curses ||
1367                                                 check == 0xffffff)
1368                                                ? ' '
1369                                                : '#');
1370                     if (c >= 0 && c < reading_last) {
1371                         result->cells[which].fg = c;
1372                         reading_ncols[c].count++;
1373                     } else {
1374                         result->cells[which].fg = -1;
1375                     }
1376                 } else {
1377                     okay = FALSE;
1378                     break;
1379                 }
1380             }
1381         }
1382         finish_c_values(result);
1383         pclose(pp);
1384         if (okay) {
1385             /* FIXME - is this trimming needed? */
1386             for (len = result->colors; len > 3; len--) {
1387                 if (result->fgcol[len - 1].fgcol == 0) {
1388                     result->colors = len - 1;
1389                 } else {
1390                     break;
1391                 }
1392             }
1393         }
1394     }
1395   finish:
1396     free(cmd);
1397
1398     if (!okay) {
1399         result = free_pics_head(result);
1400     }
1401
1402     return result;
1403 }
1404
1405 static PICS_HEAD *
1406 read_picture(const char *filename, char **data)
1407 {
1408     PICS_HEAD *pics;
1409     if ((pics = parse_xbm(data)) == 0) {
1410         dispose_c_values();
1411         if ((pics = parse_xpm(data)) == 0) {
1412             dispose_c_values();
1413             if ((pics = parse_img(filename)) == 0) {
1414                 dispose_c_values();
1415                 free_data(data);
1416                 warning("unexpected file-format for \"%s\"", filename);
1417             } else if (pics->high == 0 || pics->wide == 0) {
1418                 dispose_c_values();
1419                 free_data(data);
1420                 pics = free_pics_head(pics);
1421                 warning("no picture found in \"%s\"", filename);
1422             }
1423         }
1424     }
1425     return pics;
1426 }
1427
1428 #define fg_color(pics,n) (pics->fgcol[n].fgcol)
1429
1430 static void
1431 dump_picture(PICS_HEAD * pics)
1432 {
1433     int y, x;
1434
1435     printf("Name %s\n", pics->name);
1436     printf("Size %dx%d\n", pics->high, pics->wide);
1437     printf("Color\n");
1438     for (y = 0; y < pics->colors; ++y) {
1439         if (fg_color(pics, y) < 0) {
1440             printf(" %3d: %d\n", y, fg_color(pics, y));
1441         } else {
1442             printf(" %3d: #%06x\n", y, fg_color(pics, y));
1443         }
1444     }
1445     for (y = 0; y < pics->high; ++y) {
1446         for (x = 0; x < pics->wide; ++x) {
1447             putchar(pics->cells[y * pics->wide + x].ch);
1448         }
1449         putchar('\n');
1450     }
1451 }
1452
1453 #ifndef USE_DISPLAY_DRIVER
1454 static void
1455 init_display(const char *palette_path, int opt_d)
1456 {
1457     (void) opt_d;
1458     if (isatty(fileno(stdout))) {
1459         in_curses = TRUE;
1460         initscr();
1461         cbreak();
1462         noecho();
1463         curs_set(0);
1464         if (has_colors()) {
1465             start_color();
1466 #if HAVE_USE_DEFAULT_COLORS
1467             if (opt_d)
1468                 use_default_colors();
1469 #endif
1470             init_palette(palette_path);
1471         }
1472         scrollok(stdscr, FALSE);
1473         stop_curses();
1474     }
1475 }
1476
1477 static void
1478 show_picture(PICS_HEAD * pics)
1479 {
1480     int y, x;
1481     int n;
1482
1483     debugmsg("called show_picture");
1484     logmsg("...using %dx%d screen", LINES, COLS);
1485 #if HAVE_RESET_COLOR_PAIRS
1486     reset_color_pairs();
1487 #elif HAVE_CURSCR
1488     wclear(curscr);
1489     clear();
1490 #endif
1491     if (has_colors()) {
1492         logmsg("...using %d colors", pics->colors);
1493         for (n = 0; n < pics->colors; ++n) {
1494             int my_pair = (n + 1);
1495             int my_color = map_color(fg_color(pics, n));
1496 #if USE_EXTENDED_COLORS
1497             if (use_extended_pairs) {
1498                 init_extended_pair(my_pair, my_color, my_color);
1499             } else
1500 #endif
1501             {
1502                 my_pair &= 0x7fff;
1503                 my_color &= 0x7fff;
1504                 init_pair((short) my_pair, (short) my_color, (short) my_color);
1505             }
1506         }
1507         attrset(COLOR_PAIR(1));
1508         erase();
1509     }
1510     for (y = 0; y < pics->high; ++y) {
1511         if (y >= LINES)
1512             break;
1513         move(y, 0);
1514
1515         for (x = 0; x < pics->wide; ++x) {
1516             int my_pair;
1517
1518             if (x >= COLS)
1519                 break;
1520             n = (y * pics->wide + x);
1521             my_pair = pics->cells[n].fg + 1;
1522 #if USE_EXTENDED_COLORS
1523             if (use_extended_pairs) {
1524                 cchar_t temp;
1525                 wchar_t wch[2];
1526                 wch[0] = (wchar_t) pics->cells[n].ch;
1527                 wch[1] = 0;
1528                 setcchar(&temp, wch, A_NORMAL, (short) my_pair, &my_pair);
1529                 add_wch(&temp);
1530             } else
1531 #endif
1532             {
1533                 attrset(COLOR_PAIR(my_pair));
1534                 addch((chtype) pics->cells[n].ch);
1535             }
1536         }
1537     }
1538     if (slow_time >= 0) {
1539         refresh();
1540         if (slow_time > 0) {
1541 #ifdef NCURSES_VERSION
1542             napms(1000 * slow_time);
1543 #else
1544             sleep((unsigned) slow_time);
1545 #endif
1546         }
1547     } else {
1548         wmove(stdscr, 0, 0);
1549         getch();
1550     }
1551     if (!quiet)
1552         endwin();
1553 }
1554 #endif
1555
1556 static int
1557 compare_fg_counts(const void *a, const void *b)
1558 {
1559     const FG_NODE *p = (const FG_NODE *) a;
1560     const FG_NODE *q = (const FG_NODE *) b;
1561     return (q->count - p->count);
1562 }
1563
1564 static void
1565 report_colors(PICS_HEAD * pics)
1566 {
1567     int accum;
1568     double level;
1569     int j;
1570     int shift;
1571     int total;
1572     char buffer[256];
1573
1574     if (logfp == 0)
1575         return;
1576
1577     qsort(pics->fgcol, (size_t) pics->colors, sizeof(FG_NODE), compare_fg_counts);
1578     /*
1579      * For debugging, show a (short) list of the colors used.
1580      */
1581     if (debugging && (pics->colors < 1000)) {
1582         int digits = 0;
1583         int high;
1584         int wide = 4;
1585         for (j = pics->colors; j != 0; j /= 10) {
1586             ++digits;
1587             if (j < 10)
1588                 ++digits;
1589         }
1590         if (digits > 8)
1591             digits = 8;
1592         logmsg("These colors were used:");
1593         high = (pics->colors + wide - 1) / wide;
1594         for (j = 0; j < high && j < pics->colors; ++j) {
1595             int k;
1596             char *s = buffer;
1597             *s = '\0';
1598             for (k = 0; k < wide; ++k) {
1599                 int n = j + (k * high);
1600                 size_t want = (sizeof(buffer) - (size_t) (s - buffer));
1601                 if (want < 100)
1602                     break;
1603                 if (n >= pics->colors)
1604                     break;
1605                 if (k) {
1606                     *s++ = ' ';
1607                     if (digits < 8) {
1608                         _nc_SPRINTF(s, _nc_SLIMIT(want) "%*s", 8 - digits,
1609                                     " ");
1610                         s += strlen(s);
1611                     }
1612                 }
1613                 if (pics->fgcol[n].fgcol >= 0) {
1614                     _nc_SPRINTF(s, _nc_SLIMIT(want) "%3d #%06X %*d", n,
1615                                 pics->fgcol[n].fgcol,
1616                                 digits, pics->fgcol[n].count);
1617                 } else {
1618                     _nc_SPRINTF(s, _nc_SLIMIT(want) "%3d (empty) %*d", n,
1619                                 digits, pics->fgcol[n].count);
1620                 }
1621                 s += strlen(s);
1622                 if ((s - buffer) > 100)
1623                     break;
1624             }
1625             logmsg("%s", buffer);
1626         }
1627     }
1628
1629     /*
1630      * Given the list of colors sorted by the number of times they are used,
1631      * log a short report showing the number of colors for 90%, 99%, 99.9%,
1632      * etc.
1633      */
1634     logmsg("Number of colors versus number of cells");
1635     total = pics->high * pics->wide;
1636     accum = 0;
1637     level = 0.1;
1638     shift = 1;
1639     for (j = 0; j < pics->colors; ++j) {
1640         accum += pics->fgcol[j].count;
1641         if (accum >= (total * (1.0 - level))) {
1642             int after = (shift > 2) ? shift - 2 : 0;
1643             logmsg("%8d colors (%.1f%%) in %d cells (%.*f%%)",
1644                    j + 1,
1645                    (100.0 * (j + 1)) / pics->colors,
1646                    accum,
1647                    after, (100.0 * accum) / total);
1648             if (accum >= total)
1649                 break;
1650             level /= 10.0;
1651             shift++;
1652         }
1653     }
1654 }
1655
1656 int
1657 main(int argc, char *argv[])
1658 {
1659     int n;
1660     int opt_d = FALSE;
1661     char ignore_ch;
1662     const char *palette_path = 0;
1663     const char *rgb_path = RGB_PATH;
1664
1665     while ((n = getopt(argc, argv, "a:dLl:p:qr:s:x:")) != -1) {
1666         switch (n) {
1667         case 'a':
1668             if (sscanf(optarg, "%lf%c", &aspect_ratio, &ignore_ch) != 1
1669                 || aspect_ratio < 0.1
1670                 || aspect_ratio > 10.) {
1671                 fprintf(stderr, "Expected a number in [0.1 to 10.]: %s\n", optarg);
1672                 usage();
1673             }
1674             break;
1675 #if HAVE_USE_DEFAULT_COLORS
1676         case 'd':
1677             opt_d = TRUE;
1678             break;
1679 #endif
1680         case 'L':
1681             debugging = TRUE;
1682             break;
1683         case 'l':
1684             if ((logfp = fopen(optarg, "a")) == 0)
1685                 failed(optarg);
1686             break;
1687         case 'p':
1688             palette_path = optarg;
1689             break;
1690         case 'q':
1691             quiet = TRUE;
1692             break;
1693         case 'r':
1694             rgb_path = optarg;
1695             break;
1696         case 's':
1697             slow_time = atoi(optarg);
1698             break;
1699 #if USE_EXTENDED_COLORS
1700         case 'x':
1701             {
1702                 char *s = optarg;
1703                 while (*s) {
1704                     switch (*s++) {
1705                     case 'p':
1706                         use_extended_pairs = TRUE;
1707                         break;
1708                     case 'c':
1709                         use_extended_colors = TRUE;
1710                         break;
1711                     default:
1712                         usage();
1713                         break;
1714                     }
1715                 }
1716             }
1717             break;
1718 #endif
1719         default:
1720             usage();
1721             break;
1722         }
1723     }
1724
1725     if (optind < argc) {
1726         char **rgb_data = read_file(rgb_path);
1727
1728         if (rgb_data)
1729             rgb_table = parse_rgb(rgb_data);
1730
1731         init_display(palette_path, opt_d);
1732         if (optind >= argc)
1733             giveup("expected at least one image filename");
1734
1735         for (n = optind; n < argc; ++n) {
1736             PICS_HEAD *pics;
1737             char **data = read_file(argv[n]);
1738
1739             if (data == 0) {
1740                 warning("cannot read \"%s\"", argv[n]);
1741                 continue;
1742             }
1743             if ((pics = read_picture(argv[n], data)) != 0) {
1744                 if (in_curses) {
1745                     show_picture(pics);
1746                 } else {
1747                     dump_picture(pics);
1748                 }
1749                 report_colors(pics);
1750                 dispose_c_values();
1751                 free_data(data);
1752                 free_pics_head(pics);
1753             }
1754         }
1755         free_data(rgb_data);
1756         free(rgb_table);
1757         free(all_colors);
1758     } else {
1759         usage();
1760     }
1761
1762     cleanup(EXIT_SUCCESS);
1763 }