Home | History | Annotate | Line # | Download | only in dd
misc.c revision 1.17
      1  1.17  jschauma /*	$NetBSD: misc.c,v 1.17 2003/09/14 19:20:20 jschauma 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.16       agc  * 3. Neither the name of the University nor the names of its contributors
     20   1.1     glass  *    may be used to endorse or promote products derived from this software
     21   1.1     glass  *    without specific prior written permission.
     22   1.1     glass  *
     23   1.1     glass  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1     glass  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1     glass  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1     glass  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1     glass  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1     glass  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1     glass  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1     glass  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1     glass  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1     glass  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1     glass  * SUCH DAMAGE.
     34   1.1     glass  */
     35   1.1     glass 
     36   1.5  christos #include <sys/cdefs.h>
     37   1.1     glass #ifndef lint
     38   1.4       cgd #if 0
     39   1.4       cgd static char sccsid[] = "@(#)misc.c	8.3 (Berkeley) 4/2/94";
     40   1.4       cgd #else
     41  1.17  jschauma __RCSID("$NetBSD: misc.c,v 1.17 2003/09/14 19:20:20 jschauma Exp $");
     42   1.4       cgd #endif
     43   1.1     glass #endif /* not lint */
     44   1.1     glass 
     45  1.15  jschauma #include <sys/param.h>
     46   1.1     glass #include <sys/types.h>
     47  1.11      ross #include <sys/time.h>
     48   1.1     glass 
     49   1.3   mycroft #include <err.h>
     50   1.1     glass #include <stdio.h>
     51   1.1     glass #include <stdlib.h>
     52   1.1     glass #include <string.h>
     53   1.1     glass #include <unistd.h>
     54  1.11      ross #include <inttypes.h>
     55  1.15  jschauma #include <vis.h>
     56   1.1     glass 
     57   1.1     glass #include "dd.h"
     58   1.1     glass #include "extern.h"
     59   1.1     glass 
     60  1.11      ross #define	tv2mS(tv) ((tv).tv_sec * 1000LL + ((tv).tv_usec + 500) / 1000)
     61  1.11      ross 
     62   1.1     glass void
     63  1.12     lukem summary(void)
     64   1.1     glass {
     65   1.1     glass 	char buf[100];
     66  1.11      ross 	int64_t mS;
     67  1.11      ross 	struct timeval tv;
     68   1.9   hubertf 
     69   1.9   hubertf 	if (progress)
     70   1.9   hubertf 		(void)write(STDERR_FILENO, "\n", 1);
     71   1.1     glass 
     72  1.11      ross 	(void)gettimeofday(&tv, NULL);
     73  1.11      ross 	mS = tv2mS(tv) - tv2mS(st.start);
     74  1.11      ross 	if (mS == 0)
     75  1.11      ross 		mS = 1;
     76   1.1     glass 	/* Use snprintf(3) so that we don't reenter stdio(3). */
     77   1.1     glass 	(void)snprintf(buf, sizeof(buf),
     78  1.13     lukem 	    "%llu+%llu records in\n%llu+%llu records out\n",
     79  1.13     lukem 	    (unsigned long long)st.in_full,  (unsigned long long)st.in_part,
     80  1.13     lukem 	    (unsigned long long)st.out_full, (unsigned long long)st.out_part);
     81   1.1     glass 	(void)write(STDERR_FILENO, buf, strlen(buf));
     82   1.1     glass 	if (st.swab) {
     83  1.13     lukem 		(void)snprintf(buf, sizeof(buf), "%llu odd length swab %s\n",
     84  1.14     enami 		    (unsigned long long)st.swab,
     85  1.14     enami 		    (st.swab == 1) ? "block" : "blocks");
     86   1.1     glass 		(void)write(STDERR_FILENO, buf, strlen(buf));
     87   1.1     glass 	}
     88   1.1     glass 	if (st.trunc) {
     89  1.13     lukem 		(void)snprintf(buf, sizeof(buf), "%llu truncated %s\n",
     90  1.14     enami 		    (unsigned long long)st.trunc,
     91  1.14     enami 		    (st.trunc == 1) ? "block" : "blocks");
     92   1.1     glass 		(void)write(STDERR_FILENO, buf, strlen(buf));
     93   1.1     glass 	}
     94   1.1     glass 	(void)snprintf(buf, sizeof(buf),
     95  1.11      ross 	    "%llu bytes transferred in %lu.%03d secs (%llu bytes/sec)\n",
     96  1.13     lukem 	    (unsigned long long) st.bytes,
     97  1.11      ross 	    (long) (mS / 1000),
     98  1.11      ross 	    (int) (mS % 1000),
     99  1.13     lukem 	    (unsigned long long) (st.bytes * 1000LL / mS));
    100   1.1     glass 	(void)write(STDERR_FILENO, buf, strlen(buf));
    101   1.1     glass }
    102   1.1     glass 
    103   1.1     glass /* ARGSUSED */
    104   1.1     glass void
    105  1.12     lukem summaryx(int notused)
    106   1.1     glass {
    107   1.3   mycroft 
    108   1.3   mycroft 	summary();
    109   1.1     glass }
    110   1.1     glass 
    111   1.3   mycroft /* ARGSUSED */
    112   1.1     glass void
    113  1.12     lukem terminate(int notused)
    114   1.1     glass {
    115   1.1     glass 
    116   1.3   mycroft 	exit(0);
    117   1.8   mycroft 	/* NOTREACHED */
    118   1.1     glass }
    119