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
20 use Psr\Log\LoggerInterface
;
21 use Psr\Log\LoggerAwareInterface
;
24 * Helper class to handle automatically marking connectons as reusable (via RAII pattern)
26 * This class simply wraps the Redis class and can be used the same way
31 class RedisConnRef
implements LoggerAwareInterface
{
32 /** @var RedisConnectionPool */
37 protected $server; // string
38 protected $lastError; // string
41 * @var LoggerInterface
46 * @param RedisConnectionPool $pool
47 * @param string $server
49 * @param LoggerInterface $logger
51 public function __construct(
52 RedisConnectionPool
$pool, $server, Redis
$conn, LoggerInterface
$logger
55 $this->server
= $server;
57 $this->logger
= $logger;
60 public function setLogger( LoggerInterface
$logger ) {
61 $this->logger
= $logger;
68 public function getServer() {
72 public function getLastError() {
73 return $this->lastError
;
76 public function clearLastError() {
77 $this->lastError
= null;
80 public function __call( $name, $arguments ) {
81 $conn = $this->conn
; // convenience
83 // Work around https://github.com/nicolasff/phpredis/issues/70
84 $lname = strtolower( $name );
85 if ( ( $lname === 'blpop' ||
$lname == 'brpop' )
86 && is_array( $arguments[0] ) && isset( $arguments[1] )
88 $this->pool
->resetTimeout( $conn, $arguments[1] +
1 );
89 } elseif ( $lname === 'brpoplpush' && isset( $arguments[2] ) ) {
90 $this->pool
->resetTimeout( $conn, $arguments[2] +
1 );
93 $conn->clearLastError();
95 $res = call_user_func_array( [ $conn, $name ], $arguments );
96 if ( preg_match( '/^ERR operation not permitted\b/', $conn->getLastError() ) ) {
97 $this->pool
->reauthenticateConnection( $this->server
, $conn );
98 $conn->clearLastError();
99 $res = call_user_func_array( [ $conn, $name ], $arguments );
101 "Used automatic re-authentication for method '$name'.",
102 [ 'redis_server' => $this->server
]
105 } catch ( RedisException
$e ) {
106 $this->pool
->resetTimeout( $conn ); // restore
110 $this->lastError
= $conn->getLastError() ?
: $this->lastError
;
112 $this->pool
->resetTimeout( $conn ); // restore
118 * @param string $script
119 * @param array $params
120 * @param int $numKeys
122 * @throws RedisException
124 public function luaEval( $script, array $params, $numKeys ) {
125 $sha1 = sha1( $script ); // 40 char hex
126 $conn = $this->conn
; // convenience
127 $server = $this->server
; // convenience
129 // Try to run the server-side cached copy of the script
130 $conn->clearLastError();
131 $res = $conn->evalSha( $sha1, $params, $numKeys );
132 // If we got a permission error reply that means that (a) we are not in
133 // multi()/pipeline() and (b) some connection problem likely occurred. If
134 // the password the client gave was just wrong, an exception should have
135 // been thrown back in getConnection() previously.
136 if ( preg_match( '/^ERR operation not permitted\b/', $conn->getLastError() ) ) {
137 $this->pool
->reauthenticateConnection( $server, $conn );
138 $conn->clearLastError();
139 $res = $conn->eval( $script, $params, $numKeys );
141 "Used automatic re-authentication for Lua script '$sha1'.",
142 [ 'redis_server' => $server ]
145 // If the script is not in cache, use eval() to retry and cache it
146 if ( preg_match( '/^NOSCRIPT/', $conn->getLastError() ) ) {
147 $conn->clearLastError();
148 $res = $conn->eval( $script, $params, $numKeys );
150 "Used eval() for Lua script '$sha1'.",
151 [ 'redis_server' => $server ]
155 if ( $conn->getLastError() ) { // script bug?
156 $this->logger
->error(
157 'Lua script error on server "{redis_server}": {lua_error}',
159 'redis_server' => $server,
160 'lua_error' => $conn->getLastError()
165 $this->lastError
= $conn->getLastError() ?
: $this->lastError
;
174 public function isConnIdentical( Redis
$conn ) {
175 return $this->conn
=== $conn;
178 function __destruct() {
179 $this->pool
->freeConnection( $this->server
, $this->conn
);