-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpt.php
More file actions
277 lines (245 loc) · 5.92 KB
/
Copy pathOpt.php
File metadata and controls
277 lines (245 loc) · 5.92 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
<?php
/**
* Récupération des options en ligne de commande via -
*
* @package Deuton
* @subpackage Core
* @author Siwaÿll <sanath.labs@gmail.com>
* @license beerware http://wikipedia.org/wiki/Beerware
*/
namespace Siwayll\Deuton;
/**
* Récupération des options en ligne de commande via -
*
* @package Deuton
* @subpackage Core
* @author Siwaÿll <sanath.labs@gmail.com>
* @license beerware http://wikipedia.org/wiki/Beerware
*/
class Opt
{
/**
* Tableau contenant toutes les options
*
* @var array
*/
private $data = array();
/**
* Tableau contenant toutes les commandes
*
* @var array
*/
private $cmd = array();
/**
*
*
* @var Opt
*/
static private $self = null;
/**
* Récupère les options passés en ligne de commande
*/
public function __construct()
{
if (self::$self !== null) {
throw new Exception('Opt ne peut être instancié deux fois');
}
$this->getOpts();
foreach ($this->data as $key => $value) {
if (strpos($key, '-') === false) {
continue;
}
/** Transformation en notation camel des variables avec un - **/
$foo = explode('-', $key);
$foo = array_map('ucfirst', $foo);
$foo[0] = strtolower($foo[0]);
$name = implode('', $foo);
$this->data[$name] = $value;
unset($this->data[$key]);
}
self::$self = $this;
}
/**
* Charge les paramètres passés via la ligne de commande
*
* @return void
* @global array $argv
*
*/
protected function getOpts()
{
global $argv;
$this->parse($argv);
}
/**
* Lit les paramètres saisis dans l'interface
*
* @param string $cmd commande à lire
*
* @return void
*/
public function parseCmd($cmd)
{
$args = explode(' ', $cmd);
$this->parse($args);
}
/**
*
* @return void
*/
protected function parse($args)
{
foreach ($args as $arg) {
if (strpos($arg, '-') === 0) {
$this->extractOpt($arg);
continue;
}
if (strpos($arg, '.php') !== false) {
continue;
}
if (strpos($arg, '-') !== false) {
$foo = explode('-', $arg);
$foo = array_map('ucfirst', $foo);
$arg = implode('', $foo);
unset($foo);
}
$this->cmd[] = $arg;
}
}
/**
* Lit un paramètre passé en ligne de commande pour en comprendre le sens
*
* Sont gérés pour le moment les options sous la forme :
* * a=value
* * -a=value
* * -avalue
* * --a=value
* * -une-variable-longue=value
*
* @param string $arg chaine contenant un paramètre
*
* @return void
*/
protected function extractOpt($arg)
{
$data = true;
if (preg_match('#^\-([a-z]{1})([^=]+)$#i', $arg, $match)) {
$this->data[$match[1]] = $match[2];
return;
}
$arg = preg_replace('#^\-{1,2}#', '', $arg);
if (strpos($arg, '=') !== false) {
$data = substr(strrchr($arg, '='), 1);
$arg = str_replace('=' . $data, '', $arg);
}
/**
* Récupération des options de la forme :
* -une-variable-longue=value
* elle sera enregistrée sous la forme :
* unVariableLongue = value
*/
if (strpos($arg, '-') !== false) {
$foo = explode('-', $arg);
$foo = array_map('ucfirst', $foo);
$foo[0] = strtolower($foo[0]);
$arg = implode('', $foo);
unset($foo);
}
$this->data[$arg] = $data;
}
/**
* Renvois un tableau avec les paramètres
*
* @return string
*/
public function getAll()
{
return $this->data;
}
/**
* Renvois un tableau avec les commandes
*
* @return string
*/
public function getCmd()
{
if (empty($this->cmd)) {
return null;
}
$className = array_pop($this->cmd);
$className = $this->formatCmd($className);
$conf = Deuton::getConf();
$name = $conf->get('core', 'moduleNamespace');
foreach ($this->cmd as $cmd) {
$cmd = $this->formatCmd($cmd);
$name .= $cmd . '\\';
}
$name .= $className;
return $name;
}
/**
* Format le nom pour respecter la casse des classes
*
* @var $name string Paramètre de la commande
*
* @return string
*/
private function formatCmd($name)
{
$upperName = ucfirst($name);
if ($name != $upperName) {
return $upperName;
}
return $name;
}
/**
* Renvois l'objet Opt en cours
*
* @return Opt
*/
public static function get()
{
return self::$self;
}
/**
* Contrôle l'existance d'un paramètre
*
* @param string $name Nom de la variable
*
* @return boolean
*/
public function __isset($name)
{
if (isset($this->data[$name])) {
return true;
} else {
return false;
}
}
/**
* Renvois la valeur du paramètre
*
* @param string $name Nom de la variable
*
* @return string
*/
public function __get($name)
{
if (isset($this->data[$name])) {
return $this->data[$name];
}
return null;
}
/**
* Enregistre la valeur du paramètre
*
* @param string $name Nom de la variable
* @param mixed $value Valeur de la variable
*
* @return string
*/
public function __set($name, $value)
{
$this->data[$name] = $value;
}
}