forked from FriendsOfSymfony1/symfony1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsfCommandOptionSet.class.php
173 lines (156 loc) · 4.31 KB
/
sfCommandOptionSet.class.php
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
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Represent a set of command line options.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class sfCommandOptionSet
{
protected $options = array();
protected $shortcuts = array();
/**
* Constructor.
*
* @param array $options An array of sfCommandOption objects
*/
public function __construct($options = array())
{
$this->setOptions($options);
}
/**
* Sets the sfCommandOption objects.
*
* @param array $options An array of sfCommandOption objects
*/
public function setOptions($options = array())
{
$this->options = array();
$this->shortcuts = array();
$this->addOptions($options);
}
/**
* Add an array of sfCommandOption objects.
*
* @param array $options An array of sfCommandOption objects
*/
public function addOptions($options = array())
{
foreach ($options as $option) {
$this->addOption($option);
}
}
/**
* Add a sfCommandOption objects.
*
* @param sfCommandOption $option A sfCommandOption object
*
* @throws sfCommandException
*/
public function addOption(sfCommandOption $option)
{
if (isset($this->options[$option->getName()])) {
throw new sfCommandException(sprintf('An option named "%s" already exist.', $option->getName()));
}
if (isset($this->shortcuts[$option->getShortcut()])) {
throw new sfCommandException(sprintf('An option with shortcut "%s" already exist.', $option->getShortcut()));
}
$this->options[$option->getName()] = $option;
if ($option->getShortcut()) {
$this->shortcuts[$option->getShortcut()] = $option->getName();
}
}
/**
* Returns an option by name.
*
* @param string $name The option name
*
* @return sfCommandOption A sfCommandOption object
*
* @throws sfCommandException
*/
public function getOption($name)
{
if (!$this->hasOption($name)) {
throw new sfCommandException(sprintf('The "--%s" option does not exist.', $name));
}
return $this->options[$name];
}
/**
* Returns true if an option object exists by name.
*
* @param string $name The option name
*
* @return bool true if the option object exists, false otherwise
*/
public function hasOption($name)
{
return isset($this->options[$name]);
}
/**
* Gets the array of sfCommandOption objects.
*
* @return sfCommandOption[] An array of sfCommandOption objects
*/
public function getOptions()
{
return $this->options;
}
/**
* Returns true if an option object exists by shortcut.
*
* @param string $name The option shortcut
*
* @return bool true if the option object exists, false otherwise
*/
public function hasShortcut($name)
{
return isset($this->shortcuts[$name]);
}
/**
* Gets an option by shortcut.
*
* @param string $shortcut
*
* @return sfCommandOption A sfCommandOption object
*/
public function getOptionForShortcut($shortcut)
{
return $this->getOption($this->shortcutToName($shortcut));
}
/**
* Gets an array of default values.
*
* @return array An array of all default values
*/
public function getDefaults()
{
$values = array();
foreach ($this->options as $option) {
$values[$option->getName()] = $option->getDefault();
}
return $values;
}
/**
* Returns the option name given a shortcut.
*
* @param string $shortcut The shortcut
*
* @return string The option name
*
* @throws sfCommandException
*/
protected function shortcutToName($shortcut)
{
if (!isset($this->shortcuts[$shortcut])) {
throw new sfCommandException(sprintf('The "-%s" option does not exist.', $shortcut));
}
return $this->shortcuts[$shortcut];
}
}