]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/cmndline.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: cmndline.cc,v 1.15 2003/02/10 01:40:58 doogie Exp $
4 /* ######################################################################
6 Command Line Class - Sophisticated command line parser
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>.
11 ##################################################################### */
13 // Include files /*{{{*/
16 #include <apt-pkg/configuration.h>
17 #include <apt-pkg/cmndline.h>
18 #include <apt-pkg/error.h>
19 #include <apt-pkg/strutl.h>
30 // CommandLine::CommandLine - Constructor /*{{{*/
31 // ---------------------------------------------------------------------
33 CommandLine::CommandLine(Args
*AList
,Configuration
*Conf
) : ArgList(AList
),
34 Conf(Conf
), FileList(0)
37 CommandLine::CommandLine() : ArgList(NULL
), Conf(NULL
), FileList(0)
41 // CommandLine::~CommandLine - Destructor /*{{{*/
42 // ---------------------------------------------------------------------
44 CommandLine::~CommandLine()
49 // CommandLine::GetCommand - return the first non-option word /*{{{*/
50 char const * CommandLine::GetCommand(Dispatch
const * const Map
,
51 unsigned int const argc
, char const * const * const argv
)
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
)
59 if (strcmp(argv
[i
], "--") != 0)
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)
66 // see if the next token after -- is the command
69 for (size_t j
= 0; Map
[j
].Match
!= NULL
; ++j
)
70 if (strcmp(argv
[i
], Map
[j
].Match
) == 0)
72 // we found a --, but not a command
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
)
79 if (*(argv
[i
]) == '-')
81 for (size_t j
= 0; Map
[j
].Match
!= NULL
; ++j
)
82 if (strcmp(argv
[i
], Map
[j
].Match
) == 0)
88 // CommandLine::Parse - Main action member /*{{{*/
89 // ---------------------------------------------------------------------
91 bool CommandLine::Parse(int argc
,const char **argv
)
94 FileList
= new const char *[argc
];
95 const char **Files
= FileList
;
97 for (I
= 1; I
!= argc
; I
++)
99 const char *Opt
= argv
[I
];
101 // It is not an option
110 // Double dash signifies the end of option processing
111 if (*Opt
== '-' && Opt
[1] == 0)
117 // Single dash is a short option
120 // Iterate over each letter
123 // Search for the option
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
]);
129 if (HandleOpt(I
,argc
,argv
,Opt
,A
) == false)
139 // Match up to a = against the list
141 const char *OptEnd
= strchrnul(Opt
, '=');
142 for (A
= ArgList
; A
->end() == false &&
143 (A
->LongOpt
== 0 || stringcasecmp(Opt
,OptEnd
,A
->LongOpt
) != 0);
146 // Failed, look for a word after the first - (no-foo)
147 bool PreceedMatch
= false;
148 if (A
->end() == true)
150 Opt
= (const char*) memchr(Opt
, '-', OptEnd
- Opt
);
152 return _error
->Error(_("Command line option %s is not understood in combination with the other options"),argv
[I
]);
155 for (A
= ArgList
; A
->end() == false &&
156 (A
->LongOpt
== 0 || stringcasecmp(Opt
,OptEnd
,A
->LongOpt
) != 0);
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
]);
163 // The option could be a single letter option prefixed by a no-..
164 if (A
->end() == true)
166 for (A
= ArgList
; A
->end() == false && A
->ShortOpt
!= *Opt
; A
++);
168 if (A
->end() == true)
169 return _error
->Error(_("Command line option %s is not understood in combination with the other options"),argv
[I
]);
172 // The option is not boolean
173 if (A
->IsBoolean() == false)
174 return _error
->Error(_("Command line option %s is not boolean"),argv
[I
]);
180 if (HandleOpt(I
,argc
,argv
,OptEnd
,A
,PreceedMatch
) == false)
184 // Copy any remaining file names over
185 for (; I
!= argc
; I
++)
189 SaveInConfig(argc
, argv
);
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] */
199 bool CommandLine::HandleOpt(int &I
,int argc
,const char *argv
[],
200 const char *&Opt
,Args
*A
,bool PreceedMatch
)
202 const char *Argument
= 0;
203 bool CertainArg
= false;
206 /* Determine the possible location of an option or 0 if their is
210 if (I
+ 1 < argc
&& argv
[I
+1][0] != '-')
211 Argument
= argv
[I
+1];
226 // Option is an argument set
227 if ((A
->Flags
& HasArg
) == HasArg
)
230 return _error
->Error(_("Option %s requires an argument."),argv
[I
]);
234 // Parse a configuration file
235 if ((A
->Flags
& ConfigFile
) == ConfigFile
)
236 return ReadConfigFile(*Conf
,Argument
);
238 // Arbitrary item specification
239 if ((A
->Flags
& ArbItem
) == ArbItem
)
241 const char * const J
= strchr(Argument
, '=');
243 return _error
->Error(_("Option %s: Configuration item specification must have an =<val>."),argv
[I
]);
245 Conf
->Set(string(Argument
,J
-Argument
), J
+1);
249 const char *I
= strchrnul(A
->ConfName
, ' ');
251 Conf
->Set(string(A
->ConfName
,0,I
-A
->ConfName
),string(I
+1) + Argument
);
253 Conf
->Set(A
->ConfName
,string(I
) + Argument
);
258 // Option is an integer level
259 if ((A
->Flags
& IntLevel
) == IntLevel
)
261 // There might be an argument
265 unsigned long Value
= strtol(Argument
,&EndPtr
,10);
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
);
271 // Conversion was ok, set the value and return
272 if (EndPtr
!= 0 && EndPtr
!= Argument
&& *EndPtr
== 0)
274 Conf
->Set(A
->ConfName
,Value
);
281 // Increase the level
282 Conf
->Set(A
->ConfName
,Conf
->FindI(A
->ConfName
)+1);
286 // Option is a boolean
287 int Sense
= -1; // -1 is unspecified, 0 is yes 1 is no
289 // Look for an argument.
292 // Look at preceding text
296 if (PreceedMatch
== false)
299 if (strlen(argv
[I
]) >= sizeof(Buffer
))
300 return _error
->Error(_("Option '%s' is too long"),argv
[I
]);
302 // Skip the leading dash
303 const char *J
= argv
[I
];
304 for (; *J
!= 0 && *J
== '-'; J
++);
306 const char *JEnd
= strchr(J
, '-');
309 strncpy(Buffer
,J
,JEnd
- J
);
310 Buffer
[JEnd
- J
] = 0;
319 Sense
= StringToBool(Argument
);
323 if (Argument
!= Buffer
)
331 if (CertainArg
== true)
332 return _error
->Error(_("Sense %s is not understood, try true or false."),Argument
);
337 // Indeterminate sense depends on the flag
340 if ((A
->Flags
& InvBoolean
) == InvBoolean
)
346 Conf
->Set(A
->ConfName
,Sense
);
350 // CommandLine::FileSize - Count the number of filenames /*{{{*/
351 // ---------------------------------------------------------------------
353 unsigned int CommandLine::FileSize() const
355 unsigned int Count
= 0;
356 for (const char **I
= FileList
; I
!= 0 && *I
!= 0; I
++)
361 // CommandLine::DispatchArg - Do something with the first arg /*{{{*/
362 bool CommandLine::DispatchArg(Dispatch
const * const Map
,bool NoMatch
)
365 for (I
= 0; Map
[I
].Match
!= 0; I
++)
367 if (strcmp(FileList
[0],Map
[I
].Match
) == 0)
369 bool Res
= Map
[I
].Handler(*this);
370 if (Res
== false && _error
->PendingError() == false)
371 _error
->Error("Handler silently failed");
377 if (Map
[I
].Match
== 0)
380 _error
->Error(_("Invalid operation %s"),FileList
[0]);
385 bool CommandLine::DispatchArg(Dispatch
*Map
,bool NoMatch
)
387 Dispatch
const * const Map2
= Map
;
388 return DispatchArg(Map2
, NoMatch
);
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. */
396 void CommandLine::SaveInConfig(unsigned int const &argc
, char const * const * const argv
)
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
)
405 for (unsigned int j
= 0; argv
[i
][j
] != '\0' && length
< sizeof(cmdline
)-1; ++j
, ++length
)
407 cmdline
[length
] = argv
[i
][j
];
408 if (lastWasOption
== true && argv
[i
][j
] == '=')
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
] = '"';
418 if (closeQuote
== true)
419 cmdline
[length
++] = '"';
420 // Problem: detects also --hello
421 if (cmdline
[length
-1] == 'o')
422 lastWasOption
= true;
423 cmdline
[length
] = ' ';
425 cmdline
[--length
] = '\0';
426 _config
->Set("CommandLine::AsString", cmdline
);
429 CommandLine::Args
CommandLine::MakeArgs(char ShortOpt
, char const *LongOpt
, char const *ConfName
, unsigned long Flags
)/*{{{*/
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
;