blob: 7c5a5de5897a76f753a4751c4dec0c27fd691702 [file] [log] [blame]
Glenn L McGrath58a40852001-01-02 23:49:26 +00001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 */
16
Glenn L McGrath58a40852001-01-02 23:49:26 +000017#include <stdlib.h>
Glenn L McGrathd22e5602001-04-11 02:12:08 +000018#include <getopt.h>
Glenn L McGrath58a40852001-01-02 23:49:26 +000019#include "busybox.h"
20
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000021extern int dpkg_deb_main(int argc, char **argv)
22{
Glenn L McGrath445fb952001-04-13 04:02:57 +000023 char *argument = NULL;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000024 int opt = 0;
25 int optflag = 0;
Glenn L McGrath58a40852001-01-02 23:49:26 +000026
Glenn L McGrath445fb952001-04-13 04:02:57 +000027 while ((opt = getopt(argc, argv, "ceftXxI")) != -1) {
Glenn L McGrath58a40852001-01-02 23:49:26 +000028 switch (opt) {
29 case 'c':
Glenn L McGrath359c1062001-04-12 10:19:08 +000030 optflag |= extract_contents;
Glenn L McGrath58a40852001-01-02 23:49:26 +000031 break;
32 case 'e':
Glenn L McGrath359c1062001-04-12 10:19:08 +000033 optflag |= extract_control;
Glenn L McGrath58a40852001-01-02 23:49:26 +000034 break;
Glenn L McGrath445fb952001-04-13 04:02:57 +000035 case 'f':
36 optflag |= extract_field;
37 break;
Glenn L McGrath3e2ab882001-04-12 13:49:09 +000038 case 't':
39 optflag |= extract_fsys_tarfile;
40 break;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000041 case 'X':
Glenn L McGrath359c1062001-04-12 10:19:08 +000042 optflag |= extract_verbose_extract;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000043 break;
44 case 'x':
Glenn L McGrath359c1062001-04-12 10:19:08 +000045 optflag |= extract_extract;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000046 break;
Glenn L McGrath445fb952001-04-13 04:02:57 +000047 case 'I':
Glenn L McGrath359c1062001-04-12 10:19:08 +000048 optflag |= extract_info;
Glenn L McGrath58a40852001-01-02 23:49:26 +000049 break;
Glenn L McGrath58a40852001-01-02 23:49:26 +000050 default:
Eric Andersen67991cf2001-02-14 21:23:06 +000051 show_usage();
Glenn L McGrath58a40852001-01-02 23:49:26 +000052 }
53 }
54
Glenn L McGrath6785b512001-04-12 11:48:02 +000055 if (optind == argc) {
Eric Andersen67991cf2001-02-14 21:23:06 +000056 show_usage();
Glenn L McGrath58a40852001-01-02 23:49:26 +000057 }
Glenn L McGrath6785b512001-04-12 11:48:02 +000058
Glenn L McGrath359c1062001-04-12 10:19:08 +000059 switch (optflag) {
60 case (extract_control):
61 case (extract_extract):
62 case (extract_verbose_extract):
Glenn L McGrath445fb952001-04-13 04:02:57 +000063 /* argument is a dir name */
Glenn L McGrath359c1062001-04-12 10:19:08 +000064 if ( (optind + 1) == argc ) {
Glenn L McGrath445fb952001-04-13 04:02:57 +000065 argument = xstrdup("DEBIAN");
Glenn L McGrath6785b512001-04-12 11:48:02 +000066 } else {
Glenn L McGrath445fb952001-04-13 04:02:57 +000067 argument = xstrdup(argv[optind + 1]);
Glenn L McGrath359c1062001-04-12 10:19:08 +000068 }
69 break;
Glenn L McGrath445fb952001-04-13 04:02:57 +000070 case (extract_field):
71 /* argument is a control field name */
72 if ((optind + 1) != argc) {
73 argument = xstrdup(argv[optind + 1]);
74 }
75 break;
76 case (extract_info):
77 /* argument is a control field name */
78 if ((optind + 1) != argc) {
79 argument = xstrdup(argv[optind + 1]);
80 break;
81 } else {
82 error_msg("-I currently requires a filename to be specifies");
83 return(EXIT_FAILURE);
84 }
85 /* argument is a filename */
Glenn L McGrath6785b512001-04-12 11:48:02 +000086 default:
Glenn L McGrath58a40852001-01-02 23:49:26 +000087 }
Glenn L McGrath6785b512001-04-12 11:48:02 +000088
Glenn L McGrath445fb952001-04-13 04:02:57 +000089 deb_extract(argv[optind], optflag, argument);
90
Glenn L McGrath58a40852001-01-02 23:49:26 +000091 return(EXIT_SUCCESS);
92}