![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/symfony/intl/Data/Generator/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Intl\Data\Generator; use Symfony\Component\Intl\Data\Bundle\Compiler\BundleCompilerInterface; use Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReaderInterface; use Symfony\Component\Intl\Data\Util\ArrayAccessibleResourceBundle; use Symfony\Component\Intl\Data\Util\LocaleScanner; /** * The rule for compiling the currency bundle. * * @author Bernhard Schussek <[email protected]> * * @internal */ class CurrencyDataGenerator extends AbstractDataGenerator { private const DENYLIST = [ 'XBA' => true, // European Composite Unit 'XBB' => true, // European Monetary Unit 'XBC' => true, // European Unit of Account (XBC) 'XBD' => true, // European Unit of Account (XBD) 'XUA' => true, // ADB Unit of Account 'XAU' => true, // Gold 'XAG' => true, // Silver 'XPT' => true, // Platinum 'XPD' => true, // Palladium 'XSU' => true, // Sucre 'XDR' => true, // Special Drawing Rights 'XTS' => true, // Testing Currency Code 'XXX' => true, // Unknown Currency ]; /** * Collects all available currency codes. * * @var string[] */ private $currencyCodes = []; /** * {@inheritdoc} */ protected function scanLocales(LocaleScanner $scanner, string $sourceDir): array { return $scanner->scanLocales($sourceDir.'/curr'); } /** * {@inheritdoc} */ protected function compileTemporaryBundles(BundleCompilerInterface $compiler, string $sourceDir, string $tempDir) { $compiler->compile($sourceDir.'/curr', $tempDir); $compiler->compile($sourceDir.'/misc/currencyNumericCodes.txt', $tempDir); } /** * {@inheritdoc} */ protected function preGenerate() { $this->currencyCodes = []; } /** * {@inheritdoc} */ protected function generateDataForLocale(BundleEntryReaderInterface $reader, string $tempDir, string $displayLocale): ?array { $localeBundle = $reader->read($tempDir, $displayLocale); if (isset($localeBundle['Currencies']) && null !== $localeBundle['Currencies']) { $data = [ 'Names' => $this->generateSymbolNamePairs($localeBundle), ]; $this->currencyCodes = array_merge($this->currencyCodes, array_keys($data['Names'])); return $data; } return null; } /** * {@inheritdoc} */ protected function generateDataForRoot(BundleEntryReaderInterface $reader, string $tempDir): ?array { $rootBundle = $reader->read($tempDir, 'root'); return [ 'Names' => $this->generateSymbolNamePairs($rootBundle), ]; } /** * {@inheritdoc} */ protected function generateDataForMeta(BundleEntryReaderInterface $reader, string $tempDir): ?array { $supplementalDataBundle = $reader->read($tempDir, 'supplementalData'); $numericCodesBundle = $reader->read($tempDir, 'currencyNumericCodes'); $this->currencyCodes = array_unique($this->currencyCodes); sort($this->currencyCodes); $data = [ 'Currencies' => $this->currencyCodes, 'Meta' => $this->generateCurrencyMeta($supplementalDataBundle), 'Alpha3ToNumeric' => $this->generateAlpha3ToNumericMapping($numericCodesBundle, $this->currencyCodes), ]; $data['NumericToAlpha3'] = $this->generateNumericToAlpha3Mapping($data['Alpha3ToNumeric']); return $data; } private function generateSymbolNamePairs(ArrayAccessibleResourceBundle $rootBundle): array { $symbolNamePairs = array_map(function ($pair) { return \array_slice(iterator_to_array($pair), 0, 2); }, iterator_to_array($rootBundle['Currencies'])); // Remove unwanted currencies $symbolNamePairs = array_diff_key($symbolNamePairs, self::DENYLIST); return $symbolNamePairs; } private function generateCurrencyMeta(ArrayAccessibleResourceBundle $supplementalDataBundle): array { // The metadata is already de-duplicated. It contains one key "DEFAULT" // which is used for currencies that don't have dedicated entries. return iterator_to_array($supplementalDataBundle['CurrencyMeta']); } private function generateAlpha3ToNumericMapping(ArrayAccessibleResourceBundle $numericCodesBundle, array $currencyCodes): array { $alpha3ToNumericMapping = iterator_to_array($numericCodesBundle['codeMap']); asort($alpha3ToNumericMapping); // Filter unknown currencies (e.g. "AYM") $alpha3ToNumericMapping = array_intersect_key($alpha3ToNumericMapping, array_flip($currencyCodes)); return $alpha3ToNumericMapping; } private function generateNumericToAlpha3Mapping(array $alpha3ToNumericMapping): array { $numericToAlpha3Mapping = []; foreach ($alpha3ToNumericMapping as $alpha3 => $numeric) { // Make sure that the mapping is stored as table and not as array $numeric = (string) $numeric; if (!isset($numericToAlpha3Mapping[$numeric])) { $numericToAlpha3Mapping[$numeric] = []; } $numericToAlpha3Mapping[$numeric][] = $alpha3; } return $numericToAlpha3Mapping; } }