3 * Parser cache specific expiry check.
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.
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.
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
25 * Parser cache specific expiry check.
30 /** @var array|bool ParserOptions which have been taken into account to
31 * produce output or false if not available.
36 public $mVersion = Parser
::VERSION
;
38 # Time when this object was generated, or -1 for uncacheable. Used in ParserCache.
39 public $mCacheTime = '';
41 # Seconds after which the object should expire, use 0 for uncacheable. Used in ParserCache.
42 public $mCacheExpiry = null;
44 # Revision ID that was parsed
45 public $mCacheRevisionId = null;
48 * @return string TS_MW timestamp
50 public function getCacheTime() {
51 return wfTimestamp( TS_MW
, $this->mCacheTime
);
55 * setCacheTime() sets the timestamp expressing when the page has been rendered.
56 * This does not control expiry, see updateCacheExpiry() for that!
57 * @param string $t TS_MW timestamp
60 public function setCacheTime( $t ) {
61 return wfSetVar( $this->mCacheTime
, $t );
66 * @return int|null Revision id, if any was set
68 public function getCacheRevisionId() {
69 return $this->mCacheRevisionId
;
74 * @param int $id Revision id
76 public function setCacheRevisionId( $id ) {
77 $this->mCacheRevisionId
= $id;
81 * Sets the number of seconds after which this object should expire.
82 * This value is used with the ParserCache.
83 * If called with a value greater than the value provided at any previous call,
84 * the new call has no effect. The value returned by getCacheExpiry is smaller
85 * or equal to the smallest number that was provided as an argument to
86 * updateCacheExpiry().
90 public function updateCacheExpiry( $seconds ) {
91 $seconds = (int)$seconds;
93 if ( $this->mCacheExpiry
=== null ||
$this->mCacheExpiry
> $seconds ) {
94 $this->mCacheExpiry
= $seconds;
99 * Returns the number of seconds after which this object should expire.
100 * This method is used by ParserCache to determine how long the ParserOutput can be cached.
101 * The timestamp of expiry can be calculated by adding getCacheExpiry() to getCacheTime().
102 * The value returned by getCacheExpiry is smaller or equal to the smallest number
103 * that was provided to a call of updateCacheExpiry(), and smaller or equal to the
104 * value of $wgParserCacheExpireTime.
105 * @return int|mixed|null
107 public function getCacheExpiry() {
108 global $wgParserCacheExpireTime;
110 if ( $this->mCacheTime
< 0 ) {
112 } // old-style marker for "not cacheable"
114 $expire = $this->mCacheExpiry
;
116 if ( $expire === null ) {
117 $expire = $wgParserCacheExpireTime;
119 $expire = min( $expire, $wgParserCacheExpireTime );
122 if ( $expire <= 0 ) {
123 return 0; // not cacheable
132 public function isCacheable() {
133 return $this->getCacheExpiry() > 0;
137 * Return true if this cached output object predates the global or
138 * per-article cache invalidation timestamps, or if it comes from
139 * an incompatible older version.
141 * @param string $touched The affected article's last touched timestamp
144 public function expired( $touched ) {
145 global $wgCacheEpoch;
147 return !$this->isCacheable() // parser says it's uncacheable
148 ||
$this->getCacheTime() < $touched
149 ||
$this->getCacheTime() <= $wgCacheEpoch
150 ||
$this->getCacheTime() <
151 wfTimestamp( TS_MW
, time() - $this->getCacheExpiry() ) // expiry period has passed
152 ||
!isset( $this->mVersion
)
153 ||
version_compare( $this->mVersion
, Parser
::VERSION
, "lt" );
157 * Return true if this cached output object is for a different revision of
160 * @todo We always return false if $this->getCacheRevisionId() is null;
161 * this prevents invalidating the whole parser cache when this change is
162 * deployed. Someday that should probably be changed.
165 * @param int $id The affected article's current revision id
168 public function isDifferentRevision( $id ) {
169 $cached = $this->getCacheRevisionId();
170 return $cached !== null && $id !== $cached;