Click here to Skip to main content
15,867,453 members
Articles / Programming Languages / C++

CCmdLine - A command line parser

Rate me:
Please Sign up or sign in to vote.
4.87/5 (23 votes)
25 Aug 2011CPOL1 min read 391K   3.9K   121   96
A simple command line parsing class.

Introduction

Parsing command lines with the standard C string functions (strlen, strcpy, etc.) or even with the CString operators is a nightmare. But, CCmdLine makes it effortless.

CCmdLine was written for use with console apps, but can be easily used in any application which requires command-line parsing.

CCmdLine uses STL for its collection classes, so it works in both MFC and non-MFC apps. If you are using this in an MFC app, the switches and arguments will be returned as 'CString's. If you are using this in a non-MFC app, they will be returned as STL 'string's.

CCmdLine is a simple way to parse a command line into switches and arguments. Example :

MyApp.exe -sw1 arg1 arg2 -sw2 arg3 -sw3 -sw4

When using CCmdLine, "-sw1", "-sw2", "-sw3" and "-sw4" are switches and "arg1", "arg2" and "arg3" are arguments.

Example:

Assume the application we're writing uses a command line that has two required switches and two optional switches. The app should abort if the required switches are not present and continue with default values if the optional switches are not present.

    Sample command line :

    MyApp.exe -p1 text1 text2 -p2 "this is a big argument" -opt1 -55 -opt2

    Switches -p1 and -p2 are required.

    p1 has two arguments and p2 has one.

    Switches -opt1 and -opt2 are optional.

    opt1 requires a numeric argument.

    opt2 has no arguments.

    Also, assume that the app displays a 'help' screen if the '-h' switch is present on the command line.

Example

Here's how you can use CCmdLine to handle the command line processing:

// if this is an MFC app, un-comment the next line
// #include "stdafx.h"

#include "CmdLine.h"

void main(int argc, char **argv)
{
  // our cmd line parser object
  CCmdLine cmdLine;

  // parse the command line.
  // in MFC apps, use __argc and __argv here
  if (cmdLine.SplitLine(argc, argv) < 1)
  {
     // no switches were given on the command line, abort
     ASSERT(0);
     exit(-1);
  }

  // test for the 'help' case
  if (cmdLine.HasSwitch("-h"))
  {
     show_help();
     exit(0);
  }

  // StringType is defined in CmdLine.h.
  // it is CString when using MFC, else STL's 'string'
  StringType p1_1, p1_2, p2_1;

  // get the required arguments
  try
  {
     // if any of these GetArgument calls fail,
     // we'll end up in the catch() block

     // get the first -p1 argument (arg number '0')
     p1_1 = cmdLine.GetArgument("-p1", 0);

     // get the second -p1 argument (arg number '1')
     p1_2 = cmdLine.GetArgument("-p1", 1);

     // get the first -p2 argument
     p2_1 = cmdLine.GetArgument("-p2", 0);

  }
  catch (...)
  {
     // one of the required arguments was missing, abort
     ASSERT(0);
     exit(-1);
  }

  // get the optional parameters

  // the GetSafeArgument member does not throw exceptions, and
  // allows for the use of a default value, if the switch is not found.

  // get the argument, convert it to an int.
  // default to '100', if the argument was not found
  int iOpt1Val =    atoi( cmdLine.GetSafeArgument( "-opt1", 0, 100 ) );

  // since opt2 has no arguments, just test for the presence of
  // the '-opt2' switch
  bool bOptSwitch2 =   cmdLine.HasSwitch("-opt2");

  .... and so on....

}

Pretty simple stuff...

History

  • 31 Jan 2002 - Updated source.
  • 25 Aug 2011 - Updated source.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
Chris Losinger was the president of Smaller Animals Software, Inc. (which no longer exists).

Comments and Discussions

 
Bugbug in GetArgumentCount Pin
xpk74-May-12 9:45
xpk74-May-12 9:45 
GeneralRe: bug in GetArgumentCount Pin
Chris Losinger4-May-12 10:08
professionalChris Losinger4-May-12 10:08 
GeneralRe: bug in GetArgumentCount Pin
xpk74-May-12 10:16
xpk74-May-12 10:16 
GeneralRe: bug in GetArgumentCount Pin
Chris Losinger4-May-12 10:19
professionalChris Losinger4-May-12 10:19 
SuggestionAdd support for legacy command line Pin
Parsley7222-Oct-11 17:56
Parsley7222-Oct-11 17:56 
SuggestionSmall class to parse command line without STL or MFC Pin
ggtours31-Aug-11 10:25
ggtours31-Aug-11 10:25 
GeneralRe: Small class to parse command line without STL or MFC Pin
Robert Sitton5-Sep-11 18:59
Robert Sitton5-Sep-11 18:59 
QuestionWhat exception type gets thrown? (Avoid using catch (...) ) Pin
Mike Diack29-Aug-11 22:57
Mike Diack29-Aug-11 22:57 
AnswerRe: What exception type gets thrown? (Avoid using catch (...) ) Pin
Chris Losinger30-Aug-11 0:53
professionalChris Losinger30-Aug-11 0:53 
QuestionUsing _CCmdLine as a member variable Pin
Member 121682128-Aug-11 23:12
Member 121682128-Aug-11 23:12 
AnswerRe: Using _CCmdLine as a member variable Pin
Chris Losinger29-Aug-11 1:17
professionalChris Losinger29-Aug-11 1:17 
GeneralLots of error C2664 Pin
ozatomic24-Feb-11 12:46
ozatomic24-Feb-11 12:46 
GeneralRe: Lots of error C2664 Pin
Chris Losinger24-Feb-11 15:59
professionalChris Losinger24-Feb-11 15:59 
GeneralRe: Lots of error C2664 [modified] Pin
vontom24-Aug-11 19:39
vontom24-Aug-11 19:39 
GeneralRe: Lots of error C2664 Pin
Chris Losinger25-Aug-11 1:36
professionalChris Losinger25-Aug-11 1:36 
GeneralRe: Lots of error C2664 Pin
vontom25-Aug-11 2:41
vontom25-Aug-11 2:41 
GeneralRe: Lots of error C2664 Pin
Chris Losinger25-Aug-11 3:02
professionalChris Losinger25-Aug-11 3:02 
GeneralRe: Lots of error C2664 [OT] Pin
Garth J Lancaster25-Aug-11 12:28
professionalGarth J Lancaster25-Aug-11 12:28 
Generallooks great, but can't get it to work Pin
thready1-Mar-10 8:59
thready1-Mar-10 8:59 
GeneralRe: looks great, but can't get it to work Pin
Chris Losinger1-Mar-10 9:26
professionalChris Losinger1-Mar-10 9:26 
GeneralRe: looks great, but can't get it to work Pin
thready1-Mar-10 10:11
thready1-Mar-10 10:11 
GeneralRe: looks great, but can't get it to work Pin
thready1-Mar-10 10:13
thready1-Mar-10 10:13 
GeneralRe: looks great, but can't get it to work Pin
Chris Losinger1-Mar-10 10:57
professionalChris Losinger1-Mar-10 10:57 
GeneralRe: looks great, but can't get it to work Pin
thready1-Mar-10 11:02
thready1-Mar-10 11:02 
GeneralRe: looks great, but can't get it to work Pin
Chris Losinger1-Mar-10 12:00
professionalChris Losinger1-Mar-10 12:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.