123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- <?php
- /**
- * Per-process memory cache for storing items.
- *
- * 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
- * @ingroup Cache
- */
- use Wikimedia\Assert\Assert;
- /**
- * Handles a simple LRU key/value map with a maximum number of entries
- *
- * The last-modification timestamp of entries is internally tracked so that callers can
- * specify the maximum acceptable age of entries in calls to the has() method. As a convenience,
- * the hasField(), getField(), and setField() methods can be used for entries that are field/value
- * maps themselves; such fields will have their own internally tracked last-modification timestamp.
- *
- * @see ProcessCacheLRU
- * @ingroup Cache
- * @since 1.23
- */
- class MapCacheLRU implements IExpiringStore, Serializable {
- /** @var array Map of (key => value) */
- private $cache = [];
- /** @var array Map of (key => (UNIX timestamp, (field => UNIX timestamp))) */
- private $timestamps = [];
- /** @var float Default entry timestamp if not specified */
- private $epoch;
- /** @var int Max number of entries */
- private $maxCacheKeys;
- /** @var float|null */
- private $wallClockOverride;
- /** @var float */
- const RANK_TOP = 1.0;
- /** @var int Array key that holds the entry's main timestamp (flat key use) */
- const SIMPLE = 0;
- /** @var int Array key that holds the entry's field timestamps (nested key use) */
- const FIELDS = 1;
- /**
- * @param int $maxKeys Maximum number of entries allowed (min 1)
- * @throws Exception When $maxKeys is not an int or not above zero
- */
- public function __construct( $maxKeys ) {
- Assert::parameterType( 'integer', $maxKeys, '$maxKeys' );
- Assert::parameter( $maxKeys > 0, '$maxKeys', 'must be above zero' );
- $this->maxCacheKeys = $maxKeys;
- // Use the current time as the default "as of" timestamp of entries
- $this->epoch = $this->getCurrentTime();
- }
- /**
- * @param array $values Key/value map in order of increasingly recent access
- * @param int $maxKeys
- * @return MapCacheLRU
- * @since 1.30
- */
- public static function newFromArray( array $values, $maxKeys ) {
- $mapCache = new self( $maxKeys );
- $mapCache->cache = ( count( $values ) > $maxKeys )
- ? array_slice( $values, -$maxKeys, null, true )
- : $values;
- return $mapCache;
- }
- /**
- * @return array Key/value map in order of increasingly recent access
- * @since 1.30
- */
- public function toArray() {
- return $this->cache;
- }
- /**
- * Set a key/value pair.
- * This will prune the cache if it gets too large based on LRU.
- * If the item is already set, it will be pushed to the top of the cache.
- *
- * To reduce evictions due to one-off use of many new keys, $rank can be
- * set to have keys start at the top of a bottom fraction of the list. A value
- * of 3/8 means values start at the top of the bottom 3/8s of the list and are
- * moved to the top of the list when accessed a second time.
- *
- * @param string $key
- * @param mixed $value
- * @param float $rank Bottom fraction of the list where keys start off [default: 1.0]
- * @return void
- */
- public function set( $key, $value, $rank = self::RANK_TOP ) {
- if ( $this->has( $key ) ) {
- $this->ping( $key );
- } elseif ( count( $this->cache ) >= $this->maxCacheKeys ) {
- reset( $this->cache );
- $evictKey = key( $this->cache );
- unset( $this->cache[$evictKey] );
- unset( $this->timestamps[$evictKey] );
- }
- if ( $rank < 1.0 && $rank > 0 ) {
- $offset = intval( $rank * count( $this->cache ) );
- $this->cache = array_slice( $this->cache, 0, $offset, true )
- + [ $key => $value ]
- + array_slice( $this->cache, $offset, null, true );
- } else {
- $this->cache[$key] = $value;
- }
- $this->timestamps[$key] = [
- self::SIMPLE => $this->getCurrentTime(),
- self::FIELDS => []
- ];
- }
- /**
- * Check if a key exists
- *
- * @param string $key
- * @param float $maxAge Ignore items older than this many seconds [default: INF]
- * @return bool
- * @since 1.32 Added $maxAge
- */
- public function has( $key, $maxAge = INF ) {
- if ( !is_int( $key ) && !is_string( $key ) ) {
- throw new UnexpectedValueException(
- __METHOD__ . ': invalid key; must be string or integer.' );
- }
- if ( !array_key_exists( $key, $this->cache ) ) {
- return false;
- }
- return ( $maxAge <= 0 || $this->getAge( $key ) <= $maxAge );
- }
- /**
- * Get the value for a key.
- * This returns null if the key is not set.
- * If the item is already set, it will be pushed to the top of the cache.
- *
- * @param string $key
- * @param float $maxAge Ignore items older than this many seconds [default: INF]
- * @param mixed|null $default Value to return if no key is found [default: null]
- * @return mixed Returns $default if the key was not found or is older than $maxAge
- * @since 1.32 Added $maxAge
- * @since 1.34 Added $default
- */
- public function get( $key, $maxAge = INF, $default = null ) {
- if ( !$this->has( $key, $maxAge ) ) {
- return $default;
- }
- $this->ping( $key );
- return $this->cache[$key];
- }
- /**
- * @param string|int $key
- * @param string|int $field
- * @param mixed $value
- * @param float $initRank
- */
- public function setField( $key, $field, $value, $initRank = self::RANK_TOP ) {
- if ( $this->has( $key ) ) {
- $this->ping( $key );
- } else {
- $this->set( $key, [], $initRank );
- }
- if ( !is_int( $field ) && !is_string( $field ) ) {
- throw new UnexpectedValueException(
- __METHOD__ . ": invalid field for '$key'; must be string or integer." );
- }
- if ( !is_array( $this->cache[$key] ) ) {
- $type = gettype( $this->cache[$key] );
- throw new UnexpectedValueException( "The value of '$key' ($type) is not an array." );
- }
- $this->cache[$key][$field] = $value;
- $this->timestamps[$key][self::FIELDS][$field] = $this->getCurrentTime();
- }
- /**
- * @param string|int $key
- * @param string|int $field
- * @param float $maxAge Ignore items older than this many seconds [default: INF]
- * @return bool
- * @since 1.32 Added $maxAge
- */
- public function hasField( $key, $field, $maxAge = INF ) {
- $value = $this->get( $key );
- if ( !is_int( $field ) && !is_string( $field ) ) {
- throw new UnexpectedValueException(
- __METHOD__ . ": invalid field for '$key'; must be string or integer." );
- }
- if ( !is_array( $value ) || !array_key_exists( $field, $value ) ) {
- return false;
- }
- return ( $maxAge <= 0 || $this->getAge( $key, $field ) <= $maxAge );
- }
- /**
- * @param string|int $key
- * @param string|int $field
- * @param float $maxAge Ignore items older than this many seconds [default: INF]
- * @return mixed Returns null if the key was not found or is older than $maxAge
- * @since 1.32 Added $maxAge
- */
- public function getField( $key, $field, $maxAge = INF ) {
- if ( !$this->hasField( $key, $field, $maxAge ) ) {
- return null;
- }
- return $this->cache[$key][$field];
- }
- /**
- * @return array
- * @since 1.25
- */
- public function getAllKeys() {
- return array_keys( $this->cache );
- }
- /**
- * Get an item with the given key, producing and setting it if not found.
- *
- * If the callback returns false, then nothing is stored.
- *
- * @since 1.28
- * @param string $key
- * @param callable $callback Callback that will produce the value
- * @param float $rank Bottom fraction of the list where keys start off [default: 1.0]
- * @param float $maxAge Ignore items older than this many seconds [default: INF]
- * @return mixed The cached value if found or the result of $callback otherwise
- * @since 1.32 Added $maxAge
- */
- public function getWithSetCallback(
- $key, callable $callback, $rank = self::RANK_TOP, $maxAge = INF
- ) {
- if ( $this->has( $key, $maxAge ) ) {
- $value = $this->get( $key );
- } else {
- $value = call_user_func( $callback );
- if ( $value !== false ) {
- $this->set( $key, $value, $rank );
- }
- }
- return $value;
- }
- /**
- * Clear one or several cache entries, or all cache entries
- *
- * @param string|array|null $keys
- * @return void
- */
- public function clear( $keys = null ) {
- if ( func_num_args() == 0 ) {
- $this->cache = [];
- $this->timestamps = [];
- } else {
- foreach ( (array)$keys as $key ) {
- unset( $this->cache[$key] );
- unset( $this->timestamps[$key] );
- }
- }
- }
- /**
- * Get the maximum number of keys allowed
- *
- * @return int
- * @since 1.32
- */
- public function getMaxSize() {
- return $this->maxCacheKeys;
- }
- /**
- * Resize the maximum number of cache entries, removing older entries as needed
- *
- * @param int $maxKeys Maximum number of entries allowed (min 1)
- * @return void
- * @throws Exception When $maxKeys is not an int or not above zero
- * @since 1.32
- */
- public function setMaxSize( $maxKeys ) {
- Assert::parameterType( 'integer', $maxKeys, '$maxKeys' );
- Assert::parameter( $maxKeys > 0, '$maxKeys', 'must be above zero' );
- $this->maxCacheKeys = $maxKeys;
- while ( count( $this->cache ) > $this->maxCacheKeys ) {
- reset( $this->cache );
- $evictKey = key( $this->cache );
- unset( $this->cache[$evictKey] );
- unset( $this->timestamps[$evictKey] );
- }
- }
- /**
- * Push an entry to the top of the cache
- *
- * @param string $key
- */
- private function ping( $key ) {
- $item = $this->cache[$key];
- unset( $this->cache[$key] );
- $this->cache[$key] = $item;
- }
- /**
- * @param string|int $key
- * @param string|int|null $field [optional]
- * @return float UNIX timestamp; the age of the given entry or entry field
- */
- private function getAge( $key, $field = null ) {
- if ( $field !== null ) {
- $mtime = $this->timestamps[$key][self::FIELDS][$field] ?? $this->epoch;
- } else {
- $mtime = $this->timestamps[$key][self::SIMPLE] ?? $this->epoch;
- }
- return ( $this->getCurrentTime() - $mtime );
- }
- public function serialize() {
- return serialize( [
- 'entries' => $this->cache,
- 'timestamps' => $this->timestamps
- ] );
- }
- public function unserialize( $serialized ) {
- $data = unserialize( $serialized );
- $this->cache = $data['entries'] ?? [];
- $this->timestamps = $data['timestamps'] ?? [];
- $this->epoch = $this->getCurrentTime();
- }
- /**
- * @return float UNIX timestamp
- * @codeCoverageIgnore
- */
- protected function getCurrentTime() {
- return $this->wallClockOverride ?: microtime( true );
- }
- /**
- * @param float|null &$time Mock UNIX timestamp for testing
- * @codeCoverageIgnore
- */
- public function setMockTime( &$time ) {
- $this->wallClockOverride =& $time;
- }
- }
|