ntdll: Move some duplicated locale definitions to a common header.
[wine.git] / tools / winedump / main.c
blobf9557983465d33ca87f11c9d386f1b2486ca246f
1 /*
2 * Option processing and main()
4 * Copyright 2000 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
23 #include "winedump.h"
25 _globals globals; /* All global variables */
28 static void do_include (const char *arg)
30 if (!globals.directory)
31 globals.directory = xstrdup(arg);
32 else
33 globals.directory = strmake( "%s %s", globals.directory, arg );
34 globals.do_code = TRUE;
38 static inline const char* strip_ext (const char *str)
40 int len = strlen(str);
41 if (len>4 && strcmp(str+len-4,".dll") == 0)
42 return str_substring (str, str+len-4);
43 else
44 return xstrdup (str);
48 static void do_name (const char *arg)
50 globals.dll_name = strip_ext (arg);
54 static void do_spec (const char *arg)
56 if (globals.mode != NONE) fatal("Only one mode can be specified\n");
57 globals.mode = SPEC;
61 static void do_demangle (const char *arg)
63 if (globals.mode != NONE) fatal("Only one mode can be specified\n");
64 globals.mode = DMGL;
65 globals.do_code = TRUE;
66 globals.do_demangle = TRUE;
70 static void do_dump (const char *arg)
72 if (globals.mode != NONE) fatal("Only one mode can be specified\n");
73 globals.mode = DUMP;
74 globals.do_code = TRUE;
78 static void do_code (const char *arg)
80 globals.do_code = TRUE;
84 static void do_trace (const char *arg)
86 globals.do_trace = TRUE;
87 globals.do_code = TRUE;
91 static void do_forward (const char *arg)
93 globals.forward_dll = arg;
94 globals.do_trace = TRUE;
95 globals.do_code = TRUE;
98 static void do_document (const char *arg)
100 globals.do_documentation = TRUE;
103 static void do_cdecl (const char *arg)
105 globals.do_cdecl = TRUE;
109 static void do_quiet (const char *arg)
111 globals.do_quiet = TRUE;
115 static void do_start (const char *arg)
117 globals.start_ordinal = atoi (arg);
118 if (!globals.start_ordinal)
119 fatal ("Invalid -s option (must be numeric)");
123 static void do_end (const char *arg)
125 globals.end_ordinal = atoi (arg);
126 if (!globals.end_ordinal)
127 fatal ("Invalid -e option (must be numeric)");
131 static void do_symfile (const char *arg)
133 FILE *f;
134 char symstring[256]; /* keep count with "%<width>s" below */
135 search_symbol *symbolp,**symbolptail = &globals.search_symbol;
137 if (!(f = fopen(arg, "rt")))
138 fatal ("Cannot open <symfile>");
139 while (1 == fscanf(f, "%255s", symstring)) /* keep count with [<width>] above */
141 symstring[sizeof(symstring)-1] = '\0';
142 symbolp = xmalloc(sizeof(*symbolp) + strlen(symstring));
143 strcpy(symbolp->symbolname, symstring);
144 symbolp->found = FALSE;
145 symbolp->next = NULL;
146 *symbolptail = symbolp;
147 symbolptail = &symbolp->next;
149 if (fclose(f))
150 fatal ("Cannot close <symfile>");
154 static void do_verbose (const char *arg)
156 globals.do_verbose = TRUE;
160 static void do_symdmngl (const char *arg)
162 globals.do_demangle = TRUE;
165 static void do_dumphead (const char *arg)
167 globals.do_dumpheader = TRUE;
170 static void do_dumpsect (const char* arg)
172 globals.dumpsect = arg;
175 static void do_rawdebug (const char *arg)
177 globals.do_debug = TRUE;
180 static void do_dumpall(const char *arg)
182 globals.do_dumpheader = TRUE;
183 globals.do_dump_rawdata = TRUE;
184 globals.do_symbol_table = TRUE;
185 globals.dumpsect = "ALL";
188 static void do_symtable(const char* arg)
190 globals.do_symbol_table = TRUE;
193 struct my_option
195 const char *name;
196 Mode mode;
197 int has_arg;
198 void (*func)(const char *arg);
199 const char *usage;
202 static const struct my_option option_table[] = {
203 {"--help",NONE, 0, do_usage, "--help Display this help message"},
204 {"-h", NONE, 0, do_usage, "-h Synonym for --help"},
205 {"-?", NONE, 0, do_usage, "-? Synonym for --help"},
206 {"dump", DUMP, 0, do_dump, "dump <file> Dump the contents of 'file' (dll, exe, lib...)"},
207 {"-C", DUMP, 0, do_symdmngl, "-C Turn on symbol demangling"},
208 {"-f", DUMP, 0, do_dumphead, "-f Dump file header information"},
209 {"-G", DUMP, 0, do_rawdebug, "-G Dump raw debug information"},
210 {"-j", DUMP, 1, do_dumpsect, "-j <sect_name> Dump only the content of section 'sect_name'\n"
211 " (import, export, debug, resource, tls, loadcfg, clr, reloc, except, apiset)"},
212 {"-t", DUMP, 0, do_symtable, "-t Dump symbol table"},
213 {"-x", DUMP, 0, do_dumpall, "-x Dump everything"},
214 {"sym", DMGL, 0, do_demangle, "sym <sym> Demangle C++ symbol <sym> and exit"},
215 {"spec", SPEC, 0, do_spec, "spec <dll> Use 'dll' for input file and generate implementation code"},
216 {"-I", SPEC, 1, do_include, "-I <dir> Look for prototypes in 'dir' (implies -c)"},
217 {"-c", SPEC, 0, do_code, "-c Generate skeleton code (requires -I)"},
218 {"-t", SPEC, 0, do_trace, "-t TRACE arguments (implies -c)"},
219 {"-f", SPEC, 1, do_forward, "-f <dll> Forward calls to 'dll' (implies -t)"},
220 {"-D", SPEC, 0, do_document, "-D Generate documentation"},
221 {"-o", SPEC, 1, do_name, "-o <name> Set the output dll name (default: dll). Note: strips .dll extensions"},
222 {"-C", SPEC, 0, do_cdecl, "-C Assume __cdecl calls (default: __stdcall)"},
223 {"-s", SPEC, 1, do_start, "-s <num> Start prototype search after symbol 'num'"},
224 {"-e", SPEC, 1, do_end, "-e <num> End prototype search after symbol 'num'"},
225 {"-S", SPEC, 1, do_symfile, "-S <symfile> Search only prototype names found in 'symfile'"},
226 {"-q", SPEC, 0, do_quiet, "-q Don't show progress (quiet)."},
227 {"-v", SPEC, 0, do_verbose, "-v Show lots of detail while working (verbose)."},
228 {NULL, NONE, 0, NULL, NULL}
231 void do_usage (const char *arg)
233 const struct my_option *opt;
234 printf ("Usage: winedump [-h | sym <sym> | spec <dll> | dump <file>]\n");
235 printf ("Mode options (can be put as the mode (sym/spec/dump...) is declared):\n");
236 printf (" When used in --help mode\n");
237 for (opt = option_table; opt->name; opt++)
238 if (opt->mode == NONE)
239 printf (" %s\n", opt->usage);
240 printf (" When used in sym mode\n");
241 for (opt = option_table; opt->name; opt++)
242 if (opt->mode == DMGL)
243 printf (" %s\n", opt->usage);
244 printf (" When used in spec mode\n");
245 for (opt = option_table; opt->name; opt++)
246 if (opt->mode == SPEC)
247 printf (" %s\n", opt->usage);
248 printf (" When used in dump mode\n");
249 for (opt = option_table; opt->name; opt++)
250 if (opt->mode == DUMP)
251 printf (" %s\n", opt->usage);
253 puts ("");
254 exit (1);
258 /*******************************************************************
259 * parse_cmdline
261 * Parse options from the argv array
263 static void parse_cmdline (char *argv[])
265 const struct my_option *opt;
266 char *const *ptr;
267 const char *arg = NULL;
269 ptr = argv + 1;
271 while (*ptr != NULL)
273 for (opt = option_table; opt->name; opt++)
275 if (globals.mode != NONE && opt->mode != NONE && globals.mode != opt->mode)
276 continue;
277 if (((opt->has_arg == 1) && !strncmp (*ptr, opt->name, strlen (opt->name))) ||
278 ((opt->has_arg == 2) && !strcmp (*ptr, opt->name)))
280 arg = *ptr + strlen (opt->name);
281 if (*arg == '\0') arg = *++ptr;
282 break;
284 if (!strcmp (*ptr, opt->name))
286 arg = NULL;
287 break;
291 if (!opt->name)
293 if ((*ptr)[0] == '-')
294 fatal ("Unrecognized option");
295 if (globals.input_name != NULL)
296 fatal ("Only one file can be treated at once");
297 globals.input_name = *ptr;
299 else if (opt->has_arg && arg != NULL)
300 opt->func (arg);
301 else
302 opt->func ("");
304 ptr++;
307 if (globals.mode == SPEC && globals.do_code && !globals.directory)
308 fatal ("-I must be used if generating code");
310 if (VERBOSE && QUIET)
311 fatal ("Options -v and -q are mutually exclusive");
313 if (globals.mode == NONE)
314 do_dump("");
317 static void set_module_name(BOOL setUC)
319 /* FIXME: we shouldn't assume all module extensions are .dll in winedump
320 * in some cases, we could have some .drv for example
322 globals.input_module = replace_extension( get_basename( globals.input_name ), ".dll", "" );
323 OUTPUT_UC_DLL_NAME = (setUC) ? str_toupper( xstrdup (OUTPUT_DLL_NAME)) : "";
326 /* Marks the symbol as 'found'! */
327 /* return: perform-search */
328 static BOOL symbol_searched(int count, const char *symbolname)
330 search_symbol *search_symbol;
332 if (!(count >= globals.start_ordinal
333 && (!globals.end_ordinal || count <= globals.end_ordinal)))
334 return FALSE;
335 if (!globals.search_symbol)
336 return TRUE;
337 for (search_symbol = globals.search_symbol;
338 search_symbol;
339 search_symbol = search_symbol->next)
341 if (!strcmp(symbolname, search_symbol->symbolname))
343 search_symbol->found = TRUE;
344 return TRUE;
347 return FALSE;
350 /* return: some symbols weren't found */
351 static BOOL symbol_finish(void)
353 const search_symbol *search_symbol;
354 BOOL started = FALSE;
356 for (search_symbol = globals.search_symbol;
357 search_symbol;
358 search_symbol = search_symbol->next)
360 if (search_symbol->found)
361 continue;
362 if (!started)
364 /* stderr? not a practice here */
365 puts("These requested <symfile> symbols weren't found:");
366 started = TRUE;
368 printf("\t%s\n",search_symbol->symbolname);
370 return started;
373 /*******************************************************************
374 * main
376 #ifdef __GNUC__
377 int main (int argc __attribute__((unused)), char *argv[])
378 #else
379 int main (int argc, char *argv[])
380 #endif
382 parsed_symbol symbol;
383 int count = 0;
385 globals.mode = NONE;
386 globals.forward_dll = NULL;
387 globals.input_name = NULL;
388 globals.dumpsect = NULL;
390 parse_cmdline (argv);
392 memset (&symbol, 0, sizeof (parsed_symbol));
394 switch (globals.mode)
396 case DMGL:
397 VERBOSE = TRUE;
399 if (globals.input_name == NULL)
400 fatal("No symbol name has been given\n");
401 printf("%s\n", get_symbol_str(globals.input_name));
402 break;
404 case SPEC:
405 if (globals.input_name == NULL)
406 fatal("No file name has been given\n");
407 set_module_name(TRUE);
408 if (!dll_open (globals.input_name))
409 break;
411 output_spec_preamble ();
412 output_header_preamble ();
413 output_c_preamble ();
415 while (dll_next_symbol (&symbol))
417 count++;
419 if (NORMAL)
420 printf ("Export %3d - '%s' ...%c", count, symbol.symbol,
421 VERBOSE ? '\n' : ' ');
423 if (globals.do_code && symbol_searched(count, symbol.symbol))
425 /* Attempt to get information about the symbol */
426 BOOL result = symbol_demangle (&symbol) || symbol_search(&symbol);
428 if (result && symbol.function_name)
429 /* Clean up the prototype */
430 symbol_clean_string (symbol.function_name);
432 if (NORMAL)
433 puts (result ? "[OK]" : "[Not Found]");
435 else if (NORMAL)
436 puts ("[Ignoring]");
438 output_spec_symbol (&symbol);
439 output_header_symbol (&symbol);
440 output_c_symbol (&symbol);
442 symbol_clear (&symbol);
445 output_makefile ();
447 if (VERBOSE)
448 puts ("Finished, Cleaning up...");
449 if (symbol_finish())
450 return 1;
451 break;
452 case NONE:
453 do_usage(0);
454 break;
455 case DUMP:
456 if (globals.input_name == NULL)
457 fatal("No file name has been given\n");
458 set_module_name(FALSE);
459 dump_file(globals.input_name);
460 break;
463 return 0;