Upload Tizen:Base source
[framework/base/util-linux-ng.git] / text-utils / conv.c
1 /*
2  * Copyright (c) 1989 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include <stdio.h>
35 #include <ctype.h>
36 #include <sys/types.h>
37 #include "hexdump.h"
38
39 void
40 conv_c(PR *pr, u_char *p)
41 {
42         char buf[10];
43         char const *str;
44
45         switch(*p) {
46         case '\0':
47                 str = "\\0";
48                 goto strpr;
49         /* case '\a': */
50         case '\007':
51                 if (deprecated)         /* od didn't know about \a */
52                         break;
53                 str = "\\a";
54                 goto strpr;
55         case '\b':
56                 str = "\\b";
57                 goto strpr;
58         case '\f':
59                 str = "\\f";
60                 goto strpr;
61         case '\n':
62                 str = "\\n";
63                 goto strpr;
64         case '\r':
65                 str = "\\r";
66                 goto strpr;
67         case '\t':
68                 str = "\\t";
69                 goto strpr;
70         case '\v':
71                 if (deprecated)
72                         break;
73                 str = "\\v";
74                 goto strpr;
75         default:
76                 break;
77         }
78         if (isprint(*p)) {
79                 *pr->cchar = 'c';
80                 (void)printf(pr->fmt, *p);
81         } else {
82                 (void)sprintf(buf, "%03o", (int)*p);
83                 str = buf;
84 strpr:          *pr->cchar = 's';
85                 (void)printf(pr->fmt, str);
86         }
87 }
88
89 void
90 conv_u(PR *pr, u_char *p)
91 {
92         static const char *list[] = {
93                 "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
94                  "bs",  "ht",  "lf",  "vt",  "ff",  "cr",  "so",  "si",
95                 "dle", "dcl", "dc2", "dc3", "dc4", "nak", "syn", "etb",
96                 "can",  "em", "sub", "esc",  "fs",  "gs",  "rs",  "us",
97         };
98
99                                                 /* od used nl, not lf */
100         if (*p <= 0x1f) {
101                 *pr->cchar = 's';
102                 if (deprecated && *p == 0x0a)
103                         (void)printf(pr->fmt, "nl");
104                 else
105                         (void)printf(pr->fmt, list[*p]);
106         } else if (*p == 0x7f) {
107                 *pr->cchar = 's';
108                 (void)printf(pr->fmt, "del");
109         } else if (deprecated && *p == 0x20) {  /* od replaced space with sp */
110                 *pr->cchar = 's';
111                 (void)printf(pr->fmt, " sp");
112         } else if (isprint(*p)) {
113                 *pr->cchar = 'c';
114                 (void)printf(pr->fmt, *p);
115         } else {
116                 *pr->cchar = 'x';
117                 (void)printf(pr->fmt, (int)*p);
118         }
119 }