]> git.draconx.ca Git - upkg.git/blob - src/upkg.c
libupkg: Remove the group stuff from upkg_export_class.
[upkg.git] / src / upkg.c
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright (C) 2009 Nick Bowler
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <getopt.h>
24
25 #include <glib-object.h>
26
27 #include "upkg.h"
28 #include "module.h"
29 #include "uobject.h"
30 #include "exportable.h"
31
32 enum {
33         MODE_INFO,
34         MODE_EXPORT,
35         MODE_MAX
36 };
37
38 int verbose = 0;
39
40 static const char *progname = "upkg";
41 static const char *sopts = "ivVH";
42 static const struct option lopts[] = {
43         { "info",     0, NULL, 'i' },
44         { "verbose",  0, NULL, 'v' },
45         { "version",  0, NULL, 'V' },
46         { "help",     0, NULL, 'H' },
47         { 0 }
48 };
49
50 void print_version(void)
51 {
52         printf("%s\n", PACKAGE_STRING);
53         puts("\
54 Copyright (C) 2009 Nick Bowler.\n\
55 This is free software: you are free to change and redistribute it.\n\
56 There is NO WARRANTY, to the extent permitted by law."
57         );
58 }
59
60 void print_usage(FILE *f)
61 {
62         fprintf(f, "Usage: %s [options] package\n", progname);
63 }
64
65 void print_help(void)
66 {
67         print_usage(stdout);
68         puts("Detailed help coming soon.  Until then, I'll just list my options.");
69         for (unsigned i = 0; lopts[i].name; i++) {
70                 const struct option *o = &lopts[i];
71                 printf("\t--%s", o->name);
72
73                 if (o->has_arg == 1) {
74                         printf("=val");
75                 } else if (o->has_arg == 2) {
76                         printf("[=val]");
77                 }
78
79                 printf(" (-%c)\n", o->val);
80         }
81 }
82
83 void print_upkg_flags(const char *prefix, unsigned long flags)
84 {
85         if (flags & UPKG_FLAG_ALLOW_DOWNLOAD)
86                 printf("%sAllowDownload\n", prefix);
87         if (flags & UPKG_FLAG_CLIENT_OPTIONAL)
88                 printf("%sClientOptional\n", prefix);
89         if (flags & UPKG_FLAG_SERVER_ONLY)
90                 printf("%sServerOnly\n", prefix);
91         if (flags & UPKG_FLAG_BROKEN_LINKS)
92                 printf("%sBrokenLinks\n", prefix);
93         if (flags & UPKG_FLAG_INSECURE)
94                 printf("%sInsecure\n", prefix);
95         if (flags & UPKG_FLAG_REQUIRED)
96                 printf("%sRequired\n", prefix);
97 }
98
99 void print_guid(unsigned char guid[static 16])
100 {
101         for (unsigned i = 0; i < 16; i++) {
102                 printf("%02hhx", guid[i]);
103                 if (i == 15)
104                         putchar('\n');
105                 else
106                         putchar(' ');
107         }
108 }
109
110 void print_upkg_exports(struct upkg *pkg)
111 {
112         for (unsigned i = 0; i < pkg->export_count; i++) {
113                 const char *name, *package, *class;
114
115                 name  = upkg_export_name(pkg, i);
116                 class = upkg_export_class(pkg, i, &package);
117
118                 if (!name || !class)
119                         continue;
120
121                 printf("%u - %s (%s.%s)\n", i+1, name, package, class);
122         }
123 }
124
125 int package_info(struct upkg *pkg)
126 {
127         printf("Version: %u\n",  pkg->version);
128         printf("License: %u\n",  pkg->license);
129         printf("GUID: ");
130         print_guid(pkg->guid);
131
132         printf("Flags:   %lx\n", pkg->flags);
133         if (verbose >= 1) {
134                 print_upkg_flags("\t", pkg->flags);
135         }
136
137         if (verbose >= 1) {
138                 printf("Names:   %lu\n", pkg->name_count);
139                 if (verbose >= 2) {
140                         for (unsigned long i = 0; i < pkg->name_count; i++) {
141                                 printf("\t%s\n", upkg_get_name(pkg, i));
142                         }
143                 }
144         }
145
146         printf("Exports: %lu\n", pkg->export_count);
147         if (verbose >= 1) print_upkg_exports(pkg);
148         printf("Imports: %lu\n", pkg->import_count);
149
150         return EXIT_SUCCESS;
151 }
152
153 int main(int argc, char **argv)
154 {
155         struct upkg *pkg;
156         unsigned mode = MODE_INFO;
157         int opt, rc = EXIT_FAILURE;
158
159         if (argc > 0) progname = argv[0];
160
161         while ((opt = getopt_long(argc, argv, sopts, lopts, NULL)) != -1) {
162                 switch (opt) {
163                 case 'i':
164                         mode = MODE_INFO;
165                         break;
166                 case 'v':
167                         verbose++;
168                         break;
169                 case 'V':
170                         print_version();
171                         return EXIT_SUCCESS;
172                 case 'H':
173                         print_help();
174                         return EXIT_SUCCESS;
175                 default:
176                         print_usage(stderr);
177                         return EXIT_FAILURE;
178                 }
179         }
180
181         if (argv[optind] == NULL) {
182                 print_usage(stderr);
183                 return EXIT_FAILURE;
184         }
185
186         if (module_init() != 0)
187                 return EXIT_FAILURE;
188
189         pkg = upkg_fopen(argv[optind]);
190         if (!pkg) {
191                 fprintf(stderr, "failed to open package!\n");
192                 return EXIT_FAILURE;
193         }
194
195         switch (mode) {
196         case MODE_INFO:
197                 rc = package_info(pkg);
198                 break;
199         }
200
201         upkg_close(pkg);
202         module_exit();
203         return rc;
204 }