Visual Studio .NET 2002Visual C++ 7.1Visual C++ 8.0Visual Studio 6Visual C++ 7.0Visual Studio .NET 2003Visual C++ 6.0MFCIntermediateDevVisual StudioWindowsC++
ParamContainer - easy-to-use command-line parameter parser






2.06/5 (9 votes)
Aug 26, 2004
1 min read

58931

874
ParamContainer is a simple and easy to use C++ class to parse command line parameters. Parameters format are derived from UNIX getopt_long() function syntax but may contain nested parameters as well.
Introduction
ParamContainer
is a simple and easy to use C++ class to parse command line parameters. Parameters format is derived from UNIX getopt_long()
function syntax but may contain nested parameters as well. It was developed to fit the requirements of our projects, but we'll be glad if it will be useful for somebody else. Main features of ParamContainer
are:
- Easy to use.
- Structure of command line conforms object hierarchy.
- Adding/changing parameters is really easy. You don't need to modify class interfaces and anything outside of the class which new parameter corresponds to.
- Parameters can be saved to the project file and loaded later.
- When command line contains additional file names, their paths will be converted to relative in project file, so you can freely move project with all required files to a different location.
ParamContainer
can be used as internal interface between presentation (GUI) and logic parts of the project. You can use the same logic part in graphics/command-line versions of your project.- Dynamically generated help screen.
- Powerful error handling.
- Portability between Win32 and Unix systems (on Win32 systems, there must be
WIN32
preprocessor definition).
Using the code
Here is a simple way to use ParamContainer
in your project:
- Add ParamContainer.cpp and ParamContainer.h into your project.
- Include ParamContainer.h in your main CPP file:
#include "ParamContainer.h"
- Create
ParamContainer
object in yourmain()
function.ParamContainer p;
- Add some parameters using
addParam()
.p.addParam("long-name", 'n', ParamContainer::regular, "parameter description", "default_value"); //"long-name" - long parameter name //'n' - short parameter name //ParamContainer::regular - parameter type // (regular means that parameter is not required and has an argument) //"parameter description" - description //"default_value" - default value
- Call
parseCommandLine()
.p.parseCommandLine(argc, argv[]);
- Obtain parameter values via
[]
.cout << p["long-name"];
- Compile and run your program, specifying your argument:
programname --long-name=value
or
programname -n value
or
programname -n "value"
History
25.08.2004 - First version is available.