截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

OptionsResolver.php 41KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230
  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\OptionsResolver;
  11. use Symfony\Component\OptionsResolver\Exception\AccessException;
  12. use Symfony\Component\OptionsResolver\Exception\InvalidArgumentException;
  13. use Symfony\Component\OptionsResolver\Exception\InvalidOptionsException;
  14. use Symfony\Component\OptionsResolver\Exception\MissingOptionsException;
  15. use Symfony\Component\OptionsResolver\Exception\NoSuchOptionException;
  16. use Symfony\Component\OptionsResolver\Exception\OptionDefinitionException;
  17. use Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException;
  18. /**
  19. * Validates options and merges them with default values.
  20. *
  21. * @author Bernhard Schussek <bschussek@gmail.com>
  22. * @author Tobias Schultze <http://tobion.de>
  23. */
  24. class OptionsResolver implements Options
  25. {
  26. /**
  27. * The names of all defined options.
  28. */
  29. private $defined = [];
  30. /**
  31. * The default option values.
  32. */
  33. private $defaults = [];
  34. /**
  35. * A list of closure for nested options.
  36. *
  37. * @var \Closure[][]
  38. */
  39. private $nested = [];
  40. /**
  41. * The names of required options.
  42. */
  43. private $required = [];
  44. /**
  45. * The resolved option values.
  46. */
  47. private $resolved = [];
  48. /**
  49. * A list of normalizer closures.
  50. *
  51. * @var \Closure[][]
  52. */
  53. private $normalizers = [];
  54. /**
  55. * A list of accepted values for each option.
  56. */
  57. private $allowedValues = [];
  58. /**
  59. * A list of accepted types for each option.
  60. */
  61. private $allowedTypes = [];
  62. /**
  63. * A list of closures for evaluating lazy options.
  64. */
  65. private $lazy = [];
  66. /**
  67. * A list of lazy options whose closure is currently being called.
  68. *
  69. * This list helps detecting circular dependencies between lazy options.
  70. */
  71. private $calling = [];
  72. /**
  73. * A list of deprecated options.
  74. */
  75. private $deprecated = [];
  76. /**
  77. * The list of options provided by the user.
  78. */
  79. private $given = [];
  80. /**
  81. * Whether the instance is locked for reading.
  82. *
  83. * Once locked, the options cannot be changed anymore. This is
  84. * necessary in order to avoid inconsistencies during the resolving
  85. * process. If any option is changed after being read, all evaluated
  86. * lazy options that depend on this option would become invalid.
  87. */
  88. private $locked = false;
  89. private $parentsOptions = [];
  90. private const TYPE_ALIASES = [
  91. 'boolean' => 'bool',
  92. 'integer' => 'int',
  93. 'double' => 'float',
  94. ];
  95. /**
  96. * Sets the default value of a given option.
  97. *
  98. * If the default value should be set based on other options, you can pass
  99. * a closure with the following signature:
  100. *
  101. * function (Options $options) {
  102. * // ...
  103. * }
  104. *
  105. * The closure will be evaluated when {@link resolve()} is called. The
  106. * closure has access to the resolved values of other options through the
  107. * passed {@link Options} instance:
  108. *
  109. * function (Options $options) {
  110. * if (isset($options['port'])) {
  111. * // ...
  112. * }
  113. * }
  114. *
  115. * If you want to access the previously set default value, add a second
  116. * argument to the closure's signature:
  117. *
  118. * $options->setDefault('name', 'Default Name');
  119. *
  120. * $options->setDefault('name', function (Options $options, $previousValue) {
  121. * // 'Default Name' === $previousValue
  122. * });
  123. *
  124. * This is mostly useful if the configuration of the {@link Options} object
  125. * is spread across different locations of your code, such as base and
  126. * sub-classes.
  127. *
  128. * If you want to define nested options, you can pass a closure with the
  129. * following signature:
  130. *
  131. * $options->setDefault('database', function (OptionsResolver $resolver) {
  132. * $resolver->setDefined(['dbname', 'host', 'port', 'user', 'pass']);
  133. * }
  134. *
  135. * To get access to the parent options, add a second argument to the closure's
  136. * signature:
  137. *
  138. * function (OptionsResolver $resolver, Options $parent) {
  139. * // 'default' === $parent['connection']
  140. * }
  141. *
  142. * @param string $option The name of the option
  143. * @param mixed $value The default value of the option
  144. *
  145. * @return $this
  146. *
  147. * @throws AccessException If called from a lazy option or normalizer
  148. */
  149. public function setDefault($option, $value)
  150. {
  151. // Setting is not possible once resolving starts, because then lazy
  152. // options could manipulate the state of the object, leading to
  153. // inconsistent results.
  154. if ($this->locked) {
  155. throw new AccessException('Default values cannot be set from a lazy option or normalizer.');
  156. }
  157. // If an option is a closure that should be evaluated lazily, store it
  158. // in the "lazy" property.
  159. if ($value instanceof \Closure) {
  160. $reflClosure = new \ReflectionFunction($value);
  161. $params = $reflClosure->getParameters();
  162. if (isset($params[0]) && Options::class === $this->getParameterClassName($params[0])) {
  163. // Initialize the option if no previous value exists
  164. if (!isset($this->defaults[$option])) {
  165. $this->defaults[$option] = null;
  166. }
  167. // Ignore previous lazy options if the closure has no second parameter
  168. if (!isset($this->lazy[$option]) || !isset($params[1])) {
  169. $this->lazy[$option] = [];
  170. }
  171. // Store closure for later evaluation
  172. $this->lazy[$option][] = $value;
  173. $this->defined[$option] = true;
  174. // Make sure the option is processed and is not nested anymore
  175. unset($this->resolved[$option], $this->nested[$option]);
  176. return $this;
  177. }
  178. if (isset($params[0]) && null !== ($type = $params[0]->getType()) && self::class === $type->getName() && (!isset($params[1]) || (($type = $params[1]->getType()) instanceof \ReflectionNamedType && Options::class === $type->getName()))) {
  179. // Store closure for later evaluation
  180. $this->nested[$option][] = $value;
  181. $this->defaults[$option] = [];
  182. $this->defined[$option] = true;
  183. // Make sure the option is processed and is not lazy anymore
  184. unset($this->resolved[$option], $this->lazy[$option]);
  185. return $this;
  186. }
  187. }
  188. // This option is not lazy nor nested anymore
  189. unset($this->lazy[$option], $this->nested[$option]);
  190. // Yet undefined options can be marked as resolved, because we only need
  191. // to resolve options with lazy closures, normalizers or validation
  192. // rules, none of which can exist for undefined options
  193. // If the option was resolved before, update the resolved value
  194. if (!isset($this->defined[$option]) || \array_key_exists($option, $this->resolved)) {
  195. $this->resolved[$option] = $value;
  196. }
  197. $this->defaults[$option] = $value;
  198. $this->defined[$option] = true;
  199. return $this;
  200. }
  201. /**
  202. * Sets a list of default values.
  203. *
  204. * @param array $defaults The default values to set
  205. *
  206. * @return $this
  207. *
  208. * @throws AccessException If called from a lazy option or normalizer
  209. */
  210. public function setDefaults(array $defaults)
  211. {
  212. foreach ($defaults as $option => $value) {
  213. $this->setDefault($option, $value);
  214. }
  215. return $this;
  216. }
  217. /**
  218. * Returns whether a default value is set for an option.
  219. *
  220. * Returns true if {@link setDefault()} was called for this option.
  221. * An option is also considered set if it was set to null.
  222. *
  223. * @param string $option The option name
  224. *
  225. * @return bool Whether a default value is set
  226. */
  227. public function hasDefault($option)
  228. {
  229. return \array_key_exists($option, $this->defaults);
  230. }
  231. /**
  232. * Marks one or more options as required.
  233. *
  234. * @param string|string[] $optionNames One or more option names
  235. *
  236. * @return $this
  237. *
  238. * @throws AccessException If called from a lazy option or normalizer
  239. */
  240. public function setRequired($optionNames)
  241. {
  242. if ($this->locked) {
  243. throw new AccessException('Options cannot be made required from a lazy option or normalizer.');
  244. }
  245. foreach ((array) $optionNames as $option) {
  246. $this->defined[$option] = true;
  247. $this->required[$option] = true;
  248. }
  249. return $this;
  250. }
  251. /**
  252. * Returns whether an option is required.
  253. *
  254. * An option is required if it was passed to {@link setRequired()}.
  255. *
  256. * @param string $option The name of the option
  257. *
  258. * @return bool Whether the option is required
  259. */
  260. public function isRequired($option)
  261. {
  262. return isset($this->required[$option]);
  263. }
  264. /**
  265. * Returns the names of all required options.
  266. *
  267. * @return string[] The names of the required options
  268. *
  269. * @see isRequired()
  270. */
  271. public function getRequiredOptions()
  272. {
  273. return array_keys($this->required);
  274. }
  275. /**
  276. * Returns whether an option is missing a default value.
  277. *
  278. * An option is missing if it was passed to {@link setRequired()}, but not
  279. * to {@link setDefault()}. This option must be passed explicitly to
  280. * {@link resolve()}, otherwise an exception will be thrown.
  281. *
  282. * @param string $option The name of the option
  283. *
  284. * @return bool Whether the option is missing
  285. */
  286. public function isMissing($option)
  287. {
  288. return isset($this->required[$option]) && !\array_key_exists($option, $this->defaults);
  289. }
  290. /**
  291. * Returns the names of all options missing a default value.
  292. *
  293. * @return string[] The names of the missing options
  294. *
  295. * @see isMissing()
  296. */
  297. public function getMissingOptions()
  298. {
  299. return array_keys(array_diff_key($this->required, $this->defaults));
  300. }
  301. /**
  302. * Defines a valid option name.
  303. *
  304. * Defines an option name without setting a default value. The option will
  305. * be accepted when passed to {@link resolve()}. When not passed, the
  306. * option will not be included in the resolved options.
  307. *
  308. * @param string|string[] $optionNames One or more option names
  309. *
  310. * @return $this
  311. *
  312. * @throws AccessException If called from a lazy option or normalizer
  313. */
  314. public function setDefined($optionNames)
  315. {
  316. if ($this->locked) {
  317. throw new AccessException('Options cannot be defined from a lazy option or normalizer.');
  318. }
  319. foreach ((array) $optionNames as $option) {
  320. $this->defined[$option] = true;
  321. }
  322. return $this;
  323. }
  324. /**
  325. * Returns whether an option is defined.
  326. *
  327. * Returns true for any option passed to {@link setDefault()},
  328. * {@link setRequired()} or {@link setDefined()}.
  329. *
  330. * @param string $option The option name
  331. *
  332. * @return bool Whether the option is defined
  333. */
  334. public function isDefined($option)
  335. {
  336. return isset($this->defined[$option]);
  337. }
  338. /**
  339. * Returns the names of all defined options.
  340. *
  341. * @return string[] The names of the defined options
  342. *
  343. * @see isDefined()
  344. */
  345. public function getDefinedOptions()
  346. {
  347. return array_keys($this->defined);
  348. }
  349. public function isNested(string $option): bool
  350. {
  351. return isset($this->nested[$option]);
  352. }
  353. /**
  354. * Deprecates an option, allowed types or values.
  355. *
  356. * Instead of passing the message, you may also pass a closure with the
  357. * following signature:
  358. *
  359. * function (Options $options, $value): string {
  360. * // ...
  361. * }
  362. *
  363. * The closure receives the value as argument and should return a string.
  364. * Return an empty string to ignore the option deprecation.
  365. *
  366. * The closure is invoked when {@link resolve()} is called. The parameter
  367. * passed to the closure is the value of the option after validating it
  368. * and before normalizing it.
  369. *
  370. * @param string|\Closure $deprecationMessage
  371. */
  372. public function setDeprecated(string $option, $deprecationMessage = 'The option "%name%" is deprecated.'): self
  373. {
  374. if ($this->locked) {
  375. throw new AccessException('Options cannot be deprecated from a lazy option or normalizer.');
  376. }
  377. if (!isset($this->defined[$option])) {
  378. throw new UndefinedOptionsException(sprintf('The option "%s" does not exist, defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  379. }
  380. if (!\is_string($deprecationMessage) && !$deprecationMessage instanceof \Closure) {
  381. throw new InvalidArgumentException(sprintf('Invalid type for deprecation message argument, expected string or \Closure, but got "%s".', \gettype($deprecationMessage)));
  382. }
  383. // ignore if empty string
  384. if ('' === $deprecationMessage) {
  385. return $this;
  386. }
  387. $this->deprecated[$option] = $deprecationMessage;
  388. // Make sure the option is processed
  389. unset($this->resolved[$option]);
  390. return $this;
  391. }
  392. public function isDeprecated(string $option): bool
  393. {
  394. return isset($this->deprecated[$option]);
  395. }
  396. /**
  397. * Sets the normalizer for an option.
  398. *
  399. * The normalizer should be a closure with the following signature:
  400. *
  401. * function (Options $options, $value) {
  402. * // ...
  403. * }
  404. *
  405. * The closure is invoked when {@link resolve()} is called. The closure
  406. * has access to the resolved values of other options through the passed
  407. * {@link Options} instance.
  408. *
  409. * The second parameter passed to the closure is the value of
  410. * the option.
  411. *
  412. * The resolved option value is set to the return value of the closure.
  413. *
  414. * @param string $option The option name
  415. * @param \Closure $normalizer The normalizer
  416. *
  417. * @return $this
  418. *
  419. * @throws UndefinedOptionsException If the option is undefined
  420. * @throws AccessException If called from a lazy option or normalizer
  421. */
  422. public function setNormalizer($option, \Closure $normalizer)
  423. {
  424. if ($this->locked) {
  425. throw new AccessException('Normalizers cannot be set from a lazy option or normalizer.');
  426. }
  427. if (!isset($this->defined[$option])) {
  428. throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  429. }
  430. $this->normalizers[$option] = [$normalizer];
  431. // Make sure the option is processed
  432. unset($this->resolved[$option]);
  433. return $this;
  434. }
  435. /**
  436. * Adds a normalizer for an option.
  437. *
  438. * The normalizer should be a closure with the following signature:
  439. *
  440. * function (Options $options, $value): mixed {
  441. * // ...
  442. * }
  443. *
  444. * The closure is invoked when {@link resolve()} is called. The closure
  445. * has access to the resolved values of other options through the passed
  446. * {@link Options} instance.
  447. *
  448. * The second parameter passed to the closure is the value of
  449. * the option.
  450. *
  451. * The resolved option value is set to the return value of the closure.
  452. *
  453. * @param string $option The option name
  454. * @param \Closure $normalizer The normalizer
  455. * @param bool $forcePrepend If set to true, prepend instead of appending
  456. *
  457. * @return $this
  458. *
  459. * @throws UndefinedOptionsException If the option is undefined
  460. * @throws AccessException If called from a lazy option or normalizer
  461. */
  462. public function addNormalizer(string $option, \Closure $normalizer, bool $forcePrepend = false): self
  463. {
  464. if ($this->locked) {
  465. throw new AccessException('Normalizers cannot be set from a lazy option or normalizer.');
  466. }
  467. if (!isset($this->defined[$option])) {
  468. throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  469. }
  470. if ($forcePrepend) {
  471. $this->normalizers[$option] = $this->normalizers[$option] ?? [];
  472. array_unshift($this->normalizers[$option], $normalizer);
  473. } else {
  474. $this->normalizers[$option][] = $normalizer;
  475. }
  476. // Make sure the option is processed
  477. unset($this->resolved[$option]);
  478. return $this;
  479. }
  480. /**
  481. * Sets allowed values for an option.
  482. *
  483. * Instead of passing values, you may also pass a closures with the
  484. * following signature:
  485. *
  486. * function ($value) {
  487. * // return true or false
  488. * }
  489. *
  490. * The closure receives the value as argument and should return true to
  491. * accept the value and false to reject the value.
  492. *
  493. * @param string $option The option name
  494. * @param mixed $allowedValues One or more acceptable values/closures
  495. *
  496. * @return $this
  497. *
  498. * @throws UndefinedOptionsException If the option is undefined
  499. * @throws AccessException If called from a lazy option or normalizer
  500. */
  501. public function setAllowedValues($option, $allowedValues)
  502. {
  503. if ($this->locked) {
  504. throw new AccessException('Allowed values cannot be set from a lazy option or normalizer.');
  505. }
  506. if (!isset($this->defined[$option])) {
  507. throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  508. }
  509. $this->allowedValues[$option] = \is_array($allowedValues) ? $allowedValues : [$allowedValues];
  510. // Make sure the option is processed
  511. unset($this->resolved[$option]);
  512. return $this;
  513. }
  514. /**
  515. * Adds allowed values for an option.
  516. *
  517. * The values are merged with the allowed values defined previously.
  518. *
  519. * Instead of passing values, you may also pass a closures with the
  520. * following signature:
  521. *
  522. * function ($value) {
  523. * // return true or false
  524. * }
  525. *
  526. * The closure receives the value as argument and should return true to
  527. * accept the value and false to reject the value.
  528. *
  529. * @param string $option The option name
  530. * @param mixed $allowedValues One or more acceptable values/closures
  531. *
  532. * @return $this
  533. *
  534. * @throws UndefinedOptionsException If the option is undefined
  535. * @throws AccessException If called from a lazy option or normalizer
  536. */
  537. public function addAllowedValues($option, $allowedValues)
  538. {
  539. if ($this->locked) {
  540. throw new AccessException('Allowed values cannot be added from a lazy option or normalizer.');
  541. }
  542. if (!isset($this->defined[$option])) {
  543. throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  544. }
  545. if (!\is_array($allowedValues)) {
  546. $allowedValues = [$allowedValues];
  547. }
  548. if (!isset($this->allowedValues[$option])) {
  549. $this->allowedValues[$option] = $allowedValues;
  550. } else {
  551. $this->allowedValues[$option] = array_merge($this->allowedValues[$option], $allowedValues);
  552. }
  553. // Make sure the option is processed
  554. unset($this->resolved[$option]);
  555. return $this;
  556. }
  557. /**
  558. * Sets allowed types for an option.
  559. *
  560. * Any type for which a corresponding is_<type>() function exists is
  561. * acceptable. Additionally, fully-qualified class or interface names may
  562. * be passed.
  563. *
  564. * @param string $option The option name
  565. * @param string|string[] $allowedTypes One or more accepted types
  566. *
  567. * @return $this
  568. *
  569. * @throws UndefinedOptionsException If the option is undefined
  570. * @throws AccessException If called from a lazy option or normalizer
  571. */
  572. public function setAllowedTypes($option, $allowedTypes)
  573. {
  574. if ($this->locked) {
  575. throw new AccessException('Allowed types cannot be set from a lazy option or normalizer.');
  576. }
  577. if (!isset($this->defined[$option])) {
  578. throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  579. }
  580. $this->allowedTypes[$option] = (array) $allowedTypes;
  581. // Make sure the option is processed
  582. unset($this->resolved[$option]);
  583. return $this;
  584. }
  585. /**
  586. * Adds allowed types for an option.
  587. *
  588. * The types are merged with the allowed types defined previously.
  589. *
  590. * Any type for which a corresponding is_<type>() function exists is
  591. * acceptable. Additionally, fully-qualified class or interface names may
  592. * be passed.
  593. *
  594. * @param string $option The option name
  595. * @param string|string[] $allowedTypes One or more accepted types
  596. *
  597. * @return $this
  598. *
  599. * @throws UndefinedOptionsException If the option is undefined
  600. * @throws AccessException If called from a lazy option or normalizer
  601. */
  602. public function addAllowedTypes($option, $allowedTypes)
  603. {
  604. if ($this->locked) {
  605. throw new AccessException('Allowed types cannot be added from a lazy option or normalizer.');
  606. }
  607. if (!isset($this->defined[$option])) {
  608. throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  609. }
  610. if (!isset($this->allowedTypes[$option])) {
  611. $this->allowedTypes[$option] = (array) $allowedTypes;
  612. } else {
  613. $this->allowedTypes[$option] = array_merge($this->allowedTypes[$option], (array) $allowedTypes);
  614. }
  615. // Make sure the option is processed
  616. unset($this->resolved[$option]);
  617. return $this;
  618. }
  619. /**
  620. * Removes the option with the given name.
  621. *
  622. * Undefined options are ignored.
  623. *
  624. * @param string|string[] $optionNames One or more option names
  625. *
  626. * @return $this
  627. *
  628. * @throws AccessException If called from a lazy option or normalizer
  629. */
  630. public function remove($optionNames)
  631. {
  632. if ($this->locked) {
  633. throw new AccessException('Options cannot be removed from a lazy option or normalizer.');
  634. }
  635. foreach ((array) $optionNames as $option) {
  636. unset($this->defined[$option], $this->defaults[$option], $this->required[$option], $this->resolved[$option]);
  637. unset($this->lazy[$option], $this->normalizers[$option], $this->allowedTypes[$option], $this->allowedValues[$option]);
  638. }
  639. return $this;
  640. }
  641. /**
  642. * Removes all options.
  643. *
  644. * @return $this
  645. *
  646. * @throws AccessException If called from a lazy option or normalizer
  647. */
  648. public function clear()
  649. {
  650. if ($this->locked) {
  651. throw new AccessException('Options cannot be cleared from a lazy option or normalizer.');
  652. }
  653. $this->defined = [];
  654. $this->defaults = [];
  655. $this->nested = [];
  656. $this->required = [];
  657. $this->resolved = [];
  658. $this->lazy = [];
  659. $this->normalizers = [];
  660. $this->allowedTypes = [];
  661. $this->allowedValues = [];
  662. $this->deprecated = [];
  663. return $this;
  664. }
  665. /**
  666. * Merges options with the default values stored in the container and
  667. * validates them.
  668. *
  669. * Exceptions are thrown if:
  670. *
  671. * - Undefined options are passed;
  672. * - Required options are missing;
  673. * - Options have invalid types;
  674. * - Options have invalid values.
  675. *
  676. * @param array $options A map of option names to values
  677. *
  678. * @return array The merged and validated options
  679. *
  680. * @throws UndefinedOptionsException If an option name is undefined
  681. * @throws InvalidOptionsException If an option doesn't fulfill the
  682. * specified validation rules
  683. * @throws MissingOptionsException If a required option is missing
  684. * @throws OptionDefinitionException If there is a cyclic dependency between
  685. * lazy options and/or normalizers
  686. * @throws NoSuchOptionException If a lazy option reads an unavailable option
  687. * @throws AccessException If called from a lazy option or normalizer
  688. */
  689. public function resolve(array $options = [])
  690. {
  691. if ($this->locked) {
  692. throw new AccessException('Options cannot be resolved from a lazy option or normalizer.');
  693. }
  694. // Allow this method to be called multiple times
  695. $clone = clone $this;
  696. // Make sure that no unknown options are passed
  697. $diff = array_diff_key($options, $clone->defined);
  698. if (\count($diff) > 0) {
  699. ksort($clone->defined);
  700. ksort($diff);
  701. throw new UndefinedOptionsException(sprintf((\count($diff) > 1 ? 'The options "%s" do not exist.' : 'The option "%s" does not exist.').' Defined options are: "%s".', $this->formatOptions(array_keys($diff)), implode('", "', array_keys($clone->defined))));
  702. }
  703. // Override options set by the user
  704. foreach ($options as $option => $value) {
  705. $clone->given[$option] = true;
  706. $clone->defaults[$option] = $value;
  707. unset($clone->resolved[$option], $clone->lazy[$option]);
  708. }
  709. // Check whether any required option is missing
  710. $diff = array_diff_key($clone->required, $clone->defaults);
  711. if (\count($diff) > 0) {
  712. ksort($diff);
  713. throw new MissingOptionsException(sprintf(\count($diff) > 1 ? 'The required options "%s" are missing.' : 'The required option "%s" is missing.', $this->formatOptions(array_keys($diff))));
  714. }
  715. // Lock the container
  716. $clone->locked = true;
  717. // Now process the individual options. Use offsetGet(), which resolves
  718. // the option itself and any options that the option depends on
  719. foreach ($clone->defaults as $option => $_) {
  720. $clone->offsetGet($option);
  721. }
  722. return $clone->resolved;
  723. }
  724. /**
  725. * Returns the resolved value of an option.
  726. *
  727. * @param string $option The option name
  728. * @param bool $triggerDeprecation Whether to trigger the deprecation or not (true by default)
  729. *
  730. * @return mixed The option value
  731. *
  732. * @throws AccessException If accessing this method outside of
  733. * {@link resolve()}
  734. * @throws NoSuchOptionException If the option is not set
  735. * @throws InvalidOptionsException If the option doesn't fulfill the
  736. * specified validation rules
  737. * @throws OptionDefinitionException If there is a cyclic dependency between
  738. * lazy options and/or normalizers
  739. */
  740. public function offsetGet($option/*, bool $triggerDeprecation = true*/)
  741. {
  742. if (!$this->locked) {
  743. throw new AccessException('Array access is only supported within closures of lazy options and normalizers.');
  744. }
  745. $triggerDeprecation = 1 === \func_num_args() || func_get_arg(1);
  746. // Shortcut for resolved options
  747. if (isset($this->resolved[$option]) || \array_key_exists($option, $this->resolved)) {
  748. if ($triggerDeprecation && isset($this->deprecated[$option]) && (isset($this->given[$option]) || $this->calling) && \is_string($this->deprecated[$option])) {
  749. @trigger_error(strtr($this->deprecated[$option], ['%name%' => $option]), \E_USER_DEPRECATED);
  750. }
  751. return $this->resolved[$option];
  752. }
  753. // Check whether the option is set at all
  754. if (!isset($this->defaults[$option]) && !\array_key_exists($option, $this->defaults)) {
  755. if (!isset($this->defined[$option])) {
  756. throw new NoSuchOptionException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $this->formatOptions([$option]), implode('", "', array_keys($this->defined))));
  757. }
  758. throw new NoSuchOptionException(sprintf('The optional option "%s" has no value set. You should make sure it is set with "isset" before reading it.', $this->formatOptions([$option])));
  759. }
  760. $value = $this->defaults[$option];
  761. // Resolve the option if it is a nested definition
  762. if (isset($this->nested[$option])) {
  763. // If the closure is already being called, we have a cyclic dependency
  764. if (isset($this->calling[$option])) {
  765. throw new OptionDefinitionException(sprintf('The options "%s" have a cyclic dependency.', $this->formatOptions(array_keys($this->calling))));
  766. }
  767. if (!\is_array($value)) {
  768. throw new InvalidOptionsException(sprintf('The nested option "%s" with value %s is expected to be of type array, but is of type "%s".', $this->formatOptions([$option]), $this->formatValue($value), $this->formatTypeOf($value)));
  769. }
  770. // The following section must be protected from cyclic calls.
  771. $this->calling[$option] = true;
  772. try {
  773. $resolver = new self();
  774. $resolver->parentsOptions = $this->parentsOptions;
  775. $resolver->parentsOptions[] = $option;
  776. foreach ($this->nested[$option] as $closure) {
  777. $closure($resolver, $this);
  778. }
  779. $value = $resolver->resolve($value);
  780. } finally {
  781. unset($this->calling[$option]);
  782. }
  783. }
  784. // Resolve the option if the default value is lazily evaluated
  785. if (isset($this->lazy[$option])) {
  786. // If the closure is already being called, we have a cyclic
  787. // dependency
  788. if (isset($this->calling[$option])) {
  789. throw new OptionDefinitionException(sprintf('The options "%s" have a cyclic dependency.', $this->formatOptions(array_keys($this->calling))));
  790. }
  791. // The following section must be protected from cyclic
  792. // calls. Set $calling for the current $option to detect a cyclic
  793. // dependency
  794. // BEGIN
  795. $this->calling[$option] = true;
  796. try {
  797. foreach ($this->lazy[$option] as $closure) {
  798. $value = $closure($this, $value);
  799. }
  800. } finally {
  801. unset($this->calling[$option]);
  802. }
  803. // END
  804. }
  805. // Validate the type of the resolved option
  806. if (isset($this->allowedTypes[$option])) {
  807. $valid = true;
  808. $invalidTypes = [];
  809. foreach ($this->allowedTypes[$option] as $type) {
  810. $type = self::TYPE_ALIASES[$type] ?? $type;
  811. if ($valid = $this->verifyTypes($type, $value, $invalidTypes)) {
  812. break;
  813. }
  814. }
  815. if (!$valid) {
  816. $fmtActualValue = $this->formatValue($value);
  817. $fmtAllowedTypes = implode('" or "', $this->allowedTypes[$option]);
  818. $fmtProvidedTypes = implode('|', array_keys($invalidTypes));
  819. $allowedContainsArrayType = \count(array_filter($this->allowedTypes[$option], static function ($item) {
  820. return '[]' === substr(self::TYPE_ALIASES[$item] ?? $item, -2);
  821. })) > 0;
  822. if (\is_array($value) && $allowedContainsArrayType) {
  823. throw new InvalidOptionsException(sprintf('The option "%s" with value %s is expected to be of type "%s", but one of the elements is of type "%s".', $this->formatOptions([$option]), $fmtActualValue, $fmtAllowedTypes, $fmtProvidedTypes));
  824. }
  825. throw new InvalidOptionsException(sprintf('The option "%s" with value %s is expected to be of type "%s", but is of type "%s".', $this->formatOptions([$option]), $fmtActualValue, $fmtAllowedTypes, $fmtProvidedTypes));
  826. }
  827. }
  828. // Validate the value of the resolved option
  829. if (isset($this->allowedValues[$option])) {
  830. $success = false;
  831. $printableAllowedValues = [];
  832. foreach ($this->allowedValues[$option] as $allowedValue) {
  833. if ($allowedValue instanceof \Closure) {
  834. if ($allowedValue($value)) {
  835. $success = true;
  836. break;
  837. }
  838. // Don't include closures in the exception message
  839. continue;
  840. }
  841. if ($value === $allowedValue) {
  842. $success = true;
  843. break;
  844. }
  845. $printableAllowedValues[] = $allowedValue;
  846. }
  847. if (!$success) {
  848. $message = sprintf(
  849. 'The option "%s" with value %s is invalid.',
  850. $option,
  851. $this->formatValue($value)
  852. );
  853. if (\count($printableAllowedValues) > 0) {
  854. $message .= sprintf(
  855. ' Accepted values are: %s.',
  856. $this->formatValues($printableAllowedValues)
  857. );
  858. }
  859. throw new InvalidOptionsException($message);
  860. }
  861. }
  862. // Check whether the option is deprecated
  863. // and it is provided by the user or is being called from a lazy evaluation
  864. if ($triggerDeprecation && isset($this->deprecated[$option]) && (isset($this->given[$option]) || ($this->calling && \is_string($this->deprecated[$option])))) {
  865. $deprecationMessage = $this->deprecated[$option];
  866. if ($deprecationMessage instanceof \Closure) {
  867. // If the closure is already being called, we have a cyclic dependency
  868. if (isset($this->calling[$option])) {
  869. throw new OptionDefinitionException(sprintf('The options "%s" have a cyclic dependency.', $this->formatOptions(array_keys($this->calling))));
  870. }
  871. $this->calling[$option] = true;
  872. try {
  873. if (!\is_string($deprecationMessage = $deprecationMessage($this, $value))) {
  874. throw new InvalidOptionsException(sprintf('Invalid type for deprecation message, expected string but got "%s", return an empty string to ignore.', \gettype($deprecationMessage)));
  875. }
  876. } finally {
  877. unset($this->calling[$option]);
  878. }
  879. }
  880. if ('' !== $deprecationMessage) {
  881. @trigger_error(strtr($deprecationMessage, ['%name%' => $option]), \E_USER_DEPRECATED);
  882. }
  883. }
  884. // Normalize the validated option
  885. if (isset($this->normalizers[$option])) {
  886. // If the closure is already being called, we have a cyclic
  887. // dependency
  888. if (isset($this->calling[$option])) {
  889. throw new OptionDefinitionException(sprintf('The options "%s" have a cyclic dependency.', $this->formatOptions(array_keys($this->calling))));
  890. }
  891. // The following section must be protected from cyclic
  892. // calls. Set $calling for the current $option to detect a cyclic
  893. // dependency
  894. // BEGIN
  895. $this->calling[$option] = true;
  896. try {
  897. foreach ($this->normalizers[$option] as $normalizer) {
  898. $value = $normalizer($this, $value);
  899. }
  900. } finally {
  901. unset($this->calling[$option]);
  902. }
  903. // END
  904. }
  905. // Mark as resolved
  906. $this->resolved[$option] = $value;
  907. return $value;
  908. }
  909. private function verifyTypes(string $type, $value, array &$invalidTypes, int $level = 0): bool
  910. {
  911. if (\is_array($value) && '[]' === substr($type, -2)) {
  912. $type = substr($type, 0, -2);
  913. $valid = true;
  914. foreach ($value as $val) {
  915. if (!$this->verifyTypes($type, $val, $invalidTypes, $level + 1)) {
  916. $valid = false;
  917. }
  918. }
  919. return $valid;
  920. }
  921. if (('null' === $type && null === $value) || (\function_exists($func = 'is_'.$type) && $func($value)) || $value instanceof $type) {
  922. return true;
  923. }
  924. if (!$invalidTypes || $level > 0) {
  925. $invalidTypes[$this->formatTypeOf($value)] = true;
  926. }
  927. return false;
  928. }
  929. /**
  930. * Returns whether a resolved option with the given name exists.
  931. *
  932. * @param string $option The option name
  933. *
  934. * @return bool Whether the option is set
  935. *
  936. * @throws AccessException If accessing this method outside of {@link resolve()}
  937. *
  938. * @see \ArrayAccess::offsetExists()
  939. */
  940. public function offsetExists($option)
  941. {
  942. if (!$this->locked) {
  943. throw new AccessException('Array access is only supported within closures of lazy options and normalizers.');
  944. }
  945. return \array_key_exists($option, $this->defaults);
  946. }
  947. /**
  948. * Not supported.
  949. *
  950. * @throws AccessException
  951. */
  952. public function offsetSet($option, $value)
  953. {
  954. throw new AccessException('Setting options via array access is not supported. Use setDefault() instead.');
  955. }
  956. /**
  957. * Not supported.
  958. *
  959. * @throws AccessException
  960. */
  961. public function offsetUnset($option)
  962. {
  963. throw new AccessException('Removing options via array access is not supported. Use remove() instead.');
  964. }
  965. /**
  966. * Returns the number of set options.
  967. *
  968. * This may be only a subset of the defined options.
  969. *
  970. * @return int Number of options
  971. *
  972. * @throws AccessException If accessing this method outside of {@link resolve()}
  973. *
  974. * @see \Countable::count()
  975. */
  976. public function count()
  977. {
  978. if (!$this->locked) {
  979. throw new AccessException('Counting is only supported within closures of lazy options and normalizers.');
  980. }
  981. return \count($this->defaults);
  982. }
  983. /**
  984. * Returns a string representation of the type of the value.
  985. *
  986. * @param mixed $value The value to return the type of
  987. *
  988. * @return string The type of the value
  989. */
  990. private function formatTypeOf($value): string
  991. {
  992. return \is_object($value) ? \get_class($value) : \gettype($value);
  993. }
  994. /**
  995. * Returns a string representation of the value.
  996. *
  997. * This method returns the equivalent PHP tokens for most scalar types
  998. * (i.e. "false" for false, "1" for 1 etc.). Strings are always wrapped
  999. * in double quotes (").
  1000. *
  1001. * @param mixed $value The value to format as string
  1002. */
  1003. private function formatValue($value): string
  1004. {
  1005. if (\is_object($value)) {
  1006. return \get_class($value);
  1007. }
  1008. if (\is_array($value)) {
  1009. return 'array';
  1010. }
  1011. if (\is_string($value)) {
  1012. return '"'.$value.'"';
  1013. }
  1014. if (\is_resource($value)) {
  1015. return 'resource';
  1016. }
  1017. if (null === $value) {
  1018. return 'null';
  1019. }
  1020. if (false === $value) {
  1021. return 'false';
  1022. }
  1023. if (true === $value) {
  1024. return 'true';
  1025. }
  1026. return (string) $value;
  1027. }
  1028. /**
  1029. * Returns a string representation of a list of values.
  1030. *
  1031. * Each of the values is converted to a string using
  1032. * {@link formatValue()}. The values are then concatenated with commas.
  1033. *
  1034. * @see formatValue()
  1035. */
  1036. private function formatValues(array $values): string
  1037. {
  1038. foreach ($values as $key => $value) {
  1039. $values[$key] = $this->formatValue($value);
  1040. }
  1041. return implode(', ', $values);
  1042. }
  1043. private function formatOptions(array $options): string
  1044. {
  1045. if ($this->parentsOptions) {
  1046. $prefix = array_shift($this->parentsOptions);
  1047. if ($this->parentsOptions) {
  1048. $prefix .= sprintf('[%s]', implode('][', $this->parentsOptions));
  1049. }
  1050. $options = array_map(static function (string $option) use ($prefix): string {
  1051. return sprintf('%s[%s]', $prefix, $option);
  1052. }, $options);
  1053. }
  1054. return implode('", "', $options);
  1055. }
  1056. private function getParameterClassName(\ReflectionParameter $parameter): ?string
  1057. {
  1058. if (!($type = $parameter->getType()) instanceof \ReflectionNamedType || $type->isBuiltin()) {
  1059. return null;
  1060. }
  1061. return $type->getName();
  1062. }
  1063. }