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
19 * @author Aaron Schulz
21 use Psr\Log\LoggerInterface
;
22 use Psr\Log\LoggerAwareInterface
;
25 * Helper class to handle automatically marking connectons as reusable (via RAII pattern)
27 * This class simply wraps the Redis class and can be used the same way
32 class RedisConnRef
implements LoggerAwareInterface
{
33 /** @var RedisConnectionPool */
38 protected $server; // string
39 protected $lastError; // string
42 * @var LoggerInterface
47 * @param RedisConnectionPool $pool
48 * @param string $server
50 * @param LoggerInterface $logger
52 public function __construct(
53 RedisConnectionPool
$pool, $server, Redis
$conn, LoggerInterface
$logger
56 $this->server
= $server;
58 $this->logger
= $logger;
61 public function setLogger( LoggerInterface
$logger ) {
62 $this->logger
= $logger;
69 public function getServer() {
73 public function getLastError() {
74 return $this->lastError
;
77 public function clearLastError() {
78 $this->lastError
= null;
81 public function __call( $name, $arguments ) {
82 $conn = $this->conn
; // convenience
84 // Work around https://github.com/nicolasff/phpredis/issues/70
85 $lname = strtolower( $name );
86 if ( ( $lname === 'blpop' ||
$lname == 'brpop' )
87 && is_array( $arguments[0] ) && isset( $arguments[1] )
89 $this->pool
->resetTimeout( $conn, $arguments[1] +
1 );
90 } elseif ( $lname === 'brpoplpush' && isset( $arguments[2] ) ) {
91 $this->pool
->resetTimeout( $conn, $arguments[2] +
1 );
94 $conn->clearLastError();
96 $res = call_user_func_array( [ $conn, $name ], $arguments );
97 if ( preg_match( '/^ERR operation not permitted\b/', $conn->getLastError() ) ) {
98 $this->pool
->reauthenticateConnection( $this->server
, $conn );
99 $conn->clearLastError();
100 $res = call_user_func_array( [ $conn, $name ], $arguments );
102 "Used automatic re-authentication for method '$name'.",
103 [ 'redis_server' => $this->server
]
106 } catch ( RedisException
$e ) {
107 $this->pool
->resetTimeout( $conn ); // restore
111 $this->lastError
= $conn->getLastError() ?
: $this->lastError
;
113 $this->pool
->resetTimeout( $conn ); // restore
119 * @param string $script
120 * @param array $params
121 * @param int $numKeys
123 * @throws RedisException
125 public function luaEval( $script, array $params, $numKeys ) {
126 $sha1 = sha1( $script ); // 40 char hex
127 $conn = $this->conn
; // convenience
128 $server = $this->server
; // convenience
130 // Try to run the server-side cached copy of the script
131 $conn->clearLastError();
132 $res = $conn->evalSha( $sha1, $params, $numKeys );
133 // If we got a permission error reply that means that (a) we are not in
134 // multi()/pipeline() and (b) some connection problem likely occurred. If
135 // the password the client gave was just wrong, an exception should have
136 // been thrown back in getConnection() previously.
137 if ( preg_match( '/^ERR operation not permitted\b/', $conn->getLastError() ) ) {
138 $this->pool
->reauthenticateConnection( $server, $conn );
139 $conn->clearLastError();
140 $res = $conn->eval( $script, $params, $numKeys );
142 "Used automatic re-authentication for Lua script '$sha1'.",
143 [ 'redis_server' => $server ]
146 // If the script is not in cache, use eval() to retry and cache it
147 if ( preg_match( '/^NOSCRIPT/', $conn->getLastError() ) ) {
148 $conn->clearLastError();
149 $res = $conn->eval( $script, $params, $numKeys );
151 "Used eval() for Lua script '$sha1'.",
152 [ 'redis_server' => $server ]
156 if ( $conn->getLastError() ) { // script bug?
157 $this->logger
->error(
158 'Lua script error on server "{redis_server}": {lua_error}',
160 'redis_server' => $server,
161 'lua_error' => $conn->getLastError()
166 $this->lastError
= $conn->getLastError() ?
: $this->lastError
;
175 public function isConnIdentical( Redis
$conn ) {
176 return $this->conn
=== $conn;
179 function __destruct() {
180 $this->pool
->freeConnection( $this->server
, $this->conn
);