1 /* dircolors - output commands to set the LS_COLOR environment variable
2 Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001 H. Peter Anvin
3 Copyright (C) 1996-2000 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include <sys/types.h>
29 #include "dircolors.h"
36 /* The official name of this program (e.g., no `g' prefix). */
37 #define PROGRAM_NAME "dircolors"
39 #define AUTHORS "H. Peter Anvin"
41 #define obstack_chunk_alloc malloc
42 #define obstack_chunk_free free
51 #define APPEND_CHAR(C) obstack_1grow (&lsc_obstack, C)
52 #define APPEND_TWO_CHAR_STRING(S) \
60 /* Accumulate in this obstack the value for the LS_COLORS environment
62 static struct obstack lsc_obstack
;
64 /* Nonzero if the input file was the standard input. */
65 static int have_read_stdin
;
67 /* FIXME: associate with ls_codes? */
68 static const char *const slack_codes
[] =
70 "NORMAL", "NORM", "FILE", "DIR", "LNK", "LINK",
71 "SYMLINK", "ORPHAN", "MISSING", "FIFO", "PIPE", "SOCK", "BLK", "BLOCK",
72 "CHR", "CHAR", "DOOR", "EXEC", "LEFT", "LEFTCODE", "RIGHT", "RIGHTCODE",
73 "END", "ENDCODE", NULL
76 static const char *const ls_codes
[] =
78 "no", "no", "fi", "di", "ln", "ln", "ln", "or", "mi", "pi", "pi",
79 "so", "bd", "bd", "cd", "cd", "do", "ex", "lc", "lc", "rc", "rc", "ec", "ec"
82 static struct option
const long_options
[] =
84 {"bourne-shell", no_argument
, NULL
, 'b'},
85 {"sh", no_argument
, NULL
, 'b'},
86 {"csh", no_argument
, NULL
, 'c'},
87 {"c-shell", no_argument
, NULL
, 'c'},
88 {"print-database", no_argument
, NULL
, 'p'},
89 {GETOPT_HELP_OPTION_DECL
},
90 {GETOPT_VERSION_OPTION_DECL
},
100 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
104 printf (_("Usage: %s [OPTION]... [FILE]\n"), program_name
);
106 Output commands to set the LS_COLORS environment variable.\n\
108 Determine format of output:\n\
109 -b, --sh, --bourne-shell output Bourne shell code to set LS_COLORS\n\
110 -c, --csh, --c-shell output C shell code to set LS_COLORS\n\
111 -p, --print-database output defaults\n\
113 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
114 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
117 If FILE is specified, read it to determine which colors to use for which\n\
118 file types and extensions. Otherwise, a precompiled database is used.\n\
119 For details on the format of these files, run `dircolors --print-database'.\n\
121 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
124 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
128 xstrndup (const char *s
, size_t n
)
130 char *new = strndup (s
, n
);
136 /* If the SHELL environment variable is set to `csh' or `tcsh,'
137 assume C shell. Else Bourne shell. */
139 static enum Shell_syntax
140 guess_shell_syntax (void)
144 shell
= getenv ("SHELL");
145 if (shell
== NULL
|| *shell
== '\0')
146 return SHELL_SYNTAX_UNKNOWN
;
148 shell
= base_name (shell
);
150 if (STREQ (shell
, "csh") || STREQ (shell
, "tcsh"))
151 return SHELL_SYNTAX_C
;
153 return SHELL_SYNTAX_BOURNE
;
157 parse_line (unsigned char const *line
, char **keyword
, char **arg
)
159 unsigned char const *p
;
160 unsigned char const *keyword_start
;
161 unsigned char const *arg_start
;
166 for (p
= line
; ISSPACE (*p
); ++p
)
169 /* Ignore blank lines and shell-style comments. */
170 if (*p
== '\0' || *p
== '#')
175 while (!ISSPACE (*p
) && *p
!= '\0')
180 *keyword
= xstrndup ((const char *) keyword_start
, p
- keyword_start
);
188 while (ISSPACE (*p
));
190 if (*p
== '\0' || *p
== '#')
195 while (*p
!= '\0' && *p
!= '#')
198 for (--p
; ISSPACE (*p
); --p
)
204 *arg
= xstrndup ((const char *) arg_start
, p
- arg_start
);
207 /* FIXME: Write a string to standard out, while watching for "dangerous"
208 sequences like unescaped : and = characters. */
211 append_quoted (const char *str
)
213 int need_backslash
= 1;
221 need_backslash
= !need_backslash
;
240 /* Read the file open on FP (with name FILENAME). First, look for a
241 `TERM name' directive where name matches the current terminal type.
242 Once found, translate and accumulate the associated directives onto
243 the global obstack LSC_OBSTACK. Give a diagnostic and return nonzero
244 upon failure (unrecognized keyword is the only way to fail here).
245 Return zero otherwise. */
248 dc_parse_stream (FILE *fp
, const char *filename
)
250 size_t line_number
= 0;
252 size_t line_chars_allocated
= 0;
257 /* State for the parser. */
258 enum states
{ ST_TERMNO
, ST_TERMYES
, ST_TERMSURE
, ST_GLOBAL
};
262 /* Get terminal type */
263 term
= getenv ("TERM");
264 if (term
== NULL
|| *term
== '\0')
277 line_length
= getline (&line
, &line_chars_allocated
, fp
);
278 if (line_length
<= 0)
287 line
= (char *) (G_line
[line_number
- 1]);
288 line_length
= G_line_length
[line_number
- 1];
289 if (line_number
> G_N_LINES
)
293 parse_line ((unsigned char *) line
, &keywd
, &arg
);
300 error (0, 0, _("%s:%lu: invalid line; missing second token"),
301 filename
, (long unsigned) line_number
);
308 if (strcasecmp (keywd
, "TERM") == 0)
310 if (STREQ (arg
, term
))
312 else if (state
!= ST_TERMSURE
)
317 if (state
== ST_TERMSURE
)
318 state
= ST_TERMYES
; /* Another TERM can cancel */
320 if (state
!= ST_TERMNO
)
325 append_quoted (keywd
);
330 else if (keywd
[0] == '*')
332 append_quoted (keywd
);
337 else if (strcasecmp (keywd
, "OPTIONS") == 0
338 || strcasecmp (keywd
, "COLOR") == 0
339 || strcasecmp (keywd
, "EIGHTBIT") == 0)
347 for (i
= 0; slack_codes
[i
] != NULL
; ++i
)
348 if (strcasecmp (keywd
, slack_codes
[i
]) == 0)
351 if (slack_codes
[i
] != NULL
)
353 APPEND_TWO_CHAR_STRING (ls_codes
[i
]);
370 if (unrecognized
&& (state
== ST_TERMSURE
|| state
== ST_TERMYES
))
372 error (0, 0, _("%s:%lu: unrecognized keyword %s"),
373 (filename
? quote (filename
) : _("<internal>")),
374 (long unsigned) line_number
, keywd
);
387 dc_parse_file (const char *filename
)
392 if (STREQ (filename
, "-"))
399 /* OPENOPTS is a macro. It varies with the system.
400 Some systems distinguish between internal and
401 external text representations. */
403 fp
= fopen (filename
, "r");
406 error (0, errno
, "%s", quote (filename
));
411 err
= dc_parse_stream (fp
, filename
);
413 if (fp
!= stdin
&& fclose (fp
) == EOF
)
415 error (0, errno
, "%s", quote (filename
));
423 main (int argc
, char **argv
)
427 enum Shell_syntax syntax
= SHELL_SYNTAX_UNKNOWN
;
428 int print_database
= 0;
430 program_name
= argv
[0];
431 setlocale (LC_ALL
, "");
432 bindtextdomain (PACKAGE
, LOCALEDIR
);
433 textdomain (PACKAGE
);
435 atexit (close_stdout
);
437 while ((optc
= getopt_long (argc
, argv
, "bcp", long_options
, NULL
)) != -1)
440 case 'b': /* Bourne shell syntax. */
441 syntax
= SHELL_SYNTAX_BOURNE
;
444 case 'c': /* C shell syntax. */
445 syntax
= SHELL_SYNTAX_C
;
452 case_GETOPT_HELP_CHAR
;
454 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
463 /* It doesn't make sense to use --print with either of
464 --bourne or --c-shell. */
465 if (print_database
&& syntax
!= SHELL_SYNTAX_UNKNOWN
)
468 _("the options to output dircolors' internal database and\n\
469 to select a shell syntax are mutually exclusive"));
473 if (print_database
&& argc
> 0)
476 _("no FILE arguments may be used with the option to output\n\
477 dircolors' internal database"));
481 if (!print_database
&& argc
> 1)
483 error (0, 0, _("too many arguments"));
490 for (i
= 0; i
< G_N_LINES
; i
++)
492 fwrite (G_line
[i
], 1, G_line_length
[i
], stdout
);
493 fputc ('\n', stdout
);
498 /* If shell syntax was not explicitly specified, try to guess it. */
499 if (syntax
== SHELL_SYNTAX_UNKNOWN
)
501 syntax
= guess_shell_syntax ();
502 if (syntax
== SHELL_SYNTAX_UNKNOWN
)
504 error (EXIT_FAILURE
, 0,
505 _("no SHELL environment variable, and no shell type option given"));
509 obstack_init (&lsc_obstack
);
511 err
= dc_parse_stream (NULL
, NULL
);
513 err
= dc_parse_file (argv
[0]);
517 size_t len
= obstack_object_size (&lsc_obstack
);
518 char *s
= obstack_finish (&lsc_obstack
);
522 if (syntax
== SHELL_SYNTAX_BOURNE
)
524 prefix
= "LS_COLORS='";
525 suffix
= "';\nexport LS_COLORS\n";
529 prefix
= "setenv LS_COLORS '";
532 fputs (prefix
, stdout
);
533 fwrite (s
, 1, len
, stdout
);
534 fputs (suffix
, stdout
);
539 if (have_read_stdin
&& fclose (stdin
) == EOF
)
540 error (EXIT_FAILURE
, errno
, _("standard input"));
542 exit (err
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);