Home | History | Annotate | Line # | Download | only in dd
conv.c revision 1.8.10.1
      1  1.8.10.1    itojun /*	$NetBSD: conv.c,v 1.8.10.1 2000/07/27 16:15:28 itojun Exp $	*/
      2       1.4       cgd 
      3       1.1     glass /*-
      4       1.3   mycroft  * Copyright (c) 1991, 1993, 1994
      5       1.3   mycroft  *	The Regents of the University of California.  All rights reserved.
      6       1.1     glass  *
      7       1.1     glass  * This code is derived from software contributed to Berkeley by
      8       1.1     glass  * Keith Muller of the University of California, San Diego and Lance
      9       1.1     glass  * Visser of Convex Computer Corporation.
     10       1.1     glass  *
     11       1.1     glass  * Redistribution and use in source and binary forms, with or without
     12       1.1     glass  * modification, are permitted provided that the following conditions
     13       1.1     glass  * are met:
     14       1.1     glass  * 1. Redistributions of source code must retain the above copyright
     15       1.1     glass  *    notice, this list of conditions and the following disclaimer.
     16       1.1     glass  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1     glass  *    notice, this list of conditions and the following disclaimer in the
     18       1.1     glass  *    documentation and/or other materials provided with the distribution.
     19       1.1     glass  * 3. All advertising materials mentioning features or use of this software
     20       1.1     glass  *    must display the following acknowledgement:
     21       1.1     glass  *	This product includes software developed by the University of
     22       1.1     glass  *	California, Berkeley and its contributors.
     23       1.1     glass  * 4. Neither the name of the University nor the names of its contributors
     24       1.1     glass  *    may be used to endorse or promote products derived from this software
     25       1.1     glass  *    without specific prior written permission.
     26       1.1     glass  *
     27       1.1     glass  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     28       1.1     glass  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29       1.1     glass  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30       1.1     glass  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     31       1.1     glass  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     32       1.1     glass  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     33       1.1     glass  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34       1.1     glass  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35       1.1     glass  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36       1.1     glass  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37       1.1     glass  * SUCH DAMAGE.
     38       1.1     glass  */
     39       1.1     glass 
     40       1.7  christos #include <sys/cdefs.h>
     41       1.1     glass #ifndef lint
     42       1.4       cgd #if 0
     43       1.4       cgd static char sccsid[] = "@(#)conv.c	8.3 (Berkeley) 4/2/94";
     44       1.4       cgd #else
     45  1.8.10.1    itojun __RCSID("$NetBSD: conv.c,v 1.8.10.1 2000/07/27 16:15:28 itojun Exp $");
     46       1.4       cgd #endif
     47       1.1     glass #endif /* not lint */
     48       1.1     glass 
     49       1.1     glass #include <sys/param.h>
     50       1.1     glass 
     51       1.3   mycroft #include <err.h>
     52       1.1     glass #include <string.h>
     53       1.1     glass 
     54       1.1     glass #include "dd.h"
     55       1.1     glass #include "extern.h"
     56       1.1     glass 
     57       1.1     glass /*
     58       1.1     glass  * def --
     59       1.1     glass  * Copy input to output.  Input is buffered until reaches obs, and then
     60       1.1     glass  * output until less than obs remains.  Only a single buffer is used.
     61       1.1     glass  * Worst case buffer calculation is (ibs + obs - 1).
     62       1.1     glass  */
     63       1.1     glass void
     64       1.1     glass def()
     65       1.1     glass {
     66       1.3   mycroft 	int cnt;
     67       1.6       jtc 	u_char *inp;
     68       1.6       jtc 	const u_char *t;
     69       1.1     glass 
     70       1.7  christos 	if ((t = ctab) != NULL)
     71       1.1     glass 		for (inp = in.dbp - (cnt = in.dbrcnt); cnt--; ++inp)
     72       1.1     glass 			*inp = t[*inp];
     73       1.1     glass 
     74       1.1     glass 	/* Make the output buffer look right. */
     75       1.1     glass 	out.dbp = in.dbp;
     76       1.1     glass 	out.dbcnt = in.dbcnt;
     77       1.1     glass 
     78       1.1     glass 	if (in.dbcnt >= out.dbsz) {
     79       1.1     glass 		/* If the output buffer is full, write it. */
     80       1.1     glass 		dd_out(0);
     81       1.1     glass 
     82       1.1     glass 		/*
     83       1.1     glass 		 * Ddout copies the leftover output to the beginning of
     84       1.1     glass 		 * the buffer and resets the output buffer.  Reset the
     85       1.1     glass 		 * input buffer to match it.
     86       1.1     glass 	 	 */
     87       1.1     glass 		in.dbp = out.dbp;
     88       1.1     glass 		in.dbcnt = out.dbcnt;
     89       1.1     glass 	}
     90       1.1     glass }
     91       1.1     glass 
     92       1.1     glass void
     93       1.1     glass def_close()
     94       1.1     glass {
     95       1.1     glass 	/* Just update the count, everything is already in the buffer. */
     96       1.1     glass 	if (in.dbcnt)
     97       1.1     glass 		out.dbcnt = in.dbcnt;
     98       1.1     glass }
     99       1.1     glass 
    100       1.5       gwr #ifdef	NO_CONV
    101       1.5       gwr /* Build a smaller version (i.e. for a miniroot) */
    102       1.5       gwr /* These can not be called, but just in case...  */
    103       1.5       gwr static char no_block[] = "unblock and -DNO_CONV?";
    104  1.8.10.1    itojun void block()       { errx(1, "%s", no_block + 2); }
    105  1.8.10.1    itojun void block_close() { errx(1, "%s", no_block + 2); }
    106  1.8.10.1    itojun void unblock()       { errx(1, "%s", no_block); }
    107  1.8.10.1    itojun void unblock_close() { errx(1, "%s", no_block); }
    108       1.5       gwr #else	/* NO_CONV */
    109       1.5       gwr 
    110       1.1     glass /*
    111       1.1     glass  * Copy variable length newline terminated records with a max size cbsz
    112       1.1     glass  * bytes to output.  Records less than cbs are padded with spaces.
    113       1.1     glass  *
    114       1.1     glass  * max in buffer:  MAX(ibs, cbsz)
    115       1.1     glass  * max out buffer: obs + cbsz
    116       1.1     glass  */
    117       1.1     glass void
    118       1.1     glass block()
    119       1.1     glass {
    120       1.1     glass 	static int intrunc;
    121       1.7  christos 	int ch = 0;	/* pacify gcc */
    122       1.7  christos 	int cnt, maxlen;
    123       1.6       jtc 	u_char *inp, *outp;
    124       1.6       jtc 	const u_char *t;
    125       1.1     glass 
    126       1.1     glass 	/*
    127       1.1     glass 	 * Record truncation can cross block boundaries.  If currently in a
    128       1.1     glass 	 * truncation state, keep tossing characters until reach a newline.
    129       1.1     glass 	 * Start at the beginning of the buffer, as the input buffer is always
    130       1.1     glass 	 * left empty.
    131       1.1     glass 	 */
    132       1.1     glass 	if (intrunc) {
    133       1.1     glass 		for (inp = in.db, cnt = in.dbrcnt;
    134       1.1     glass 		    cnt && *inp++ != '\n'; --cnt);
    135       1.1     glass 		if (!cnt) {
    136       1.1     glass 			in.dbcnt = 0;
    137       1.1     glass 			in.dbp = in.db;
    138       1.1     glass 			return;
    139       1.1     glass 		}
    140       1.1     glass 		intrunc = 0;
    141       1.1     glass 		/* Adjust the input buffer numbers. */
    142       1.1     glass 		in.dbcnt = cnt - 1;
    143       1.1     glass 		in.dbp = inp + cnt - 1;
    144       1.1     glass 	}
    145       1.1     glass 
    146       1.1     glass 	/*
    147       1.1     glass 	 * Copy records (max cbsz size chunks) into the output buffer.  The
    148       1.1     glass 	 * translation is done as we copy into the output buffer.
    149       1.1     glass 	 */
    150       1.1     glass 	for (inp = in.dbp - in.dbcnt, outp = out.dbp; in.dbcnt;) {
    151       1.1     glass 		maxlen = MIN(cbsz, in.dbcnt);
    152       1.7  christos 		if ((t = ctab) != NULL)
    153       1.1     glass 			for (cnt = 0;
    154       1.1     glass 			    cnt < maxlen && (ch = *inp++) != '\n'; ++cnt)
    155       1.1     glass 				*outp++ = t[ch];
    156       1.1     glass 		else
    157       1.1     glass 			for (cnt = 0;
    158       1.1     glass 			    cnt < maxlen && (ch = *inp++) != '\n'; ++cnt)
    159       1.1     glass 				*outp++ = ch;
    160       1.1     glass 		/*
    161       1.1     glass 		 * Check for short record without a newline.  Reassemble the
    162       1.1     glass 		 * input block.
    163       1.1     glass 		 */
    164       1.1     glass 		if (ch != '\n' && in.dbcnt < cbsz) {
    165       1.8   mycroft 			(void)memmove(in.db, in.dbp - in.dbcnt, in.dbcnt);
    166       1.1     glass 			break;
    167       1.1     glass 		}
    168       1.1     glass 
    169       1.1     glass 		/* Adjust the input buffer numbers. */
    170       1.1     glass 		in.dbcnt -= cnt;
    171       1.1     glass 		if (ch == '\n')
    172       1.1     glass 			--in.dbcnt;
    173       1.1     glass 
    174       1.1     glass 		/* Pad short records with spaces. */
    175       1.1     glass 		if (cnt < cbsz)
    176       1.1     glass 			(void)memset(outp, ctab ? ctab[' '] : ' ', cbsz - cnt);
    177       1.1     glass 		else {
    178       1.1     glass 			/*
    179       1.1     glass 			 * If the next character wouldn't have ended the
    180       1.1     glass 			 * block, it's a truncation.
    181       1.1     glass 			 */
    182       1.1     glass 			if (!in.dbcnt || *inp != '\n')
    183       1.1     glass 				++st.trunc;
    184       1.1     glass 
    185       1.1     glass 			/* Toss characters to a newline. */
    186       1.1     glass 			for (; in.dbcnt && *inp++ != '\n'; --in.dbcnt);
    187       1.1     glass 			if (!in.dbcnt)
    188       1.1     glass 				intrunc = 1;
    189       1.1     glass 			else
    190       1.1     glass 				--in.dbcnt;
    191       1.1     glass 		}
    192       1.1     glass 
    193       1.1     glass 		/* Adjust output buffer numbers. */
    194       1.1     glass 		out.dbp += cbsz;
    195       1.1     glass 		if ((out.dbcnt += cbsz) >= out.dbsz)
    196       1.1     glass 			dd_out(0);
    197       1.1     glass 		outp = out.dbp;
    198       1.1     glass 	}
    199       1.1     glass 	in.dbp = in.db + in.dbcnt;
    200       1.1     glass }
    201       1.1     glass 
    202       1.1     glass void
    203       1.1     glass block_close()
    204       1.1     glass {
    205       1.1     glass 	/*
    206       1.1     glass 	 * Copy any remaining data into the output buffer and pad to a record.
    207       1.1     glass 	 * Don't worry about truncation or translation, the input buffer is
    208       1.1     glass 	 * always empty when truncating, and no characters have been added for
    209       1.1     glass 	 * translation.  The bottom line is that anything left in the input
    210       1.1     glass 	 * buffer is a truncated record.  Anything left in the output buffer
    211       1.1     glass 	 * just wasn't big enough.
    212       1.1     glass 	 */
    213       1.1     glass 	if (in.dbcnt) {
    214       1.1     glass 		++st.trunc;
    215       1.8   mycroft 		(void)memmove(out.dbp, in.dbp - in.dbcnt, in.dbcnt);
    216       1.1     glass 		(void)memset(out.dbp + in.dbcnt,
    217       1.1     glass 		    ctab ? ctab[' '] : ' ', cbsz - in.dbcnt);
    218       1.1     glass 		out.dbcnt += cbsz;
    219       1.1     glass 	}
    220       1.1     glass }
    221       1.1     glass 
    222       1.1     glass /*
    223       1.1     glass  * Convert fixed length (cbsz) records to variable length.  Deletes any
    224       1.1     glass  * trailing blanks and appends a newline.
    225       1.1     glass  *
    226       1.1     glass  * max in buffer:  MAX(ibs, cbsz) + cbsz
    227       1.1     glass  * max out buffer: obs + cbsz
    228       1.1     glass  */
    229       1.1     glass void
    230       1.1     glass unblock()
    231       1.1     glass {
    232       1.3   mycroft 	int cnt;
    233       1.6       jtc 	u_char *inp;
    234       1.6       jtc 	const u_char *t;
    235       1.1     glass 
    236       1.1     glass 	/* Translation and case conversion. */
    237       1.7  christos 	if ((t = ctab) != NULL)
    238       1.1     glass 		for (cnt = in.dbrcnt, inp = in.dbp; cnt--;)
    239       1.1     glass 			*--inp = t[*inp];
    240       1.1     glass 	/*
    241       1.1     glass 	 * Copy records (max cbsz size chunks) into the output buffer.  The
    242       1.1     glass 	 * translation has to already be done or we might not recognize the
    243       1.1     glass 	 * spaces.
    244       1.1     glass 	 */
    245       1.1     glass 	for (inp = in.db; in.dbcnt >= cbsz; inp += cbsz, in.dbcnt -= cbsz) {
    246       1.1     glass 		for (t = inp + cbsz - 1; t >= inp && *t == ' '; --t);
    247       1.1     glass 		if (t >= inp) {
    248       1.1     glass 			cnt = t - inp + 1;
    249       1.8   mycroft 			(void)memmove(out.dbp, inp, cnt);
    250       1.1     glass 			out.dbp += cnt;
    251       1.1     glass 			out.dbcnt += cnt;
    252       1.1     glass 		}
    253       1.1     glass 		++out.dbcnt;
    254       1.1     glass 		*out.dbp++ = '\n';
    255       1.1     glass 		if (out.dbcnt >= out.dbsz)
    256       1.1     glass 			dd_out(0);
    257       1.1     glass 	}
    258       1.1     glass 	if (in.dbcnt)
    259       1.8   mycroft 		(void)memmove(in.db, in.dbp - in.dbcnt, in.dbcnt);
    260       1.1     glass 	in.dbp = in.db + in.dbcnt;
    261       1.1     glass }
    262       1.1     glass 
    263       1.1     glass void
    264       1.1     glass unblock_close()
    265       1.1     glass {
    266       1.3   mycroft 	int cnt;
    267       1.3   mycroft 	u_char *t;
    268       1.1     glass 
    269       1.1     glass 	if (in.dbcnt) {
    270       1.3   mycroft 		warnx("%s: short input record", in.name);
    271       1.1     glass 		for (t = in.db + in.dbcnt - 1; t >= in.db && *t == ' '; --t);
    272       1.1     glass 		if (t >= in.db) {
    273       1.1     glass 			cnt = t - in.db + 1;
    274       1.8   mycroft 			(void)memmove(out.dbp, in.db, cnt);
    275       1.1     glass 			out.dbp += cnt;
    276       1.1     glass 			out.dbcnt += cnt;
    277       1.1     glass 		}
    278       1.1     glass 		++out.dbcnt;
    279       1.1     glass 		*out.dbp++ = '\n';
    280       1.1     glass 	}
    281       1.1     glass }
    282       1.5       gwr 
    283       1.5       gwr #endif	/* NO_CONV */
    284