]> git.saurik.com Git - wxWidgets.git/blob - src/common/cmdline.cpp
Misc fixes
[wxWidgets.git] / src / common / cmdline.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/cmdline.cpp
3 // Purpose: wxCmdLineParser implementation
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 05.01.00
7 // RCS-ID: $Id$
8 // Copyright: (c) 2000 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "cmdline.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include "wx/string.h"
33 #include "wx/log.h"
34 #include "wx/intl.h"
35 #include "wx/app.h"
36 #include "wx/dynarray.h"
37 #include "wx/filefn.h"
38 #endif //WX_PRECOMP
39
40 #include <ctype.h>
41
42 #include "wx/datetime.h"
43 #include "wx/cmdline.h"
44
45 // ----------------------------------------------------------------------------
46 // private functions
47 // ----------------------------------------------------------------------------
48
49 static wxString GetTypeName(wxCmdLineParamType type);
50
51 // ----------------------------------------------------------------------------
52 // private classes
53 // ----------------------------------------------------------------------------
54
55 // an internal representation of an option
56 struct wxCmdLineOption
57 {
58 wxCmdLineOption(wxCmdLineEntryType k,
59 const wxString& shrt,
60 const wxString& lng,
61 const wxString& desc,
62 wxCmdLineParamType typ,
63 int fl)
64 {
65 kind = k;
66
67 shortName = shrt;
68 longName = lng;
69 description = desc;
70
71 type = typ;
72 flags = fl;
73
74 m_hasVal = FALSE;
75 }
76
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!)
81
82 void Check(wxCmdLineParamType WXUNUSED_UNLESS_DEBUG(typ)) const
83 {
84 wxASSERT_MSG( type == typ, _T("type mismatch in wxCmdLineOption") );
85 }
86
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; }
93
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; }
100
101 void SetHasValue() { m_hasVal = TRUE; }
102 bool HasValue() const { return m_hasVal; }
103
104 public:
105 wxCmdLineEntryType kind;
106 wxString shortName, longName, description;
107 wxCmdLineParamType type;
108 int flags;
109
110 private:
111 bool m_hasVal;
112
113 long m_longVal;
114 wxString m_strVal;
115 wxDateTime m_dateVal;
116 };
117
118 struct wxCmdLineParam
119 {
120 wxCmdLineParam(const wxString& desc,
121 wxCmdLineParamType typ,
122 int fl)
123 : description(desc)
124 {
125 type = typ;
126 flags = fl;
127 }
128
129 wxString description;
130 wxCmdLineParamType type;
131 int flags;
132 };
133
134 WX_DECLARE_OBJARRAY(wxCmdLineOption, wxArrayOptions);
135 WX_DECLARE_OBJARRAY(wxCmdLineParam, wxArrayParams);
136
137 #include "wx/arrimpl.cpp"
138
139 WX_DEFINE_OBJARRAY(wxArrayOptions);
140 WX_DEFINE_OBJARRAY(wxArrayParams);
141
142 // the parser internal state
143 struct wxCmdLineParserData
144 {
145 // options
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()
149
150 // cmd line data
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
155
156 // methods
157 wxCmdLineParserData();
158 void SetArguments(int argc, char **argv);
159 void SetArguments(const wxString& cmdline);
160
161 int FindOption(const wxString& name);
162 int FindOptionByLongName(const wxString& name);
163 };
164
165 // ============================================================================
166 // implementation
167 // ============================================================================
168
169 // ----------------------------------------------------------------------------
170 // wxCmdLineParserData
171 // ----------------------------------------------------------------------------
172
173 wxCmdLineParserData::wxCmdLineParserData()
174 {
175 m_enableLongOptions = TRUE;
176 #ifdef __UNIX_LIKE__
177 m_switchChars = _T("-");
178 #else // !Unix
179 m_switchChars = _T("/-");
180 #endif
181 }
182
183 void wxCmdLineParserData::SetArguments(int argc, char **argv)
184 {
185 m_arguments.Empty();
186
187 for ( int n = 0; n < argc; n++ )
188 {
189 m_arguments.Add(argv[n]);
190 }
191 }
192
193 void wxCmdLineParserData::SetArguments(const wxString& WXUNUSED(cmdline))
194 {
195 // either use wxMSW wxApp::ConvertToStandardCommandArgs() or move its logic
196 // here and use this method from it - but don't duplicate the code
197
198 wxFAIL_MSG(_T("TODO"));
199 }
200
201 int wxCmdLineParserData::FindOption(const wxString& name)
202 {
203 size_t count = m_options.GetCount();
204 for ( size_t n = 0; n < count; n++ )
205 {
206 if ( m_options[n].shortName == name )
207 {
208 // found
209 return n;
210 }
211 }
212
213 return wxNOT_FOUND;
214 }
215
216 int wxCmdLineParserData::FindOptionByLongName(const wxString& name)
217 {
218 size_t count = m_options.GetCount();
219 for ( size_t n = 0; n < count; n++ )
220 {
221 if ( m_options[n].longName == name )
222 {
223 // found
224 return n;
225 }
226 }
227
228 return wxNOT_FOUND;
229 }
230
231 // ----------------------------------------------------------------------------
232 // construction and destruction
233 // ----------------------------------------------------------------------------
234
235 void wxCmdLineParser::Init()
236 {
237 m_data = new wxCmdLineParserData;
238 }
239
240 void wxCmdLineParser::SetCmdLine(int argc, char **argv)
241 {
242 m_data->SetArguments(argc, argv);
243 }
244
245 void wxCmdLineParser::SetCmdLine(const wxString& cmdline)
246 {
247 m_data->SetArguments(cmdline);
248 }
249
250 wxCmdLineParser::~wxCmdLineParser()
251 {
252 delete m_data;
253 }
254
255 // ----------------------------------------------------------------------------
256 // options
257 // ----------------------------------------------------------------------------
258
259 void wxCmdLineParser::SetSwitchChars(const wxString& switchChars)
260 {
261 m_data->m_switchChars = switchChars;
262 }
263
264 void wxCmdLineParser::EnableLongOptions(bool enable)
265 {
266 m_data->m_enableLongOptions = enable;
267 }
268
269 void wxCmdLineParser::SetLogo(const wxString& logo)
270 {
271 m_data->m_logo = logo;
272 }
273
274 // ----------------------------------------------------------------------------
275 // command line construction
276 // ----------------------------------------------------------------------------
277
278 void wxCmdLineParser::SetDesc(const wxCmdLineEntryDesc *desc)
279 {
280 for ( ;; desc++ )
281 {
282 switch ( desc->kind )
283 {
284 case wxCMD_LINE_SWITCH:
285 AddSwitch(desc->shortName, desc->longName, desc->description,
286 desc->flags);
287 break;
288
289 case wxCMD_LINE_OPTION:
290 AddOption(desc->shortName, desc->longName, desc->description,
291 desc->type, desc->flags);
292 break;
293
294 case wxCMD_LINE_PARAM:
295 AddParam(desc->description, desc->type, desc->flags);
296 break;
297
298 default:
299 wxFAIL_MSG( _T("unknown command line entry type") );
300 // still fall through
301
302 case wxCMD_LINE_NONE:
303 return;
304 }
305 }
306 }
307
308 void wxCmdLineParser::AddSwitch(const wxString& shortName,
309 const wxString& longName,
310 const wxString& desc,
311 int flags)
312 {
313 wxASSERT_MSG( m_data->FindOption(shortName) == wxNOT_FOUND,
314 _T("duplicate switch") );
315
316 wxCmdLineOption *option = new wxCmdLineOption(wxCMD_LINE_SWITCH,
317 shortName, longName, desc,
318 wxCMD_LINE_VAL_NONE, flags);
319
320 m_data->m_options.Add(option);
321 }
322
323 void wxCmdLineParser::AddOption(const wxString& shortName,
324 const wxString& longName,
325 const wxString& desc,
326 wxCmdLineParamType type,
327 int flags)
328 {
329 wxASSERT_MSG( m_data->FindOption(shortName) == wxNOT_FOUND,
330 _T("duplicate option") );
331
332 wxCmdLineOption *option = new wxCmdLineOption(wxCMD_LINE_OPTION,
333 shortName, longName, desc,
334 type, flags);
335
336 m_data->m_options.Add(option);
337 }
338
339 void wxCmdLineParser::AddParam(const wxString& desc,
340 wxCmdLineParamType type,
341 int flags)
342 {
343 // do some consistency checks: a required parameter can't follow an
344 // optional one and nothing should follow a parameter with MULTIPLE flag
345 #ifdef __WXDEBUG__
346 if ( !m_data->m_paramDesc.IsEmpty() )
347 {
348 wxCmdLineParam& param = m_data->m_paramDesc.Last();
349
350 wxASSERT_MSG( !(param.flags & wxCMD_LINE_PARAM_MULTIPLE),
351 _T("all parameters after the one with wxCMD_LINE_PARAM_MULTIPLE style will be ignored") );
352
353 if ( !(flags & wxCMD_LINE_PARAM_OPTIONAL) )
354 {
355 wxASSERT_MSG( !(param.flags & wxCMD_LINE_PARAM_OPTIONAL),
356 _T("a required parameter can't follow an optional one") );
357 }
358 }
359 #endif // Debug
360
361 wxCmdLineParam *param = new wxCmdLineParam(desc, type, flags);
362
363 m_data->m_paramDesc.Add(param);
364 }
365
366 // ----------------------------------------------------------------------------
367 // access to parse command line
368 // ----------------------------------------------------------------------------
369
370 bool wxCmdLineParser::Found(const wxString& name) const
371 {
372 int i = m_data->FindOption(name);
373 wxCHECK_MSG( i != wxNOT_FOUND, FALSE, _T("unknown switch") );
374
375 wxCmdLineOption& opt = m_data->m_options[(size_t)i];
376 if ( !opt.HasValue() )
377 return FALSE;
378
379 return TRUE;
380 }
381
382 bool wxCmdLineParser::Found(const wxString& name, wxString *value) const
383 {
384 int i = m_data->FindOption(name);
385 wxCHECK_MSG( i != wxNOT_FOUND, FALSE, _T("unknown option") );
386
387 wxCmdLineOption& opt = m_data->m_options[(size_t)i];
388 if ( !opt.HasValue() )
389 return FALSE;
390
391 wxCHECK_MSG( value, FALSE, _T("NULL pointer in wxCmdLineOption::Found") );
392
393 *value = opt.GetStrVal();
394
395 return TRUE;
396 }
397
398 bool wxCmdLineParser::Found(const wxString& name, long *value) const
399 {
400 int i = m_data->FindOption(name);
401 wxCHECK_MSG( i != wxNOT_FOUND, FALSE, _T("unknown option") );
402
403 wxCmdLineOption& opt = m_data->m_options[(size_t)i];
404 if ( !opt.HasValue() )
405 return FALSE;
406
407 wxCHECK_MSG( value, FALSE, _T("NULL pointer in wxCmdLineOption::Found") );
408
409 *value = opt.GetLongVal();
410
411 return TRUE;
412 }
413
414 bool wxCmdLineParser::Found(const wxString& name, wxDateTime *value) const
415 {
416 int i = m_data->FindOption(name);
417 wxCHECK_MSG( i != wxNOT_FOUND, FALSE, _T("unknown option") );
418
419 wxCmdLineOption& opt = m_data->m_options[(size_t)i];
420 if ( !opt.HasValue() )
421 return FALSE;
422
423 wxCHECK_MSG( value, FALSE, _T("NULL pointer in wxCmdLineOption::Found") );
424
425 *value = opt.GetDateVal();
426
427 return TRUE;
428 }
429
430 size_t wxCmdLineParser::GetParamCount() const
431 {
432 return m_data->m_parameters.GetCount();
433 }
434
435 wxString wxCmdLineParser::GetParam(size_t n) const
436 {
437 return m_data->m_parameters[n];
438 }
439
440 // ----------------------------------------------------------------------------
441 // the real work is done here
442 // ----------------------------------------------------------------------------
443
444 int wxCmdLineParser::Parse()
445 {
446 bool maybeOption = TRUE; // can the following arg be an option?
447 bool ok = TRUE; // TRUE until an error is detected
448 bool helpRequested = FALSE; // TRUE if "-h" was given
449 bool hadRepeatableParam = FALSE; // TRUE if found param with MULTIPLE flag
450
451 size_t currentParam = 0; // the index in m_paramDesc
452
453 size_t countParam = m_data->m_paramDesc.GetCount();
454
455 // parse everything
456 wxString arg;
457 size_t count = m_data->m_arguments.GetCount();
458 for ( size_t n = 1; ok && (n < count); n++ ) // 0 is program name
459 {
460 arg = m_data->m_arguments[n];
461
462 // special case: "--" should be discarded and all following arguments
463 // should be considered as parameters, even if they start with '-' and
464 // not like options (this is POSIX-like)
465 if ( arg == _T("--") )
466 {
467 maybeOption = FALSE;
468
469 continue;
470 }
471
472 // empty argument or just '-' is not an option but a parameter
473 if ( maybeOption && arg.length() > 1 &&
474 wxStrchr(m_data->m_switchChars, arg[0u]) )
475 {
476 bool isLong;
477 wxString name;
478 int optInd = wxNOT_FOUND; // init to suppress warnings
479
480 // an option or a switch: find whether it's a long or a short one
481 if ( m_data->m_enableLongOptions &&
482 arg[0u] == _T('-') && arg[1u] == _T('-') )
483 {
484 // a long one
485 isLong = TRUE;
486
487 const wxChar *p = arg.c_str() + 2;
488 while ( wxIsalpha(*p) || (*p == _T('-')) )
489 {
490 name += *p++;
491 }
492
493 optInd = m_data->FindOptionByLongName(name);
494 if ( optInd == wxNOT_FOUND )
495 {
496 wxLogError(_("Unknown long option '%s'"), name.c_str());
497 }
498 }
499 else
500 {
501 isLong = FALSE;
502
503 // a short one: as they can be cumulated, we try to find the
504 // longest substring which is a valid option
505 const wxChar *p = arg.c_str() + 1;
506 while ( wxIsalpha(*p) )
507 {
508 name += *p++;
509 }
510
511 size_t len = name.length();
512 do
513 {
514 if ( len == 0 )
515 {
516 // we couldn't find a valid option name in the
517 // beginning of this string
518 wxLogError(_("Unknown option '%s'"), name.c_str());
519
520 break;
521 }
522 else
523 {
524 optInd = m_data->FindOption(name.Left(len));
525
526 // will try with one character less the next time
527 len--;
528 }
529 }
530 while ( optInd == wxNOT_FOUND );
531
532 len++; // compensates extra len-- above
533 if ( (optInd != wxNOT_FOUND) && (len != name.length()) )
534 {
535 // first of all, the option name is only part of this
536 // string
537 name = name.Left(len);
538
539 // our option is only part of this argument, there is
540 // something else in it - it is either the value of this
541 // option or other switches if it is a switch
542 if ( m_data->m_options[(size_t)optInd].kind
543 == wxCMD_LINE_SWITCH )
544 {
545 // pretend that all the rest of the argument is the
546 // next argument, in fact
547 wxString arg2 = arg[0u];
548 arg2 += arg.Mid(len + 1); // +1 for leading '-'
549
550 m_data->m_arguments.Insert(arg2, n + 1);
551 count++;
552 }
553 //else: it's our value, we'll deal with it below
554 }
555 }
556
557 if ( optInd == wxNOT_FOUND )
558 {
559 ok = FALSE;
560
561 continue; // will break, in fact
562 }
563
564 wxCmdLineOption& opt = m_data->m_options[(size_t)optInd];
565 if ( opt.kind == wxCMD_LINE_SWITCH )
566 {
567 // nothing more to do
568 opt.SetHasValue();
569
570 if ( opt.flags & wxCMD_LINE_OPTION_HELP )
571 {
572 helpRequested = TRUE;
573
574 // it's not an error, but we still stop here
575 ok = FALSE;
576 }
577 }
578 else
579 {
580 // get the value
581
582 // +1 for leading '-'
583 const wxChar *p = arg.c_str() + 1 + name.length();
584 if ( isLong )
585 {
586 p++; // for another leading '-'
587
588 if ( *p++ != _T('=') )
589 {
590 wxLogError(_("Option '%s' requires a value, '=' expected."), name.c_str());
591
592 ok = FALSE;
593 }
594 }
595 else
596 {
597 switch ( *p )
598 {
599 case _T(':'):
600 // the value follows
601 p++;
602 break;
603
604 case 0:
605 // the value is in the next argument
606 if ( ++n == count )
607 {
608 // ... but there is none
609 wxLogError(_("Option '%s' requires a value."),
610 name.c_str());
611
612 ok = FALSE;
613 }
614 else
615 {
616 // ... take it from there
617 p = m_data->m_arguments[n].c_str();
618 }
619 break;
620
621 default:
622 // the value is right here
623 ;
624 }
625 }
626
627 if ( ok )
628 {
629 wxString value = p;
630 switch ( opt.type )
631 {
632 default:
633 wxFAIL_MSG( _T("unknown option type") );
634 // still fall through
635
636 case wxCMD_LINE_VAL_STRING:
637 opt.SetStrVal(value);
638 break;
639
640 case wxCMD_LINE_VAL_NUMBER:
641 {
642 long val;
643 if ( value.ToLong(&val) )
644 {
645 opt.SetLongVal(val);
646 }
647 else
648 {
649 wxLogError(_("'%s' is not a correct numeric value for option '%s'."),
650 value.c_str(), name.c_str());
651
652 ok = FALSE;
653 }
654 }
655 break;
656
657 case wxCMD_LINE_VAL_DATE:
658 {
659 wxDateTime dt;
660 const wxChar *res = dt.ParseDate(value);
661 if ( !res || *res )
662 {
663 wxLogError(_("Option '%s': '%s' cannot be converted to a date."),
664 name.c_str(), value.c_str());
665
666 ok = FALSE;
667 }
668 else
669 {
670 opt.SetDateVal(dt);
671 }
672 }
673 break;
674 }
675 }
676 }
677 }
678 else
679 {
680 // a parameter
681 if ( currentParam < countParam )
682 {
683 wxCmdLineParam& param = m_data->m_paramDesc[currentParam];
684
685 // TODO check the param type
686
687 m_data->m_parameters.Add(arg);
688
689 if ( !(param.flags & wxCMD_LINE_PARAM_MULTIPLE) )
690 {
691 currentParam++;
692 }
693 else
694 {
695 wxASSERT_MSG( currentParam == countParam - 1,
696 _T("all parameters after the one with wxCMD_LINE_PARAM_MULTIPLE style are ignored") );
697
698 // remember that we did have this last repeatable parameter
699 hadRepeatableParam = TRUE;
700 }
701 }
702 else
703 {
704 wxLogError(_("Unexpected parameter '%s'"), arg.c_str());
705
706 ok = FALSE;
707 }
708 }
709 }
710
711 // verify that all mandatory options were given
712 if ( ok )
713 {
714 size_t countOpt = m_data->m_options.GetCount();
715 for ( size_t n = 0; ok && (n < countOpt); n++ )
716 {
717 wxCmdLineOption& opt = m_data->m_options[n];
718 if ( (opt.flags & wxCMD_LINE_OPTION_MANDATORY) && !opt.HasValue() )
719 {
720 wxString optName;
721 if ( !opt.longName )
722 {
723 optName = opt.shortName;
724 }
725 else
726 {
727 optName.Printf(_("%s (or %s)"),
728 opt.shortName.c_str(),
729 opt.longName.c_str());
730 }
731
732 wxLogError(_("The value for the option '%s' must be specified."),
733 optName.c_str());
734
735 ok = FALSE;
736 }
737 }
738
739 for ( ; ok && (currentParam < countParam); currentParam++ )
740 {
741 wxCmdLineParam& param = m_data->m_paramDesc[currentParam];
742 if ( (currentParam == countParam - 1) &&
743 (param.flags & wxCMD_LINE_PARAM_MULTIPLE) &&
744 hadRepeatableParam )
745 {
746 // special case: currentParam wasn't incremented, but we did
747 // have it, so don't give error
748 continue;
749 }
750
751 if ( !(param.flags & wxCMD_LINE_PARAM_OPTIONAL) )
752 {
753 wxLogError(_("The required parameter '%s' was not specified."),
754 param.description.c_str());
755
756 ok = FALSE;
757 }
758 }
759 }
760
761 if ( !ok )
762 {
763 Usage();
764 }
765
766 return ok ? 0 : helpRequested ? -1 : 1;
767 }
768
769 // ----------------------------------------------------------------------------
770 // give the usage message
771 // ----------------------------------------------------------------------------
772
773 void wxCmdLineParser::Usage()
774 {
775 wxString appname = wxTheApp->GetAppName();
776 if ( !appname )
777 {
778 wxCHECK_RET( !m_data->m_arguments.IsEmpty(), _T("no program name") );
779
780 appname = wxFileNameFromPath(m_data->m_arguments[0]);
781 wxStripExtension(appname);
782 }
783
784 wxString brief, detailed;
785 brief.Printf(_("Usage: %s"), appname.c_str());
786
787 size_t n, count = m_data->m_options.GetCount();
788 for ( n = 0; n < count; n++ )
789 {
790 wxCmdLineOption& opt = m_data->m_options[n];
791
792 brief << _T(' ');
793 if ( !(opt.flags & wxCMD_LINE_OPTION_MANDATORY) )
794 {
795 brief << _T('[');
796 }
797
798 brief << _T('-') << opt.shortName;
799 detailed << _T(" -") << opt.shortName;
800 if ( !!opt.longName )
801 {
802 detailed << _T(" --") << opt.longName;
803 }
804
805 if ( opt.kind != wxCMD_LINE_SWITCH )
806 {
807 wxString val;
808 val << _T('<') << GetTypeName(opt.type) << _T('>');
809 brief << _T(' ') << val;
810 detailed << (!opt.longName ? _T(':') : _T('=')) << val;
811 }
812
813 if ( !(opt.flags & wxCMD_LINE_OPTION_MANDATORY) )
814 {
815 brief << _T(']');
816 }
817
818 detailed << _T('\t') << opt.description << _T('\n');
819 }
820
821 count = m_data->m_paramDesc.GetCount();
822 for ( n = 0; n < count; n++ )
823 {
824 wxCmdLineParam& param = m_data->m_paramDesc[n];
825
826 brief << _T(' ');
827 if ( param.flags & wxCMD_LINE_PARAM_OPTIONAL )
828 {
829 brief << _T('[');
830 }
831
832 brief << param.description;
833
834 if ( param.flags & wxCMD_LINE_PARAM_MULTIPLE )
835 {
836 brief << _T("...");
837 }
838
839 if ( param.flags & wxCMD_LINE_PARAM_OPTIONAL )
840 {
841 brief << _T(']');
842 }
843 }
844
845 if ( !!m_data->m_logo )
846 {
847 wxLogMessage(m_data->m_logo);
848 }
849
850 wxLogMessage(brief);
851 wxLogMessage(detailed);
852 }
853
854 // ----------------------------------------------------------------------------
855 // global functions
856 // ----------------------------------------------------------------------------
857
858 static wxString GetTypeName(wxCmdLineParamType type)
859 {
860 wxString s;
861 switch ( type )
862 {
863 default:
864 wxFAIL_MSG( _T("unknown option type") );
865 // still fall through
866
867 case wxCMD_LINE_VAL_STRING: s = _("str"); break;
868 case wxCMD_LINE_VAL_NUMBER: s = _("num"); break;
869 case wxCMD_LINE_VAL_DATE: s = _("date"); break;
870 }
871
872 return s;
873 }