-
Notifications
You must be signed in to change notification settings - Fork 767
/
MapEntries.php
157 lines (146 loc) · 5.3 KB
/
MapEntries.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
/**
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Google\AdsApi\Common\Util;
use ReflectionClass;
use ReflectionException;
use ReflectionObject;
use UnexpectedValueException;
/**
* Static utility methods for working with ads `MapEntry` objects.
*/
final class MapEntries
{
private function __construct()
{
}
/**
* Transforms list of map entries to a PHP associative array. Each map entry
* is expected to be a `[Key]_[Value]MapEntry` that contains a key field and a
* value field.
*
* For example, if the list of map entries were:
*
* ```
* [
* (String_StringMapEntry: key => 'animal', value => 'sheep'),
* (String_StringMapEntry: key => 'spirit_animal', value => 'bear'),
* (String_StringMapEntry: key => 'primal_animal', value => 'sloth')
* ]
* ```
*
* Then this method would return the following associative array:
*
* ```
* [
* 'animal' => 'sheep',
* 'spirit_animal' => 'bear',
* 'primal_animal' => 'sloth'
* ]
* ```
*
* @param array $mapEntriesList a list of map entries
* @return array an associative array of the entries
* @throws UnexpectedValueException if any map entries in the list are invalid
*/
public static function toAssociativeArray(array $mapEntriesList)
{
$result = [];
foreach ($mapEntriesList as $mapEntry) {
try {
$reflectionObject = new ReflectionObject($mapEntry);
$keyProperty = $reflectionObject->getProperty('key');
$keyProperty->setAccessible(true);
$valueProperty = $reflectionObject->getProperty('value');
$valueProperty->setAccessible(true);
$result[$keyProperty->getValue($mapEntry)] = $valueProperty->getValue($mapEntry);
} catch (ReflectionException $e) {
throw new UnexpectedValueException(
"Each map entry type must contain a 'key' property and a 'value' property."
);
}
}
return $result;
}
/**
* Transforms the specified associative array to a list of entries of the
* specified type. The type is expected to be a `[Key]_[Value]MapEntry` that
* contains a key and a value.
*
* For example, if the associative array of map entries were:
*
* ```
* [
* 'animal' => 'sheep',
* 'spirit_animal' => 'bear',
* 'primal_animal' => 'sloth'
* ]
* ```
* Then this method would return the following list of map entries if
* `String_StringMapEntry` was specified as the map entry class type:
*
* ```
* [
* (String_StringMapEntry: key => 'animal', value => 'sheep'),
* (String_StringMapEntry: key => 'spirit_animal', value => 'bear'),
* (String_StringMapEntry: key => 'primal_animal', value => 'sloth')
* ]
* ```
*
* @param array $mapEntriesAssociativeArray an associative array of map
* entries
* @param string $mapEntryClassName the fully qualified class name of the map
* entry type to use
* @return array a list of map entries built from the key-value pairs in the
* associative array
* @throws UnexpectedValueException if the map entry class is invalid
*/
public static function fromAssociativeArray(
array $mapEntriesAssociativeArray,
$mapEntryClassName
) {
$result = [];
foreach ($mapEntriesAssociativeArray as $key => $value) {
try {
$reflectionClass = new ReflectionClass($mapEntryClassName);
$entry = $reflectionClass->newInstanceWithoutConstructor();
$reflectionObject = new ReflectionObject($entry);
} catch (ReflectionException $e) {
throw new UnexpectedValueException(
sprintf(
"The map entry class '%s' could not be found.",
$mapEntryClassName
)
);
}
try {
$keyProperty = $reflectionObject->getProperty('key');
$keyProperty->setAccessible(true);
$valueProperty = $reflectionObject->getProperty('value');
$valueProperty->setAccessible(true);
$keyProperty->setValue($entry, $key);
$valueProperty->setValue($entry, $value);
} catch (ReflectionException $e) {
throw new UnexpectedValueException(
"The map entry class must contains a 'key' property and a 'value' "
. "property."
);
}
$result[] = $entry;
}
return $result;
}
}