Use warnx() instead of home-rolled fprintf() constructions.
[dragonfly.git] / bin / ls / util.c
1 /*
2  * Copyright (c) 1989, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Michael Fischbein.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * @(#)util.c   8.3 (Berkeley) 4/2/94
33  * $FreeBSD: src/bin/ls/util.c,v 1.20.2.5 2002/07/08 06:59:27 tjr Exp $
34  * $DragonFly: src/bin/ls/util.c,v 1.5 2005/09/18 10:39:35 asmodai Exp $
35  */
36
37 #include <sys/types.h>
38 #include <sys/stat.h>
39
40 #include <ctype.h>
41 #include <err.h>
42 #include <fts.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
46
47 #include "ls.h"
48 #include "extern.h"
49
50 int
51 prn_printable(const char *s)
52 {
53         char c;
54         int n;
55
56         for (n = 0; (c = *s) != '\0'; ++s, ++n)
57                 if (isprint((unsigned char)c))
58                         putchar(c);
59                 else
60                         putchar('?');
61         return n;
62 }
63
64 /*
65  * The fts system makes it difficult to replace fts_name with a different-
66  * sized string, so we just calculate the real length here and do the
67  * conversion in prn_octal()
68  *
69  * XXX when using f_octal_escape (-b) rather than f_octal (-B), the
70  * length computed by len_octal may be too big. I just can't be buggered
71  * to fix this as an efficient fix would involve a lookup table. Same goes
72  * for the rather inelegant code in prn_octal.
73  *
74  *                                              DES 1998/04/23
75  */
76
77 size_t
78 len_octal(const char *s, int len)
79 {
80         size_t r = 0;
81
82         while (len--)
83                 if (isprint((unsigned const char)*s++)) r++; else r += 4;
84         return r;
85 }
86
87 int
88 prn_octal(const char *s)
89 {
90         unsigned char ch;
91         int len = 0;
92         
93         while ((ch = (unsigned char)*s++)) {
94                 if (isprint(ch) && (ch != '\"') && (ch != '\\'))
95                         putchar(ch), len++;
96                 else if (f_octal_escape) {
97                         putchar('\\');
98                         switch (ch) {
99                         case '\\':
100                                 putchar('\\');
101                                 break;
102                         case '\"':
103                                 putchar('"');
104                                 break;
105                         case '\a':
106                                 putchar('a');
107                                 break;
108                         case '\b':
109                                 putchar('b');
110                                 break;
111                         case '\f':
112                                 putchar('f');
113                                 break;
114                         case '\n':
115                                 putchar('n');
116                                 break;
117                         case '\r':
118                                 putchar('r');
119                                 break;
120                         case '\t':
121                                 putchar('t');
122                                 break;
123                         case '\v':
124                                 putchar('v');
125                                 break;
126                         default:
127                                 putchar('0' + (ch >> 6));
128                                 putchar('0' + ((ch >> 3) & 7));
129                                 putchar('0' + (ch & 7));
130                                 len += 2;
131                                 break;
132                         }
133                         len += 2;
134                 }
135                 else {
136                         putchar('\\');
137                         putchar('0' + (ch >> 6));
138                         putchar('0' + ((ch >> 3) & 7));
139                         putchar('0' + (ch & 7));
140                         len += 4;
141                 }
142         }
143         return len;
144 }
145
146 void
147 usage(void)
148 {
149         fprintf(stderr,
150 #ifdef COLORLS
151         "usage: ls [-ABCFGHLPRTWabcdfghiklmnoqrstuwx1]"
152 #else
153         "usage: ls [-ABCFHLPRTWabcdfghiklmnoqrstuwx1]"
154 #endif
155                       " [file ...]\n");
156         exit(1);
157 }