blob: afb115d5d492342de4807db7f020cb7328085980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/*
This file is a part of "Didrole's Update Tool"
©2k12, Didrole
License : Public domain
*/
#include "CCommandLine.h"
#include <stdlib.h>
#include <string.h>
CCommandLine::CCommandLine(int argc, char **argv)
{
m_argc = 0;
for(int i = 0; i < argc; i++)
AddParm(argv[i]);
}
CCommandLine::~CCommandLine()
{
for(int i = 0; i < m_argc; i++)
{
delete[] m_argv[i];
}
}
void CCommandLine::AddParm(const char *psz)
{
m_argv[m_argc] = new char[strlen(psz) + 1];
strcpy(m_argv[m_argc], psz);
m_argc++;
}
const char* CCommandLine::ParmValues(const char *psz, unsigned int ix) const
{
int nIndex = FindParm(psz, ix);
if((nIndex == 0) || (nIndex == m_argc - 1))
return NULL;
if(m_argv[nIndex + 1][0] == '-' || m_argv[nIndex + 1][0] == '+')
return NULL;
return m_argv[nIndex + 1];
}
const char* CCommandLine::ParmValue(const char *psz, const char *pDefaultVal) const
{
const char* cszValue = ParmValues(psz, 0);
if(!cszValue)
return pDefaultVal;
return cszValue;
}
int CCommandLine::ParmValue(const char *psz, int nDefaultVal) const
{
const char* cszValue = ParmValue(psz);
if(!cszValue)
return nDefaultVal;
return atoi(cszValue);
}
unsigned int CCommandLine::ParmCount() const
{
return m_argc;
}
unsigned int CCommandLine::FindParmCount(const char *psz) const
{
unsigned cnt = 0;
for(int i = 1; i < m_argc; i++)
{
if(strcmp(m_argv[i], psz) == 0)
cnt++;
}
return cnt;
}
unsigned int CCommandLine::FindParm(const char *psz, unsigned int ix) const
{
for(int i = 1; i < m_argc; i++)
{
if(strcmp(m_argv[i], psz) == 0)
{
if (ix == 0)
return i;
ix--;
}
}
return 0;
}
const char* CCommandLine::GetParm(unsigned int nIndex) const
{
if(nIndex < (unsigned int)m_argc)
return m_argv[nIndex];
return NULL;
}
|