misc.c revision 1.12 1 1.12 lukem /* $NetBSD: misc.c,v 1.12 2001/11/25 06:53:48 lukem 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.5 christos #include <sys/cdefs.h>
41 1.1 glass #ifndef lint
42 1.4 cgd #if 0
43 1.4 cgd static char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94";
44 1.4 cgd #else
45 1.12 lukem __RCSID("$NetBSD: misc.c,v 1.12 2001/11/25 06:53:48 lukem Exp $");
46 1.4 cgd #endif
47 1.1 glass #endif /* not lint */
48 1.1 glass
49 1.1 glass #include <sys/types.h>
50 1.11 ross #include <sys/time.h>
51 1.1 glass
52 1.3 mycroft #include <err.h>
53 1.1 glass #include <stdio.h>
54 1.1 glass #include <stdlib.h>
55 1.1 glass #include <string.h>
56 1.1 glass #include <unistd.h>
57 1.11 ross #include <inttypes.h>
58 1.1 glass
59 1.1 glass #include "dd.h"
60 1.1 glass #include "extern.h"
61 1.1 glass
62 1.11 ross #define tv2mS(tv) ((tv).tv_sec * 1000LL + ((tv).tv_usec + 500) / 1000)
63 1.11 ross
64 1.1 glass void
65 1.12 lukem summary(void)
66 1.1 glass {
67 1.1 glass char buf[100];
68 1.11 ross int64_t mS;
69 1.11 ross struct timeval tv;
70 1.9 hubertf
71 1.9 hubertf if (progress)
72 1.9 hubertf (void)write(STDERR_FILENO, "\n", 1);
73 1.1 glass
74 1.11 ross (void)gettimeofday(&tv, NULL);
75 1.11 ross mS = tv2mS(tv) - tv2mS(st.start);
76 1.11 ross if (mS == 0)
77 1.11 ross mS = 1;
78 1.1 glass /* Use snprintf(3) so that we don't reenter stdio(3). */
79 1.1 glass (void)snprintf(buf, sizeof(buf),
80 1.5 christos "%lu+%lu records in\n%lu+%lu records out\n",
81 1.1 glass st.in_full, st.in_part, st.out_full, st.out_part);
82 1.1 glass (void)write(STDERR_FILENO, buf, strlen(buf));
83 1.1 glass if (st.swab) {
84 1.5 christos (void)snprintf(buf, sizeof(buf), "%lu odd length swab %s\n",
85 1.1 glass st.swab, (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.5 christos (void)snprintf(buf, sizeof(buf), "%lu truncated %s\n",
90 1.1 glass st.trunc, (st.trunc == 1) ? "block" : "blocks");
91 1.1 glass (void)write(STDERR_FILENO, buf, strlen(buf));
92 1.1 glass }
93 1.1 glass (void)snprintf(buf, sizeof(buf),
94 1.11 ross "%llu bytes transferred in %lu.%03d secs (%llu bytes/sec)\n",
95 1.11 ross (long long) st.bytes,
96 1.11 ross (long) (mS / 1000),
97 1.11 ross (int) (mS % 1000),
98 1.11 ross (long long unsigned) (st.bytes * 1000LL / mS));
99 1.1 glass (void)write(STDERR_FILENO, buf, strlen(buf));
100 1.1 glass }
101 1.1 glass
102 1.1 glass /* ARGSUSED */
103 1.1 glass void
104 1.12 lukem summaryx(int notused)
105 1.1 glass {
106 1.3 mycroft
107 1.3 mycroft summary();
108 1.1 glass }
109 1.1 glass
110 1.3 mycroft /* ARGSUSED */
111 1.1 glass void
112 1.12 lukem terminate(int notused)
113 1.1 glass {
114 1.1 glass
115 1.3 mycroft exit(0);
116 1.8 mycroft /* NOTREACHED */
117 1.1 glass }
118