21use Psr\Log\LoggerAwareInterface;
22use Psr\Log\LoggerInterface;
23use Wikimedia\ObjectFactory;
24use Wikimedia\WaitConditionLoop;
78 $this->protocol =
$params[
'protocol'];
80 $this->encoding =
$params[
'encoding'];
81 $this->skewCacheTTL =
$params[
'skewTTL'];
82 $this->baseCacheTTL = max(
$params[
'cacheTTL'] - $this->skewCacheTTL, 0 );
83 $this->timeout =
$params[
'timeout'];
85 if ( !isset(
$params[
'cache'] ) ) {
88 $this->srvCache =
$params[
'cache'];
90 $this->srvCache = ObjectFactory::getObjectFromSpec(
$params[
'cache'] );
93 $this->logger =
new Psr\Log\NullLogger();
95 'connTimeout' => $this->timeout,
96 'reqTimeout' => $this->timeout,
97 'logger' => $this->logger
103 $this->
http->setLogger( $logger );
106 public function has( $name ) {
109 return array_key_exists(
$name, $this->procCache[
'config'] );
115 if ( !array_key_exists(
$name, $this->procCache[
'config'] ) ) {
119 return $this->procCache[
'config'][
$name];
124 return $this->procCache[
'modifiedIndex'];
131 if ( $this->procCache !==
null ) {
135 $now = microtime(
true );
136 $key = $this->srvCache->makeGlobalKey(
145 $loop =
new WaitConditionLoop(
146 function ()
use ( $key, $now, &$data, &$error ) {
148 $data = $this->srvCache->get( $key );
149 if ( is_array( $data ) && $data[
'expires'] > $now ) {
150 $this->logger->debug(
"Found up-to-date etcd configuration cache." );
152 return WaitConditionLoop::CONDITION_REACHED;
157 if ( $this->srvCache->lock( $key, 0, $this->baseCacheTTL ) ) {
159 $etcdResponse = $this->fetchAllFromEtcd();
160 $error = $etcdResponse[
'error'];
161 if ( is_array( $etcdResponse[
'config'] ) ) {
163 $expiry = microtime( true ) + $this->baseCacheTTL;
164 $expiry += mt_rand( 0, 1e6 ) / 1e6 * $this->skewCacheTTL;
166 'config' => $etcdResponse[
'config'],
167 'expires' => $expiry,
168 'modifiedIndex' => $etcdResponse[
'modifiedIndex']
170 $this->srvCache->set( $key, $data, BagOStuff::TTL_INDEFINITE );
172 $this->logger->info(
"Refreshed stale etcd configuration cache." );
174 return WaitConditionLoop::CONDITION_REACHED;
176 $this->logger->error(
"Failed to fetch configuration: $error" );
177 if ( !$etcdResponse[
'retry'] ) {
179 return WaitConditionLoop::CONDITION_FAILED;
183 $this->srvCache->unlock( $key );
187 if ( is_array( $data ) ) {
188 $this->logger->info(
"Using stale etcd configuration cache." );
190 return WaitConditionLoop::CONDITION_REACHED;
193 return WaitConditionLoop::CONDITION_CONTINUE;
198 if ( $loop->invoke() !== WaitConditionLoop::CONDITION_REACHED ) {
200 throw new ConfigException(
"Failed to load configuration from etcd: $error" );
203 $this->procCache = $data;
212 $servers = $dsd->getServers();
214 return $this->fetchAllFromEtcdServer( $this->host );
219 $server = $dsd->pickServer( $servers );
220 $host = IP::combineHostAndPort( $server[
'target'], $server[
'port'] );
222 $response = $this->fetchAllFromEtcdServer( $host );
228 $servers = $dsd->removeServer( $server, $servers );
229 }
while ( $servers );
240 list( $rcode, $rdesc, , $rbody, $rerr ) = $this->
http->run( [
242 'url' =>
"{$this->protocol}://{$address}/v2/keys/{$this->directory}/?recursive=true",
243 'headers' => [
'content-type' =>
'application/json' ]
246 $response = [
'config' =>
null,
'error' =>
null,
'retry' =>
false,
'modifiedIndex' => 0 ];
248 static $terminalCodes = [ 404 =>
true ];
249 if ( $rcode < 200 || $rcode > 399 ) {
250 $response[
'error'] = strlen( $rerr ) ? $rerr :
"HTTP $rcode ($rdesc)";
251 $response[
'retry'] = empty( $terminalCodes[$rcode] );
256 $parsedResponse = $this->parseResponse( $rbody );
258 $parsedResponse = [
'error' =>
$e->getMessage() ];
260 return array_merge(
$response, $parsedResponse );
270 $info = json_decode( $rbody,
true );
271 if ( $info ===
null ) {
274 if ( !isset( $info[
'node'] ) || !is_array( $info[
'node'] ) ) {
276 "Unexpected JSON response: Missing or invalid node at top level." );
279 $lastModifiedIndex = $this->parseDirectory(
'', $info[
'node'], $config );
280 return [
'modifiedIndex' => $lastModifiedIndex,
'config' => $config ];
293 $lastModifiedIndex = 0;
294 if ( !isset( $dirNode[
'nodes'] ) ) {
296 "Unexpected JSON response in dir '$dirName'; missing 'nodes' list." );
298 if ( !is_array( $dirNode[
'nodes'] ) ) {
300 "Unexpected JSON response in dir '$dirName'; 'nodes' is not an array." );
303 foreach ( $dirNode[
'nodes']
as $node ) {
304 $baseName = basename( $node[
'key'] );
305 $fullName = $dirName ===
'' ? $baseName :
"$dirName/$baseName";
306 if ( !empty( $node[
'dir'] ) ) {
307 $lastModifiedIndex = max(
308 $this->parseDirectory(
$fullName, $node, $config ),
309 $lastModifiedIndex );
312 if ( !is_array(
$value ) || !array_key_exists(
'val',
$value ) ) {
315 $lastModifiedIndex = max( $node[
'modifiedIndex'], $lastModifiedIndex );
319 return $lastModifiedIndex;
327 if ( $this->encoding ===
'YAML' ) {
328 return yaml_parse( $string );
330 return json_decode( $string,
true );
Apache License January http
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
unserialize( $serialized)
Class representing a cache/ephemeral data store.
Exceptions for config failures.
Interface for configuration instances.
parseDirectory( $dirName, $dirNode, &$config)
Recursively parse a directory node and populate the array passed by reference, throwing EtcdConfigPar...
setLogger(LoggerInterface $logger)
__construct(array $params)
has( $name)
Check whether a configuration option is set for the given name.
parseResponse( $rbody)
Parse a response body, throwing EtcdConfigParseError if there is a validation error.
fetchAllFromEtcdServer( $address)
Simple store for keeping values in an associative array for the current process.
Class to handle multiple HTTP requests.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
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 as
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Allows to change the fields on the form that will be generated $name
this hook is for auditing only $response
returning false will NOT prevent logging $e
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
Interface for configuration instances.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
The most up to date schema for the tables in the database will always be tables sql in the maintenance directory