]> git.saurik.com Git - apt.git/blame_incremental - apt-pkg/contrib/cmndline.cc
Revert "Revert "appease adequate with some weak symbols for -private""
[apt.git] / apt-pkg / contrib / cmndline.cc
... / ...
CommitLineData
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: cmndline.cc,v 1.15 2003/02/10 01:40:58 doogie Exp $
4/* ######################################################################
5
6 Command Line Class - Sophisticated command line parser
7
8 This source is placed in the Public Domain, do with it what you will
9 It was originally written by Jason Gunthorpe <jgg@debian.org>.
10
11 ##################################################################### */
12 /*}}}*/
13// Include files /*{{{*/
14#include<config.h>
15
16#include <apt-pkg/configuration.h>
17#include <apt-pkg/cmndline.h>
18#include <apt-pkg/error.h>
19#include <apt-pkg/strutl.h>
20
21#include <stddef.h>
22#include <stdlib.h>
23#include <string.h>
24#include <string>
25
26#include <apti18n.h>
27 /*}}}*/
28using namespace std;
29
30// CommandLine::CommandLine - Constructor /*{{{*/
31// ---------------------------------------------------------------------
32/* */
33CommandLine::CommandLine(Args *AList,Configuration *Conf) : ArgList(AList),
34 Conf(Conf), FileList(0)
35{
36}
37CommandLine::CommandLine() : ArgList(NULL), Conf(NULL), FileList(0)
38{
39}
40 /*}}}*/
41// CommandLine::~CommandLine - Destructor /*{{{*/
42// ---------------------------------------------------------------------
43/* */
44CommandLine::~CommandLine()
45{
46 delete [] FileList;
47}
48 /*}}}*/
49// CommandLine::GetCommand - return the first non-option word /*{{{*/
50char const * CommandLine::GetCommand(Dispatch const * const Map,
51 unsigned int const argc, char const * const * const argv)
52{
53 // if there is a -- on the line there must be the word we search for either
54 // before it (as -- marks the end of the options) or right after it (as we can't
55 // decide if the command is actually an option, given that in theory, you could
56 // have parameters named like commands)
57 for (size_t i = 1; i < argc; ++i)
58 {
59 if (strcmp(argv[i], "--") != 0)
60 continue;
61 // check if command is before --
62 for (size_t k = 1; k < i; ++k)
63 for (size_t j = 0; Map[j].Match != NULL; ++j)
64 if (strcmp(argv[k], Map[j].Match) == 0)
65 return Map[j].Match;
66 // see if the next token after -- is the command
67 ++i;
68 if (i < argc)
69 for (size_t j = 0; Map[j].Match != NULL; ++j)
70 if (strcmp(argv[i], Map[j].Match) == 0)
71 return Map[j].Match;
72 // we found a --, but not a command
73 return NULL;
74 }
75 // no --, so search for the first word matching a command
76 // FIXME: How like is it that an option parameter will be also a valid Match ?
77 for (size_t i = 1; i < argc; ++i)
78 {
79 if (*(argv[i]) == '-')
80 continue;
81 for (size_t j = 0; Map[j].Match != NULL; ++j)
82 if (strcmp(argv[i], Map[j].Match) == 0)
83 return Map[j].Match;
84 }
85 return NULL;
86}
87 /*}}}*/
88// CommandLine::Parse - Main action member /*{{{*/
89// ---------------------------------------------------------------------
90/* */
91bool CommandLine::Parse(int argc,const char **argv)
92{
93 delete [] FileList;
94 FileList = new const char *[argc];
95 const char **Files = FileList;
96 int I;
97 for (I = 1; I != argc; I++)
98 {
99 const char *Opt = argv[I];
100
101 // It is not an option
102 if (*Opt != '-')
103 {
104 *Files++ = Opt;
105 continue;
106 }
107
108 Opt++;
109
110 // Double dash signifies the end of option processing
111 if (*Opt == '-' && Opt[1] == 0)
112 {
113 I++;
114 break;
115 }
116
117 // Single dash is a short option
118 if (*Opt != '-')
119 {
120 // Iterate over each letter
121 while (*Opt != 0)
122 {
123 // Search for the option
124 Args *A;
125 for (A = ArgList; A->end() == false && A->ShortOpt != *Opt; A++);
126 if (A->end() == true)
127 return _error->Error(_("Command line option '%c' [from %s] is not understood in combination with the other options."),*Opt,argv[I]);
128
129 if (HandleOpt(I,argc,argv,Opt,A) == false)
130 return false;
131 if (*Opt != 0)
132 Opt++;
133 }
134 continue;
135 }
136
137 Opt++;
138
139 // Match up to a = against the list
140 Args *A;
141 const char *OptEnd = strchrnul(Opt, '=');
142 for (A = ArgList; A->end() == false &&
143 (A->LongOpt == 0 || stringcasecmp(Opt,OptEnd,A->LongOpt) != 0);
144 ++A);
145
146 // Failed, look for a word after the first - (no-foo)
147 bool PreceedMatch = false;
148 if (A->end() == true)
149 {
150 Opt = (const char*) memchr(Opt, '-', OptEnd - Opt);
151 if (Opt == NULL)
152 return _error->Error(_("Command line option %s is not understood in combination with the other options"),argv[I]);
153 Opt++;
154
155 for (A = ArgList; A->end() == false &&
156 (A->LongOpt == 0 || stringcasecmp(Opt,OptEnd,A->LongOpt) != 0);
157 ++A);
158
159 // Failed again..
160 if (A->end() == true && OptEnd - Opt != 1)
161 return _error->Error(_("Command line option %s is not understood in combination with the other options"),argv[I]);
162
163 // The option could be a single letter option prefixed by a no-..
164 if (A->end() == true)
165 {
166 for (A = ArgList; A->end() == false && A->ShortOpt != *Opt; A++);
167
168 if (A->end() == true)
169 return _error->Error(_("Command line option %s is not understood in combination with the other options"),argv[I]);
170 }
171
172 // The option is not boolean
173 if (A->IsBoolean() == false)
174 return _error->Error(_("Command line option %s is not boolean"),argv[I]);
175 PreceedMatch = true;
176 }
177
178 // Deal with it.
179 OptEnd--;
180 if (HandleOpt(I,argc,argv,OptEnd,A,PreceedMatch) == false)
181 return false;
182 }
183
184 // Copy any remaining file names over
185 for (; I != argc; I++)
186 *Files++ = argv[I];
187 *Files = 0;
188
189 SaveInConfig(argc, argv);
190
191 return true;
192}
193 /*}}}*/
194// CommandLine::HandleOpt - Handle a single option including all flags /*{{{*/
195// ---------------------------------------------------------------------
196/* This is a helper function for parser, it looks at a given argument
197 and looks for specific patterns in the string, it gets tokanized
198 -ruffly- like -*[yes|true|enable]-(o|longopt)[=][ ][argument] */
199bool CommandLine::HandleOpt(int &I,int argc,const char *argv[],
200 const char *&Opt,Args *A,bool PreceedMatch)
201{
202 const char *Argument = 0;
203 bool CertainArg = false;
204 int IncI = 0;
205
206 /* Determine the possible location of an option or 0 if their is
207 no option */
208 if (Opt[1] == 0)
209 {
210 if (I + 1 < argc && argv[I+1][0] != '-')
211 Argument = argv[I+1];
212
213 IncI = 1;
214 }
215 else
216 {
217 if (Opt[1] == '=')
218 {
219 CertainArg = true;
220 Argument = Opt + 2;
221 }
222 else
223 Argument = Opt + 1;
224 }
225
226 // Option is an argument set
227 if ((A->Flags & HasArg) == HasArg)
228 {
229 if (Argument == 0)
230 return _error->Error(_("Option %s requires an argument."),argv[I]);
231 Opt += strlen(Opt);
232 I += IncI;
233
234 // Parse a configuration file
235 if ((A->Flags & ConfigFile) == ConfigFile)
236 return ReadConfigFile(*Conf,Argument);
237
238 // Arbitrary item specification
239 if ((A->Flags & ArbItem) == ArbItem)
240 {
241 const char * const J = strchr(Argument, '=');
242 if (J == nullptr)
243 return _error->Error(_("Option %s: Configuration item specification must have an =<val>."),argv[I]);
244
245 Conf->Set(string(Argument,J-Argument), J+1);
246 return true;
247 }
248
249 const char *I = strchrnul(A->ConfName, ' ');
250 if (*I == ' ')
251 Conf->Set(string(A->ConfName,0,I-A->ConfName),string(I+1) + Argument);
252 else
253 Conf->Set(A->ConfName,string(I) + Argument);
254
255 return true;
256 }
257
258 // Option is an integer level
259 if ((A->Flags & IntLevel) == IntLevel)
260 {
261 // There might be an argument
262 if (Argument != 0)
263 {
264 char *EndPtr;
265 unsigned long Value = strtol(Argument,&EndPtr,10);
266
267 // Conversion failed and the argument was specified with an =s
268 if (EndPtr == Argument && CertainArg == true)
269 return _error->Error(_("Option %s requires an integer argument, not '%s'"),argv[I],Argument);
270
271 // Conversion was ok, set the value and return
272 if (EndPtr != 0 && EndPtr != Argument && *EndPtr == 0)
273 {
274 Conf->Set(A->ConfName,Value);
275 Opt += strlen(Opt);
276 I += IncI;
277 return true;
278 }
279 }
280
281 // Increase the level
282 Conf->Set(A->ConfName,Conf->FindI(A->ConfName)+1);
283 return true;
284 }
285
286 // Option is a boolean
287 int Sense = -1; // -1 is unspecified, 0 is yes 1 is no
288
289 // Look for an argument.
290 while (1)
291 {
292 // Look at preceding text
293 char Buffer[300];
294 if (Argument == 0)
295 {
296 if (PreceedMatch == false)
297 break;
298
299 if (strlen(argv[I]) >= sizeof(Buffer))
300 return _error->Error(_("Option '%s' is too long"),argv[I]);
301
302 // Skip the leading dash
303 const char *J = argv[I];
304 for (; *J != 0 && *J == '-'; J++);
305
306 const char *JEnd = strchr(J, '-');
307 if (JEnd != NULL)
308 {
309 strncpy(Buffer,J,JEnd - J);
310 Buffer[JEnd - J] = 0;
311 Argument = Buffer;
312 CertainArg = true;
313 }
314 else
315 break;
316 }
317
318 // Check for boolean
319 Sense = StringToBool(Argument);
320 if (Sense >= 0)
321 {
322 // Eat the argument
323 if (Argument != Buffer)
324 {
325 Opt += strlen(Opt);
326 I += IncI;
327 }
328 break;
329 }
330
331 if (CertainArg == true)
332 return _error->Error(_("Sense %s is not understood, try true or false."),Argument);
333
334 Argument = 0;
335 }
336
337 // Indeterminate sense depends on the flag
338 if (Sense == -1)
339 {
340 if ((A->Flags & InvBoolean) == InvBoolean)
341 Sense = 0;
342 else
343 Sense = 1;
344 }
345
346 Conf->Set(A->ConfName,Sense);
347 return true;
348}
349 /*}}}*/
350// CommandLine::FileSize - Count the number of filenames /*{{{*/
351// ---------------------------------------------------------------------
352/* */
353unsigned int CommandLine::FileSize() const
354{
355 unsigned int Count = 0;
356 for (const char **I = FileList; I != 0 && *I != 0; I++)
357 Count++;
358 return Count;
359}
360 /*}}}*/
361// CommandLine::DispatchArg - Do something with the first arg /*{{{*/
362bool CommandLine::DispatchArg(Dispatch const * const Map,bool NoMatch)
363{
364 int I;
365 for (I = 0; Map[I].Match != 0; I++)
366 {
367 if (strcmp(FileList[0],Map[I].Match) == 0)
368 {
369 bool Res = Map[I].Handler(*this);
370 if (Res == false && _error->PendingError() == false)
371 _error->Error("Handler silently failed");
372 return Res;
373 }
374 }
375
376 // No matching name
377 if (Map[I].Match == 0)
378 {
379 if (NoMatch == true)
380 _error->Error(_("Invalid operation %s"),FileList[0]);
381 }
382
383 return false;
384}
385bool CommandLine::DispatchArg(Dispatch *Map,bool NoMatch)
386{
387 Dispatch const * const Map2 = Map;
388 return DispatchArg(Map2, NoMatch);
389}
390 /*}}}*/
391// CommandLine::SaveInConfig - for output later in a logfile or so /*{{{*/
392// ---------------------------------------------------------------------
393/* We save the commandline here to have it around later for e.g. logging.
394 It feels a bit like a hack here and isn't bulletproof, but it is better
395 than nothing after all. */
396void CommandLine::SaveInConfig(unsigned int const &argc, char const * const * const argv)
397{
398 char cmdline[100 + argc * 50];
399 memset(cmdline, 0, sizeof(cmdline));
400 unsigned int length = 0;
401 bool lastWasOption = false;
402 bool closeQuote = false;
403 for (unsigned int i = 0; i < argc && length < sizeof(cmdline); ++i, ++length)
404 {
405 for (unsigned int j = 0; argv[i][j] != '\0' && length < sizeof(cmdline)-1; ++j, ++length)
406 {
407 cmdline[length] = argv[i][j];
408 if (lastWasOption == true && argv[i][j] == '=')
409 {
410 // That is possibly an option: Quote it if it includes spaces,
411 // the benefit is that this will eliminate also most false positives
412 const char* c = strchr(&argv[i][j+1], ' ');
413 if (c == NULL) continue;
414 cmdline[++length] = '"';
415 closeQuote = true;
416 }
417 }
418 if (closeQuote == true)
419 cmdline[length++] = '"';
420 // Problem: detects also --hello
421 if (cmdline[length-1] == 'o')
422 lastWasOption = true;
423 cmdline[length] = ' ';
424 }
425 cmdline[--length] = '\0';
426 _config->Set("CommandLine::AsString", cmdline);
427}
428 /*}}}*/
429CommandLine::Args CommandLine::MakeArgs(char ShortOpt, char const *LongOpt, char const *ConfName, unsigned long Flags)/*{{{*/
430{
431 /* In theory, this should be a constructor for CommandLine::Args instead,
432 but this breaks compatibility as gcc thinks this is a c++11 initializer_list */
433 CommandLine::Args arg;
434 arg.ShortOpt = ShortOpt;
435 arg.LongOpt = LongOpt;
436 arg.ConfName = ConfName;
437 arg.Flags = Flags;
438 return arg;
439}
440 /*}}}*/