- add libbb function str_tolower to convert a string to lowercase.
[oweals/busybox.git] / coreutils / split.c
index 392bf0c69648871f6d760d1983bbcb7caadbba5b..10035e9ab00b2890f099f866758042690c001739 100644 (file)
@@ -10,7 +10,7 @@
  * http://www.opengroup.org/onlinepubs/009695399/utilities/split.html
  */
 #include "busybox.h"
-static unsigned suffix_len = 2;
+
 static const struct suffix_mult split_suffices[] = {
 #if ENABLE_FEATURE_SPLIT_FANCY
        { "b", 512 },
@@ -24,30 +24,33 @@ static const struct suffix_mult split_suffices[] = {
 };
 
 /* Increment the suffix part of the filename.
- * Returns 0 on success and 1 on error (if we are out of files)
+ * Returns NULL if we are out of filenames.
  */
-static bool next_file(char **old)
+static char *next_file(char *old, unsigned suffix_len)
 {
-       size_t end = strlen(*old);
+       size_t end = strlen(old);
        unsigned i = 1;
        char *curr;
 
        do {
-               curr = *old + end - i;
+               curr = old + end - i;
                if (*curr < 'z') {
                        *curr += 1;
                        break;
                }
                i++;
                if (i > suffix_len) {
-                       bb_error_msg("Suffices exhausted");
-                       return 1;
+                       return NULL;
                }
                *curr = 'a';
-       } while (i <= suffix_len);
-       return 0;
+       } while (1);
+
+       return old;
 }
 
+#define read_buffer bb_common_bufsiz1
+enum { READ_BUFFER_SIZE = sizeof(bb_common_bufsiz1) - 1 };
+
 #define SPLIT_OPT_l (1<<0)
 #define SPLIT_OPT_b (1<<1)
 #define SPLIT_OPT_a (1<<2)
@@ -55,87 +58,84 @@ static bool next_file(char **old)
 int split_main(int argc, char **argv);
 int split_main(int argc, char **argv)
 {
+       unsigned suffix_len = 2;
        char *pfx;
        char *count_p;
-       char *sfx_len;
-       unsigned cnt = 1000;
-       char *input_file;
-       bool ret = EXIT_SUCCESS;
-       FILE *fp;
+       const char *sfx;
+       off_t cnt = 1000;
+       off_t remaining = 0;
+       unsigned opt;
+       ssize_t bytes_read, to_write;
+       char *src;
 
-//XXX: FIXME   opt_complementary = "+2"; /* at most 2 non-option arguments */
-       getopt32(argc, argv, "l:b:a:", &count_p, &count_p, &sfx_len);
-       argv += optind;
+       opt_complementary = "?2";
+       opt = getopt32(argc, argv, "l:b:a:", &count_p, &count_p, &sfx);
 
-       if (option_mask32 & SPLIT_OPT_l)
-               cnt = xatoi(count_p);
-       if (option_mask32 & SPLIT_OPT_b)
+       if (opt & SPLIT_OPT_l)
+               cnt = xatoul(count_p);
+       if (opt & SPLIT_OPT_b)
                cnt = xatoul_sfx(count_p, split_suffices);
-       if (option_mask32 & SPLIT_OPT_a)
-               suffix_len = xatoi(sfx_len);
+       if (opt & SPLIT_OPT_a)
+               suffix_len = xatou(sfx);
+       sfx = "x";
 
-       if (!*argv)
-               *--argv = (char*) "-";
-       input_file = *argv;
+       argv += optind;
+       if (argv[0]) {
+               if (argv[1])
+                       sfx = argv[1];
+               xmove_fd(xopen(argv[0], O_RDONLY), 0);
+       } else {
+               argv[0] = (char *) bb_msg_standard_input;
+       }
 
-       if (NAME_MAX < strlen(*argv) + suffix_len)
-               bb_error_msg_and_die("Suffix too long");
+       if (NAME_MAX < strlen(sfx) + suffix_len)
+               bb_error_msg_and_die("suffix too long");
 
-       fp = fopen_or_warn_stdin(input_file);
        {
-               char *char_p = xzalloc(suffix_len);
+               char *char_p = xzalloc(suffix_len + 1);
                memset(char_p, 'a', suffix_len);
-               pfx = xasprintf("%s%s", (argc > optind + 1) ? *++argv : "x", char_p);
+               pfx = xasprintf("%s%s", sfx, char_p);
                if (ENABLE_FEATURE_CLEAN_UP)
                        free(char_p);
        }
-//XXX:FIXME: unify those two file-handling schemata below (FILE vs fd) !
-       if (option_mask32 & SPLIT_OPT_b) {
-               char *buf;
-               ssize_t i;
-               ssize_t bytes = 0;
-               int flags = O_WRONLY | O_CREAT | O_TRUNC;
-               int inp = fileno(fp);
 
+       while (1) {
+               bytes_read = safe_read(0, read_buffer, READ_BUFFER_SIZE);
+               if (!bytes_read)
+                       break;
+               if (bytes_read < 0)
+                       bb_perror_msg_and_die("%s", argv[0]);
+               src = read_buffer;
                do {
-                       int out = xopen(pfx, flags);
-                       buf = xzalloc(cnt);
-                       lseek(inp, bytes, SEEK_SET);
-                       bytes += i = full_read(inp, buf, cnt);
-                       xwrite(out, buf, i);
-                       close(out);
-                       free(buf);
-                       if (next_file(&pfx)) {
-                               ret++;
-                               goto bail;
+                       if (!remaining) {
+                               if (!pfx)
+                                       bb_error_msg_and_die("suffixes exhausted");
+                               xmove_fd(xopen(pfx, O_WRONLY | O_CREAT | O_TRUNC), 1);
+                               pfx = next_file(pfx, suffix_len);
+                               remaining = cnt;
                        }
-               } while (i == cnt); /* if we read less than cnt, then nothing is left */
-       } else { /* -l */
-               char *buf;
-               do {
-                       unsigned i = cnt;
-                       int flags = O_WRONLY | O_CREAT | O_TRUNC;
-                       int out = xopen(pfx, flags);
-                       buf = NULL;
-                       while (i--) {
-                           buf = xmalloc_fgets(fp);
-                               if (buf == NULL)
-                                       break;
-                               xwrite(out, buf, buf ? strlen(buf) : 0);
-                               free(buf);
-                       };
-                       close(out);
 
-                       if (next_file(&pfx)) {
-                               ret++;
-                               goto bail;
+                       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;
+                               }
                        }
-               } while (buf);
-       }
-bail:
-       if (ENABLE_FEATURE_CLEAN_UP) {
-               free(pfx);
-               fclose_if_not_stdin(fp);
+
+                       xwrite(1, src, to_write);
+                       bytes_read -= to_write;
+                       src += to_write;
+               } while (bytes_read);
        }
-       return ret;
+       return 0;
 }