aboutsummaryrefslogtreecommitdiff
path: root/archival/bunzip2.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-03 14:05:15 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-03 14:05:15 +0000
commit237ae42fc96ede945d28d9054f045b73e419d089 (patch)
tree3fb6a9c10150303aca3c218b47aaf327a186382a /archival/bunzip2.c
parent2fc54a9258c3aa5dad2ce9807ba85cf29af2668e (diff)
downloadbusybox-237ae42fc96ede945d28d9054f045b73e419d089.tar.gz
Abstract read and seek in unarchiving code, convert bunzip to file descriptors, support tar -j
Diffstat (limited to 'archival/bunzip2.c')
-rw-r--r--archival/bunzip2.c31
1 files changed, 17 insertions, 14 deletions
diff --git a/archival/bunzip2.c b/archival/bunzip2.c
index 9f346f266..d5c06f4fd 100644
--- a/archival/bunzip2.c
+++ b/archival/bunzip2.c
@@ -17,9 +17,11 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#include <fcntl.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
#include "busybox.h"
@@ -33,8 +35,8 @@ int bunzip2_main(int argc, char **argv)
int opt = 0;
int status;
- FILE *src_stream;
- FILE *dst_stream;
+ int src_fd;
+ int dst_fd;
char *save_name = NULL;
char *delete_name = NULL;
@@ -59,10 +61,10 @@ int bunzip2_main(int argc, char **argv)
/* Set input filename and number */
if (argv[optind] == NULL || strcmp(argv[optind], "-") == 0) {
flags |= bunzip_to_stdout;
- src_stream = stdin;
+ src_fd = fileno(stdin);
} else {
/* Open input file */
- src_stream = xfopen(argv[optind], "r");
+ src_fd = xopen(argv[optind], O_RDONLY);
save_name = xstrdup(argv[optind]);
if (strcmp(save_name + strlen(save_name) - 4, ".bz2") != 0)
@@ -71,29 +73,30 @@ int bunzip2_main(int argc, char **argv)
}
/* Check that the input is sane. */
- if (isatty(fileno(src_stream)) && (flags & bunzip_force) == 0)
+ if (isatty(src_fd) && (flags & bunzip_force) == 0) {
error_msg_and_die("compressed data not read from terminal. Use -f to force it.");
+ }
if (flags & bunzip_to_stdout) {
- dst_stream = stdout;
+ dst_fd = fileno(stdout);
} else {
- dst_stream = xfopen(save_name, "w");
+ dst_fd = xopen(save_name, O_WRONLY | O_CREAT);
}
- if (uncompressStream(src_stream, dst_stream)) {
- if (!(flags & bunzip_to_stdout))
+ if (uncompressStream(src_fd, dst_fd)) {
+ if (!(flags & bunzip_to_stdout)) {
delete_name = argv[optind];
+ }
status = EXIT_SUCCESS;
} else {
- if (!(flags & bunzip_to_stdout))
+ if (!(flags & bunzip_to_stdout)) {
delete_name = save_name;
+ }
status = EXIT_FAILURE;
}
- if (delete_name) {
- if (unlink(delete_name) < 0) {
- error_msg_and_die("Couldn't remove %s", delete_name);
- }
+ if ((delete_name) && (unlink(delete_name) < 0)) {
+ error_msg_and_die("Couldn't remove %s", delete_name);
}
return status;