-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathArguments.php
More file actions
305 lines (266 loc) · 7.91 KB
/
Arguments.php
File metadata and controls
305 lines (266 loc) · 7.91 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.6.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Console;
use Cake\Console\Exception\ConsoleException;
use function Cake\Core\deprecationWarning;
/**
* Provides an interface for interacting with
* a command's options and arguments.
*/
class Arguments
{
/**
* Positional argument name map
*
* @var array<int, string>
*/
protected array $argNames;
/**
* Positional arguments.
*
* @var array<int, array<string>|string>
*/
protected array $args;
/**
* Named options
*
* @var array<string, array<string>|string|bool|null>
*/
protected array $options;
/**
* Constructor
*
* @param array<int, array<string>|string> $args Positional arguments
* @param array<string, array<string>|string|bool|null> $options Named arguments
* @param array<int, string> $argNames List of argument names. Order is expected to be
* the same as $args.
*/
public function __construct(array $args, array $options, array $argNames)
{
$this->args = $args;
$this->options = $options;
$this->argNames = $argNames;
}
/**
* Get all positional arguments.
*
* @return array<int, array<string>|string>
*/
public function getArguments(): array
{
return $this->args;
}
/**
* Get positional arguments by index.
*
* @param int $index The argument index to access.
* @return string|null The argument value or null
*/
public function getArgumentAt(int $index): ?string
{
if (!$this->hasArgumentAt($index)) {
return null;
}
$value = $this->args[$index];
if ($value !== null && !is_string($value)) {
throw new ConsoleException(sprintf(
'Argument at index `%d` is not of type `string`, use `getArrayArgument()` instead.',
$index,
));
}
return $value;
}
/**
* Get positional arguments (multiple) by index.
*
* @param int $index The argument index to access.
* @return array|null The argument value or null
*/
public function getArrayArgumentAt(int $index): ?array
{
if (!$this->hasArgumentAt($index)) {
return null;
}
$value = $this->args[$index];
if ($value !== null && !is_array($value)) {
throw new ConsoleException(sprintf(
'Argument at index `%d` is not of type `array`, use `getArgument()` instead.',
$index,
));
}
return $value;
}
/**
* Check if a positional argument exists by index
*
* @param int $index The argument index to check.
* @return bool
*/
public function hasArgumentAt(int $index): bool
{
return isset($this->args[$index]);
}
/**
* Check if a positional argument exists by name
*
* @param string $name The argument name to check.
* @return bool
*/
public function hasArgument(string $name): bool
{
$offset = array_search($name, $this->argNames, true);
if ($offset === false) {
return false;
}
return isset($this->args[$offset]);
}
/**
* Returns positional argument value by name or null if doesn't exist
*
* @param string $name The argument name to check.
* @return string|null
*/
public function getArgument(string $name): ?string
{
$this->assertArgumentExists($name);
$offset = array_search($name, $this->argNames, true);
$value = $this->args[$offset] ?? null;
if ($value !== null && !is_string($value)) {
throw new ConsoleException(sprintf(
'Argument `%s` is not of type `string`, use `getArrayArgument()` instead.',
$name,
));
}
return $value;
}
/**
* Gets a multiple (array) argument's value or null if not set.
*
* @param string $name Argument name.
* @return array<string>|null
*/
public function getArrayArgument(string $name): ?array
{
$this->assertArgumentExists($name);
$offset = array_search($name, $this->argNames, true);
$value = $this->args[$offset] ?? null;
if ($value !== null && !is_array($value)) {
throw new ConsoleException(sprintf(
'Argument `%s` is not of type `array`, use `getArgument()` instead.',
$name,
));
}
return $value;
}
/**
* Get an array of all the options
*
* @return array<string, array<string>|string|bool|null>
*/
public function getOptions(): array
{
return $this->options;
}
/**
* Get a non-multiple option's value or null if not set.
*
* @param string $name The name of the option to check.
* @return string|bool|null
*/
public function getOption(string $name): string|bool|null
{
$value = $this->options[$name] ?? null;
if (is_array($value)) {
throw new ConsoleException(sprintf(
'Cannot get multiple values for option `%s`, use `getArrayOption()` instead.',
$name,
));
}
assert($value === null || is_string($value) || is_bool($value));
return $value;
}
/**
* Get a boolean option's value or null if not set.
*
* @param string $name Option name.
* @return bool|null
*/
public function getBooleanOption(string $name): ?bool
{
$value = $this->options[$name] ?? null;
if ($value !== null && !is_bool($value)) {
throw new ConsoleException(sprintf(
'Option `%s` is not of type `bool`, use `getOption()` instead.',
$name,
));
}
return $value;
}
/**
* Gets a multiple option's value or null if not set.
*
* @return array<string>|null
* @deprecated 5.2.0 Use getArrayOption instead.
*/
public function getMultipleOption(string $name): ?array
{
deprecationWarning(
'5.2.0',
'getMultipleOption() is deprecated. Use `getArrayOption()` instead.',
);
return $this->getArrayOption($name);
}
/**
* Gets a multiple (array) option's value or null if not set.
*
* @return array<string>|null
*/
public function getArrayOption(string $name): ?array
{
$value = $this->options[$name] ?? null;
if ($value !== null && !is_array($value)) {
throw new ConsoleException(sprintf(
'Option `%s` is not of type `array`, use `getOption()` instead.',
$name,
));
}
return $value;
}
/**
* Check if an option is defined and not null.
*
* @param string $name The name of the option to check.
* @return bool
*/
public function hasOption(string $name): bool
{
return isset($this->options[$name]);
}
/**
* @param string $name
* @return void
*/
protected function assertArgumentExists(string $name): void
{
if (in_array($name, $this->argNames, true)) {
return;
}
throw new ConsoleException(sprintf(
'Argument `%s` is not defined on this Command. Could this be an option maybe?',
$name,
));
}
}