Merge ".mailmap: Correct two contributor names"
[mediawiki.git] / includes / libs / MemoizedCallable.php
blobb032b317fc6dbfda80671a4b3944cd5023808ba6
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
18 * @file
19 * @author Ori Livneh
22 /**
23 * APCu-backed function memoization
25 * This class provides memoization for pure functions. A function is pure
26 * if its result value depends on nothing other than its input parameters
27 * and if invoking it does not cause any side-effects.
29 * The first invocation of the memoized callable with a particular set of
30 * arguments will be delegated to the underlying callable. Repeat invocations
31 * with the same input parameters will be served from APCu.
33 * @par Example:
34 * @code
35 * $memoizedStrrev = new MemoizedCallable( 'range' );
36 * $memoizedStrrev->invoke( 5, 8 ); // result: array( 5, 6, 7, 8 )
37 * $memoizedStrrev->invokeArgs( array( 5, 8 ) ); // same
38 * MemoizedCallable::call( 'range', array( 5, 8 ) ); // same
39 * @endcode
41 * @since 1.27
43 class MemoizedCallable {
45 /** @var callable */
46 private $callable;
48 /** @var string Unique name of callable; used for cache keys. */
49 private $callableName;
51 /** @var int */
52 private $ttl;
54 /**
55 * @param callable $callable Function or method to memoize.
56 * @param int $ttl TTL in seconds. Defaults to 3600 (1hr). Capped at 86400 (24h).
58 public function __construct( $callable, $ttl = 3600 ) {
59 if ( !is_callable( $callable, false, $this->callableName ) ) {
60 throw new InvalidArgumentException(
61 'Argument 1 passed to MemoizedCallable::__construct() must ' .
62 'be an instance of callable; ' . get_debug_type( $callable ) . ' given'
66 if ( $this->callableName === 'Closure::__invoke' ) {
67 throw new InvalidArgumentException( 'Cannot memoize unnamed closure' );
70 $this->callable = $callable;
71 $this->ttl = min( max( $ttl, 1 ), 86400 );
74 /**
75 * Fetch the result of a previous invocation.
77 * @param string $key
78 * @param bool &$success
79 * @return bool
81 protected function fetchResult( $key, &$success ) {
82 $success = false;
83 if ( function_exists( 'apcu_fetch' ) ) {
84 return apcu_fetch( $key, $success );
86 return false;
89 /**
90 * Store the result of an invocation.
92 * @param string $key
93 * @param mixed $result
95 protected function storeResult( $key, $result ) {
96 if ( function_exists( 'apcu_store' ) ) {
97 apcu_store( $key, $result, $this->ttl );
102 * Invoke the memoized function or method.
104 * @throws InvalidArgumentException If parameters list contains non-scalar items.
105 * @param array $args Parameters for memoized function or method.
106 * @return mixed The memoized callable's return value.
108 public function invokeArgs( array $args = [] ) {
109 foreach ( $args as $arg ) {
110 if ( $arg !== null && !is_scalar( $arg ) ) {
111 throw new InvalidArgumentException(
112 'MemoizedCallable::invoke() called with non-scalar ' .
113 'argument'
118 $hash = md5( serialize( $args ) );
119 $key = __CLASS__ . ':' . $this->callableName . ':' . $hash;
120 $success = false;
121 $result = $this->fetchResult( $key, $success );
122 if ( !$success ) {
123 $result = ( $this->callable )( ...$args );
124 $this->storeResult( $key, $result );
127 return $result;
131 * Invoke the memoized function or method.
133 * Like MemoizedCallable::invokeArgs(), but variadic.
135 * @param mixed ...$params Parameters for memoized function or method.
136 * @return mixed The memoized callable's return value.
138 public function invoke( ...$params ) {
139 return $this->invokeArgs( $params );
143 * Shortcut method for creating a MemoizedCallable and invoking it
144 * with the specified arguments.
146 * @param callable $callable
147 * @param array $args
148 * @param int $ttl
149 * @return mixed
151 public static function call( $callable, array $args = [], $ttl = 3600 ) {
152 $instance = new self( $callable, $ttl );
153 return $instance->invokeArgs( $args );