Move deb_extract() to libbb, dpkg now independent of dpkg-deb
[platform/upstream/busybox.git] / archival / dpkg_deb.c
1 /*
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
17 #include <stdlib.h>
18 #include <getopt.h>
19 #include "busybox.h"
20
21 extern int dpkg_deb_main(int argc, char **argv)
22 {
23         const int dpkg_deb_contents = 1;
24         const int dpkg_deb_control = 2;
25 //      const int dpkg_deb_info = 4;
26         const int dpkg_deb_extract = 8;
27         const int dpkg_deb_verbose_extract = 16;
28         const int dpkg_deb_list = 32;
29         char *target_dir = NULL;
30         int opt = 0;
31         int optflag = 0;        
32         
33         while ((opt = getopt(argc, argv, "cexXl")) != -1) {
34                 switch (opt) {
35                         case 'c':
36                                 optflag |= dpkg_deb_contents;
37                                 break;
38                         case 'e':
39                                 optflag |= dpkg_deb_control;
40                                 break;
41                         case 'X':
42                                 optflag |= dpkg_deb_verbose_extract;
43                                 break;
44                         case 'x':
45                                 optflag |= dpkg_deb_extract;
46                                 break;
47                         case 'l':
48                                 optflag |= dpkg_deb_list;
49                                 break;
50 /*                      case 'I':
51                                 optflag |= dpkg_deb_info;
52                                 break;
53 */
54                         default:
55                                 show_usage();
56                 }
57         }
58
59         if (((optind + 1 ) > argc) || (optflag == 0))  {
60                 show_usage();
61         }
62         if ((optflag & dpkg_deb_control) || (optflag & dpkg_deb_extract) || (optflag & dpkg_deb_verbose_extract)) {
63                 if ( (optind + 1) == argc ) {
64                         target_dir = (char *) xmalloc(7);
65                         strcpy(target_dir, "DEBIAN");
66                 } else {
67                         target_dir = (char *) xmalloc(strlen(argv[optind + 1]));
68                         strcpy(target_dir, argv[optind + 1]);
69                 }
70         }
71         deb_extract(optflag, target_dir, argv[optind]);
72 /*      else if (optflag & dpkg_deb_info) {
73                 extract_flag = TRUE;
74                 extract_to_stdout = TRUE;
75                 strcpy(ar_filename, "control.tar.gz");
76                 extract_list = argv+optind+1;
77                 printf("list one is [%s]\n",extract_list[0]);
78         }
79 */
80         return(EXIT_SUCCESS);
81 }