MediaWiki  1.29.1
HashBagOStuff.php
Go to the documentation of this file.
1 <?php
31 class HashBagOStuff extends BagOStuff {
33  protected $bag = [];
35  protected $maxCacheKeys;
36 
37  const KEY_VAL = 0;
38  const KEY_EXP = 1;
39 
44  function __construct( $params = [] ) {
45  parent::__construct( $params );
46 
47  $this->maxCacheKeys = isset( $params['maxKeys'] ) ? $params['maxKeys'] : INF;
48  if ( $this->maxCacheKeys <= 0 ) {
49  throw new InvalidArgumentException( '$maxKeys parameter must be above zero' );
50  }
51  }
52 
53  protected function expire( $key ) {
54  $et = $this->bag[$key][self::KEY_EXP];
55  if ( $et == self::TTL_INDEFINITE || $et > time() ) {
56  return false;
57  }
58 
59  $this->delete( $key );
60 
61  return true;
62  }
63 
71  protected function hasKey( $key ) {
72  return isset( $this->bag[$key] );
73  }
74 
75  protected function doGet( $key, $flags = 0 ) {
76  if ( !$this->hasKey( $key ) ) {
77  return false;
78  }
79 
80  if ( $this->expire( $key ) ) {
81  return false;
82  }
83 
84  // Refresh key position for maxCacheKeys eviction
85  $temp = $this->bag[$key];
86  unset( $this->bag[$key] );
87  $this->bag[$key] = $temp;
88 
89  return $this->bag[$key][self::KEY_VAL];
90  }
91 
92  public function set( $key, $value, $exptime = 0, $flags = 0 ) {
93  // Refresh key position for maxCacheKeys eviction
94  unset( $this->bag[$key] );
95  $this->bag[$key] = [
96  self::KEY_VAL => $value,
97  self::KEY_EXP => $this->convertExpiry( $exptime )
98  ];
99 
100  if ( count( $this->bag ) > $this->maxCacheKeys ) {
101  reset( $this->bag );
102  $evictKey = key( $this->bag );
103  unset( $this->bag[$evictKey] );
104  }
105 
106  return true;
107  }
108 
109  public function delete( $key ) {
110  unset( $this->bag[$key] );
111 
112  return true;
113  }
114 
115  public function clear() {
116  $this->bag = [];
117  }
118 }
HashBagOStuff\KEY_EXP
const KEY_EXP
Definition: HashBagOStuff.php:38
HashBagOStuff\$bag
mixed[] $bag
Definition: HashBagOStuff.php:33
HashBagOStuff\expire
expire( $key)
Definition: HashBagOStuff.php:53
HashBagOStuff
Simple store for keeping values in an associative array for the current process.
Definition: HashBagOStuff.php:31
captcha-old.count
count
Definition: captcha-old.py:225
BagOStuff\convertExpiry
convertExpiry( $exptime)
Convert an optionally relative time to an absolute time.
Definition: BagOStuff.php:692
HashBagOStuff\$maxCacheKeys
integer $maxCacheKeys
Max entries allowed.
Definition: HashBagOStuff.php:35
$params
$params
Definition: styleTest.css.php:40
BagOStuff
interface is intended to be more or less compatible with the PHP memcached client.
Definition: BagOStuff.php:47
HashBagOStuff\hasKey
hasKey( $key)
Does this bag have a non-null value for the given key?
Definition: HashBagOStuff.php:71
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
HashBagOStuff\clear
clear()
Definition: HashBagOStuff.php:115
key
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
Definition: design.txt:25
HashBagOStuff\doGet
doGet( $key, $flags=0)
Definition: HashBagOStuff.php:75
HashBagOStuff\KEY_VAL
const KEY_VAL
Definition: HashBagOStuff.php:37
HashBagOStuff\__construct
__construct( $params=[])
Definition: HashBagOStuff.php:44
$value
$value
Definition: styleTest.css.php:45
$flags
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2749