VM: simplify slab allocator
[minix.git] / lib / libc / gen / unvis.3
blob3f6fdc550e0e1dd5bfe7492f7b289d27209de0b0
1 .\"     $NetBSD: unvis.3,v 1.20 2010/11/28 01:28:21 wiz Exp $
2 .\"
3 .\" Copyright (c) 1989, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)unvis.3     8.2 (Berkeley) 12/11/93
31 .\"
32 .Dd November 27, 2010
33 .Dt UNVIS 3
34 .Os
35 .Sh NAME
36 .Nm unvis ,
37 .Nm strunvis
38 .Nd decode a visual representation of characters
39 .Sh LIBRARY
40 .Lb libc
41 .Sh SYNOPSIS
42 .In vis.h
43 .Ft int
44 .Fn unvis "char *cp" "int c" "int *astate" "int flag"
45 .Ft int
46 .Fn strunvis "char *dst" "const char *src"
47 .Ft int
48 .Fn strunvisx "char *dst" "const char *src" "int flag"
49 .Sh DESCRIPTION
50 The
51 .Fn unvis ,
52 .Fn strunvis
53 and
54 .Fn strunvisx
55 functions
56 are used to decode a visual representation of characters, as produced
57 by the
58 .Xr vis 3
59 function, back into
60 the original form.
61 .Pp
62 The
63 .Fn unvis
64 function is called with successive characters in
65 .Ar c
66 until a valid sequence is recognized, at which time the decoded
67 character is available at the character pointed to by
68 .Ar cp .
69 .Pp
70 The
71 .Fn strunvis
72 function decodes the characters pointed to by
73 .Ar src
74 into the buffer pointed to by
75 .Ar dst .
76 The
77 .Fn strunvis
78 function simply copies
79 .Ar src
81 .Ar dst ,
82 decoding any escape sequences along the way,
83 and returns the number of characters placed into
84 .Ar dst ,
85 or \-1 if an
86 invalid escape sequence was detected.
87 The size of
88 .Ar dst
89 should be equal to the size of
90 .Ar src
91 (that is, no expansion takes place during decoding).
92 .Pp
93 The
94 .Fn strunvisx
95 function does the same as the
96 .Fn strunvis
97 function,
98 but it allows you to add a flag that specifies the style the string
99 .Ar src
100 is encoded with.
101 Currently, the supported flags are:
102 .Dv VIS_HTTPSTYLE
104 .Dv VIS_MIMESTYLE .
107 .Fn unvis
108 function implements a state machine that can be used to decode an
109 arbitrary stream of bytes.
110 All state associated with the bytes being decoded is stored outside the
111 .Fn unvis
112 function (that is, a pointer to the state is passed in), so
113 calls decoding different streams can be freely intermixed.
114 To start decoding a stream of bytes, first initialize an integer to zero.
115 Call
116 .Fn unvis
117 with each successive byte, along with a pointer
118 to this integer, and a pointer to a destination character.
120 .Fn unvis
121 function has several return codes that must be handled properly.
122 They are:
123 .Bl -tag -width UNVIS_VALIDPUSH
124 .It Li \&0 (zero)
125 Another character is necessary; nothing has been recognized yet.
126 .It Dv UNVIS_VALID
127 A valid character has been recognized and is available at the location
128 pointed to by cp.
129 .It Dv UNVIS_VALIDPUSH
130 A valid character has been recognized and is available at the location
131 pointed to by cp; however, the character currently passed in should
132 be passed in again.
133 .It Dv UNVIS_NOCHAR
134 A valid sequence was detected, but no character was produced.
135 This return code is necessary to indicate a logical break between characters.
136 .It Dv UNVIS_SYNBAD
137 An invalid escape sequence was detected, or the decoder is in an unknown state.
138 The decoder is placed into the starting state.
141 When all bytes in the stream have been processed, call
142 .Fn unvis
143 one more time with flag set to
144 .Dv UNVIS_END
145 to extract any remaining character (the character passed in is ignored).
148 .Ar flag
149 argument is also used to specify the encoding style of the source.
150 If set to
151 .Dv VIS_HTTPSTYLE
153 .Dv VIS_HTTP1808 ,
154 .Fn unvis
155 will decode URI strings as specified in RFC 1808.
156 If set to
157 .Dv VIS_HTTP1866 ,
158 .Fn unvis
159 will decode URI strings as specified in RFC 1866.
160 If set to
161 .Dv VIS_MIMESTYLE ,
162 .Fn unvis
163 will decode MIME Quoted-Printable strings as specified in RFC 2045.
164 If set to
165 .Dv VIS_NOESCAPE ,
166 .Fn unvis
167 will not decode \e quoted characters.
169 The following code fragment illustrates a proper use of
170 .Fn unvis .
171 .Bd -literal -offset indent
172 int state = 0;
173 char out;
175 while ((ch = getchar()) != EOF) {
176 again:
177         switch(unvis(\*[Am]out, ch, \*[Am]state, 0)) {
178         case 0:
179         case UNVIS_NOCHAR:
180                 break;
181         case UNVIS_VALID:
182                 (void)putchar(out);
183                 break;
184         case UNVIS_VALIDPUSH:
185                 (void)putchar(out);
186                 goto again;
187         case UNVIS_SYNBAD:
188                 errx(EXIT_FAILURE, "Bad character sequence!");
189         }
191 if (unvis(\*[Am]out, '\e0', \*[Am]state, UNVIS_END) == UNVIS_VALID)
192         (void)putchar(out);
194 .Sh SEE ALSO
195 .Xr unvis 1 ,
196 .Xr vis 1 ,
197 .Xr vis 3
199 .%A R. Fielding
200 .%T Relative Uniform Resource Locators
201 .%O RFC1808
203 .Sh HISTORY
205 .Fn unvis
206 function
207 first appeared in
208 .Bx 4.4 .