/usr/share/mediawiki/includes/libs/HashRing.php is in mediawiki-classes 1:1.27.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | <?php
/**
* Convenience class for weighted consistent hash rings.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @author Aaron Schulz
*/
/**
* Convenience class for weighted consistent hash rings
*
* @since 1.22
*/
class HashRing {
/** @var Array (location => weight) */
protected $sourceMap = [];
/** @var Array (location => (start, end)) */
protected $ring = [];
/** @var Array (location => (start, end)) */
protected $liveRing;
/** @var Array (location => UNIX timestamp) */
protected $ejectionExpiries = [];
/** @var integer UNIX timestamp */
protected $ejectionNextExpiry = INF;
const RING_SIZE = 268435456; // 2^28
/**
* @param array $map (location => weight)
*/
public function __construct( array $map ) {
$map = array_filter( $map, function ( $w ) {
return $w > 0;
} );
if ( !count( $map ) ) {
throw new UnexpectedValueException( "Ring is empty or all weights are zero." );
}
$this->sourceMap = $map;
// Sort the locations based on the hash of their names
$hashes = [];
foreach ( $map as $location => $weight ) {
$hashes[$location] = sha1( $location );
}
uksort( $map, function ( $a, $b ) use ( $hashes ) {
return strcmp( $hashes[$a], $hashes[$b] );
} );
// Fit the map to weight-proportionate one with a space of size RING_SIZE
$sum = array_sum( $map );
$standardMap = [];
foreach ( $map as $location => $weight ) {
$standardMap[$location] = (int)floor( $weight / $sum * self::RING_SIZE );
}
// Build a ring of RING_SIZE spots, with each location at a spot in location hash order
$index = 0;
foreach ( $standardMap as $location => $weight ) {
// Location covers half-closed interval [$index,$index + $weight)
$this->ring[$location] = [ $index, $index + $weight ];
$index += $weight;
}
// Make sure the last location covers what is left
end( $this->ring );
$this->ring[key( $this->ring )][1] = self::RING_SIZE;
}
/**
* Get the location of an item on the ring
*
* @param string $item
* @return string Location
*/
public function getLocation( $item ) {
$locations = $this->getLocations( $item, 1 );
return $locations[0];
}
/**
* Get the location of an item on the ring, as well as the next locations
*
* @param string $item
* @param integer $limit Maximum number of locations to return
* @return array List of locations
*/
public function getLocations( $item, $limit ) {
$locations = [];
$primaryLocation = null;
$spot = hexdec( substr( sha1( $item ), 0, 7 ) ); // first 28 bits
foreach ( $this->ring as $location => $range ) {
if ( count( $locations ) >= $limit ) {
break;
}
// The $primaryLocation is the location the item spot is in.
// After that is reached, keep appending the next locations.
if ( ( $range[0] <= $spot && $spot < $range[1] ) || $primaryLocation !== null ) {
if ( $primaryLocation === null ) {
$primaryLocation = $location;
}
$locations[] = $location;
}
}
// If more locations are requested, wrap-around and keep adding them
reset( $this->ring );
while ( count( $locations ) < $limit ) {
list( $location, ) = each( $this->ring );
if ( $location === $primaryLocation ) {
break; // don't go in circles
}
$locations[] = $location;
}
return $locations;
}
/**
* Get the map of locations to weight (ignores 0-weight items)
*
* @return array
*/
public function getLocationWeights() {
return $this->sourceMap;
}
/**
* Get a new hash ring with a location removed from the ring
*
* @param string $location
* @return HashRing|bool Returns false if no non-zero weighted spots are left
*/
public function newWithoutLocation( $location ) {
$map = $this->sourceMap;
unset( $map[$location] );
return count( $map ) ? new self( $map ) : false;
}
/**
* Remove a location from the "live" hash ring
*
* @param string $location
* @param integer $ttl Seconds
* @return bool Whether some non-ejected locations are left
*/
public function ejectFromLiveRing( $location, $ttl ) {
if ( !isset( $this->sourceMap[$location] ) ) {
throw new UnexpectedValueException( "No location '$location' in the ring." );
}
$expiry = time() + $ttl;
$this->liveRing = null; // stale
$this->ejectionExpiries[$location] = $expiry;
$this->ejectionNextExpiry = min( $expiry, $this->ejectionNextExpiry );
return ( count( $this->ejectionExpiries ) < count( $this->sourceMap ) );
}
/**
* Get the "live" hash ring (which does not include ejected locations)
*
* @return HashRing
* @throws UnexpectedValueException
*/
public function getLiveRing() {
$now = time();
if ( $this->liveRing === null || $this->ejectionNextExpiry <= $now ) {
$this->ejectionExpiries = array_filter(
$this->ejectionExpiries,
function( $expiry ) use ( $now ) {
return ( $expiry > $now );
}
);
if ( count( $this->ejectionExpiries ) ) {
$map = array_diff_key( $this->sourceMap, $this->ejectionExpiries );
$this->liveRing = count( $map ) ? new self( $map ) : false;
$this->ejectionNextExpiry = min( $this->ejectionExpiries );
} else { // common case; avoid recalculating ring
$this->liveRing = clone $this;
$this->liveRing->ejectionExpiries = [];
$this->liveRing->ejectionNextExpiry = INF;
$this->liveRing->liveRing = null;
$this->ejectionNextExpiry = INF;
}
}
if ( !$this->liveRing ) {
throw new UnexpectedValueException( "The live ring is currently empty." );
}
return $this->liveRing;
}
/**
* Get the location of an item on the "live" ring
*
* @param string $item
* @return string Location
* @throws UnexpectedValueException
*/
public function getLiveLocation( $item ) {
return $this->getLiveRing()->getLocation( $item );
}
/**
* Get the location of an item on the "live" ring, as well as the next locations
*
* @param string $item
* @param integer $limit Maximum number of locations to return
* @return array List of locations
* @throws UnexpectedValueException
*/
public function getLiveLocations( $item, $limit ) {
return $this->getLiveRing()->getLocations( $item, $limit );
}
/**
* Get the map of "live" locations to weight (ignores 0-weight items)
*
* @return array
* @throws UnexpectedValueException
*/
public function getLiveLocationWeights() {
return $this->getLiveRing()->getLocationWeights();
}
}
|