mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
91 lines
2.1 KiB
C++
91 lines
2.1 KiB
C++
// -*- C++ -*-
|
|
//=============================================================================
|
|
/**
|
|
* @file CE_ARGV.h
|
|
*
|
|
* $Id: CE_ARGV.h 85504 2009-06-04 09:41:32Z johnnyw $
|
|
*
|
|
* @author Si Mong Park <spark@ociweb.com>
|
|
*/
|
|
//=============================================================================
|
|
|
|
#ifndef CE_ARGV_H
|
|
#define CE_ARGV_H
|
|
|
|
#include <windows.h>
|
|
#include <ctype.h>
|
|
|
|
|
|
/**
|
|
* @class CE_ARGV
|
|
*
|
|
* @brief This class is to hash input parameters, argc and argv, for WinCE platform.
|
|
*
|
|
* Since WinCE only supports wchar_t as an input from OS, some implementation detail,
|
|
* especially for CORBA spec, will not support wchar_t (wchar_t) type parameter.
|
|
* Moreover, WinCE's input parameter type is totally different than any other OS;
|
|
* all command line parameters will be stored in a single wide-character string with
|
|
* each unit parameter divided by blank space, and it does not provide the name of
|
|
* executable (generally known as argv[0]).
|
|
* This class is to convert CE's command line parameters and simulate as in the same
|
|
* manner as other general platforms, adding 'root' as a first argc, which is for the
|
|
* name of executable in other OS.
|
|
*/
|
|
class CE_ARGV
|
|
{
|
|
public:
|
|
/**
|
|
* Ctor accepts CE command line as a parameter.
|
|
*/
|
|
CE_ARGV(wchar_t* cmdLine);
|
|
|
|
/**
|
|
* Default Dtor that deletes any memory allocated for the converted string.
|
|
*/
|
|
~CE_ARGV(void);
|
|
|
|
/**
|
|
* Returns the number of command line parameters, same as argc on Unix.
|
|
*/
|
|
int argc(void);
|
|
|
|
/**
|
|
* Returns the 'char**' that contains the converted command line parameters.
|
|
*/
|
|
wchar_t** argv(void);
|
|
|
|
private:
|
|
/**
|
|
* Copy Ctor is not allowed.
|
|
*/
|
|
CE_ARGV(void);
|
|
|
|
/**
|
|
* Copy Ctor is not allowed.
|
|
*/
|
|
CE_ARGV(CE_ARGV&);
|
|
|
|
/**
|
|
* Pointer of converted command line parameters.
|
|
*/
|
|
wchar_t** ce_argv_;
|
|
|
|
/**
|
|
* Integer that is same as argc on other OS's.
|
|
*/
|
|
int ce_argc_;
|
|
};
|
|
|
|
|
|
inline int CE_ARGV::argc()
|
|
{
|
|
return ce_argc_;
|
|
}
|
|
|
|
|
|
inline wchar_t** CE_ARGV::argv()
|
|
{
|
|
return ce_argv_;
|
|
}
|
|
|
|
#endif // CE_ARGV_H
|