1 .\" $NetBSD: unvis.3,v 1.20 2010/11/28 01:28:21 wiz Exp $
3 .\" Copyright (c) 1989, 1991, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
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.
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
30 .\" @(#)unvis.3 8.2 (Berkeley) 12/11/93
38 .Nd decode a visual representation of characters
44 .Fn unvis "char *cp" "int c" "int *astate" "int flag"
46 .Fn strunvis "char *dst" "const char *src"
48 .Fn strunvisx "char *dst" "const char *src" "int flag"
56 are used to decode a visual representation of characters, as produced
64 function is called with successive characters in
66 until a valid sequence is recognized, at which time the decoded
67 character is available at the character pointed to by
72 function decodes the characters pointed to by
74 into the buffer pointed to by
78 function simply copies
82 decoding any escape sequences along the way,
83 and returns the number of characters placed into
86 invalid escape sequence was detected.
89 should be equal to the size of
91 (that is, no expansion takes place during decoding).
95 function does the same as the
98 but it allows you to add a flag that specifies the style the string
101 Currently, the supported flags are:
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
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.
117 with each successive byte, along with a pointer
118 to this integer, and a pointer to a destination character.
121 function has several return codes that must be handled properly.
123 .Bl -tag -width UNVIS_VALIDPUSH
125 Another character is necessary; nothing has been recognized yet.
127 A valid character has been recognized and is available at the location
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
134 A valid sequence was detected, but no character was produced.
135 This return code is necessary to indicate a logical break between characters.
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
143 one more time with flag set to
145 to extract any remaining character (the character passed in is ignored).
149 argument is also used to specify the encoding style of the source.
155 will decode URI strings as specified in RFC 1808.
159 will decode URI strings as specified in RFC 1866.
163 will decode MIME Quoted-Printable strings as specified in RFC 2045.
167 will not decode \e quoted characters.
169 The following code fragment illustrates a proper use of
171 .Bd -literal -offset indent
175 while ((ch = getchar()) != EOF) {
177 switch(unvis(\*[Am]out, ch, \*[Am]state, 0)) {
184 case UNVIS_VALIDPUSH:
188 errx(EXIT_FAILURE, "Bad character sequence!");
191 if (unvis(\*[Am]out, '\e0', \*[Am]state, UNVIS_END) == UNVIS_VALID)
200 .%T Relative Uniform Resource Locators