2007-03-26 03:20:18 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* split - split a file into pieces
|
2008-09-25 17:43:34 +05:30
|
|
|
* Copyright (c) 2007 Bernhard Reutner-Fischer
|
2007-03-26 03:20:18 +05:30
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
2007-03-26 19:58:12 +05:30
|
|
|
/* BB_AUDIT: SUSv3 compliant
|
2007-03-26 03:20:18 +05:30
|
|
|
* SUSv3 requirements:
|
|
|
|
* http://www.opengroup.org/onlinepubs/009695399/utilities/split.html
|
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2007-03-27 01:45:40 +05:30
|
|
|
|
2007-03-26 16:16:31 +05:30
|
|
|
static const struct suffix_mult split_suffices[] = {
|
2007-03-28 22:18:40 +05:30
|
|
|
#if ENABLE_FEATURE_SPLIT_FANCY
|
2007-03-26 16:16:31 +05:30
|
|
|
{ "b", 512 },
|
2007-03-28 22:18:40 +05:30
|
|
|
#endif
|
2007-03-26 16:16:31 +05:30
|
|
|
{ "k", 1024 },
|
|
|
|
{ "m", 1024*1024 },
|
2007-03-28 22:18:40 +05:30
|
|
|
#if ENABLE_FEATURE_SPLIT_FANCY
|
2007-03-26 16:16:31 +05:30
|
|
|
{ "g", 1024*1024*1024 },
|
2007-03-28 22:18:40 +05:30
|
|
|
#endif
|
2009-09-06 16:17:55 +05:30
|
|
|
{ "", 0 }
|
2007-03-26 16:16:31 +05:30
|
|
|
};
|
2007-03-26 03:20:18 +05:30
|
|
|
|
|
|
|
/* Increment the suffix part of the filename.
|
2007-03-27 01:45:40 +05:30
|
|
|
* Returns NULL if we are out of filenames.
|
2007-03-26 03:20:18 +05:30
|
|
|
*/
|
2007-03-27 01:45:40 +05:30
|
|
|
static char *next_file(char *old, unsigned suffix_len)
|
2007-03-26 03:20:18 +05:30
|
|
|
{
|
2007-03-27 01:45:40 +05:30
|
|
|
size_t end = strlen(old);
|
2007-03-26 03:20:18 +05:30
|
|
|
unsigned i = 1;
|
|
|
|
char *curr;
|
|
|
|
|
|
|
|
do {
|
2007-03-27 01:45:40 +05:30
|
|
|
curr = old + end - i;
|
2007-03-26 03:20:18 +05:30
|
|
|
if (*curr < 'z') {
|
2007-03-26 16:16:31 +05:30
|
|
|
*curr += 1;
|
2007-03-26 03:20:18 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
2007-03-26 19:58:12 +05:30
|
|
|
if (i > suffix_len) {
|
2007-03-27 01:45:40 +05:30
|
|
|
return NULL;
|
2007-03-26 19:58:12 +05:30
|
|
|
}
|
|
|
|
*curr = 'a';
|
2007-03-26 23:49:29 +05:30
|
|
|
} while (1);
|
2007-03-27 01:45:40 +05:30
|
|
|
|
|
|
|
return old;
|
2007-03-26 03:20:18 +05:30
|
|
|
}
|
2007-03-26 19:58:12 +05:30
|
|
|
|
2007-03-27 01:45:40 +05:30
|
|
|
#define read_buffer bb_common_bufsiz1
|
2007-06-04 15:46:52 +05:30
|
|
|
enum { READ_BUFFER_SIZE = COMMON_BUFSIZE - 1 };
|
2007-03-27 01:45:40 +05:30
|
|
|
|
2007-03-26 03:20:18 +05:30
|
|
|
#define SPLIT_OPT_l (1<<0)
|
|
|
|
#define SPLIT_OPT_b (1<<1)
|
2007-03-26 16:16:31 +05:30
|
|
|
#define SPLIT_OPT_a (1<<2)
|
2007-03-26 03:20:18 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int split_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int split_main(int argc UNUSED_PARAM, char **argv)
|
2007-03-26 03:20:18 +05:30
|
|
|
{
|
2007-03-27 01:45:40 +05:30
|
|
|
unsigned suffix_len = 2;
|
|
|
|
char *pfx;
|
|
|
|
char *count_p;
|
|
|
|
const char *sfx;
|
2007-03-28 22:18:40 +05:30
|
|
|
off_t cnt = 1000;
|
|
|
|
off_t remaining = 0;
|
2007-03-27 01:45:40 +05:30
|
|
|
unsigned opt;
|
2007-03-28 22:18:40 +05:30
|
|
|
ssize_t bytes_read, to_write;
|
2007-03-27 01:45:40 +05:30
|
|
|
char *src;
|
|
|
|
|
2008-03-17 14:39:09 +05:30
|
|
|
opt_complementary = "?2:a+"; /* max 2 args; -a N */
|
|
|
|
opt = getopt32(argv, "l:b:a:", &count_p, &count_p, &suffix_len);
|
2007-03-26 03:20:18 +05:30
|
|
|
|
2007-03-26 23:49:29 +05:30
|
|
|
if (opt & SPLIT_OPT_l)
|
2008-03-17 14:39:09 +05:30
|
|
|
cnt = XATOOFF(count_p);
|
|
|
|
if (opt & SPLIT_OPT_b) // FIXME: also needs XATOOFF
|
|
|
|
cnt = xatoull_sfx(count_p, split_suffices);
|
2007-03-27 01:45:40 +05:30
|
|
|
sfx = "x";
|
2007-03-28 22:18:40 +05:30
|
|
|
|
|
|
|
argv += optind;
|
2007-03-27 01:45:40 +05:30
|
|
|
if (argv[0]) {
|
2009-11-26 10:13:16 +05:30
|
|
|
int fd;
|
2007-03-27 01:45:40 +05:30
|
|
|
if (argv[1])
|
|
|
|
sfx = argv[1];
|
2009-11-26 10:13:16 +05:30
|
|
|
fd = open_or_warn_stdin(argv[0]);
|
|
|
|
if (fd == -1)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
xmove_fd(fd, STDIN_FILENO);
|
2007-03-27 01:45:40 +05:30
|
|
|
} else {
|
|
|
|
argv[0] = (char *) bb_msg_standard_input;
|
|
|
|
}
|
2007-03-26 19:58:12 +05:30
|
|
|
|
2007-03-27 01:45:40 +05:30
|
|
|
if (NAME_MAX < strlen(sfx) + suffix_len)
|
|
|
|
bb_error_msg_and_die("suffix too long");
|
2007-03-26 03:20:18 +05:30
|
|
|
|
|
|
|
{
|
2007-03-27 01:45:40 +05:30
|
|
|
char *char_p = xzalloc(suffix_len + 1);
|
2007-03-26 03:20:18 +05:30
|
|
|
memset(char_p, 'a', suffix_len);
|
2007-03-27 01:45:40 +05:30
|
|
|
pfx = xasprintf("%s%s", sfx, char_p);
|
2007-03-26 03:20:18 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(char_p);
|
|
|
|
}
|
2007-03-26 19:58:12 +05:30
|
|
|
|
2007-03-27 01:45:40 +05:30
|
|
|
while (1) {
|
2008-05-19 15:18:17 +05:30
|
|
|
bytes_read = safe_read(STDIN_FILENO, read_buffer, READ_BUFFER_SIZE);
|
2007-03-27 01:45:40 +05:30
|
|
|
if (!bytes_read)
|
|
|
|
break;
|
|
|
|
if (bytes_read < 0)
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg_and_die(argv[0]);
|
2007-03-27 01:45:40 +05:30
|
|
|
src = read_buffer;
|
2007-03-26 03:20:18 +05:30
|
|
|
do {
|
2007-03-27 01:45:40 +05:30
|
|
|
if (!remaining) {
|
|
|
|
if (!pfx)
|
2007-03-28 22:18:40 +05:30
|
|
|
bb_error_msg_and_die("suffixes exhausted");
|
2007-03-27 01:45:40 +05:30
|
|
|
xmove_fd(xopen(pfx, O_WRONLY | O_CREAT | O_TRUNC), 1);
|
|
|
|
pfx = next_file(pfx, suffix_len);
|
|
|
|
remaining = cnt;
|
2007-03-26 19:58:12 +05:30
|
|
|
}
|
2007-03-27 01:45:40 +05:30
|
|
|
|
|
|
|
if (opt & SPLIT_OPT_b) {
|
|
|
|
/* split by bytes */
|
|
|
|
to_write = (bytes_read < remaining) ? bytes_read : remaining;
|
|
|
|
remaining -= to_write;
|
|
|
|
} else {
|
|
|
|
/* split by lines */
|
|
|
|
/* can be sped up by using _memrchr_
|
|
|
|
* and writing many lines at once... */
|
|
|
|
char *end = memchr(src, '\n', bytes_read);
|
|
|
|
if (end) {
|
|
|
|
--remaining;
|
|
|
|
to_write = end - src + 1;
|
|
|
|
} else {
|
|
|
|
to_write = bytes_read;
|
|
|
|
}
|
2007-03-26 19:58:12 +05:30
|
|
|
}
|
2007-03-27 01:45:40 +05:30
|
|
|
|
2008-05-19 15:18:17 +05:30
|
|
|
xwrite(STDOUT_FILENO, src, to_write);
|
2007-03-27 01:45:40 +05:30
|
|
|
bytes_read -= to_write;
|
|
|
|
src += to_write;
|
|
|
|
} while (bytes_read);
|
2007-03-26 03:20:18 +05:30
|
|
|
}
|
2007-11-16 18:09:16 +05:30
|
|
|
return EXIT_SUCCESS;
|
2007-03-26 03:20:18 +05:30
|
|
|
}
|