1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/cmdline.cpp
3 // Purpose: wxCmdLineParser implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "cmdline.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/string.h"
36 #include "wx/dynarray.h"
37 #include "wx/filefn.h"
42 #include "wx/datetime.h"
43 #include "wx/cmdline.h"
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
49 static wxString
GetTypeName(wxCmdLineParamType type
);
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 // an internal representation of an option
56 struct wxCmdLineOption
58 wxCmdLineOption(wxCmdLineEntryType k
,
62 wxCmdLineParamType typ
,
77 // can't use union easily here, so just store all possible data fields, we
78 // don't waste much (might still use union later if the number of supported
79 // types increases, so always use the accessor functions and don't access
80 // the fields directly!)
82 void Check(wxCmdLineParamType
WXUNUSED_UNLESS_DEBUG(typ
)) const
84 wxASSERT_MSG( type
== typ
, _T("type mismatch in wxCmdLineOption") );
87 long GetLongVal() const
88 { Check(wxCMD_LINE_VAL_NUMBER
); return m_longVal
; }
89 const wxString
& GetStrVal() const
90 { Check(wxCMD_LINE_VAL_STRING
); return m_strVal
; }
91 const wxDateTime
& GetDateVal() const
92 { Check(wxCMD_LINE_VAL_DATE
); return m_dateVal
; }
94 void SetLongVal(long val
)
95 { Check(wxCMD_LINE_VAL_NUMBER
); m_longVal
= val
; m_hasVal
= TRUE
; }
96 void SetStrVal(const wxString
& val
)
97 { Check(wxCMD_LINE_VAL_STRING
); m_strVal
= val
; m_hasVal
= TRUE
; }
98 void SetDateVal(const wxDateTime val
)
99 { Check(wxCMD_LINE_VAL_DATE
); m_dateVal
= val
; m_hasVal
= TRUE
; }
101 void SetHasValue() { m_hasVal
= TRUE
; }
102 bool HasValue() const { return m_hasVal
; }
105 wxCmdLineEntryType kind
;
106 wxString shortName
, longName
, description
;
107 wxCmdLineParamType type
;
115 wxDateTime m_dateVal
;
118 struct wxCmdLineParam
120 wxCmdLineParam(const wxString
& desc
,
121 wxCmdLineParamType typ
,
129 wxString description
;
130 wxCmdLineParamType type
;
134 WX_DECLARE_OBJARRAY(wxCmdLineOption
, wxArrayOptions
);
135 WX_DECLARE_OBJARRAY(wxCmdLineParam
, wxArrayParams
);
137 #include "wx/arrimpl.cpp"
139 WX_DEFINE_OBJARRAY(wxArrayOptions
);
140 WX_DEFINE_OBJARRAY(wxArrayParams
);
142 // the parser internal state
143 struct wxCmdLineParserData
146 wxString m_switchChars
; // characters which may start an option
147 bool m_enableLongOptions
; // TRUE if long options are enabled
148 wxString m_logo
; // some extra text to show in Usage()
151 wxArrayString m_arguments
; // == argv, argc == m_arguments.GetCount()
152 wxArrayOptions m_options
; // all possible options and switchrs
153 wxArrayParams m_paramDesc
; // description of all possible params
154 wxArrayString m_parameters
; // all params found
157 wxCmdLineParserData();
158 void SetArguments(int argc
, char **argv
);
159 void SetArguments(const wxString
& cmdline
);
161 int FindOption(const wxString
& name
);
162 int FindOptionByLongName(const wxString
& name
);
165 // ============================================================================
167 // ============================================================================
169 // ----------------------------------------------------------------------------
170 // wxCmdLineParserData
171 // ----------------------------------------------------------------------------
173 wxCmdLineParserData::wxCmdLineParserData()
175 m_enableLongOptions
= TRUE
;
177 m_switchChars
= _T("-");
179 m_switchChars
= _T("/-");
183 void wxCmdLineParserData::SetArguments(int argc
, char **argv
)
187 for ( int n
= 0; n
< argc
; n
++ )
189 m_arguments
.Add(argv
[n
]);
193 void wxCmdLineParserData::SetArguments(const wxString
& WXUNUSED(cmdline
))
195 // either use wxMSW wxApp::ConvertToStandardCommandArgs() or move its logic
196 // here and use this method from it - but don't duplicate the code
198 wxFAIL_MSG(_T("TODO"));
201 int wxCmdLineParserData::FindOption(const wxString
& name
)
203 size_t count
= m_options
.GetCount();
204 for ( size_t n
= 0; n
< count
; n
++ )
206 if ( m_options
[n
].shortName
== name
)
216 int wxCmdLineParserData::FindOptionByLongName(const wxString
& name
)
218 size_t count
= m_options
.GetCount();
219 for ( size_t n
= 0; n
< count
; n
++ )
221 if ( m_options
[n
].longName
== name
)
231 // ----------------------------------------------------------------------------
232 // construction and destruction
233 // ----------------------------------------------------------------------------
235 void wxCmdLineParser::Init()
237 m_data
= new wxCmdLineParserData
;
240 void wxCmdLineParser::SetCmdLine(int argc
, char **argv
)
242 m_data
->SetArguments(argc
, argv
);
245 void wxCmdLineParser::SetCmdLine(const wxString
& cmdline
)
247 m_data
->SetArguments(cmdline
);
250 wxCmdLineParser::~wxCmdLineParser()
255 // ----------------------------------------------------------------------------
257 // ----------------------------------------------------------------------------
259 void wxCmdLineParser::SetSwitchChars(const wxString
& switchChars
)
261 m_data
->m_switchChars
= switchChars
;
264 void wxCmdLineParser::EnableLongOptions(bool enable
)
266 m_data
->m_enableLongOptions
= enable
;
269 void wxCmdLineParser::SetLogo(const wxString
& logo
)
271 m_data
->m_logo
= logo
;
274 // ----------------------------------------------------------------------------
275 // command line construction
276 // ----------------------------------------------------------------------------
278 void wxCmdLineParser::SetDesc(const wxCmdLineEntryDesc
*desc
)
282 switch ( desc
->kind
)
284 case wxCMD_LINE_SWITCH
:
285 AddSwitch(desc
->shortName
, desc
->longName
, desc
->description
,
289 case wxCMD_LINE_OPTION
:
290 AddOption(desc
->shortName
, desc
->longName
, desc
->description
,
291 desc
->type
, desc
->flags
);
294 case wxCMD_LINE_PARAM
:
295 AddParam(desc
->description
, desc
->type
, desc
->flags
);
299 wxFAIL_MSG( _T("unknown command line entry type") );
300 // still fall through
302 case wxCMD_LINE_NONE
:
308 void wxCmdLineParser::AddSwitch(const wxString
& shortName
,
309 const wxString
& longName
,
310 const wxString
& desc
,
313 wxASSERT_MSG( m_data
->FindOption(shortName
) == wxNOT_FOUND
,
314 _T("duplicate switch") );
316 wxCmdLineOption
*option
= new wxCmdLineOption(wxCMD_LINE_SWITCH
,
317 shortName
, longName
, desc
,
318 wxCMD_LINE_VAL_NONE
, flags
);
320 m_data
->m_options
.Add(option
);
323 void wxCmdLineParser::AddOption(const wxString
& shortName
,
324 const wxString
& longName
,
325 const wxString
& desc
,
326 wxCmdLineParamType type
,
329 wxASSERT_MSG( m_data
->FindOption(shortName
) == wxNOT_FOUND
,
330 _T("duplicate option") );
332 wxCmdLineOption
*option
= new wxCmdLineOption(wxCMD_LINE_OPTION
,
333 shortName
, longName
, desc
,
336 m_data
->m_options
.Add(option
);
339 void wxCmdLineParser::AddParam(const wxString
& desc
,
340 wxCmdLineParamType type
,
343 // do some consistency checks: a required parameter can't follow an
344 // optional one and nothing should follow a parameter with MULTIPLE flag
346 if ( !m_data
->m_paramDesc
.IsEmpty() )
348 wxCmdLineParam
& param
= m_data
->m_paramDesc
.Last();
350 wxASSERT_MSG( !(param
.flags
& wxCMD_LINE_PARAM_MULTIPLE
),
351 _T("all parameters after the one with "
352 "wxCMD_LINE_PARAM_MULTIPLE style will be ignored") );
354 if ( !(flags
& wxCMD_LINE_PARAM_OPTIONAL
) )
356 wxASSERT_MSG( !(param
.flags
& wxCMD_LINE_PARAM_OPTIONAL
),
357 _T("a required parameter can't follow an "
363 wxCmdLineParam
*param
= new wxCmdLineParam(desc
, type
, flags
);
365 m_data
->m_paramDesc
.Add(param
);
368 // ----------------------------------------------------------------------------
369 // access to parse command line
370 // ----------------------------------------------------------------------------
372 bool wxCmdLineParser::Found(const wxString
& name
) const
374 int i
= m_data
->FindOption(name
);
375 wxCHECK_MSG( i
!= wxNOT_FOUND
, FALSE
, _T("unknown switch") );
377 wxCmdLineOption
& opt
= m_data
->m_options
[(size_t)i
];
378 if ( !opt
.HasValue() )
384 bool wxCmdLineParser::Found(const wxString
& name
, wxString
*value
) const
386 int i
= m_data
->FindOption(name
);
387 wxCHECK_MSG( i
!= wxNOT_FOUND
, FALSE
, _T("unknown option") );
389 wxCmdLineOption
& opt
= m_data
->m_options
[(size_t)i
];
390 if ( !opt
.HasValue() )
393 wxCHECK_MSG( value
, FALSE
, _T("NULL pointer in wxCmdLineOption::Found") );
395 *value
= opt
.GetStrVal();
400 bool wxCmdLineParser::Found(const wxString
& name
, long *value
) const
402 int i
= m_data
->FindOption(name
);
403 wxCHECK_MSG( i
!= wxNOT_FOUND
, FALSE
, _T("unknown option") );
405 wxCmdLineOption
& opt
= m_data
->m_options
[(size_t)i
];
406 if ( !opt
.HasValue() )
409 wxCHECK_MSG( value
, FALSE
, _T("NULL pointer in wxCmdLineOption::Found") );
411 *value
= opt
.GetLongVal();
416 bool wxCmdLineParser::Found(const wxString
& name
, wxDateTime
*value
) const
418 int i
= m_data
->FindOption(name
);
419 wxCHECK_MSG( i
!= wxNOT_FOUND
, FALSE
, _T("unknown option") );
421 wxCmdLineOption
& opt
= m_data
->m_options
[(size_t)i
];
422 if ( !opt
.HasValue() )
425 wxCHECK_MSG( value
, FALSE
, _T("NULL pointer in wxCmdLineOption::Found") );
427 *value
= opt
.GetDateVal();
432 size_t wxCmdLineParser::GetParamCount() const
434 return m_data
->m_parameters
.GetCount();
437 wxString
wxCmdLineParser::GetParam(size_t n
) const
439 return m_data
->m_parameters
[n
];
442 // ----------------------------------------------------------------------------
443 // the real work is done here
444 // ----------------------------------------------------------------------------
446 int wxCmdLineParser::Parse()
448 bool maybeOption
= TRUE
; // can the following arg be an option?
449 bool ok
= TRUE
; // TRUE until an error is detected
450 bool helpRequested
= FALSE
; // TRUE if "-h" was given
451 bool hadRepeatableParam
= FALSE
; // TRUE if found param with MULTIPLE flag
453 size_t currentParam
= 0; // the index in m_paramDesc
455 size_t countParam
= m_data
->m_paramDesc
.GetCount();
459 size_t count
= m_data
->m_arguments
.GetCount();
460 for ( size_t n
= 1; ok
&& (n
< count
); n
++ ) // 0 is program name
462 arg
= m_data
->m_arguments
[n
];
464 // special case: "--" should be discarded and all following arguments
465 // should be considered as parameters, even if they start with '-' and
466 // not like options (this is POSIX-like)
467 if ( arg
== _T("--") )
474 // empty argument or just '-' is not an option but a parameter
475 if ( maybeOption
&& arg
.length() > 1 &&
476 wxStrchr(m_data
->m_switchChars
, arg
[0u]) )
480 int optInd
= wxNOT_FOUND
; // init to suppress warnings
482 // an option or a switch: find whether it's a long or a short one
483 if ( m_data
->m_enableLongOptions
&&
484 arg
[0u] == _T('-') && arg
[1u] == _T('-') )
489 const wxChar
*p
= arg
.c_str() + 2;
490 while ( wxIsalpha(*p
) || (*p
== _T('-')) )
495 optInd
= m_data
->FindOptionByLongName(name
);
496 if ( optInd
== wxNOT_FOUND
)
498 wxLogError(_("Unknown long option '%s'"), name
.c_str());
505 // a short one: as they can be cumulated, we try to find the
506 // longest substring which is a valid option
507 const wxChar
*p
= arg
.c_str() + 1;
508 while ( wxIsalpha(*p
) )
513 size_t len
= name
.length();
518 // we couldn't find a valid option name in the
519 // beginning of this string
520 wxLogError(_("Unknown option '%s'"), name
.c_str());
526 optInd
= m_data
->FindOption(name
.Left(len
));
528 // will try with one character less the next time
532 while ( optInd
== wxNOT_FOUND
);
534 len
++; // compensates extra len-- above
535 if ( (optInd
!= wxNOT_FOUND
) && (len
!= name
.length()) )
537 // first of all, the option name is only part of this
539 name
= name
.Left(len
);
541 // our option is only part of this argument, there is
542 // something else in it - it is either the value of this
543 // option or other switches if it is a switch
544 if ( m_data
->m_options
[(size_t)optInd
].kind
545 == wxCMD_LINE_SWITCH
)
547 // pretend that all the rest of the argument is the
548 // next argument, in fact
549 wxString arg2
= arg
[0u];
550 arg2
+= arg
.Mid(len
+ 1); // +1 for leading '-'
552 m_data
->m_arguments
.Insert(arg2
, n
+ 1);
555 //else: it's our value, we'll deal with it below
559 if ( optInd
== wxNOT_FOUND
)
563 continue; // will break, in fact
566 wxCmdLineOption
& opt
= m_data
->m_options
[(size_t)optInd
];
567 if ( opt
.kind
== wxCMD_LINE_SWITCH
)
569 // nothing more to do
572 if ( opt
.flags
& wxCMD_LINE_OPTION_HELP
)
574 helpRequested
= TRUE
;
576 // it's not an error, but we still stop here
584 // +1 for leading '-'
585 const wxChar
*p
= arg
.c_str() + 1 + name
.length();
588 p
++; // for another leading '-'
590 if ( *p
++ != _T('=') )
592 wxLogError(_("Option '%s' requires a value, '=' "
593 "expected."), name
.c_str());
608 // the value is in the next argument
611 // ... but there is none
612 wxLogError(_("Option '%s' requires a value."),
619 // ... take it from there
620 p
= m_data
->m_arguments
[n
].c_str();
625 // the value is right here
636 wxFAIL_MSG( _T("unknown option type") );
637 // still fall through
639 case wxCMD_LINE_VAL_STRING
:
640 opt
.SetStrVal(value
);
643 case wxCMD_LINE_VAL_NUMBER
:
646 if ( value
.ToLong(&val
) )
652 wxLogError(_("'%s' is not a correct "
653 "numeric value for option "
655 value
.c_str(), name
.c_str());
662 case wxCMD_LINE_VAL_DATE
:
665 const wxChar
*res
= dt
.ParseDate(value
);
668 wxLogError(_("Option '%s': '%s' cannot "
669 "be converted to a date."),
670 name
.c_str(), value
.c_str());
687 if ( currentParam
< countParam
)
689 wxCmdLineParam
& param
= m_data
->m_paramDesc
[currentParam
];
691 // TODO check the param type
693 m_data
->m_parameters
.Add(arg
);
695 if ( !(param
.flags
& wxCMD_LINE_PARAM_MULTIPLE
) )
701 wxASSERT_MSG( currentParam
== countParam
- 1,
702 _T("all parameters after the one with "
703 "wxCMD_LINE_PARAM_MULTIPLE style "
706 // remember that we did have this last repeatable parameter
707 hadRepeatableParam
= TRUE
;
712 wxLogError(_("Unexpected parameter '%s'"), arg
.c_str());
719 // verify that all mandatory options were given
722 size_t countOpt
= m_data
->m_options
.GetCount();
723 for ( size_t n
= 0; ok
&& (n
< countOpt
); n
++ )
725 wxCmdLineOption
& opt
= m_data
->m_options
[n
];
726 if ( (opt
.flags
& wxCMD_LINE_OPTION_MANDATORY
) && !opt
.HasValue() )
731 optName
= opt
.shortName
;
735 optName
.Printf(_("%s (or %s)"),
736 opt
.shortName
.c_str(),
737 opt
.longName
.c_str());
740 wxLogError(_("The value for the option '%s' must be specified."),
747 for ( ; ok
&& (currentParam
< countParam
); currentParam
++ )
749 wxCmdLineParam
& param
= m_data
->m_paramDesc
[currentParam
];
750 if ( (currentParam
== countParam
- 1) &&
751 (param
.flags
& wxCMD_LINE_PARAM_MULTIPLE
) &&
754 // special case: currentParam wasn't incremented, but we did
755 // have it, so don't give error
759 if ( !(param
.flags
& wxCMD_LINE_PARAM_OPTIONAL
) )
761 wxLogError(_("The required parameter '%s' was not specified."),
762 param
.description
.c_str());
774 return ok
? 0 : helpRequested
? -1 : 1;
777 // ----------------------------------------------------------------------------
778 // give the usage message
779 // ----------------------------------------------------------------------------
781 void wxCmdLineParser::Usage()
783 wxString appname
= wxTheApp
->GetAppName();
786 wxCHECK_RET( !m_data
->m_arguments
.IsEmpty(), _T("no program name") );
788 appname
= wxFileNameFromPath(m_data
->m_arguments
[0]);
789 wxStripExtension(appname
);
792 wxString brief
, detailed
;
793 brief
.Printf(_("Usage: %s"), appname
.c_str());
795 size_t n
, count
= m_data
->m_options
.GetCount();
796 for ( n
= 0; n
< count
; n
++ )
798 wxCmdLineOption
& opt
= m_data
->m_options
[n
];
801 if ( !(opt
.flags
& wxCMD_LINE_OPTION_MANDATORY
) )
806 brief
<< _T('-') << opt
.shortName
;
807 detailed
<< _T(" -") << opt
.shortName
;
808 if ( !!opt
.longName
)
810 detailed
<< _T(" --") << opt
.longName
;
813 if ( opt
.kind
!= wxCMD_LINE_SWITCH
)
816 val
<< _T('<') << GetTypeName(opt
.type
) << _T('>');
817 brief
<< _T(' ') << val
;
818 detailed
<< (!opt
.longName
? _T(':') : _T('=')) << val
;
821 if ( !(opt
.flags
& wxCMD_LINE_OPTION_MANDATORY
) )
826 detailed
<< _T('\t') << opt
.description
<< _T('\n');
829 count
= m_data
->m_paramDesc
.GetCount();
830 for ( n
= 0; n
< count
; n
++ )
832 wxCmdLineParam
& param
= m_data
->m_paramDesc
[n
];
835 if ( param
.flags
& wxCMD_LINE_PARAM_OPTIONAL
)
840 brief
<< param
.description
;
842 if ( param
.flags
& wxCMD_LINE_PARAM_MULTIPLE
)
847 if ( param
.flags
& wxCMD_LINE_PARAM_OPTIONAL
)
853 if ( !!m_data
->m_logo
)
855 wxLogMessage(m_data
->m_logo
);
859 wxLogMessage(detailed
);
862 // ----------------------------------------------------------------------------
864 // ----------------------------------------------------------------------------
866 static wxString
GetTypeName(wxCmdLineParamType type
)
872 wxFAIL_MSG( _T("unknown option type") );
873 // still fall through
875 case wxCMD_LINE_VAL_STRING
: s
= _("str"); break;
876 case wxCMD_LINE_VAL_NUMBER
: s
= _("num"); break;
877 case wxCMD_LINE_VAL_DATE
: s
= _("date"); break;