forked from nodakai/tree-command
-
Notifications
You must be signed in to change notification settings - Fork 0
/
color.c
500 lines (467 loc) · 15.9 KB
/
color.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/* $Copyright: $
* Copyright (c) 1996 - 2014 by Steve Baker ([email protected])
* All Rights reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "tree.h"
/*
* Hacked in DIR_COLORS support for linux. ------------------------------
*/
/*
* If someone asked me, I'd extend dircolors, to provide more generic
* color support so that more programs could take advantage of it. This
* is really just hacked in support. The dircolors program should:
* 1) Put the valid terms in a environment var, like:
* COLOR_TERMS=linux:console:xterm:vt100...
* 2) Put the COLOR and OPTIONS directives in a env var too.
* 3) Have an option to dircolors to silently ignore directives that it
* doesn't understand (directives that other programs would
* understand).
* 4) Perhaps even make those unknown directives environment variables.
*
* The environment is the place for cryptic crap no one looks at, but
* programs. No one is going to care if it takes 30 variables to do
* something.
*/
enum {
CMD_COLOR, CMD_OPTIONS, CMD_TERM, CMD_EIGHTBIT, COL_NORMAL, COL_FILE, COL_DIR,
COL_LINK, COL_FIFO, COL_DOOR, COL_BLK, COL_CHR, COL_ORPHAN, COL_SOCK,
COL_SETUID, COL_SETGID, COL_STICKY_OTHER_WRITABLE, COL_OTHER_WRITABLE,
COL_STICKY, COL_EXEC, COL_MISSING, COL_LEFTCODE, COL_RIGHTCODE, COL_ENDCODE,
DOT_EXTENSION, ERROR
};
bool colorize = FALSE, ansilines = FALSE, linktargetcolor = FALSE;
char *term, termmatch = FALSE, istty;
char *leftcode = NULL, *rightcode = NULL, *endcode = NULL;
char *norm_flgs = NULL, *file_flgs = NULL, *dir_flgs = NULL, *link_flgs = NULL;
char *fifo_flgs = NULL, *door_flgs = NULL, *block_flgs = NULL, *char_flgs = NULL;
char *orphan_flgs = NULL, *sock_flgs = NULL, *suid_flgs = NULL, *sgid_flgs = NULL;
char *stickyow_flgs = NULL, *otherwr_flgs = NULL, *sticky_flgs = NULL;
char *exec_flgs = NULL, *missing_flgs = NULL;
char *vgacolor[] = {
"black", "red", "green", "yellow", "blue", "fuchsia", "aqua", "white",
NULL, NULL,
"transparent", "red", "green", "yellow", "blue", "fuchsia", "aqua", "black"
};
struct colortable colortable[11];
struct extensions *ext = NULL;
const struct linedraw *linedraw;
char **split(char *str, char *delim, int *nwrds);
int cmd(char *s);
extern FILE *outfile;
extern bool Hflag, force_color, nocolor;
extern const char *charset;
void parse_dir_colors()
{
char buf[1025], **arg, **c, *colors, *s;
int i, n;
struct extensions *e;
if (Hflag) return;
if (getenv("TERM") == NULL) {
colorize = FALSE;
return;
}
s = getenv("TREE_COLORS");
if (s == NULL) s = getenv("LS_COLORS");
if ((s == NULL || strlen(s) == 0) && force_color) s = ":no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.bat=01;32:*.BAT=01;32:*.btm=01;32:*.BTM=01;32:*.cmd=01;32:*.CMD=01;32:*.com=01;32:*.COM=01;32:*.dll=01;32:*.DLL=01;32:*.exe=01;32:*.EXE=01;32:*.arj=01;31:*.bz2=01;31:*.deb=01;31:*.gz=01;31:*.lzh=01;31:*.rpm=01;31:*.tar=01;31:*.taz=01;31:*.tb2=01;31:*.tbz2=01;31:*.tbz=01;31:*.tgz=01;31:*.tz2=01;31:*.z=01;31:*.Z=01;31:*.zip=01;31:*.ZIP=01;31:*.zoo=01;31:*.asf=01;35:*.ASF=01;35:*.avi=01;35:*.AVI=01;35:*.bmp=01;35:*.BMP=01;35:*.flac=01;35:*.FLAC=01;35:*.gif=01;35:*.GIF=01;35:*.jpg=01;35:*.JPG=01;35:*.jpeg=01;35:*.JPEG=01;35:*.m2a=01;35:*.M2a=01;35:*.m2v=01;35:*.M2V=01;35:*.mov=01;35:*.MOV=01;35:*.mp3=01;35:*.MP3=01;35:*.mpeg=01;35:*.MPEG=01;35:*.mpg=01;35:*.MPG=01;35:*.ogg=01;35:*.OGG=01;35:*.ppm=01;35:*.rm=01;35:*.RM=01;35:*.tga=01;35:*.TGA=01;35:*.tif=01;35:*.TIF=01;35:*.wav=01;35:*.WAV=01;35:*.wmv=01;35:*.WMV=01;35:*.xbm=01;35:*.xpm=01;35:";
if (s == NULL || (!force_color && (nocolor || !isatty(1)))) {
colorize = FALSE;
return;
} else {
colorize = TRUE;
/* You can uncomment the below line and tree will always try to ANSI-fy the indentation lines */
/* ansilines = TRUE; */
}
colors = scopy(s);
arg = split(colors,":",&n);
for(i=0;arg[i];i++) {
c = split(arg[i],"=",&n);
switch(cmd(c[0])) {
case COL_NORMAL:
if (c[1]) norm_flgs = scopy(c[1]);
break;
case COL_FILE:
if (c[1]) file_flgs = scopy(c[1]);
break;
case COL_DIR:
if (c[1]) dir_flgs = scopy(c[1]);
break;
case COL_LINK:
if (c[1]) {
if (strcasecmp("target",c[1]) == 0) {
linktargetcolor = TRUE;
link_flgs = "01;36"; /* Should never actually be used */
} else link_flgs = scopy(c[1]);
}
break;
case COL_FIFO:
if (c[1]) fifo_flgs = scopy(c[1]);
break;
case COL_DOOR:
if (c[1]) door_flgs = scopy(c[1]);
break;
case COL_BLK:
if (c[1]) block_flgs = scopy(c[1]);
break;
case COL_CHR:
if (c[1]) char_flgs = scopy(c[1]);
break;
case COL_ORPHAN:
if (c[1]) orphan_flgs = scopy(c[1]);
break;
case COL_SOCK:
if (c[1]) sock_flgs = scopy(c[1]);
break;
case COL_SETUID:
if (c[1]) suid_flgs = scopy(c[1]);
break;
case COL_SETGID:
if (c[1]) sgid_flgs = scopy(c[1]);
break;
case COL_STICKY_OTHER_WRITABLE:
if (c[1]) stickyow_flgs = scopy(c[1]);
break;
case COL_OTHER_WRITABLE:
if (c[1]) otherwr_flgs = scopy(c[1]);
break;
case COL_STICKY:
if (c[1]) sticky_flgs = scopy(c[1]);
break;
case COL_EXEC:
if (c[1]) exec_flgs = scopy(c[1]);
break;
case COL_MISSING:
if (c[1]) missing_flgs = scopy(c[1]);
break;
case COL_LEFTCODE:
if (c[1]) leftcode = scopy(c[1]);
break;
case COL_RIGHTCODE:
if (c[1]) rightcode = scopy(c[1]);
break;
case COL_ENDCODE:
if (c[1]) endcode = scopy(c[1]);
break;
case DOT_EXTENSION:
if (c[1]) {
e = xmalloc(sizeof(struct extensions));
e->ext = scopy(c[0]+1);
e->term_flg = scopy(c[1]);
e->nxt = ext;
ext = e;
}
}
free(c);
}
free(arg);
/* make sure at least norm_flgs is defined. We're going to assume vt100 support */
if (!leftcode) leftcode = scopy("\033[");
if (!rightcode) rightcode = scopy("m");
if (!norm_flgs) norm_flgs = scopy("00");
if (!endcode) {
sprintf(buf,"%s%s%s",leftcode,norm_flgs,rightcode);
endcode = scopy(buf);
}
free(colors);
/* if (!termmatch) colorize = FALSE; */
}
/*
* You must free the pointer that is allocated by split() after you
* are done using the array.
*/
char **split(char *str, char *delim, int *nwrds)
{
int n = 128;
char **w = xmalloc(sizeof(char *) * n);
w[*nwrds = 0] = strtok(str,delim);
while (w[*nwrds]) {
if (*nwrds == (n-2)) w = xrealloc(w,sizeof(char *) * (n+=256));
w[++(*nwrds)] = strtok(NULL,delim);
}
w[*nwrds] = NULL;
return w;
}
int cmd(char *s)
{
static struct {
char *cmd;
char cmdnum;
} cmds[] = {
{"no", COL_NORMAL}, {"fi", COL_FILE}, {"di", COL_DIR}, {"ln", COL_LINK}, {"pi", COL_FIFO},
{"do", COL_DOOR}, {"bd", COL_BLK}, {"cd", COL_CHR}, {"or", COL_ORPHAN}, {"so", COL_SOCK},
{"su", COL_SETUID}, {"sg", COL_SETGID}, {"tw", COL_STICKY_OTHER_WRITABLE}, {"ow", COL_OTHER_WRITABLE},
{"st", COL_STICKY}, {"ex", COL_EXEC}, {"mi", COL_MISSING}, {"lc", COL_LEFTCODE}, {"rc", COL_RIGHTCODE},
{"ec", COL_ENDCODE}, {NULL, 0}
};
int i;
for(i=0;cmds[i].cmdnum;i++)
if (!strcmp(cmds[i].cmd,s)) return cmds[i].cmdnum;
if (s[0] == '*') return DOT_EXTENSION;
return ERROR;
}
int color(u_short mode, char *name, bool orphan, bool islink)
{
struct extensions *e;
int l, xl;
if (orphan) {
if (islink) {
if (missing_flgs) {
fprintf(outfile,"%s%s%s",leftcode,missing_flgs,rightcode);
return TRUE;
}
} else {
if (orphan_flgs) {
fprintf(outfile,"%s%s%s",leftcode,orphan_flgs,rightcode);
return TRUE;
}
}
}
switch(mode & S_IFMT) {
case S_IFIFO:
if (!fifo_flgs) return FALSE;
fprintf(outfile,"%s%s%s",leftcode,fifo_flgs,rightcode);
return TRUE;
case S_IFCHR:
if (!char_flgs) return FALSE;
fprintf(outfile,"%s%s%s",leftcode,char_flgs,rightcode);
return TRUE;
case S_IFDIR:
if (mode & S_ISVTX) {
if ((mode & S_IWOTH) && stickyow_flgs) {
fprintf(outfile, "%s%s%s",leftcode,stickyow_flgs,rightcode);
return TRUE;
}
if (!(mode & S_IWOTH) && sticky_flgs) {
fprintf(outfile, "%s%s%s",leftcode,sticky_flgs,rightcode);
return TRUE;
}
}
if ((mode & S_IWOTH) && otherwr_flgs) {
fprintf(outfile,"%s%s%s",leftcode,otherwr_flgs,rightcode);
return TRUE;
}
if (!dir_flgs) return FALSE;
fprintf(outfile,"%s%s%s",leftcode,dir_flgs,rightcode);
return TRUE;
#ifndef __EMX__
case S_IFBLK:
if (!block_flgs) return FALSE;
fprintf(outfile,"%s%s%s",leftcode,block_flgs,rightcode);
return TRUE;
case S_IFLNK:
if (!link_flgs) return FALSE;
fprintf(outfile,"%s%s%s",leftcode,link_flgs,rightcode);
return TRUE;
#ifdef S_IFDOOR
case S_IFDOOR:
if (!door_flgs) return FALSE;
fprintf(outfile,"%s%s%s",leftcode,door_flgs,rightcode);
return TRUE;
#endif
#endif
case S_IFSOCK:
if (!sock_flgs) return FALSE;
fprintf(outfile,"%s%s%s",leftcode,sock_flgs,rightcode);
return TRUE;
case S_IFREG:
if ((mode & S_ISUID) && suid_flgs) {
fprintf(outfile,"%s%s%s",leftcode,suid_flgs,rightcode);
return TRUE;
}
if ((mode & S_ISGID) && sgid_flgs) {
fprintf(outfile,"%s%s%s",leftcode,sgid_flgs,rightcode);
return TRUE;
}
if (!exec_flgs) return FALSE;
if (mode & (S_IXUSR | S_IXGRP | S_IXOTH)) {
fprintf(outfile,"%s%s%s",leftcode,exec_flgs,rightcode);
return TRUE;
}
/* not a directory, link, special device, etc, so check for extension match */
l = strlen(name);
for(e=ext;e;e=e->nxt) {
xl = strlen(e->ext);
if (!strcmp((l>xl)?name+(l-xl):name,e->ext)) {
fprintf(outfile,"%s%s%s",leftcode,e->term_flg,rightcode);
return TRUE;
}
}
return FALSE;
}
return FALSE;
}
/*
* Charsets provided by Kyosuke Tokoro ([email protected])
*/
const char *getcharset(void)
{
#ifndef __EMX__
return getenv("TREE_CHARSET");
#else
static char buffer[13];
ULONG aulCpList[3],ulListSize,codepage=0;
char*charset=getenv("TREE_CHARSET");
if(charset)
return charset;
if(!getenv("WINDOWID"))
if(!DosQueryCp(sizeof aulCpList,aulCpList,&ulListSize))
if(ulListSize>=sizeof*aulCpList)
codepage=*aulCpList;
switch(codepage){
case 437: case 775: case 850: case 851: case 852: case 855:
case 857: case 860: case 861: case 862: case 863: case 864:
case 865: case 866: case 868: case 869: case 891: case 903:
case 904:
sprintf(buffer,"IBM%03lu",codepage);
break;
case 367:
return"US-ASCII";
case 813:
return"ISO-8859-7";
case 819:
return"ISO-8859-1";
case 881: case 882: case 883: case 884: case 885:
sprintf(buffer,"ISO-8859-%lu",codepage-880);
break;
case 858: case 924:
sprintf(buffer,"IBM%05lu",codepage);
break;
case 874:
return"TIS-620";
case 897: case 932: case 942: case 943:
return"Shift_JIS";
case 912:
return"ISO-8859-2";
case 915:
return"ISO-8859-5";
case 916:
return"ISO-8859-8";
case 949: case 970:
return"EUC-KR";
case 950:
return"Big5";
case 954:
return"EUC-JP";
case 1051:
return"hp-roman8";
case 1089:
return"ISO-8859-6";
case 1250: case 1251: case 1253: case 1254: case 1255: case 1256:
case 1257: case 1258:
sprintf(buffer,"windows-%lu",codepage);
break;
case 1252:
return"ISO-8859-1-Windows-3.1-Latin-1";
default:
return NULL;
}
#endif
}
void initlinedraw(int flag)
{
static const char*latin1_3[]={
"ISO-8859-1", "ISO-8859-1:1987", "ISO_8859-1", "latin1", "l1", "IBM819",
"CP819", "csISOLatin1", "ISO-8859-3", "ISO_8859-3:1988", "ISO_8859-3",
"latin3", "ls", "csISOLatin3", NULL
};
static const char*iso8859_789[]={
"ISO-8859-7", "ISO_8859-7:1987", "ISO_8859-7", "ELOT_928", "ECMA-118",
"greek", "greek8", "csISOLatinGreek", "ISO-8859-8", "ISO_8859-8:1988",
"iso-ir-138", "ISO_8859-8", "hebrew", "csISOLatinHebrew", "ISO-8859-9",
"ISO_8859-9:1989", "iso-ir-148", "ISO_8859-9", "latin5", "l5",
"csISOLatin5", NULL
};
static const char*shift_jis[]={
"Shift_JIS", "MS_Kanji", "csShiftJIS", NULL
};
static const char*euc_jp[]={
"EUC-JP", "Extended_UNIX_Code_Packed_Format_for_Japanese",
"csEUCPkdFmtJapanese", NULL
};
static const char*euc_kr[]={
"EUC-KR", "csEUCKR", NULL
};
static const char*iso2022jp[]={
"ISO-2022-JP", "csISO2022JP", "ISO-2022-JP-2", "csISO2022JP2", NULL
};
static const char*ibm_pc[]={
"IBM437", "cp437", "437", "csPC8CodePage437", "IBM852", "cp852", "852",
"csPCp852", "IBM863", "cp863", "863", "csIBM863", "IBM855", "cp855",
"855", "csIBM855", "IBM865", "cp865", "865", "csIBM865", "IBM866",
"cp866", "866", "csIBM866", NULL
};
static const char*ibm_ps2[]={
"IBM850", "cp850", "850", "csPC850Multilingual", "IBM00858", "CCSID00858",
"CP00858", "PC-Multilingual-850+euro", NULL
};
static const char*ibm_gr[]={
"IBM869", "cp869", "869", "cp-gr", "csIBM869", NULL
};
static const char*gb[]={
"GB2312", "csGB2312", NULL
};
static const char*utf8[]={
"UTF-8", "utf8", NULL
};
static const char*big5[]={
"Big5", "csBig5", NULL
};
static const char*viscii[]={
"VISCII", "csVISCII", NULL
};
static const char*koi8ru[]={
"KOI8-R", "csKOI8R", "KOI8-U", NULL
};
static const char*windows[]={
"ISO-8859-1-Windows-3.1-Latin-1", "csWindows31Latin1",
"ISO-8859-2-Windows-Latin-2", "csWindows31Latin2", "windows-1250",
"windows-1251", "windows-1253", "windows-1254", "windows-1255",
"windows-1256", "windows-1256", "windows-1257", NULL
};
static const struct linedraw cstable[]={
{ latin1_3, "| ", "|--", "·--", "©" },
{ iso8859_789, "| ", "|--", "·--", "(c)" },
{ shift_jis, "\204\240 ", "\204\245", "\204\244", "(c)" },
{ euc_jp, "\250\242 ", "\250\247", "\250\246", "(c)" },
{ euc_kr, "\246\242 ", "\246\247", "\246\246", "(c)" },
{ iso2022jp, "\033$B(\"\033(B ", "\033$B('\033(B", "\033$B(&\033(B", "(c)" },
{ ibm_pc, "\263 ", "\303\304\304", "\300\304\304", "(c)" },
{ ibm_ps2, "\263 ", "\303\304\304", "\300\304\304", "\227" },
{ ibm_gr, "\263 ", "\303\304\304", "\300\304\304", "\270" },
{ gb, "\251\246 ", "\251\300", "\251\270", "(c)" },
{ utf8, "\342\224\202\302\240\302\240",
"\342\224\234\342\224\200\342\224\200", "\342\224\224\342\224\200\342\224\200", "\302\251" },
{ big5, "\242x ", "\242u", "\242|", "(c)" },
{ viscii, "| ", "|--", "`--", "\371" },
{ koi8ru, "\201 ", "\206\200\200", "\204\200\200", "\277" },
{ windows, "| ", "|--", "`--", "\251" },
{ NULL, "| ", "|--", "`--", "(c)" }
};
const char**s;
if (flag) {
fprintf(stderr,"tree: missing argument to --charset, valid charsets include:\n");
for(linedraw=cstable;linedraw->name;++linedraw)
for(s=linedraw->name;*s;++s)
fprintf(stderr," %s\n",*s);
return;
}
if (charset) {
for(linedraw=cstable;linedraw->name;++linedraw)
for(s=linedraw->name;*s;++s)
if(!strcasecmp(charset,*s)) return;
}
linedraw=cstable+sizeof cstable/sizeof*cstable-1;
}