]>
git.saurik.com Git - apple/file_cmds.git/blob - dd/conv.c
855a7943de252ae234594ba4d588490bbf1ea1f4
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Keith Muller of the University of California, San Diego and Lance
7 * Visser of Convex Computer Corporation.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the University of
20 * California, Berkeley and its contributors.
21 * 4. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 static char sccsid
[] = "@(#)conv.c 8.3 (Berkeley) 4/2/94";
42 static const char rcsid
[] =
43 "$FreeBSD: src/bin/dd/conv.c,v 1.16 2002/02/02 06:24:12 imp Exp $";
46 #include <sys/param.h>
56 * Copy input to output. Input is buffered until reaches obs, and then
57 * output until less than obs remains. Only a single buffer is used.
58 * Worst case buffer calculation is (ibs + obs - 1).
67 if ((t
= ctab
) != NULL
)
68 for (inp
= in
.dbp
- (cnt
= in
.dbrcnt
); cnt
--; ++inp
)
71 /* Make the output buffer look right. */
75 if (in
.dbcnt
>= out
.dbsz
) {
76 /* If the output buffer is full, write it. */
80 * Ddout copies the leftover output to the beginning of
81 * the buffer and resets the output buffer. Reset the
82 * input buffer to match it.
92 /* Just update the count, everything is already in the buffer. */
98 * Copy variable length newline terminated records with a max size cbsz
99 * bytes to output. Records less than cbs are padded with spaces.
101 * max in buffer: MAX(ibs, cbsz)
102 * max out buffer: obs + cbsz
114 * Record truncation can cross block boundaries. If currently in a
115 * truncation state, keep tossing characters until reach a newline.
116 * Start at the beginning of the buffer, as the input buffer is always
120 for (inp
= in
.db
, cnt
= in
.dbrcnt
; cnt
&& *inp
++ != '\n'; --cnt
)
128 /* Adjust the input buffer numbers. */
130 in
.dbp
= inp
+ cnt
- 1;
134 * Copy records (max cbsz size chunks) into the output buffer. The
135 * translation is done as we copy into the output buffer.
138 for (inp
= in
.dbp
- in
.dbcnt
, outp
= out
.dbp
; in
.dbcnt
;) {
139 maxlen
= MIN(cbsz
, in
.dbcnt
);
140 if ((t
= ctab
) != NULL
)
141 for (cnt
= 0; cnt
< maxlen
&& (ch
= *inp
++) != '\n';
145 for (cnt
= 0; cnt
< maxlen
&& (ch
= *inp
++) != '\n';
149 * Check for short record without a newline. Reassemble the
152 if (ch
!= '\n' && in
.dbcnt
< cbsz
) {
153 (void)memmove(in
.db
, in
.dbp
- in
.dbcnt
, in
.dbcnt
);
157 /* Adjust the input buffer numbers. */
162 /* Pad short records with spaces. */
164 (void)memset(outp
, ctab
? ctab
[' '] : ' ', cbsz
- cnt
);
167 * If the next character wouldn't have ended the
168 * block, it's a truncation.
170 if (!in
.dbcnt
|| *inp
!= '\n')
173 /* Toss characters to a newline. */
174 for (; in
.dbcnt
&& *inp
++ != '\n'; --in
.dbcnt
);
181 /* Adjust output buffer numbers. */
183 if ((out
.dbcnt
+= cbsz
) >= out
.dbsz
)
187 in
.dbp
= in
.db
+ in
.dbcnt
;
194 * Copy any remaining data into the output buffer and pad to a record.
195 * Don't worry about truncation or translation, the input buffer is
196 * always empty when truncating, and no characters have been added for
197 * translation. The bottom line is that anything left in the input
198 * buffer is a truncated record. Anything left in the output buffer
199 * just wasn't big enough.
203 (void)memmove(out
.dbp
, in
.dbp
- in
.dbcnt
, in
.dbcnt
);
204 (void)memset(out
.dbp
+ in
.dbcnt
, ctab
? ctab
[' '] : ' ',
211 * Convert fixed length (cbsz) records to variable length. Deletes any
212 * trailing blanks and appends a newline.
214 * max in buffer: MAX(ibs, cbsz) + cbsz
215 * max out buffer: obs + cbsz
224 /* Translation and case conversion. */
225 if ((t
= ctab
) != NULL
)
226 for (cnt
= in
.dbrcnt
, inp
= in
.dbp
; cnt
--;)
229 * Copy records (max cbsz size chunks) into the output buffer. The
230 * translation has to already be done or we might not recognize the
233 for (inp
= in
.db
; in
.dbcnt
>= cbsz
; inp
+= cbsz
, in
.dbcnt
-= cbsz
) {
234 for (t
= inp
+ cbsz
- 1; t
>= inp
&& *t
== ' '; --t
)
238 (void)memmove(out
.dbp
, inp
, cnt
);
243 if (++out
.dbcnt
>= out
.dbsz
)
247 (void)memmove(in
.db
, in
.dbp
- in
.dbcnt
, in
.dbcnt
);
248 in
.dbp
= in
.db
+ in
.dbcnt
;
258 warnx("%s: short input record", in
.name
);
259 for (t
= in
.db
+ in
.dbcnt
- 1; t
>= in
.db
&& *t
== ' '; --t
)
263 (void)memmove(out
.dbp
, in
.db
, cnt
);