2003-06-10 20:57:05 +04:00
|
|
|
/* $NetBSD: split.c,v 1.11 2003/06/10 16:57:05 bjh21 Exp $ */
|
1994-12-21 11:11:23 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-12-21 11:11:23 +03:00
|
|
|
* Copyright (c) 1987, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-10-20 03:26:56 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1997-10-20 03:26:56 +04:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1987, 1993, 1994\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1994-12-21 11:11:23 +03:00
|
|
|
#if 0
|
1995-09-01 02:22:05 +04:00
|
|
|
static char sccsid[] = "@(#)split.c 8.3 (Berkeley) 4/25/94";
|
1994-12-21 11:11:23 +03:00
|
|
|
#endif
|
2003-06-10 20:57:05 +04:00
|
|
|
__RCSID("$NetBSD: split.c,v 1.11 2003/06/10 16:57:05 bjh21 Exp $");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
1994-12-21 11:11:23 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <ctype.h>
|
1994-12-21 11:11:23 +03:00
|
|
|
#include <err.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2003-03-20 17:12:49 +03:00
|
|
|
#define DEFLINE 1000 /* Default num lines per file. */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-03-20 17:12:49 +03:00
|
|
|
static int file_open; /* If a file open. */
|
|
|
|
static int ifd = -1, ofd = -1; /* Input/output file descriptors. */
|
|
|
|
static char fname[MAXPATHLEN]; /* File name prefix. */
|
2003-06-10 20:32:54 +04:00
|
|
|
static int sfxlen = 2; /* suffix length. */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-03-20 17:12:49 +03:00
|
|
|
int main(int, char **);
|
|
|
|
static void newfile(void);
|
|
|
|
static void split1(unsigned long long);
|
|
|
|
static void split2(unsigned long long);
|
|
|
|
static void usage(void) __attribute__((__noreturn__));
|
|
|
|
static unsigned long long bigwrite __P((int, const void *, unsigned long long));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-12-21 11:11:23 +03:00
|
|
|
int
|
2003-03-20 17:12:49 +03:00
|
|
|
main(int argc, char *argv[])
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-12-21 11:11:23 +03:00
|
|
|
int ch;
|
|
|
|
char *ep, *p;
|
2003-03-20 17:12:49 +03:00
|
|
|
unsigned long long bytecnt = 0; /* Byte count to split on. */
|
|
|
|
unsigned long long numlines = 0;/* Line count to split on. */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-06-10 20:32:54 +04:00
|
|
|
while ((ch = getopt(argc, argv, "-0123456789b:l:a:")) != -1)
|
1994-12-21 11:11:23 +03:00
|
|
|
switch (ch) {
|
|
|
|
case '0': case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
|
|
|
/*
|
|
|
|
* Undocumented kludge: split was originally designed
|
|
|
|
* to take a number after a dash.
|
|
|
|
*/
|
|
|
|
if (numlines == 0) {
|
|
|
|
p = argv[optind - 1];
|
|
|
|
if (p[0] == '-' && p[1] == ch && !p[2])
|
|
|
|
numlines = strtol(++p, &ep, 10);
|
|
|
|
else
|
|
|
|
numlines =
|
|
|
|
strtol(argv[optind] + 1, &ep, 10);
|
|
|
|
if (numlines <= 0 || *ep)
|
|
|
|
errx(1,
|
|
|
|
"%s: illegal line count.", optarg);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-12-21 11:11:23 +03:00
|
|
|
break;
|
2003-06-10 20:57:05 +04:00
|
|
|
case '-': /* stdin flag. */
|
1994-12-21 11:11:23 +03:00
|
|
|
if (ifd != -1)
|
|
|
|
usage();
|
|
|
|
ifd = 0;
|
|
|
|
break;
|
|
|
|
case 'b': /* Byte count. */
|
2003-03-20 17:12:49 +03:00
|
|
|
if ((bytecnt = strtoull(optarg, &ep, 10)) <= 0 ||
|
1997-10-20 03:26:56 +04:00
|
|
|
(*ep != '\0' && *ep != 'k' && *ep != 'm'))
|
1994-12-21 11:11:23 +03:00
|
|
|
errx(1, "%s: illegal byte count.", optarg);
|
|
|
|
if (*ep == 'k')
|
|
|
|
bytecnt *= 1024;
|
|
|
|
else if (*ep == 'm')
|
2003-03-20 17:12:49 +03:00
|
|
|
bytecnt *= 1024 * 1024;
|
1994-12-21 11:11:23 +03:00
|
|
|
break;
|
|
|
|
case 'l': /* Line count. */
|
|
|
|
if (numlines != 0)
|
|
|
|
usage();
|
2003-03-20 17:12:49 +03:00
|
|
|
if ((numlines = strtoull(optarg, &ep, 10)) <= 0 || *ep)
|
1994-12-21 11:11:23 +03:00
|
|
|
errx(1, "%s: illegal line count.", optarg);
|
|
|
|
break;
|
2003-06-10 20:32:54 +04:00
|
|
|
case 'a': /* Suffix length. */
|
|
|
|
if ((sfxlen = strtol(optarg, &ep, 10)) <= 0 || *ep)
|
|
|
|
errx(1, "%s: illegal suffix length.", optarg);
|
|
|
|
break;
|
1994-12-21 11:11:23 +03:00
|
|
|
default:
|
1993-03-21 12:45:37 +03:00
|
|
|
usage();
|
1994-12-21 11:11:23 +03:00
|
|
|
}
|
|
|
|
argv += optind;
|
|
|
|
argc -= optind;
|
|
|
|
|
|
|
|
if (*argv != NULL)
|
|
|
|
if (ifd == -1) { /* Input file. */
|
2003-06-10 20:57:05 +04:00
|
|
|
if (strcmp(*argv, "-") == 0)
|
|
|
|
ifd = STDIN_FILENO;
|
|
|
|
else if ((ifd = open(*argv, O_RDONLY, 0)) < 0)
|
1994-12-21 11:11:23 +03:00
|
|
|
err(1, "%s", *argv);
|
|
|
|
++argv;
|
|
|
|
}
|
2003-06-10 20:32:54 +04:00
|
|
|
|
|
|
|
if (*argv != NULL) {
|
|
|
|
if (strlen(*argv) + sfxlen > NAME_MAX)
|
|
|
|
errx(EXIT_FAILURE, "Output file name too long");
|
|
|
|
(void)strcpy(fname, *argv++); /* File name prefix. */
|
|
|
|
} else {
|
|
|
|
if (1 + sfxlen > NAME_MAX)
|
|
|
|
errx(EXIT_FAILURE, "Output file name too long");
|
|
|
|
}
|
|
|
|
|
1994-12-21 11:11:23 +03:00
|
|
|
if (*argv != NULL)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
if (numlines == 0)
|
|
|
|
numlines = DEFLINE;
|
|
|
|
else if (bytecnt)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
if (ifd == -1) /* Stdin by default. */
|
1993-03-21 12:45:37 +03:00
|
|
|
ifd = 0;
|
1994-12-21 11:11:23 +03:00
|
|
|
|
|
|
|
if (bytecnt) {
|
2003-03-20 17:12:49 +03:00
|
|
|
split1(bytecnt);
|
|
|
|
} else {
|
|
|
|
split2(numlines);
|
1994-12-21 11:11:23 +03:00
|
|
|
}
|
2003-03-20 17:12:49 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* split1 --
|
1994-12-21 11:11:23 +03:00
|
|
|
* Split the input by bytes.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
2003-03-20 17:12:49 +03:00
|
|
|
static void
|
|
|
|
split1(unsigned long long bytecnt)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-03-20 17:12:49 +03:00
|
|
|
unsigned long long bcnt, dist;
|
|
|
|
ssize_t len;
|
1994-12-21 11:11:23 +03:00
|
|
|
char *C;
|
2003-03-20 17:12:49 +03:00
|
|
|
char bfr[MAXBSIZE];
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (bcnt = 0;;)
|
1994-12-21 11:11:23 +03:00
|
|
|
switch (len = read(ifd, bfr, MAXBSIZE)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case 0:
|
1994-12-21 11:11:23 +03:00
|
|
|
exit(0);
|
|
|
|
case -1:
|
|
|
|
err(1, "read");
|
|
|
|
/* NOTREACHED */
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
|
|
|
if (!file_open) {
|
|
|
|
newfile();
|
1994-12-21 11:11:23 +03:00
|
|
|
file_open = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (bcnt + len >= bytecnt) {
|
|
|
|
dist = bytecnt - bcnt;
|
2003-03-20 17:12:49 +03:00
|
|
|
if (bigwrite(ofd, bfr, dist) != dist)
|
1994-12-21 11:11:23 +03:00
|
|
|
err(1, "write");
|
1993-03-21 12:45:37 +03:00
|
|
|
len -= dist;
|
1994-12-21 11:11:23 +03:00
|
|
|
for (C = bfr + dist; len >= bytecnt;
|
|
|
|
len -= bytecnt, C += bytecnt) {
|
1993-03-21 12:45:37 +03:00
|
|
|
newfile();
|
2003-03-20 17:12:49 +03:00
|
|
|
if (bigwrite(ofd,
|
1994-12-21 11:11:23 +03:00
|
|
|
C, (int)bytecnt) != bytecnt)
|
|
|
|
err(1, "write");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (len) {
|
|
|
|
newfile();
|
2003-03-20 17:12:49 +03:00
|
|
|
if (bigwrite(ofd, C, len) != len)
|
1994-12-21 11:11:23 +03:00
|
|
|
err(1, "write");
|
|
|
|
} else
|
|
|
|
file_open = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
bcnt = len;
|
1994-12-21 11:11:23 +03:00
|
|
|
} else {
|
1993-03-21 12:45:37 +03:00
|
|
|
bcnt += len;
|
2003-03-20 17:12:49 +03:00
|
|
|
if (bigwrite(ofd, bfr, len) != len)
|
1994-12-21 11:11:23 +03:00
|
|
|
err(1, "write");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* split2 --
|
1994-12-21 11:11:23 +03:00
|
|
|
* Split the input by lines.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
2003-03-20 17:12:49 +03:00
|
|
|
static void
|
|
|
|
split2(unsigned long long numlines)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-03-20 17:12:49 +03:00
|
|
|
unsigned long long lcnt, bcnt;
|
|
|
|
ssize_t len;
|
1994-12-21 11:11:23 +03:00
|
|
|
char *Ce, *Cs;
|
2003-03-20 17:12:49 +03:00
|
|
|
char bfr[MAXBSIZE];
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (lcnt = 0;;)
|
1994-12-21 11:11:23 +03:00
|
|
|
switch (len = read(ifd, bfr, MAXBSIZE)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
case 0:
|
|
|
|
exit(0);
|
1994-12-21 11:11:23 +03:00
|
|
|
case -1:
|
|
|
|
err(1, "read");
|
|
|
|
/* NOTREACHED */
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
|
|
|
if (!file_open) {
|
|
|
|
newfile();
|
1994-12-21 11:11:23 +03:00
|
|
|
file_open = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
for (Cs = Ce = bfr; len--; Ce++)
|
|
|
|
if (*Ce == '\n' && ++lcnt == numlines) {
|
|
|
|
bcnt = Ce - Cs + 1;
|
2003-03-20 17:12:49 +03:00
|
|
|
if (bigwrite(ofd, Cs, bcnt) != bcnt)
|
1994-12-21 11:11:23 +03:00
|
|
|
err(1, "write");
|
1993-03-21 12:45:37 +03:00
|
|
|
lcnt = 0;
|
|
|
|
Cs = Ce + 1;
|
|
|
|
if (len)
|
|
|
|
newfile();
|
|
|
|
else
|
1994-12-21 11:11:23 +03:00
|
|
|
file_open = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (Cs < Ce) {
|
|
|
|
bcnt = Ce - Cs;
|
2003-03-20 17:12:49 +03:00
|
|
|
if (bigwrite(ofd, Cs, bcnt) != bcnt)
|
1994-12-21 11:11:23 +03:00
|
|
|
err(1, "write");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* newfile --
|
1994-12-21 11:11:23 +03:00
|
|
|
* Open a new output file.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
2003-03-20 17:12:49 +03:00
|
|
|
static void
|
|
|
|
newfile(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2003-03-20 17:12:49 +03:00
|
|
|
static int fnum;
|
1994-12-21 11:11:23 +03:00
|
|
|
static int defname;
|
1993-03-21 12:45:37 +03:00
|
|
|
static char *fpnt;
|
2003-06-10 20:32:54 +04:00
|
|
|
int quot, i;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-12-21 11:11:23 +03:00
|
|
|
if (ofd == -1) {
|
|
|
|
if (fname[0] == '\0') {
|
1993-03-21 12:45:37 +03:00
|
|
|
fname[0] = 'x';
|
|
|
|
fpnt = fname + 1;
|
1994-12-21 11:11:23 +03:00
|
|
|
defname = 1;
|
|
|
|
} else {
|
|
|
|
fpnt = fname + strlen(fname);
|
|
|
|
defname = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
ofd = fileno(stdout);
|
|
|
|
}
|
|
|
|
/*
|
1994-12-21 11:11:23 +03:00
|
|
|
* Hack to increase max files; original code wandered through
|
1993-03-21 12:45:37 +03:00
|
|
|
* magic characters. Maximum files is 3 * 26 * 26 == 2028
|
|
|
|
*/
|
2003-06-10 20:32:54 +04:00
|
|
|
fpnt[sfxlen] = '\0';
|
|
|
|
quot = fnum;
|
|
|
|
for (i = sfxlen - 1; i >= 0; i--) {
|
|
|
|
fpnt[i] = quot % 26 + 'a';
|
|
|
|
quot = quot / 26;
|
|
|
|
}
|
|
|
|
if (quot > 0) {
|
1994-12-21 11:11:23 +03:00
|
|
|
if (!defname || fname[0] == 'z')
|
|
|
|
errx(1, "too many files.");
|
1993-03-21 12:45:37 +03:00
|
|
|
++fname[0];
|
|
|
|
fnum = 0;
|
|
|
|
}
|
|
|
|
++fnum;
|
1994-12-21 11:11:23 +03:00
|
|
|
if (!freopen(fname, "w", stdout))
|
|
|
|
err(1, "%s", fname);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2003-03-20 17:12:49 +03:00
|
|
|
static unsigned long long
|
|
|
|
bigwrite(int fd, const void *buf, unsigned long long len)
|
|
|
|
{
|
|
|
|
const char *ptr = buf;
|
|
|
|
unsigned long long sofar = 0;
|
|
|
|
|
|
|
|
while (len != 0) {
|
|
|
|
ssize_t w, nw = (len > INT_MAX) ? INT_MAX : (ssize_t)len;
|
|
|
|
if ((w = write(fd, ptr, nw)) == -1)
|
|
|
|
return sofar;
|
|
|
|
len -= w;
|
|
|
|
ptr += w;
|
|
|
|
sofar += w;
|
|
|
|
}
|
|
|
|
return sofar;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-12-21 11:11:23 +03:00
|
|
|
(void)fprintf(stderr,
|
2003-06-10 20:32:54 +04:00
|
|
|
"Usage: %s [-b byte_count] [-l line_count] [-a suffix_length] "
|
|
|
|
"[file [prefix]]\n", getprogname());
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|