879568742c9229f5e4ad2c4b1062bbf294a5e1be
[dragonfly.git] / usr.bin / head / head.c
1 /*
2  * Copyright (c) 1980, 1987, 1992, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * @(#) Copyright (c) 1980, 1987, 1992, 1993 The Regents of the University of California.  All rights reserved.
34  * @(#)head.c   8.2 (Berkeley) 5/4/95
35  * $FreeBSD: src/usr.bin/head/head.c,v 1.10.2.1 2002/02/16 12:29:04 dwmalone Exp $
36  * $DragonFly: src/usr.bin/head/head.c,v 1.2 2003/06/17 04:29:27 dillon Exp $
37  */
38
39 #include <sys/types.h>
40
41 #include <ctype.h>
42 #include <err.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <unistd.h>
47
48 /*
49  * head - give the first few lines of a stream or of each of a set of files
50  *
51  * Bill Joy UCB August 24, 1977
52  */
53
54 void head __P((FILE *, int));
55 void head_bytes __P((FILE *, int));
56 void obsolete __P((char *[]));
57 void usage __P((void));
58
59 int
60 main(argc, argv)
61         int argc;
62         char *argv[];
63 {
64         register int ch;
65         FILE *fp;
66         int first, linecnt = -1, bytecnt = -1, eval = 0;
67         char *ep;
68
69         obsolete(argv);
70         while ((ch = getopt(argc, argv, "n:c:")) != -1)
71                 switch(ch) {
72                 case 'c':
73                         bytecnt = strtol(optarg, &ep, 10);
74                         if (*ep || bytecnt <= 0)
75                                 errx(1, "illegal byte count -- %s", optarg);
76                         break;
77                 case 'n':
78                         linecnt = strtol(optarg, &ep, 10);
79                         if (*ep || linecnt <= 0)
80                                 errx(1, "illegal line count -- %s", optarg);
81                         break;
82                 case '?':
83                 default:
84                         usage();
85                 }
86         argc -= optind;
87         argv += optind;
88
89         if (linecnt != -1 && bytecnt != -1)
90                 errx(1, "can't combine line and byte counts");
91         if (linecnt == -1 )
92                 linecnt = 10;
93         if (*argv) {
94                 for (first = 1; *argv; ++argv) {
95                         if ((fp = fopen(*argv, "r")) == NULL) {
96                                 warn("%s", *argv);
97                                 eval = 1;
98                                 continue;
99                         }
100                         if (argc > 1) {
101                                 (void)printf("%s==> %s <==\n",
102                                     first ? "" : "\n", *argv);
103                                 first = 0;
104                         }
105                         if (bytecnt == -1)
106                                 head(fp, linecnt);
107                         else
108                                 head_bytes(fp, bytecnt);
109                         (void)fclose(fp);
110                 }
111         } else if (bytecnt == -1)
112                 head(stdin, linecnt);
113         else
114                 head_bytes(stdin, bytecnt);
115
116         exit(eval);
117 }
118
119 void
120 head(fp, cnt)
121         FILE *fp;
122         register int cnt;
123 {
124         char *cp;
125         int error, readlen;
126
127         while (cnt && (cp = fgetln(fp, &readlen)) != NULL) {
128                 error = fwrite(cp, sizeof(char), readlen, stdout);
129                 if (error != readlen)
130                         err(1, "stdout");
131                 cnt--;
132         }
133 }
134
135 void
136 head_bytes(fp, cnt)
137         FILE *fp;
138         register int cnt;
139 {
140         char buf[4096];
141         register int readlen;
142
143         while (cnt) {
144                 if (cnt < sizeof(buf))
145                         readlen = cnt;
146                 else
147                         readlen = sizeof(buf);
148                 readlen = fread(buf, sizeof(char), readlen, fp);
149                 if (readlen == 0)
150                         break;
151                 if (fwrite(buf, sizeof(char), readlen, stdout) != readlen)
152                         err(1, "stdout");
153                 cnt -= readlen;
154         }
155 }
156
157 void
158 obsolete(argv)
159         char *argv[];
160 {
161         char *ap;
162
163         while ((ap = *++argv)) {
164                 /* Return if "--" or not "-[0-9]*". */
165                 if (ap[0] != '-' || ap[1] == '-' || !isdigit(ap[1]))
166                         return;
167                 if ((ap = malloc(strlen(*argv) + 2)) == NULL)
168                         err(1, NULL);
169                 ap[0] = '-';
170                 ap[1] = 'n';
171                 (void)strcpy(ap + 2, *argv + 1);
172                 *argv = ap;
173         }
174 }
175
176 void
177 usage()
178 {
179
180         (void)fprintf(stderr, "usage: head [-n lines | -c bytes] [file ...]\n");
181         exit(1);
182 }