1 | <?php |
||
12 | class MultiFileMetadataSourceImpl implements MetadataSourceInterface |
||
13 | { |
||
14 | protected static $metaDataFilePrefix = PhoneNumberUtil::META_DATA_FILE_PREFIX; |
||
15 | |||
16 | /** |
||
17 | * A mapping from a region code to the PhoneMetadata for that region. |
||
18 | * @var PhoneMetadata[] |
||
19 | */ |
||
20 | protected $regionToMetadataMap = array(); |
||
21 | |||
22 | /** |
||
23 | * A mapping from a country calling code for a non-geographical entity to the PhoneMetadata for |
||
24 | * that country calling code. Examples of the country calling codes include 800 (International |
||
25 | * Toll Free Service) and 808 (International Shared Cost Service). |
||
26 | * @var PhoneMetadata[] |
||
27 | */ |
||
28 | protected $countryCodeToNonGeographicalMetadataMap = array(); |
||
29 | |||
30 | /** |
||
31 | * The prefix of the metadata files from which region data is loaded. |
||
32 | * @var String |
||
33 | */ |
||
34 | protected $currentFilePrefix; |
||
35 | |||
36 | |||
37 | /** |
||
38 | * The metadata loader used to inject alternative metadata sources. |
||
39 | * @var MetadataLoaderInterface |
||
40 | */ |
||
41 | protected $metadataLoader; |
||
42 | |||
43 | /** |
||
44 | * @param MetadataLoaderInterface $metadataLoader |
||
45 | * @param string|null $currentFilePrefix |
||
46 | */ |
||
47 | 403 | public function __construct(MetadataLoaderInterface $metadataLoader, $currentFilePrefix = null) |
|
56 | |||
57 | /** |
||
58 | * @inheritdoc |
||
59 | */ |
||
60 | 4665 | public function getMetadataForRegion($regionCode) |
|
70 | |||
71 | /** |
||
72 | * @inheritdoc |
||
73 | */ |
||
74 | 31 | public function getMetadataForNonGeographicalRegion($countryCallingCode) |
|
82 | |||
83 | /** |
||
84 | * @param string $filePrefix |
||
85 | * @param string $regionCode |
||
86 | * @param int $countryCallingCode |
||
87 | * @param MetadataLoaderInterface $metadataLoader |
||
88 | * @throws \RuntimeException |
||
89 | */ |
||
90 | 614 | public function loadMetadataFromFile($filePrefix, $regionCode, $countryCallingCode, MetadataLoaderInterface $metadataLoader) |
|
107 | } |
||
108 |