~ubuntu-branches/ubuntu/trusty/dante/trusty-proposed

« back to all changes in this revision

Viewing changes to libscompat/strvis.c

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bridgett
  • Date: 2002-04-07 12:45:55 UTC
  • Revision ID: james.westby@ubuntu.com-20020407124555-qke8rt2tdor0naz2
Tags: upstream-1.1.11.12p1
ImportĀ upstreamĀ versionĀ 1.1.11.12p1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: strvis.c,v 1.5 1999/05/13 16:35:58 karls Exp $ */
 
2
 
 
3
#ifdef HAVE_CONFIG_H
 
4
#include "autoconf.h"
 
5
#endif  /* HAVE_CONFIG_H */
 
6
 
 
7
#include "common.h"
 
8
 
 
9
#if !HAVE_STRVIS
 
10
 
 
11
/*-
 
12
 * Copyright (c) 1989, 1993
 
13
 *      The Regents of the University of California.  All rights reserved.
 
14
 *
 
15
 * Redistribution and use in source and binary forms, with or without
 
16
 * modification, are permitted provided that the following conditions
 
17
 * are met:
 
18
 * 1. Redistributions of source code must retain the above copyright
 
19
 *    notice, this list of conditions and the following disclaimer.
 
20
 * 2. Redistributions in binary form must reproduce the above copyright
 
21
 *    notice, this list of conditions and the following disclaimer in the
 
22
 *    documentation and/or other materials provided with the distribution.
 
23
 * 3. All advertising materials mentioning features or use of this software
 
24
 *    must display the following acknowledgement:
 
25
 *      This product includes software developed by the University of
 
26
 *      California, Berkeley and its contributors.
 
27
 * 4. Neither the name of the University nor the names of its contributors
 
28
 *    may be used to endorse or promote products derived from this software
 
29
 *    without specific prior written permission.
 
30
 *
 
31
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
32
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
33
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
34
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
35
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
36
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
37
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
38
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
39
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
40
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
41
 * SUCH DAMAGE.
 
42
 */
 
43
 
 
44
#if defined(LIBC_SCCS) && !defined(lint)
 
45
static char rcsid[] = "$OpenBSD: vis.c,v 1.4 1997/07/25 20:30:05 mickey Exp $";
 
46
#endif /* LIBC_SCCS and not lint */
 
47
 
 
48
#ifndef _COMMON_H_
 
49
#include <sys/types.h>
 
50
#include <limits.h>
 
51
#endif /* !_COMMON_H_ */
 
52
#include <ctype.h>
 
53
/*#include <vis.h> */ /* get defines from compat.h */
 
54
#include "compat.h"
 
55
 
 
56
#define isoctal(c)      (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
 
57
 
 
58
/*
 
59
 * vis - visually encode characters
 
60
 */
 
61
char *
 
62
vis(dst, c, flag, nextc)
 
63
        register char *dst;
 
64
        int c, nextc;
 
65
        register int flag;
 
66
{
 
67
        if (((u_int)c <= UCHAR_MAX && isascii(c) && isgraph(c)) ||
 
68
           ((flag & VIS_SP) == 0 && c == ' ') ||
 
69
           ((flag & VIS_TAB) == 0 && c == '\t') ||
 
70
           ((flag & VIS_NL) == 0 && c == '\n') ||
 
71
           ((flag & VIS_SAFE) && (c == '\b' || c == '\007' || c == '\r'))) {
 
72
                *dst++ = c;
 
73
                if (c == '\\' && (flag & VIS_NOSLASH) == 0)
 
74
                        *dst++ = '\\';
 
75
                *dst = '\0';
 
76
                return (dst);
 
77
        }
 
78
 
 
79
        if (flag & VIS_CSTYLE) {
 
80
                switch(c) {
 
81
                case '\n':
 
82
                        *dst++ = '\\';
 
83
                        *dst++ = 'n';
 
84
                        goto done;
 
85
                case '\r':
 
86
                        *dst++ = '\\';
 
87
                        *dst++ = 'r';
 
88
                        goto done;
 
89
                case '\b':
 
90
                        *dst++ = '\\';
 
91
                        *dst++ = 'b';
 
92
                        goto done;
 
93
#ifdef STDC_HEADERS
 
94
                case '\a':
 
95
#else
 
96
                case '\007':
 
97
#endif  /* STDC_HEADERS */
 
98
                        *dst++ = '\\';
 
99
                        *dst++ = 'a';
 
100
                        goto done;
 
101
                case '\v':
 
102
                        *dst++ = '\\';
 
103
                        *dst++ = 'v';
 
104
                        goto done;
 
105
                case '\t':
 
106
                        *dst++ = '\\';
 
107
                        *dst++ = 't';
 
108
                        goto done;
 
109
                case '\f':
 
110
                        *dst++ = '\\';
 
111
                        *dst++ = 'f';
 
112
                        goto done;
 
113
                case ' ':
 
114
                        *dst++ = '\\';
 
115
                        *dst++ = 's';
 
116
                        goto done;
 
117
                case '\0':
 
118
                        *dst++ = '\\';
 
119
                        *dst++ = '0';
 
120
                        if (isoctal(nextc)) {
 
121
                                *dst++ = '0';
 
122
                                *dst++ = '0';
 
123
                        }
 
124
                        goto done;
 
125
                }
 
126
        }
 
127
        if (((c & 0177) == ' ') || (flag & VIS_OCTAL)) {
 
128
                *dst++ = '\\';
 
129
                *dst++ = ((u_char)c >> 6 & 07) + '0';
 
130
                *dst++ = ((u_char)c >> 3 & 07) + '0';
 
131
                *dst++ = ((u_char)c & 07) + '0';
 
132
                goto done;
 
133
        }
 
134
        if ((flag & VIS_NOSLASH) == 0)
 
135
                *dst++ = '\\';
 
136
        if (c & 0200) {
 
137
                c &= 0177;
 
138
                *dst++ = 'M';
 
139
        }
 
140
        if (iscntrl(c)) {
 
141
                *dst++ = '^';
 
142
                if (c == 0177)
 
143
                        *dst++ = '?';
 
144
                else
 
145
                        *dst++ = c + '@';
 
146
        } else {
 
147
                *dst++ = '-';
 
148
                *dst++ = c;
 
149
        }
 
150
done:
 
151
        *dst = '\0';
 
152
        return (dst);
 
153
}
 
154
 
 
155
/*
 
156
 * strvis, strvisx - visually encode characters from src into dst
 
157
 *
 
158
 *      Dst must be 4 times the size of src to account for possible
 
159
 *      expansion.  The length of dst, not including the trailing NULL,
 
160
 *      is returned.
 
161
 *
 
162
 *      Strvisx encodes exactly len bytes from src into dst.
 
163
 *      This is useful for encoding a block of data.
 
164
 */
 
165
int
 
166
strvis(dst, src, flag)
 
167
        register char *dst;
 
168
        register const char *src;
 
169
        int flag;
 
170
{
 
171
        register char c;
 
172
        char *start;
 
173
 
 
174
        for (start = dst; (c = *src);)
 
175
                dst = vis(dst, c, flag, *++src);
 
176
        *dst = '\0';
 
177
        return (dst - start);
 
178
}
 
179
 
 
180
int
 
181
strvisx(dst, src, len, flag)
 
182
        register char *dst;
 
183
        register const char *src;
 
184
        register size_t len;
 
185
        int flag;
 
186
{
 
187
        register char c;
 
188
        char *start;
 
189
 
 
190
        for (start = dst; len > 1; len--) {
 
191
                c = *src;
 
192
                dst = vis(dst, c, flag, *++src);
 
193
        }
 
194
        if (len)
 
195
                dst = vis(dst, *src, flag, '\0');
 
196
        *dst = '\0';
 
197
 
 
198
        return (dst - start);
 
199
}
 
200
#else
 
201
static void avoid_error __P((void));
 
202
static void avoid_error()
 
203
{
 
204
        avoid_error();
 
205
}
 
206
#endif /* !HAVE_STRVIS */