]> git.sur5r.net Git - cc65/blob - src/common/cmdline.c
3d4ac8cb17e567f3b178ae7f63de85d4bf8c9300
[cc65] / src / common / cmdline.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 cmdline.c                                 */
4 /*                                                                           */
5 /*                 Helper functions for command line parsing                 */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000     Ullrich von Bassewitz                                        */
10 /*              Wacholderweg 14                                              */
11 /*              D-70597 Stuttgart                                            */
12 /* EMail:       uz@musoftware.de                                             */
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
39 #include "cmdline.h"
40
41
42
43 /*****************************************************************************/
44 /*                                   Data                                    */
45 /*****************************************************************************/
46
47
48
49 static char** ArgVec     = 0;
50 static unsigned ArgCount = 0;
51
52
53
54 /*****************************************************************************/
55 /*                                   Code                                    */
56 /*****************************************************************************/
57
58
59
60 void InitCmdLine (unsigned aArgCount, char* aArgVec[])
61 /* Initialize command line parsing. aArgVec is the argument array terminated by
62  * a NULL pointer (as usual), ArgCount is the number of valid arguments in the
63  * array. Both arguments are remembered in static storage.
64  */
65 {
66     ArgCount = aArgCount;
67     ArgVec   = aArgVec;
68 }
69
70
71
72 void UnknownOption (const char* Opt)
73 /* Print an error about an unknown option. */
74 {
75     fprintf (stderr, "Unknown option: %s\n", Opt);
76     exit (EXIT_FAILURE);
77 }
78
79
80
81 void NeedArg (const char* Opt)
82 /* Print an error about a missing option argument and exit. */
83 {
84     fprintf (stderr, "Option requires an argument: %s\n", Opt);
85     exit (EXIT_FAILURE);
86 }
87
88
89
90 void InvSym (const char* Def)
91 /* Print an error about an invalid symbol definition and die */
92 {
93     fprintf (stderr, "Invalid symbol definition: `%s'\n", Def);
94     exit (EXIT_FAILURE);
95 }
96
97
98
99 const char* GetArg (int* ArgNum, unsigned Len)
100 /* Get an argument for a short option. The argument may be appended to the
101  * option itself or may be separate. Len is the length of the option string.
102  */
103 {
104     const char* Arg = ArgVec[*ArgNum];
105     if (Arg[Len] != '\0') {
106         /* Argument appended */
107         return Arg + Len;
108     } else {
109         /* Separate argument */
110         Arg = ArgVec[*ArgNum + 1];
111         if (Arg == 0) {
112             /* End of arguments */
113             NeedArg (ArgVec[*ArgNum]);
114         }
115         ++(*ArgNum);
116         return Arg;
117     }
118 }
119
120
121
122 void LongOption (int* ArgNum, const LongOpt* OptTab, unsigned OptCount)
123 /* Handle a long command line option */
124 {
125     /* Get the option and the argument (which may be zero) */
126     const char* Opt = ArgVec[*ArgNum];
127
128     /* Search the table for a match */
129     while (OptCount) {
130         if (strcmp (Opt, OptTab->Option) == 0) {
131             /* Found, call the function */
132             if (OptTab->ArgCount > 0) {
133                 OptTab->Func (Opt, ArgVec[++(*ArgNum)]);
134             } else {
135                 OptTab->Func (Opt, 0);
136             }
137             /* Done */
138             return;
139         }
140
141         /* Next table entry */
142         --OptCount;
143         ++OptTab;
144     }
145
146     /* Invalid option */
147     UnknownOption (Opt);
148 }
149
150
151