1 /* vi: set sw=4 ts=4: */
3 * split - split a file into pieces
4 * Copyright (c) 2007 Bernhard Reutner-Fischer
6 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 /* BB_AUDIT: SUSv3 compliant
10 * http://www.opengroup.org/onlinepubs/009695399/utilities/split.html
13 //usage:#define split_trivial_usage
14 //usage: "[OPTIONS] [INPUT [PREFIX]]"
15 //usage:#define split_full_usage "\n\n"
16 //usage: " -b N[k|m] Split by N (kilo|mega)bytes"
17 //usage: "\n -l N Split by N lines"
18 //usage: "\n -a N Use N letters as suffix"
20 //usage:#define split_example_usage
21 //usage: "$ split TODO foo\n"
22 //usage: "$ cat TODO | split -a 2 -l 2 TODO_\n"
25 #include "common_bufsiz.h"
27 #if ENABLE_FEATURE_SPLIT_FANCY
28 static const struct suffix_mult split_suffixes
[] = {
32 { "g", 1024*1024*1024 },
37 /* Increment the suffix part of the filename.
38 * Returns NULL if we are out of filenames.
40 static char *next_file(char *old
, unsigned suffix_len
)
42 size_t end
= strlen(old
);
62 #define read_buffer bb_common_bufsiz1
63 enum { READ_BUFFER_SIZE
= COMMON_BUFSIZE
- 1 };
65 #define SPLIT_OPT_l (1<<0)
66 #define SPLIT_OPT_b (1<<1)
67 #define SPLIT_OPT_a (1<<2)
69 int split_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
70 int split_main(int argc UNUSED_PARAM
, char **argv
)
72 unsigned suffix_len
= 2;
79 ssize_t bytes_read
, to_write
;
82 setup_common_bufsiz();
84 opt_complementary
= "?2:a+"; /* max 2 args; -a N */
85 opt
= getopt32(argv
, "l:b:a:", &count_p
, &count_p
, &suffix_len
);
87 if (opt
& SPLIT_OPT_l
)
88 cnt
= XATOOFF(count_p
);
89 if (opt
& SPLIT_OPT_b
) // FIXME: also needs XATOOFF
90 cnt
= xatoull_sfx(count_p
,
91 IF_FEATURE_SPLIT_FANCY(split_suffixes
)
92 IF_NOT_FEATURE_SPLIT_FANCY(km_suffixes
)
101 fd
= xopen_stdin(argv
[0]);
102 xmove_fd(fd
, STDIN_FILENO
);
104 argv
[0] = (char *) bb_msg_standard_input
;
107 if (NAME_MAX
< strlen(sfx
) + suffix_len
)
108 bb_error_msg_and_die("suffix too long");
111 char *char_p
= xzalloc(suffix_len
+ 1);
112 memset(char_p
, 'a', suffix_len
);
113 pfx
= xasprintf("%s%s", sfx
, char_p
);
114 if (ENABLE_FEATURE_CLEAN_UP
)
119 bytes_read
= safe_read(STDIN_FILENO
, read_buffer
, READ_BUFFER_SIZE
);
123 bb_simple_perror_msg_and_die(argv
[0]);
128 bb_error_msg_and_die("suffixes exhausted");
129 xmove_fd(xopen(pfx
, O_WRONLY
| O_CREAT
| O_TRUNC
), 1);
130 pfx
= next_file(pfx
, suffix_len
);
134 if (opt
& SPLIT_OPT_b
) {
136 to_write
= (bytes_read
< remaining
) ? bytes_read
: remaining
;
137 remaining
-= to_write
;
140 /* can be sped up by using _memrchr_
141 * and writing many lines at once... */
142 char *end
= memchr(src
, '\n', bytes_read
);
145 to_write
= end
- src
+ 1;
147 to_write
= bytes_read
;
151 xwrite(STDOUT_FILENO
, src
, to_write
);
152 bytes_read
-= to_write
;
154 } while (bytes_read
);