-
Notifications
You must be signed in to change notification settings - Fork 1
/
Command.h
217 lines (198 loc) · 4.11 KB
/
Command.h
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#pragma once
#include "Util.h"
namespace HNx
{
class Command
{
public:
Command() = default;
Command(Command const& c)
: m_phrase(c.m_phrase)
, m_exec(c.m_exec)
, m_param(c.m_param)
{}
Command(Command&& c)
: m_phrase(std::move(c.m_phrase))
, m_exec(std::move(c.m_exec))
, m_param(std::move(c.m_param))
{}
Command& operator=(Command const& c)
{
if(this != &c)
{
m_phrase = c.m_phrase;
m_exec = c.m_exec;
m_param = c.m_param;
}
return *this;
}
Command& operator=(Command&& c)
{
if(this != &c)
{
m_phrase.swap(c.m_phrase);
m_exec.swap(c.m_exec);
m_param.swap(c.m_param);
}
return *this;
}
Command(std::wstring_view phrase,
std::wstring_view prog,
std::wstring_view param = L"")
: m_phrase(phrase)
, m_exec(prog)
, m_param(param)
{}
//Command(std::wstring const& cmdline)
//{
// std::wstring trimmed = trim_whitespace(cmdline);
//
// // handle quoted and escaped cmdlines
// // and split executable path from
// // its args trims unquoted and unescaped
// // extra whitespace down to a single
// // space character
// enum class State
// {
// Normal,
// SQuote,
// DQuote,
// Escaped,
// Trim
// }state = State::Normal;
//
// State last_state = state;
//
// bool exec_complete{ false };
//
// for (auto c : trimmed)
// {
// if (!exec_complete)
// {
// switch (state)
// {
// case State::Escaped:
// m_exec.push_back(c);
// state = last_state;
// break;
//
// case State::DQuote:
// if (c == L'\\')
// {
// last_state = state;
// state = State::Escaped;
// }
// if (c == L'"')
// state = State::Normal;
//
// m_exec.push_back(c);
// break;
//
// case State::SQuote:
// if (c == '\\')
// {
// last_state = state;
// state = State::Escaped;
// }
// if (c == '\'')
// state == State::Normal;
// break;
//
// case State::Trim:
// if (c == ' ')
// continue;
//
// state = State::Normal;
// /* fallthrough */
// case State::Normal:
// if (c == L'\'')
// {
// state = State::SQuote;
// continue;
// }
//
// if (c == L'"')
// {
// state = State::DQuote;
// continue;
// }
//
// if (c == L'\\')
// {
// last_state = state;
// state = State::Escaped;
// continue;
// }
//
// if (c == L' ')
// {
// state = State::Trim;
// exec_complete = true;
// continue;
// }
// m_exec.push_back(c);
// break;
// }
// m_param.push_back(c);
// }
// }
//}
std::wstring phrase() const
{
return m_phrase;
}
std::wstring exec() const
{
return m_exec;
}
std::wstring param() const
{
return m_param;
}
void setPhrase(std::wstring_view t)
{
m_phrase = t;
}
void setExec(std::wstring_view t)
{
m_exec = t;
}
void setParam(std::wstring_view t)
{
m_param = t;
}
// combines the exec and optional param into
// a cmdline ready for CreateProcess()
std::wstring cmdline() const
{
std::wstring cmdline;
if(!m_exec.empty())
{
cmdline = m_exec;
if(!m_param.empty())
{
cmdline.push_back(' ');
cmdline.append(m_param);
}
}
return cmdline;
}
friend bool operator==(Command const& a, Command const& b)
{
return ((a.phrase() == b.phrase()) &&
(a.exec() == b.exec()) &&
(a.param() == b.param()));
}
friend bool operator!=(Command const& a, Command const& b)
{
return !(a == b);
}
private:
// phrase to listen for
std::wstring m_phrase {};
// program to execute and
// it's optional args
std::wstring m_exec {};
std::wstring m_param {};
};
}