ArrayNode.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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\Config\Definition;
  11. use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
  12. use Symfony\Component\Config\Definition\Exception\InvalidTypeException;
  13. use Symfony\Component\Config\Definition\Exception\UnsetKeyException;
  14. /**
  15. * Represents an Array node in the config tree.
  16. *
  17. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  18. */
  19. class ArrayNode extends BaseNode implements PrototypeNodeInterface
  20. {
  21. protected $xmlRemappings = array();
  22. protected $children = array();
  23. protected $allowFalse = false;
  24. protected $allowNewKeys = true;
  25. protected $addIfNotSet = false;
  26. protected $performDeepMerging = true;
  27. protected $ignoreExtraKeys = false;
  28. protected $removeExtraKeys = true;
  29. protected $normalizeKeys = true;
  30. public function setNormalizeKeys($normalizeKeys)
  31. {
  32. $this->normalizeKeys = (bool) $normalizeKeys;
  33. }
  34. /**
  35. * Normalizes keys between the different configuration formats.
  36. *
  37. * Namely, you mostly have foo_bar in YAML while you have foo-bar in XML.
  38. * After running this method, all keys are normalized to foo_bar.
  39. *
  40. * If you have a mixed key like foo-bar_moo, it will not be altered.
  41. * The key will also not be altered if the target key already exists.
  42. *
  43. * @param mixed $value
  44. *
  45. * @return array The value with normalized keys
  46. */
  47. protected function preNormalize($value)
  48. {
  49. if (!$this->normalizeKeys || !is_array($value)) {
  50. return $value;
  51. }
  52. $normalized = array();
  53. foreach ($value as $k => $v) {
  54. if (false !== strpos($k, '-') && false === strpos($k, '_') && !array_key_exists($normalizedKey = str_replace('-', '_', $k), $value)) {
  55. $normalized[$normalizedKey] = $v;
  56. } else {
  57. $normalized[$k] = $v;
  58. }
  59. }
  60. return $normalized;
  61. }
  62. /**
  63. * Retrieves the children of this node.
  64. *
  65. * @return array The children
  66. */
  67. public function getChildren()
  68. {
  69. return $this->children;
  70. }
  71. /**
  72. * Sets the xml remappings that should be performed.
  73. *
  74. * @param array $remappings an array of the form array(array(string, string))
  75. */
  76. public function setXmlRemappings(array $remappings)
  77. {
  78. $this->xmlRemappings = $remappings;
  79. }
  80. /**
  81. * Gets the xml remappings that should be performed.
  82. *
  83. * @return array $remappings an array of the form array(array(string, string))
  84. */
  85. public function getXmlRemappings()
  86. {
  87. return $this->xmlRemappings;
  88. }
  89. /**
  90. * Sets whether to add default values for this array if it has not been
  91. * defined in any of the configuration files.
  92. *
  93. * @param bool $boolean
  94. */
  95. public function setAddIfNotSet($boolean)
  96. {
  97. $this->addIfNotSet = (bool) $boolean;
  98. }
  99. /**
  100. * Sets whether false is allowed as value indicating that the array should be unset.
  101. *
  102. * @param bool $allow
  103. */
  104. public function setAllowFalse($allow)
  105. {
  106. $this->allowFalse = (bool) $allow;
  107. }
  108. /**
  109. * Sets whether new keys can be defined in subsequent configurations.
  110. *
  111. * @param bool $allow
  112. */
  113. public function setAllowNewKeys($allow)
  114. {
  115. $this->allowNewKeys = (bool) $allow;
  116. }
  117. /**
  118. * Sets if deep merging should occur.
  119. *
  120. * @param bool $boolean
  121. */
  122. public function setPerformDeepMerging($boolean)
  123. {
  124. $this->performDeepMerging = (bool) $boolean;
  125. }
  126. /**
  127. * Whether extra keys should just be ignore without an exception.
  128. *
  129. * @param bool $boolean To allow extra keys
  130. * @param bool $remove To remove extra keys
  131. */
  132. public function setIgnoreExtraKeys($boolean, $remove = true)
  133. {
  134. $this->ignoreExtraKeys = (bool) $boolean;
  135. $this->removeExtraKeys = $this->ignoreExtraKeys && $remove;
  136. }
  137. /**
  138. * Sets the node Name.
  139. *
  140. * @param string $name The node's name
  141. */
  142. public function setName($name)
  143. {
  144. $this->name = $name;
  145. }
  146. /**
  147. * Checks if the node has a default value.
  148. *
  149. * @return bool
  150. */
  151. public function hasDefaultValue()
  152. {
  153. return $this->addIfNotSet;
  154. }
  155. /**
  156. * Retrieves the default value.
  157. *
  158. * @return array The default value
  159. *
  160. * @throws \RuntimeException if the node has no default value
  161. */
  162. public function getDefaultValue()
  163. {
  164. if (!$this->hasDefaultValue()) {
  165. throw new \RuntimeException(sprintf('The node at path "%s" has no default value.', $this->getPath()));
  166. }
  167. $defaults = array();
  168. foreach ($this->children as $name => $child) {
  169. if ($child->hasDefaultValue()) {
  170. $defaults[$name] = $child->getDefaultValue();
  171. }
  172. }
  173. return $defaults;
  174. }
  175. /**
  176. * Adds a child node.
  177. *
  178. * @param NodeInterface $node The child node to add
  179. *
  180. * @throws \InvalidArgumentException when the child node has no name
  181. * @throws \InvalidArgumentException when the child node's name is not unique
  182. */
  183. public function addChild(NodeInterface $node)
  184. {
  185. $name = $node->getName();
  186. if (!strlen($name)) {
  187. throw new \InvalidArgumentException('Child nodes must be named.');
  188. }
  189. if (isset($this->children[$name])) {
  190. throw new \InvalidArgumentException(sprintf('A child node named "%s" already exists.', $name));
  191. }
  192. $this->children[$name] = $node;
  193. }
  194. /**
  195. * Finalizes the value of this node.
  196. *
  197. * @param mixed $value
  198. *
  199. * @return mixed The finalised value
  200. *
  201. * @throws UnsetKeyException
  202. * @throws InvalidConfigurationException if the node doesn't have enough children
  203. */
  204. protected function finalizeValue($value)
  205. {
  206. if (false === $value) {
  207. $msg = sprintf('Unsetting key for path "%s", value: %s', $this->getPath(), json_encode($value));
  208. throw new UnsetKeyException($msg);
  209. }
  210. foreach ($this->children as $name => $child) {
  211. if (!array_key_exists($name, $value)) {
  212. if ($child->isRequired()) {
  213. $msg = sprintf('The child node "%s" at path "%s" must be configured.', $name, $this->getPath());
  214. $ex = new InvalidConfigurationException($msg);
  215. $ex->setPath($this->getPath());
  216. throw $ex;
  217. }
  218. if ($child->hasDefaultValue()) {
  219. $value[$name] = $child->getDefaultValue();
  220. }
  221. continue;
  222. }
  223. try {
  224. $value[$name] = $child->finalize($value[$name]);
  225. } catch (UnsetKeyException $e) {
  226. unset($value[$name]);
  227. }
  228. }
  229. return $value;
  230. }
  231. /**
  232. * Validates the type of the value.
  233. *
  234. * @param mixed $value
  235. *
  236. * @throws InvalidTypeException
  237. */
  238. protected function validateType($value)
  239. {
  240. if (!is_array($value) && (!$this->allowFalse || false !== $value)) {
  241. $ex = new InvalidTypeException(sprintf(
  242. 'Invalid type for path "%s". Expected array, but got %s',
  243. $this->getPath(),
  244. gettype($value)
  245. ));
  246. if ($hint = $this->getInfo()) {
  247. $ex->addHint($hint);
  248. }
  249. $ex->setPath($this->getPath());
  250. throw $ex;
  251. }
  252. }
  253. /**
  254. * Normalizes the value.
  255. *
  256. * @param mixed $value The value to normalize
  257. *
  258. * @return mixed The normalized value
  259. *
  260. * @throws InvalidConfigurationException
  261. */
  262. protected function normalizeValue($value)
  263. {
  264. if (false === $value) {
  265. return $value;
  266. }
  267. $value = $this->remapXml($value);
  268. $normalized = array();
  269. foreach ($value as $name => $val) {
  270. if (isset($this->children[$name])) {
  271. $normalized[$name] = $this->children[$name]->normalize($val);
  272. unset($value[$name]);
  273. } elseif (!$this->removeExtraKeys) {
  274. $normalized[$name] = $val;
  275. }
  276. }
  277. // if extra fields are present, throw exception
  278. if (count($value) && !$this->ignoreExtraKeys) {
  279. $msg = sprintf('Unrecognized option%s "%s" under "%s"', 1 === count($value) ? '' : 's', implode(', ', array_keys($value)), $this->getPath());
  280. $ex = new InvalidConfigurationException($msg);
  281. $ex->setPath($this->getPath());
  282. throw $ex;
  283. }
  284. return $normalized;
  285. }
  286. /**
  287. * Remaps multiple singular values to a single plural value.
  288. *
  289. * @param array $value The source values
  290. *
  291. * @return array The remapped values
  292. */
  293. protected function remapXml($value)
  294. {
  295. foreach ($this->xmlRemappings as $transformation) {
  296. list($singular, $plural) = $transformation;
  297. if (!isset($value[$singular])) {
  298. continue;
  299. }
  300. $value[$plural] = Processor::normalizeConfig($value, $singular, $plural);
  301. unset($value[$singular]);
  302. }
  303. return $value;
  304. }
  305. /**
  306. * Merges values together.
  307. *
  308. * @param mixed $leftSide The left side to merge
  309. * @param mixed $rightSide The right side to merge
  310. *
  311. * @return mixed The merged values
  312. *
  313. * @throws InvalidConfigurationException
  314. * @throws \RuntimeException
  315. */
  316. protected function mergeValues($leftSide, $rightSide)
  317. {
  318. if (false === $rightSide) {
  319. // if this is still false after the last config has been merged the
  320. // finalization pass will take care of removing this key entirely
  321. return false;
  322. }
  323. if (false === $leftSide || !$this->performDeepMerging) {
  324. return $rightSide;
  325. }
  326. foreach ($rightSide as $k => $v) {
  327. // no conflict
  328. if (!array_key_exists($k, $leftSide)) {
  329. if (!$this->allowNewKeys) {
  330. $ex = new InvalidConfigurationException(sprintf(
  331. 'You are not allowed to define new elements for path "%s". '
  332. .'Please define all elements for this path in one config file. '
  333. .'If you are trying to overwrite an element, make sure you redefine it '
  334. .'with the same name.',
  335. $this->getPath()
  336. ));
  337. $ex->setPath($this->getPath());
  338. throw $ex;
  339. }
  340. $leftSide[$k] = $v;
  341. continue;
  342. }
  343. if (!isset($this->children[$k])) {
  344. throw new \RuntimeException('merge() expects a normalized config array.');
  345. }
  346. $leftSide[$k] = $this->children[$k]->merge($leftSide[$k], $v);
  347. }
  348. return $leftSide;
  349. }
  350. }