ArrayInput.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\Input;
  11. /**
  12. * ArrayInput represents an input provided as an array.
  13. *
  14. * Usage:
  15. *
  16. * $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
  17. *
  18. * @author Fabien Potencier <fabien@symfony.com>
  19. *
  20. * @api
  21. */
  22. class ArrayInput extends Input
  23. {
  24. private $parameters;
  25. /**
  26. * Constructor.
  27. *
  28. * @param array $parameters An array of parameters
  29. * @param InputDefinition $definition A InputDefinition instance
  30. *
  31. * @api
  32. */
  33. public function __construct(array $parameters, InputDefinition $definition = null)
  34. {
  35. $this->parameters = $parameters;
  36. parent::__construct($definition);
  37. }
  38. /**
  39. * Returns the first argument from the raw parameters (not parsed).
  40. *
  41. * @return string The value of the first argument or null otherwise
  42. */
  43. public function getFirstArgument()
  44. {
  45. foreach ($this->parameters as $key => $value) {
  46. if ($key && '-' === $key[0]) {
  47. continue;
  48. }
  49. return $value;
  50. }
  51. }
  52. /**
  53. * Returns true if the raw parameters (not parsed) contain a value.
  54. *
  55. * This method is to be used to introspect the input parameters
  56. * before they have been validated. It must be used carefully.
  57. *
  58. * @param string|array $values The values to look for in the raw parameters (can be an array)
  59. *
  60. * @return Boolean true if the value is contained in the raw parameters
  61. */
  62. public function hasParameterOption($values)
  63. {
  64. $values = (array) $values;
  65. foreach ($this->parameters as $k => $v) {
  66. if (!is_int($k)) {
  67. $v = $k;
  68. }
  69. if (in_array($v, $values)) {
  70. return true;
  71. }
  72. }
  73. return false;
  74. }
  75. /**
  76. * Returns the value of a raw option (not parsed).
  77. *
  78. * This method is to be used to introspect the input parameters
  79. * before they have been validated. It must be used carefully.
  80. *
  81. * @param string|array $values The value(s) to look for in the raw parameters (can be an array)
  82. * @param mixed $default The default value to return if no result is found
  83. *
  84. * @return mixed The option value
  85. */
  86. public function getParameterOption($values, $default = false)
  87. {
  88. $values = (array) $values;
  89. foreach ($this->parameters as $k => $v) {
  90. if (is_int($k) && in_array($v, $values)) {
  91. return true;
  92. } elseif (in_array($k, $values)) {
  93. return $v;
  94. }
  95. }
  96. return $default;
  97. }
  98. /**
  99. * Returns a stringified representation of the args passed to the command
  100. *
  101. * @return string
  102. */
  103. public function __toString()
  104. {
  105. $params = array();
  106. foreach ($this->parameters as $param => $val) {
  107. if ($param && '-' === $param[0]) {
  108. $params[] = $param . ('' != $val ? '='.$this->escapeToken($val) : '');
  109. } else {
  110. $params[] = $this->escapeToken($val);
  111. }
  112. }
  113. return implode(' ', $params);
  114. }
  115. /**
  116. * Processes command line arguments.
  117. */
  118. protected function parse()
  119. {
  120. foreach ($this->parameters as $key => $value) {
  121. if (0 === strpos($key, '--')) {
  122. $this->addLongOption(substr($key, 2), $value);
  123. } elseif ('-' === $key[0]) {
  124. $this->addShortOption(substr($key, 1), $value);
  125. } else {
  126. $this->addArgument($key, $value);
  127. }
  128. }
  129. }
  130. /**
  131. * Adds a short option value.
  132. *
  133. * @param string $shortcut The short option key
  134. * @param mixed $value The value for the option
  135. *
  136. * @throws \InvalidArgumentException When option given doesn't exist
  137. */
  138. private function addShortOption($shortcut, $value)
  139. {
  140. if (!$this->definition->hasShortcut($shortcut)) {
  141. throw new \InvalidArgumentException(sprintf('The "-%s" option does not exist.', $shortcut));
  142. }
  143. $this->addLongOption($this->definition->getOptionForShortcut($shortcut)->getName(), $value);
  144. }
  145. /**
  146. * Adds a long option value.
  147. *
  148. * @param string $name The long option key
  149. * @param mixed $value The value for the option
  150. *
  151. * @throws \InvalidArgumentException When option given doesn't exist
  152. * @throws \InvalidArgumentException When a required value is missing
  153. */
  154. private function addLongOption($name, $value)
  155. {
  156. if (!$this->definition->hasOption($name)) {
  157. throw new \InvalidArgumentException(sprintf('The "--%s" option does not exist.', $name));
  158. }
  159. $option = $this->definition->getOption($name);
  160. if (null === $value) {
  161. if ($option->isValueRequired()) {
  162. throw new \InvalidArgumentException(sprintf('The "--%s" option requires a value.', $name));
  163. }
  164. $value = $option->isValueOptional() ? $option->getDefault() : true;
  165. }
  166. $this->options[$name] = $value;
  167. }
  168. /**
  169. * Adds an argument value.
  170. *
  171. * @param string $name The argument name
  172. * @param mixed $value The value for the argument
  173. *
  174. * @throws \InvalidArgumentException When argument given doesn't exist
  175. */
  176. private function addArgument($name, $value)
  177. {
  178. if (!$this->definition->hasArgument($name)) {
  179. throw new \InvalidArgumentException(sprintf('The "%s" argument does not exist.', $name));
  180. }
  181. $this->arguments[$name] = $value;
  182. }
  183. }