OSDN Git Service

* archival/gzip.c (ifname, ofname): Delete.
authorMatt Kraai <kraai@debian.org>
Tue, 5 Feb 2002 22:31:48 +0000 (22:31 -0000)
committerMatt Kraai <kraai@debian.org>
Tue, 5 Feb 2002 22:31:48 +0000 (22:31 -0000)
  (gzip_main): Handle multiple files.
* include/usage.h (gzip_trivial_usage): Allow multiple FILEs.
  (gzip_full_usage): Ditto.
* testsuite/gzip/gzip-accepts-multiple-files: New.
* testsuite/gzip/gzip-removes-original-file: New.

archival/gzip.c
include/usage.h
testsuite/gzip/gzip-accepts-multiple-files [new file with mode: 0644]
testsuite/gzip/gzip-removes-original-file [new file with mode: 0644]

index 732a83e..fed9390 100644 (file)
@@ -317,8 +317,6 @@ static long ifile_size;                             /* input file size, -1 for devices (debug only) */
 static char z_suffix[MAX_SUFFIX + 1];  /* default suffix (can be set with --suffix) */
 static int z_len;                                              /* strlen(z_suffix) */
 
-static char ifname[MAX_PATH_LEN];              /* input file name */
-static char ofname[MAX_PATH_LEN];              /* output file name */
 static int ifd;                                                /* input file descriptor */
 static int ofd;                                                /* output file descriptor */
 static unsigned insize;                                /* valid bytes in inbuf */
@@ -1214,7 +1212,6 @@ int gzip_main(int argc, char **argv)
        struct stat statBuf;
        char *delFileName;
        int tostdout = 0;
-       int fromstdin = 0;
        int force = 0;
        int opt;
 
@@ -1241,16 +1238,6 @@ int gzip_main(int argc, char **argv)
                        show_usage();
                }
        }
-       if ((optind == argc) || (strcmp(argv[optind], "-") == 0)) {
-               fromstdin = 1;
-               tostdout = 1;
-       }
-
-       if (argc - optind > 1)
-               show_usage ();
-
-       if (isatty(fileno(stdout)) && tostdout==1 && force==0)
-               error_msg_and_die( "compressed data not written to terminal. Use -f to force it.");
 
        foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
        if (foreground) {
@@ -1277,70 +1264,78 @@ int gzip_main(int argc, char **argv)
        ALLOC(uch, window, 2L * WSIZE);
        ALLOC(ush, tab_prefix, 1L << BITS);
 
-       if (fromstdin == 1) {
-               strcpy(ofname, "stdin");
+       clear_bufs();
+       part_nb = 0;
 
-               inFileNum = fileno(stdin);
-               time_stamp = 0;                 /* time unknown by default */
-               ifile_size = -1L;               /* convention for unknown size */
+       if (optind == argc) {
+               time_stamp = 0;
+               ifile_size = -1L;
+               zip(STDIN_FILENO, STDOUT_FILENO);
        } else {
-               /* Open up the input file */
-               strncpy(ifname, argv[optind], MAX_PATH_LEN);
-
-               /* Open input file */
-               inFileNum = open(ifname, O_RDONLY);
-               if (inFileNum < 0 || stat(ifname, &statBuf) < 0)
-                       perror_msg_and_die("%s", ifname);
-               /* Get the time stamp on the input file. */
-               time_stamp = statBuf.st_ctime;
-               ifile_size = statBuf.st_size;
-       }
+               int i;
 
+               for (i = optind; i < argc; i++) {
+                       char *path = NULL;
 
-       if (tostdout == 1) {
-               /* And get to work */
-               strcpy(ofname, "stdout");
-               outFileNum = fileno(stdout);
+                       if (strcmp(argv[i], "-") == 0) {
+                               time_stamp = 0;
+                               ifile_size = -1L;
+                               inFileNum = STDIN_FILENO;
+                               outFileNum = STDOUT_FILENO;
+                       } else {
+                               inFileNum = open(argv[i], O_RDONLY);
+                               if (inFileNum < 0 || fstat (inFileNum, &statBuf) < 0)
+                                       perror_msg_and_die("%s", argv[i]);
+                               time_stamp = statBuf.st_ctime;
+                               ifile_size = statBuf.st_size;
+
+                               if (!tostdout) {
+                                       path = xmalloc(strlen(argv[i]) + 4);
+                                       strcpy(path, argv[i]);
+                                       strcat(path, ".gz");
+
+                                       /* Open output file */
+#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
+                                       outFileNum = open(path, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
+#else
+                                       outFileNum = open(path, O_RDWR | O_CREAT | O_EXCL);
+#endif
+                                       if (outFileNum < 0) {
+                                               perror_msg("%s", path);
+                                               free(path);
+                                               continue;
+                                       }
+
+                                       /* Set permissions on the file */
+                                       fchmod(outFileNum, statBuf.st_mode);
+                               } else
+                                       outFileNum = STDOUT_FILENO;
+                       }
 
-               clear_bufs();                   /* clear input and output buffers */
-               part_nb = 0;
+                       if (path == NULL && force == 0) {
+                               perror_msg("compressed data not written to a terminal. Use -f to force compression.");
+                               free(path);
+                               continue;
+                       }
 
-               /* Actually do the compression/decompression. */
-               zip(inFileNum, outFileNum);
+                       result = zip(inFileNum, outFileNum);
 
-       } else {
+                       if (path != NULL) {
+                               close (inFileNum);
+                               close (outFileNum);
 
-               /* And get to work */
-               strncpy(ofname, ifname, MAX_PATH_LEN - 4);
-               strcat(ofname, ".gz");
+                               /* Delete the original file */
+                               if (result == OK)
+                                       delFileName = argv[i];
+                               else
+                                       delFileName = path;
 
+                               if (unlink(delFileName) < 0)
+                                       perror_msg("%s", delFileName);
+                       }
 
-               /* Open output fille */
-#if (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
-               outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW);
-#else
-               outFileNum = open(ofname, O_RDWR | O_CREAT | O_EXCL);
-#endif
-               if (outFileNum < 0)
-                       perror_msg_and_die("%s", ofname);
-               /* Set permissions on the file */
-               fchmod(outFileNum, statBuf.st_mode);
-
-               clear_bufs();                   /* clear input and output buffers */
-               part_nb = 0;
-
-               /* Actually do the compression/decompression. */
-               result = zip(inFileNum, outFileNum);
-               close(outFileNum);
-               close(inFileNum);
-               /* Delete the original file */
-               if (result == OK)
-                       delFileName = ifname;
-               else
-                       delFileName = ofname;
-
-               if (unlink(delFileName) < 0)
-                       perror_msg_and_die("%s", delFileName);
+                       free(path);
+               }
        }
 
        return(exit_code);
index 2e65c6f..c4ad044 100644 (file)
        "-rw-rw-r--    1 andersen andersen  1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n"
 
 #define gzip_trivial_usage \
-       "[OPTION]... [FILE]"
+       "[OPTION]... [FILE]..."
 #define gzip_full_usage \
-       "Compress FILE with maximum compression.\n" \
+       "Compress FILE(s) with maximum compression.\n" \
        "When FILE is '-' or unspecified, reads standard input.  Implies -c.\n\n" \
        "Options:\n" \
        "\t-c\tWrite output to standard output instead of FILE.gz\n" \
diff --git a/testsuite/gzip/gzip-accepts-multiple-files b/testsuite/gzip/gzip-accepts-multiple-files
new file mode 100644 (file)
index 0000000..8f0d9c8
--- /dev/null
@@ -0,0 +1,3 @@
+touch foo bar
+busybox gzip foo bar
+test -f foo.gz -a -f bar.gz
diff --git a/testsuite/gzip/gzip-removes-original-file b/testsuite/gzip/gzip-removes-original-file
new file mode 100644 (file)
index 0000000..b9cb995
--- /dev/null
@@ -0,0 +1,3 @@
+touch foo
+busybox gzip foo
+test ! -f foo