Merge "Skin: Make skins aware of their registered skin name"
[lhc/web/wiklou.git] / includes / libs / HashRing.php
1 <?php
2 /**
3 * Convenience class for weighted consistent hash rings.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * Convenience class for weighted consistent hash rings
25 *
26 * @since 1.22
27 */
28 class HashRing {
29 /** @var Array (location => weight) */
30 protected $sourceMap = [];
31 /** @var Array (location => (start, end)) */
32 protected $ring = [];
33
34 /** @var HashRing|null */
35 protected $liveRing;
36 /** @var Array (location => UNIX timestamp) */
37 protected $ejectionExpiries = [];
38 /** @var int UNIX timestamp */
39 protected $ejectionNextExpiry = INF;
40
41 const RING_SIZE = 268435456; // 2^28
42
43 /**
44 * @param array $map (location => weight)
45 */
46 public function __construct( array $map ) {
47 $map = array_filter( $map, function ( $w ) {
48 return $w > 0;
49 } );
50 if ( !count( $map ) ) {
51 throw new UnexpectedValueException( "Ring is empty or all weights are zero." );
52 }
53 $this->sourceMap = $map;
54 // Sort the locations based on the hash of their names
55 $hashes = [];
56 foreach ( $map as $location => $weight ) {
57 $hashes[$location] = sha1( $location );
58 }
59 uksort( $map, function ( $a, $b ) use ( $hashes ) {
60 return strcmp( $hashes[$a], $hashes[$b] );
61 } );
62 // Fit the map to weight-proportionate one with a space of size RING_SIZE
63 $sum = array_sum( $map );
64 $standardMap = [];
65 foreach ( $map as $location => $weight ) {
66 $standardMap[$location] = (int)floor( $weight / $sum * self::RING_SIZE );
67 }
68 // Build a ring of RING_SIZE spots, with each location at a spot in location hash order
69 $index = 0;
70 foreach ( $standardMap as $location => $weight ) {
71 // Location covers half-closed interval [$index,$index + $weight)
72 $this->ring[$location] = [ $index, $index + $weight ];
73 $index += $weight;
74 }
75 // Make sure the last location covers what is left
76 end( $this->ring );
77 $this->ring[key( $this->ring )][1] = self::RING_SIZE;
78 }
79
80 /**
81 * Get the location of an item on the ring
82 *
83 * @param string $item
84 * @return string Location
85 */
86 public function getLocation( $item ) {
87 $locations = $this->getLocations( $item, 1 );
88
89 return $locations[0];
90 }
91
92 /**
93 * Get the location of an item on the ring, as well as the next locations
94 *
95 * @param string $item
96 * @param int $limit Maximum number of locations to return
97 * @return array List of locations
98 */
99 public function getLocations( $item, $limit ) {
100 $locations = [];
101 $primaryLocation = null;
102 $spot = hexdec( substr( sha1( $item ), 0, 7 ) ); // first 28 bits
103 foreach ( $this->ring as $location => $range ) {
104 if ( count( $locations ) >= $limit ) {
105 break;
106 }
107 // The $primaryLocation is the location the item spot is in.
108 // After that is reached, keep appending the next locations.
109 if ( ( $range[0] <= $spot && $spot < $range[1] ) || $primaryLocation !== null ) {
110 if ( $primaryLocation === null ) {
111 $primaryLocation = $location;
112 }
113 $locations[] = $location;
114 }
115 }
116 // If more locations are requested, wrap-around and keep adding them
117 reset( $this->ring );
118 while ( count( $locations ) < $limit ) {
119 $location = key( $this->ring );
120 if ( $location === $primaryLocation ) {
121 break; // don't go in circles
122 }
123 $locations[] = $location;
124 next( $this->ring );
125 }
126
127 return $locations;
128 }
129
130 /**
131 * Get the map of locations to weight (ignores 0-weight items)
132 *
133 * @return array
134 */
135 public function getLocationWeights() {
136 return $this->sourceMap;
137 }
138
139 /**
140 * Get a new hash ring with a location removed from the ring
141 *
142 * @param string $location
143 * @return HashRing|bool Returns false if no non-zero weighted spots are left
144 */
145 public function newWithoutLocation( $location ) {
146 $map = $this->sourceMap;
147 unset( $map[$location] );
148
149 return count( $map ) ? new self( $map ) : false;
150 }
151
152 /**
153 * Remove a location from the "live" hash ring
154 *
155 * @param string $location
156 * @param int $ttl Seconds
157 * @return bool Whether some non-ejected locations are left
158 */
159 public function ejectFromLiveRing( $location, $ttl ) {
160 if ( !isset( $this->sourceMap[$location] ) ) {
161 throw new UnexpectedValueException( "No location '$location' in the ring." );
162 }
163 $expiry = time() + $ttl;
164 $this->liveRing = null; // stale
165 $this->ejectionExpiries[$location] = $expiry;
166 $this->ejectionNextExpiry = min( $expiry, $this->ejectionNextExpiry );
167
168 return ( count( $this->ejectionExpiries ) < count( $this->sourceMap ) );
169 }
170
171 /**
172 * Get the "live" hash ring (which does not include ejected locations)
173 *
174 * @return HashRing
175 * @throws UnexpectedValueException
176 */
177 public function getLiveRing() {
178 $now = time();
179 if ( $this->liveRing === null || $this->ejectionNextExpiry <= $now ) {
180 $this->ejectionExpiries = array_filter(
181 $this->ejectionExpiries,
182 function ( $expiry ) use ( $now ) {
183 return ( $expiry > $now );
184 }
185 );
186 if ( count( $this->ejectionExpiries ) ) {
187 $map = array_diff_key( $this->sourceMap, $this->ejectionExpiries );
188 $this->liveRing = count( $map ) ? new self( $map ) : false;
189
190 $this->ejectionNextExpiry = min( $this->ejectionExpiries );
191 } else { // common case; avoid recalculating ring
192 $this->liveRing = clone $this;
193 $this->liveRing->ejectionExpiries = [];
194 $this->liveRing->ejectionNextExpiry = INF;
195 $this->liveRing->liveRing = null;
196
197 $this->ejectionNextExpiry = INF;
198 }
199 }
200 if ( !$this->liveRing ) {
201 throw new UnexpectedValueException( "The live ring is currently empty." );
202 }
203
204 return $this->liveRing;
205 }
206
207 /**
208 * Get the location of an item on the "live" ring
209 *
210 * @param string $item
211 * @return string Location
212 * @throws UnexpectedValueException
213 */
214 public function getLiveLocation( $item ) {
215 return $this->getLiveRing()->getLocation( $item );
216 }
217
218 /**
219 * Get the location of an item on the "live" ring, as well as the next locations
220 *
221 * @param string $item
222 * @param int $limit Maximum number of locations to return
223 * @return array List of locations
224 * @throws UnexpectedValueException
225 */
226 public function getLiveLocations( $item, $limit ) {
227 return $this->getLiveRing()->getLocations( $item, $limit );
228 }
229
230 /**
231 * Get the map of "live" locations to weight (ignores 0-weight items)
232 *
233 * @return array
234 * @throws UnexpectedValueException
235 */
236 public function getLiveLocationWeights() {
237 return $this->getLiveRing()->getLocationWeights();
238 }
239 }