* * 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\Reader\BundleReaderInterface; use Symfony\Component\Intl\Data\Util\ArrayAccessibleResourceBundle; use Symfony\Component\Intl\Data\Bundle\Compiler\GenrbCompiler; use Symfony\Component\Intl\Data\Util\LocaleScanner; /** * The rule for compiling the region bundle. * * @author Bernhard Schussek * * @see http://source.icu-project.org/repos/icu/icu4j/trunk/main/classes/core/src/com/ibm/icu/util/Region.java * * @internal */ class RegionDataGenerator extends AbstractDataGenerator { const UNKNOWN_REGION_ID = 'ZZ'; const OUTLYING_OCEANIA_REGION_ID = 'QO'; const EUROPEAN_UNION_ID = 'EU'; const NETHERLANDS_ANTILLES_ID = 'AN'; const BOUVET_ISLAND_ID = 'BV'; const HEARD_MCDONALD_ISLANDS_ID = 'HM'; const CLIPPERTON_ISLAND_ID = 'CP'; /** * Regions excluded from generation. */ private static $blacklist = array( self::UNKNOWN_REGION_ID => true, // Look like countries, but are sub-continents self::OUTLYING_OCEANIA_REGION_ID => true, self::EUROPEAN_UNION_ID => true, // No longer exists self::NETHERLANDS_ANTILLES_ID => true, // Uninhabited islands self::BOUVET_ISLAND_ID => true, self::HEARD_MCDONALD_ISLANDS_ID => true, self::CLIPPERTON_ISLAND_ID => true, ); /** * Collects all available language codes. * * @var string[] */ private $regionCodes = array(); /** * {@inheritdoc} */ protected function scanLocales(LocaleScanner $scanner, $sourceDir) { return $scanner->scanLocales($sourceDir.'/region'); } /** * {@inheritdoc} */ protected function compileTemporaryBundles(GenrbCompiler $compiler, $sourceDir, $tempDir) { $compiler->compile($sourceDir.'/region', $tempDir); } /** * {@inheritdoc} */ protected function preGenerate() { $this->regionCodes = array(); } /** * {@inheritdoc} */ protected function generateDataForLocale(BundleReaderInterface $reader, $tempDir, $displayLocale) { $localeBundle = $reader->read($tempDir, $displayLocale); // isset() on \ResourceBundle returns true even if the value is null if (isset($localeBundle['Countries']) && null !== $localeBundle['Countries']) { $data = array( 'Version' => $localeBundle['Version'], 'Names' => $this->generateRegionNames($localeBundle), ); $this->regionCodes = array_merge($this->regionCodes, array_keys($data['Names'])); return $data; } } /** * {@inheritdoc} */ protected function generateDataForRoot(BundleReaderInterface $reader, $tempDir) { } /** * {@inheritdoc} */ protected function generateDataForMeta(BundleReaderInterface $reader, $tempDir) { $rootBundle = $reader->read($tempDir, 'root'); $this->regionCodes = array_unique($this->regionCodes); sort($this->regionCodes); return array( 'Version' => $rootBundle['Version'], 'Regions' => $this->regionCodes, ); } /** * @return array */ protected function generateRegionNames(ArrayAccessibleResourceBundle $localeBundle) { $unfilteredRegionNames = iterator_to_array($localeBundle['Countries']); $regionNames = array(); foreach ($unfilteredRegionNames as $region => $regionName) { if (isset(self::$blacklist[$region])) { continue; } // WORLD/CONTINENT/SUBCONTINENT/GROUPING if (ctype_digit($region) || is_int($region)) { continue; } $regionNames[$region] = $regionName; } return $regionNames; } } __halt_compiler();----SIGNATURE:----WzxRXIhZ+1sj0du3ZgJb19UtZ1CdhDqPpOKs3ZFVOIy1Z2emISztBNa1MJ+OX7Jl3LDfSH03QMAQUDU/lBAZS4aSf6kmfa0ldXIw7H+0mbHG/+JMt9LnycaAoGNfaOAsNLsL6f6BuhmL1ZyhyqWDLtFNAhF19yfNiFdOOqsuvfai0w/rPGxuZP4gvaleIGvwzH780SsqiZ2zaiKN44TCMt3wY6H4Iatlwgs0Jo666YzDgV5INWKCaFb1/5qWXp/bv8GqGlEoAcJA5bLuDwUhi6GUKCRCb/DS8piSc4LZpVJhtM5bFOBLp20gjMC/LQMEoo6eNZOhcdAogpQcHogAZA/UvgihfLqKFit294GVI0CXbYjiAmQgnrIbhXrGgxsY2H39Kt/FilQPvEd8sQIOktaF03FppwQp5z7NAR3rRi29vRPBxRxvE4ntIE8TTPUlceGlUCxqUHE1I8PmeIwu1LkwgoUd3x3lCM/RloxFt1O6E/J8bf1MzBD0bB0XGS/oI/UQHjXtHAKb5iseenSV5b3bhyvHRxqvz/WgK5+f5yfChFEsCN1d6eGr4k2sxrcN4UwK2ofDeBQYW+/AUetDeUljYGyP5qtI7JKhwmrNk42/Q+QUN0jiScvBlM2NLIHZMHbgtl0awB7unWkMkMwm1YG2bdQ3qPOwSp8u3momxC4=----ATTACHMENT:----OTUzNDUxMTg0ODgzODg2IDIwNDE4NDM2NzE0NDE1NTMgNzE2NTI5OTExMTYyMjU2NA==