]> git.sur5r.net Git - cc65/blob - src/od65/main.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / od65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*             Main program of the od65 object file dump utility             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2012, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 52                                           */
11 /*                D-70794 Filderstadt                                        */
12 /* EMail:         uz@cc65.org                                                */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <errno.h>
40
41 /* common */
42 #include "cmdline.h"
43 #include "objdefs.h"
44 #include "version.h"
45
46 /* od65 */
47 #include "dump.h"
48 #include "error.h"
49 #include "fileio.h"
50 #include "global.h"
51
52
53
54 /*****************************************************************************/
55 /*                                   Data                                    */
56 /*****************************************************************************/
57
58
59
60 static unsigned FilesProcessed = 0;
61
62
63
64 /*****************************************************************************/
65 /*                                   Code                                    */
66 /*****************************************************************************/
67
68
69
70 static void Usage (void)
71 /* Print usage information and exit */
72 {
73     printf ("Usage: %s [options] file [options] [file]\n"
74             "Short options:\n"
75             "  -h\t\t\tHelp (this text)\n"
76             "  -H\t\t\tDump the object file header\n"
77             "  -S\t\t\tDump segments sizes\n"
78             "  -V\t\t\tPrint the version number and exit\n"
79             "\n"
80             "Long options:\n"
81             "  --dump-all\t\tDump all object file information\n"
82             "  --dump-dbgsyms\tDump debug symbols\n"
83             "  --dump-exports\tDump exported symbols\n"
84             "  --dump-files\t\tDump the source files\n"
85             "  --dump-header\t\tDump the object file header\n"
86             "  --dump-imports\tDump imported symbols\n"
87             "  --dump-lineinfo\tDump line information\n"
88             "  --dump-options\tDump object file options\n"
89             "  --dump-segments\tDump the segments in the file\n"
90             "  --dump-segsize\tDump segments sizes\n"
91             "  --help\t\tHelp (this text)\n"
92             "  --version\t\tPrint the version number and exit\n",
93             ProgName);
94 }
95
96
97
98 static void OptDumpAll (const char* Opt attribute ((unused)),
99                         const char* Arg attribute ((unused)))
100 /* Dump all object file information */
101 {
102     What |= D_ALL;
103 }
104
105
106
107 static void OptDumpDbgSyms (const char* Opt attribute ((unused)),
108                             const char* Arg attribute ((unused)))
109 /* Dump debug symbols contained in the object file */
110 {
111     What |= D_DBGSYMS;
112 }
113
114
115
116 static void OptDumpExports (const char* Opt attribute ((unused)),
117                             const char* Arg attribute ((unused)))
118 /* Dump the exported symbols */
119 {
120     What |= D_EXPORTS;
121 }
122
123
124
125 static void OptDumpFiles (const char* Opt attribute ((unused)),
126                           const char* Arg attribute ((unused)))
127 /* Dump the source files */
128 {
129     What |= D_FILES;
130 }
131
132
133
134 static void OptDumpHeader (const char* Opt attribute ((unused)),
135                            const char* Arg attribute ((unused)))
136 /* Dump the object file header */
137 {
138     What |= D_HEADER;
139 }
140
141
142
143 static void OptDumpImports (const char* Opt attribute ((unused)),
144                             const char* Arg attribute ((unused)))
145 /* Dump the imported symbols */
146 {
147     What |= D_IMPORTS;
148 }
149
150
151
152 static void OptDumpLineInfo (const char* Opt attribute ((unused)),
153                              const char* Arg attribute ((unused)))
154 /* Dump the line infos */
155 {
156     What |= D_LINEINFO;
157 }
158
159
160
161 static void OptDumpOptions (const char* Opt attribute ((unused)),
162                             const char* Arg attribute ((unused)))
163 /* Dump the object file options */
164 {
165     What |= D_OPTIONS;
166 }
167
168
169
170 static void OptDumpScopes (const char* Opt attribute ((unused)),
171                            const char* Arg attribute ((unused)))
172 /* Dump the scopes in the object file */
173 {
174     What |= D_SCOPES;
175 }
176
177
178
179 static void OptDumpSegments (const char* Opt attribute ((unused)),
180                              const char* Arg attribute ((unused)))
181 /* Dump the segments in the object file */
182 {
183     What |= D_SEGMENTS;
184 }
185
186
187
188 static void OptDumpSegSize (const char* Opt attribute ((unused)),
189                             const char* Arg attribute ((unused)))
190 /* Dump the segments in the object file */
191 {
192     What |= D_SEGSIZE;
193 }
194
195
196
197 static void OptHelp (const char* Opt attribute ((unused)),
198                      const char* Arg attribute ((unused)))
199 /* Print usage information and exit */
200 {
201     Usage ();
202     exit (EXIT_SUCCESS);
203 }
204
205
206
207 static void OptVersion (const char* Opt attribute ((unused)),
208                         const char* Arg attribute ((unused)))
209 /* Print the assembler version */
210 {
211     fprintf (stderr, "%s V%s\n", ProgName, GetVersionAsString ());
212 }
213
214
215
216 static void DumpFile (const char* Name)
217 /* Dump information from the named file */
218 {
219     unsigned long Magic;
220
221     /* Try to open the file */
222     FILE* F = fopen (Name, "rb");
223     if (F == 0) {
224         Error ("Cannot open `%s': %s", Name, strerror (errno));
225     }
226
227     /* Read the magic word */
228     Magic = Read32 (F);
229
230     /* Do we know this type of file? */
231     if (Magic != OBJ_MAGIC) {
232
233         /* Unknown format */
234         printf ("%s: (no xo65 object file)\n", Name);
235
236     } else if (What == 0) {
237
238         /* Special handling if no info was requested */
239         printf ("%s: (no information requested)\n", Name);
240
241     } else {
242
243         /* Print the filename */
244         printf ("%s:\n", Name);
245
246         /* Check what to dump */
247         if (What & D_HEADER) {
248             DumpObjHeader (F, 0);
249         }
250         if (What & D_OPTIONS) {
251             DumpObjOptions (F, 0);
252         }
253         if (What & D_FILES) {
254             DumpObjFiles (F, 0);
255         }
256         if (What & D_SEGMENTS) {
257             DumpObjSegments (F, 0);
258         }
259         if (What & D_IMPORTS) {
260             DumpObjImports (F, 0);
261         }
262         if (What & D_EXPORTS) {
263             DumpObjExports (F, 0);
264         }
265         if (What & D_DBGSYMS) {
266             DumpObjDbgSyms (F, 0);
267         }
268         if (What & D_LINEINFO) {
269             DumpObjLineInfo (F, 0);
270         }
271         if (What & D_SCOPES) {
272             DumpObjScopes (F, 0);
273         }
274         if (What & D_SEGSIZE) {
275             DumpObjSegSize (F, 0);
276         }
277     }
278
279     /* Close the file */
280     fclose (F);
281 }
282
283
284
285 int main (int argc, char* argv [])
286 /* Assembler main program */
287 {
288     /* Program long options */
289     static const LongOpt OptTab[] = {
290         { "--dump-all",         0,      OptDumpAll              },
291         { "--dump-dbgsyms",     0,      OptDumpDbgSyms          },
292         { "--dump-exports",     0,      OptDumpExports          },
293         { "--dump-files",       0,      OptDumpFiles            },
294         { "--dump-header",      0,      OptDumpHeader           },
295         { "--dump-imports",     0,      OptDumpImports          },
296         { "--dump-lineinfo",    0,      OptDumpLineInfo         },
297         { "--dump-options",     0,      OptDumpOptions          },
298         { "--dump-scopes",      0,      OptDumpScopes           },
299         { "--dump-segments",    0,      OptDumpSegments         },
300         { "--dump-segsize",     0,      OptDumpSegSize          },
301         { "--help",             0,      OptHelp                 },
302         { "--version",          0,      OptVersion              },
303     };
304
305     unsigned I;
306
307     /* Initialize the cmdline module */
308     InitCmdLine (&argc, &argv, "od65");
309
310     /* Check the parameters */
311     I = 1;
312     while (I < ArgCount) {
313
314         /* Get the argument */
315         const char* Arg = ArgVec[I];
316
317         /* Check for an option */
318         if (Arg [0] == '-') {
319             switch (Arg [1]) {
320
321                 case '-':
322                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
323                     break;
324
325                 case 'h':
326                     OptHelp (Arg, 0);
327                     break;
328
329                 case 'H':
330                     OptDumpHeader (Arg, 0);
331                     break;
332
333                 case 'S':
334                     OptDumpSegSize (Arg, 0);
335                     break;
336
337                 case 'V':
338                     OptVersion (Arg, 0);
339                     break;
340
341                 default:
342                     UnknownOption (Arg);
343                     break;
344
345             }
346         } else {
347             /* Filename. Dump it. */
348             DumpFile (Arg);
349             ++FilesProcessed;
350         }
351
352         /* Next argument */
353         ++I;
354     }
355
356     /* Print a message if we did not process any files */
357     if (FilesProcessed == 0) {
358         fprintf (stderr, "%s: No input files\n", ProgName);
359     }
360
361     /* Success */
362     return EXIT_SUCCESS;
363 }
364
365
366