MediaWiki REL1_31
RedisConnRef.php
Go to the documentation of this file.
1<?php
20use Psr\Log\LoggerInterface;
21use Psr\Log\LoggerAwareInterface;
22
31class RedisConnRef implements LoggerAwareInterface {
33 protected $pool;
35 protected $conn;
36
37 protected $server; // string
38 protected $lastError; // string
39
43 protected $logger;
44
51 public function __construct(
52 RedisConnectionPool $pool, $server, Redis $conn, LoggerInterface $logger
53 ) {
54 $this->pool = $pool;
55 $this->server = $server;
56 $this->conn = $conn;
57 $this->logger = $logger;
58 }
59
60 public function setLogger( LoggerInterface $logger ) {
61 $this->logger = $logger;
62 }
63
68 public function getServer() {
69 return $this->server;
70 }
71
72 public function getLastError() {
73 return $this->lastError;
74 }
75
76 public function clearLastError() {
77 $this->lastError = null;
78 }
79
80 public function __call( $name, $arguments ) {
81 $conn = $this->conn; // convenience
82
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] )
87 ) {
88 $this->pool->resetTimeout( $conn, $arguments[1] + 1 );
89 } elseif ( $lname === 'brpoplpush' && isset( $arguments[2] ) ) {
90 $this->pool->resetTimeout( $conn, $arguments[2] + 1 );
91 }
92
93 $conn->clearLastError();
94 try {
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 );
100 $this->logger->info(
101 "Used automatic re-authentication for method '$name'.",
102 [ 'redis_server' => $this->server ]
103 );
104 }
105 } catch ( RedisException $e ) {
106 $this->pool->resetTimeout( $conn ); // restore
107 throw $e;
108 }
109
110 $this->lastError = $conn->getLastError() ?: $this->lastError;
111
112 $this->pool->resetTimeout( $conn ); // restore
113
114 return $res;
115 }
116
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
128
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 );
140 $this->logger->info(
141 "Used automatic re-authentication for Lua script '$sha1'.",
142 [ 'redis_server' => $server ]
143 );
144 }
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 );
149 $this->logger->info(
150 "Used eval() for Lua script '$sha1'.",
151 [ 'redis_server' => $server ]
152 );
153 }
154
155 if ( $conn->getLastError() ) { // script bug?
156 $this->logger->error(
157 'Lua script error on server "{redis_server}": {lua_error}',
158 [
159 'redis_server' => $server,
160 'lua_error' => $conn->getLastError()
161 ]
162 );
163 }
164
165 $this->lastError = $conn->getLastError() ?: $this->lastError;
166
167 return $res;
168 }
169
174 public function isConnIdentical( Redis $conn ) {
175 return $this->conn === $conn;
176 }
177
178 function __destruct() {
179 $this->pool->freeConnection( $this->server, $this->conn );
180 }
181}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Helper class to handle automatically marking connectons as reusable (via RAII pattern)
RedisConnectionPool $pool
LoggerInterface $logger
__call( $name, $arguments)
luaEval( $script, array $params, $numKeys)
__construct(RedisConnectionPool $pool, $server, Redis $conn, LoggerInterface $logger)
setLogger(LoggerInterface $logger)
isConnIdentical(Redis $conn)
Helper class to manage Redis connections.
$res
Definition database.txt:21
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server
the array() calling protocol came about after MediaWiki 1.4rc1.
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
returning false will NOT prevent logging $e
Definition hooks.txt:2176
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:37
$params