]>
git.refcnt.org Git - colorize.git/blob - colorize.c
3bb628a8883efbe36f192252d8e2da3f8eb70e7b
2 * colorize - Read text from standard input stream or file and print
3 * it colorized through use of ANSI escape sequences
5 * Copyright (c) 2011-2013 Steven Schubiger
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
32 #include <sys/types.h>
42 #define to_str(arg) str(arg)
44 #define streq(s1, s2) (strcmp (s1, s2) == 0)
47 # define xmalloc(size) malloc_wrap_debug(size, __FILE__, __LINE__)
48 # define xcalloc(nmemb, size) calloc_wrap_debug(nmemb, size, __FILE__, __LINE__)
49 # define xrealloc(ptr, size) realloc_wrap_debug(ptr, size, __FILE__, __LINE__)
51 # define xmalloc(size) malloc_wrap(size)
52 # define xcalloc(nmemb, size) calloc_wrap(nmemb, size)
53 # define xrealloc(ptr, size) realloc_wrap(ptr, size)
56 #define free_null(ptr) free_wrap((void **)&ptr)
57 #define xstrdup(str) strdup_wrap(str)
59 #if !defined BUF_SIZE || BUF_SIZE <= 0
61 # define BUF_SIZE 4096 + 1
67 #define SKIP_LINE_ENDINGS(flags) (((flags) & CR) && ((flags) & LF) ? 2 : 1)
69 #define STACK_VAR(ptr) do { \
70 stack_var (&vars_list, &stacked_vars, stacked_vars, ptr); \
73 #define RELEASE_VAR(ptr) do { \
74 release_var (vars_list, stacked_vars, (void **)&ptr); \
77 #define MEM_ALLOC_FAIL_DEBUG(file, line) do { \
78 fprintf (stderr, "Memory allocation failure in source file %s, line %u\n", file, line); \
81 #define MEM_ALLOC_FAIL() do { \
82 fprintf (stderr, "%s: memory allocation failure\n", program_name); \
86 #define ABORT_TRACE() \
87 fprintf (stderr, "Aborting in source file %s, line %u\n", __FILE__, __LINE__); \
90 #define CHECK_COLORS_RANDOM(color1, color2) \
91 streq (color_names[color1]->name, "random") \
92 && (streq (color_names[color2]->name, "none") \
93 || streq (color_names[color2]->name, "default")) \
95 #define COLOR_SEP_CHAR '/'
97 #define VERSION "0.50"
99 typedef unsigned short bool;
101 enum { false, true };
108 static struct color_name
*color_names
[3] = { NULL
, NULL
, NULL
};
115 static const struct color fg_colors
[] = {
123 { "magenta", "36m" },
125 { "default", "39m" },
127 static const struct color bg_colors
[] = {
135 { "magenta", "46m" },
137 { "default", "49m" },
147 static const char *formats
[] = {
149 "%s color '%s' %s", /* color */
150 "%s color '%s' %s '%s'", /* random */
151 "less than %u bytes %s", /* error */
155 enum { FOREGROUND
, BACKGROUND
};
157 static const struct {
158 struct color
const *entries
;
162 { fg_colors
, sizeof (fg_colors
) / sizeof (struct color
), "foreground" },
163 { bg_colors
, sizeof (bg_colors
) / sizeof (struct color
), "background" },
166 static FILE *stream
= NULL
;
168 static unsigned int stacked_vars
= 0;
169 static void **vars_list
= NULL
;
171 static bool clean
= false;
172 static bool clean_all
= false;
174 static char *exclude
= NULL
;
176 static const char *program_name
;
178 static void print_help (void);
179 static void print_version (void);
180 static void cleanup (void);
181 static void free_color_names (struct color_name
**);
182 static void process_options (unsigned int, char **, bool *, const struct color
**, const char **, FILE **);
183 static void process_file_option (const char *, const char **, FILE **);
184 static void read_print_stream (bool, const struct color
**, const char *, FILE *);
185 static void find_color_entries (struct color_name
**, const struct color
**);
186 static void find_color_entry (const struct color_name
*, unsigned int, const struct color
**);
187 static void print_line (const struct color
**, bool, const char * const, unsigned int);
188 static void print_clean (const char *);
189 static void print_free_offsets (const char *, char ***, unsigned int);
190 static void *malloc_wrap (size_t);
191 static void *calloc_wrap (size_t, size_t);
192 static void *realloc_wrap (void *, size_t);
193 static void *malloc_wrap_debug (size_t, const char *, unsigned int);
194 static void *calloc_wrap_debug (size_t, size_t, const char *, unsigned int);
195 static void *realloc_wrap_debug (void *, size_t, const char *, unsigned int);
196 static void free_wrap (void **);
197 static char *strdup_wrap (const char *);
198 static char *str_concat (const char *, const char *);
199 static void vfprintf_diag (const char *, ...);
200 static void vfprintf_fail (const char *, ...);
201 static void stack_var (void ***, unsigned int *, unsigned int, void *);
202 static void release_var (void **, unsigned int, void **);
204 #define SET_OPT_TYPE(type) \
213 main (int argc
, char **argv
)
215 unsigned int arg_cnt
= 0;
225 int opt
, opt_type
= 0;
226 struct option long_opts
[] = {
227 { "clean", no_argument
, &opt_type
, OPT_CLEAN
},
228 { "clean-all", no_argument
, &opt_type
, OPT_CLEAN_ALL
},
229 { "exclude-random", required_argument
, &opt_type
, OPT_EXCLUDE_RANDOM
},
230 { "help", no_argument
, &opt_type
, OPT_HELP
},
231 { "version", no_argument
, &opt_type
, OPT_VERSION
},
237 const struct color
*colors
[2] = {
238 NULL
, /* foreground */
239 NULL
, /* background */
244 program_name
= argv
[0];
247 setvbuf (stdout
, NULL
, _IOLBF
, 0);
249 while ((opt
= getopt_long (argc
, argv
, "hv", long_opts
, NULL
)) != -1)
254 case 0: /* long opts */
263 case OPT_EXCLUDE_RANDOM
: {
265 exclude
= xstrdup (optarg
);
267 for (p
= exclude
; *p
; p
++)
269 if (streq (exclude
, "random"))
270 vfprintf_fail (formats
[FMT_GENERIC
], "--exclude-random switch must be provided a color");
279 default: /* never reached */
284 SET_OPT_TYPE (OPT_HELP
);
286 SET_OPT_TYPE (OPT_VERSION
);
290 default: /* never reached */
295 arg_cnt
= argc
- optind
;
297 if (clean
|| clean_all
)
299 if (clean
&& clean_all
)
300 vfprintf_fail (formats
[FMT_GENERIC
], "--clean and --clean-all switch are mutually exclusive");
303 const char *format
= "%s %s";
304 const char *message
= "switch cannot be used with more than one file";
306 vfprintf_fail (format
, "--clean", message
);
308 vfprintf_fail (format
, "--clean-all", message
);
313 if (arg_cnt
== 0 || arg_cnt
> 2)
315 vfprintf_diag ("%u arguments provided, expected 1-2 arguments or option", arg_cnt
);
321 if (clean
|| clean_all
)
322 process_file_option (argv
[optind
], &file
, &stream
);
324 process_options (arg_cnt
, &argv
[optind
], &bold
, colors
, &file
, &stream
);
325 read_print_stream (bold
, colors
, file
, stream
);
327 RELEASE_VAR (exclude
);
337 printf ("Usage: %s (foreground) OR (foreground)%c(background) OR --clean[-all] [-|file]\n\n", program_name
, COLOR_SEP_CHAR
);
338 printf ("\tColors (foreground) (background)\n");
339 for (i
= 0; i
< tables
[FOREGROUND
].count
; i
++)
341 const struct color
*entry
= &tables
[FOREGROUND
].entries
[i
];
342 const char *name
= entry
->name
;
343 const char *code
= entry
->code
;
345 printf ("\t\t{\033[%s#\033[0m} [%c%c]%s%*s%s\n",
346 code
, toupper (*name
), *name
, name
+ 1, 10 - (int)strlen (name
), " ", name
);
348 printf ("\t\t{-} %s%*s%s\n", name
, 13 - (int)strlen (name
), " ", name
);
350 printf ("\t\t{*} [Rr]%s%*s%s [--exclude-random=<foreground color>]\n", "andom", 10 - (int)strlen ("random"), " ", "random");
352 printf ("\n\tFirst character of color name in upper case denotes increased intensity,\n");
353 printf ("\twhereas for lower case colors will be of normal intensity.\n");
355 printf ("\n\tOptions\n");
356 printf ("\t\t --clean\n");
357 printf ("\t\t --clean-all\n");
358 printf ("\t\t --exclude-random\n");
359 printf ("\t\t-h, --help\n");
360 printf ("\t\t-v, --version\n\n");
367 printf ("%s v%s (compiled at %s, %s)\n", "colorize", VERSION
, __DATE__
, __TIME__
);
369 c_flags
= to_str (CFLAGS
);
373 printf ("Compiler flags: %s\n", c_flags
);
374 printf ("Buffer size: %u bytes\n", BUF_SIZE
- 1);
380 free_color_names (color_names
);
382 if (stream
&& fileno (stream
) != STDIN_FILENO
)
388 for (i
= 0; i
< stacked_vars
; i
++)
390 free_null (vars_list
[i
]);
392 free_null (vars_list
);
397 free_color_names (struct color_name
**color_names
)
400 for (i
= 0; color_names
[i
]; i
++)
402 free_null (color_names
[i
]->name
);
403 free_null (color_names
[i
]->orig
);
404 free_null (color_names
[i
]);
409 process_options (unsigned int arg_cnt
, char **option_strings
, bool *bold
, const struct color
**colors
, const char **file
, FILE **stream
)
413 char *color
, *p
, *str
;
416 const char *color_string
= arg_cnt
>= 1 ? option_strings
[0] : NULL
;
417 const char *file_string
= arg_cnt
== 2 ? option_strings
[1] : NULL
;
419 assert (color_string
);
421 if (streq (color_string
, "-"))
424 vfprintf_fail (formats
[FMT_GENERIC
], "hyphen cannot be used as color string");
426 vfprintf_fail (formats
[FMT_GENERIC
], "hyphen must be preceeded by color string");
429 ret
= stat (color_string
, &sb
);
431 /* Ensure that we don't fail if there's a file with one or more
432 color names in its path. */
437 const char *color
= color_string
;
439 for (c
= 1; c
<= 2 && *color
; c
++)
441 bool matched
= false;
443 for (i
= 0; i
< tables
[FOREGROUND
].count
; i
++)
445 const struct color
*entry
= &tables
[FOREGROUND
].entries
[i
];
447 if ((p
= strstr (color
, entry
->name
)) && p
== color
)
449 color
= p
+ strlen (entry
->name
);
454 if (matched
&& *color
== COLOR_SEP_CHAR
&& *(color
+ 1))
460 have_file
= (*color
!= '\0');
465 vfprintf_fail (formats
[FMT_GENERIC
], "file cannot be used as color string");
467 vfprintf_fail (formats
[FMT_GENERIC
], "file must be preceeded by color string");
471 if ((p
= strchr (color_string
, COLOR_SEP_CHAR
)))
473 if (p
== color_string
)
474 vfprintf_fail (formats
[FMT_GENERIC
], "foreground color missing");
475 else if (p
== color_string
+ strlen (color_string
) - 1)
476 vfprintf_fail (formats
[FMT_GENERIC
], "background color missing");
477 else if (strchr (++p
, COLOR_SEP_CHAR
))
478 vfprintf_fail (formats
[FMT_GENERIC
], "one color pair allowed only");
481 str
= xstrdup (color_string
);
484 for (index
= 0, color
= str
; *color
; index
++, color
= p
)
487 if ((sep
= strchr (color
, COLOR_SEP_CHAR
)))
493 p
= color
+ strlen (color
);
495 for (ch
= color
; *ch
; ch
++)
497 vfprintf_fail (formats
[FMT_COLOR
], tables
[index
].desc
, color
, "cannot be made of non-alphabetic characters");
499 for (ch
= color
+ 1; *ch
; ch
++)
501 vfprintf_fail (formats
[FMT_COLOR
], tables
[index
].desc
, color
, "cannot be in mixed lower/upper case");
503 if (streq (color
, "None"))
504 vfprintf_fail (formats
[FMT_COLOR
], tables
[index
].desc
, color
, "cannot be bold");
506 if (isupper (*color
))
514 vfprintf_fail (formats
[FMT_COLOR
], tables
[BACKGROUND
].desc
, color
, "cannot be bold");
516 default: /* never reached */
521 color_names
[index
] = xcalloc (1, sizeof (struct color_name
));
523 color_names
[index
]->orig
= xstrdup (color
);
525 for (ch
= color
; *ch
; ch
++)
528 color_names
[index
]->name
= xstrdup (color
);
533 assert (color_names
[FOREGROUND
]);
535 if (color_names
[BACKGROUND
])
538 unsigned int color_sets
[2][2] = { { FOREGROUND
, BACKGROUND
}, { BACKGROUND
, FOREGROUND
} };
539 for (i
= 0; i
< 2; i
++)
541 unsigned int color1
= color_sets
[i
][0];
542 unsigned int color2
= color_sets
[i
][1];
543 if (CHECK_COLORS_RANDOM (color1
, color2
))
544 vfprintf_fail (formats
[FMT_RANDOM
], tables
[color1
].desc
, color_names
[color1
]->orig
, "cannot be combined with", color_names
[color2
]->orig
);
548 find_color_entries (color_names
, colors
);
549 free_color_names (color_names
);
551 if (!colors
[FOREGROUND
]->code
&& colors
[BACKGROUND
] && colors
[BACKGROUND
]->code
)
553 struct color_name color_name
;
554 color_name
.name
= color_name
.orig
= "default";
556 find_color_entry (&color_name
, FOREGROUND
, colors
);
559 process_file_option (file_string
, file
, stream
);
563 process_file_option (const char *file_string
, const char **file
, FILE **stream
)
567 if (streq (file_string
, "-"))
572 const char *file
= file_string
;
577 ret
= stat (file
, &sb
);
580 vfprintf_fail (formats
[FMT_FILE
], file
, strerror (errno
));
582 if (!(S_ISREG (sb
.st_mode
) || S_ISLNK (sb
.st_mode
) || S_ISFIFO (sb
.st_mode
)))
583 vfprintf_fail (formats
[FMT_FILE
], file
, "unrecognized file type");
587 s
= fopen (file
, "r");
589 vfprintf_fail (formats
[FMT_FILE
], file
, strerror (errno
));
603 #define MERGE_PRINT_LINE(part_line, line, flags, check_eof) do { \
604 char *current_line, *merged_line = NULL; \
607 merged_line = str_concat (part_line, line); \
608 free_null (part_line); \
610 current_line = merged_line ? merged_line : (char *)line; \
611 if (!check_eof || *current_line != '\0') \
612 print_line (colors, bold, current_line, flags); \
613 free (merged_line); \
617 read_print_stream (bool bold
, const struct color
**colors
, const char *file
, FILE *stream
)
619 char buf
[BUF_SIZE
], *part_line
= NULL
;
620 unsigned int flags
= 0;
622 while (!feof (stream
))
627 memset (buf
, '\0', BUF_SIZE
);
628 bytes_read
= fread (buf
, 1, BUF_SIZE
- 1, stream
);
629 if (bytes_read
!= (BUF_SIZE
- 1) && ferror (stream
))
630 vfprintf_fail (formats
[FMT_ERROR
], BUF_SIZE
- 1, "read");
632 while ((eol
= strpbrk (line
, "\n\r")))
639 if (*(eol
+ 1) == '\n')
642 else if (*eol
== '\n')
645 vfprintf_fail (formats
[FMT_FILE
], file
, "unrecognized line ending");
646 p
= eol
+ SKIP_LINE_ENDINGS (flags
);
648 MERGE_PRINT_LINE (part_line
, line
, flags
, false);
652 MERGE_PRINT_LINE (part_line
, line
, 0, true);
654 else if (*line
!= '\0')
656 if (!clean
&& !clean_all
) /* efficiency */
657 print_line (colors
, bold
, line
, 0);
659 part_line
= xstrdup (line
);
662 char *merged_line
= str_concat (part_line
, line
);
664 part_line
= merged_line
;
671 find_color_entries (struct color_name
**color_names
, const struct color
**colors
)
677 gettimeofday (&tv
, NULL
);
678 srand (tv
.tv_usec
* tv
.tv_sec
);
680 for (index
= 0; color_names
[index
]; index
++)
682 const char *color_name
= color_names
[index
]->name
;
684 const unsigned int count
= tables
[index
].count
;
685 const struct color
*const color_entries
= tables
[index
].entries
;
687 if (streq (color_name
, "random"))
693 i
= rand() % (count
- 2) + 1; /* omit color none and default */
697 /* --exclude-random */
698 if (exclude
&& streq (exclude
, color_entries
[i
].name
))
700 else if (color_names
[BACKGROUND
] && streq (color_names
[BACKGROUND
]->name
, color_entries
[i
].name
))
704 if (streq (colors
[FOREGROUND
]->name
, color_entries
[i
].name
))
707 default: /* never reached */
710 } while (excludable
);
711 colors
[index
] = (struct color
*)&color_entries
[i
];
714 find_color_entry (color_names
[index
], index
, colors
);
719 find_color_entry (const struct color_name
*color_name
, unsigned int index
, const struct color
**colors
)
724 const unsigned int count
= tables
[index
].count
;
725 const struct color
*const color_entries
= tables
[index
].entries
;
727 for (i
= 0; i
< count
; i
++)
728 if (streq (color_name
->name
, color_entries
[i
].name
))
730 colors
[index
] = (struct color
*)&color_entries
[i
];
735 vfprintf_fail (formats
[FMT_COLOR
], tables
[index
].desc
, color_name
->orig
, "not recognized");
739 print_line (const struct color
**colors
, bool bold
, const char *const line
, unsigned int flags
)
742 if (clean
|| clean_all
)
746 /* Foreground color code is guaranteed to be set when background color code is present. */
747 if (colors
[BACKGROUND
] && colors
[BACKGROUND
]->code
)
748 printf ("\033[%s", colors
[BACKGROUND
]->code
);
749 if (colors
[FOREGROUND
]->code
)
750 printf ("\033[%s%s%s\033[0m", bold
? "1;" : "", colors
[FOREGROUND
]->code
, line
);
752 printf (formats
[FMT_GENERIC
], line
);
761 print_clean (const char *line
)
764 char ***offsets
= NULL
;
765 unsigned int count
= 0, i
= 0;
770 if (*p
== 27 && *(p
+ 1) == '[')
772 const char *begin
= p
;
776 while (isdigit (*p
) || *p
== ';')
782 unsigned int iter
= 0;
785 check_values
= false;
794 else /* check range */
799 const unsigned int digits
= p
- digit
;
800 for (i
= 0; i
< digits
; i
++)
804 if (value
== 0) /* reset */
810 else if (value
== 1) /* bold */
812 bool discard
= false;
822 else if ((value
>= 30 && value
<= 37) || value
== 39) /* foreground colors */
824 else if ((value
>= 40 && value
<= 47) || value
== 49) /* background colors */
833 } while (iter
== 1 && check_values
);
837 const char *end
= p
++;
839 offsets
= xmalloc (++count
* sizeof (char **));
841 offsets
= xrealloc (offsets
, ++count
* sizeof (char **));
842 offsets
[i
] = xmalloc (2 * sizeof (char *));
843 offsets
[i
][0] = (char *)begin
; /* ESC */
844 offsets
[i
][1] = (char *)end
; /* m */
855 print_free_offsets (line
, offsets
, count
);
857 printf (formats
[FMT_GENERIC
], line
);
860 #define SET_CHAR(offset, new, old) \
864 #define RESTORE_CHAR(offset, old) \
868 print_free_offsets (const char *line
, char ***offsets
, unsigned int count
)
873 SET_CHAR (offsets
[0][0], '\0', &ch
);
874 printf (formats
[FMT_GENERIC
], line
);
875 RESTORE_CHAR (offsets
[0][0], ch
);
877 for (i
= 0; i
< count
; i
++)
880 bool next_offset
= false;
883 SET_CHAR (offsets
[i
+ 1][0], '\0', &ch
);
886 printf (formats
[FMT_GENERIC
], offsets
[i
][1] + 1);
888 RESTORE_CHAR (offsets
[i
+ 1][0], ch
);
890 for (i
= 0; i
< count
; i
++)
891 free_null (offsets
[i
]);
896 malloc_wrap (size_t size
)
898 void *p
= malloc (size
);
905 calloc_wrap (size_t nmemb
, size_t size
)
907 void *p
= calloc (nmemb
, size
);
914 realloc_wrap (void *ptr
, size_t size
)
916 void *p
= realloc (ptr
, size
);
923 malloc_wrap_debug (size_t size
, const char *file
, unsigned int line
)
925 void *p
= malloc (size
);
927 MEM_ALLOC_FAIL_DEBUG (file
, line
);
932 calloc_wrap_debug (size_t nmemb
, size_t size
, const char *file
, unsigned int line
)
934 void *p
= calloc (nmemb
, size
);
936 MEM_ALLOC_FAIL_DEBUG (file
, line
);
941 realloc_wrap_debug (void *ptr
, size_t size
, const char *file
, unsigned int line
)
943 void *p
= realloc (ptr
, size
);
945 MEM_ALLOC_FAIL_DEBUG (file
, line
);
950 free_wrap (void **ptr
)
957 strdup_wrap (const char *str
)
959 const size_t len
= strlen (str
) + 1;
960 char *p
= xmalloc (len
);
961 strncpy (p
, str
, len
);
966 str_concat (const char *str1
, const char *str2
)
968 const size_t len
= strlen (str1
) + strlen (str2
) + 1;
971 p
= str
= xmalloc (len
);
972 strncpy (p
, str1
, strlen (str1
));
974 strncpy (p
, str2
, strlen (str2
));
981 #define DO_VFPRINTF(fmt) \
983 fprintf (stderr, "%s: ", program_name); \
984 va_start (ap, fmt); \
985 vfprintf (stderr, fmt, ap); \
987 fprintf (stderr, "\n"); \
990 vfprintf_diag (const char *fmt
, ...)
996 vfprintf_fail (const char *fmt
, ...)
1003 stack_var (void ***list
, unsigned int *stacked
, unsigned int index
, void *ptr
)
1005 /* nothing to stack */
1009 *list
= xmalloc (sizeof (void *));
1013 for (i
= 0; i
< *stacked
; i
++)
1017 return; /* reused */
1019 *list
= xrealloc (*list
, (*stacked
+ 1) * sizeof (void *));
1021 (*list
)[index
] = ptr
;
1026 release_var (void **list
, unsigned int stacked
, void **ptr
)
1029 /* nothing to release */
1032 for (i
= 0; i
< stacked
; i
++)
1033 if (list
[i
] == *ptr
)