-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCommandUtil.cpp
125 lines (117 loc) · 2.08 KB
/
CommandUtil.cpp
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include "CommandUtil.h"
#include <Windows.h>
using namespace std;
vector<string> ParseCmdSingleParam(const char * s, int len)
{
vector<string> list;
int i = 0;
while (i < len)
{
string r = "";
while (i < len && s[i] <= 32) i ++;
while (i < len && s[i] > 32)
{
r.append(1, s[i]);
i ++;
}
if (r != "")
{
list.push_back(r);
if (i < len - 1)
{
list.push_back(s + i + 1);
}
break;
}
}
return list;
}
vector<string> ParseCmdMultiParam(const char * s, int len)
{
vector<string> list;
int i = 0;
while (i < len)
{
string r = "";
while (i < len && s[i] <= 32) i ++;
// ×Ö·û´®
if (s[i] == '"')
{
i++;
while (s[i] != '"' && s[i] != '\0')
{
r.append(1, s[i]);
i++;
}
if (s[i] != '\0')
i++;
list.push_back(r);
}
else
{
while (i < len && s[i] > 32)
{
r.append(1, s[i]);
i ++;
}
if (r != "")
{
list.push_back(r);
}
}
}
return list;
}
bool EqualNoCase(const char * s1, const char * s2)
{
while (*s1 != 0 || *s2 != 0)
{
if (toupper(*s1) != toupper(*s2)) return false;
s1++; s2++;
}
return true;
}
bool FileExists(const char * filename)
{
bool r = false;
WIN32_FIND_DATA FindFileData;
HANDLE h = FindFirstFile(filename, &FindFileData);
if (h == INVALID_HANDLE_VALUE)
{
return false;
}else
{
do
{
if (! (FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) )
{
r = true;
break;
}
}while (FindNextFile(h, &FindFileData));
FindClose(h);
return r;
}
}
bool DirExists(const char * dirname)
{
bool r = false;
WIN32_FIND_DATA FindFileData;
HANDLE h = FindFirstFile(dirname, &FindFileData);
if (h == INVALID_HANDLE_VALUE)
{
return false;
}else
{
do
{
if (FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
r = true;
break;
}
}while (FindNextFile(h, &FindFileData));
FindClose(h);
return r;
}
}