1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<?php
namespace MediaWiki\Settings\Config;
use MediaWiki\Config\HashConfig;
use MediaWiki\Config\IterableConfig;
use function array_key_exists;
class ArrayConfigBuilder extends ConfigBuilderBase {
/** @var array */
protected $config = [];
protected function has( string $key ): bool {
return array_key_exists( $key, $this->config );
}
public function get( string $key ) {
return $this->config[$key] ?? null;
}
protected function update( string $key, $value ) {
$this->config[$key] = $value;
}
public function setMulti( array $values, array $mergeStrategies = [] ): ConfigBuilder {
if ( !$mergeStrategies ) {
$this->config = array_merge( $this->config, $values );
return $this;
}
foreach ( $values as $key => $newValue ) {
// Optimization: Inlined logic from set() for performance
if ( array_key_exists( $key, $this->config ) ) {
$mergeStrategy = $mergeStrategies[$key] ?? null;
if ( $mergeStrategy && is_array( $newValue ) ) {
$oldValue = $this->config[$key];
if ( $oldValue && is_array( $oldValue ) ) {
$newValue = $mergeStrategy->merge( $oldValue, $newValue );
}
}
}
$this->config[$key] = $newValue;
}
return $this;
}
/**
* Build the configuration.
*
* @return IterableConfig
*/
public function build(): IterableConfig {
return new HashConfig( $this->config );
}
public function setMultiDefault( $defaults, $mergeStrategies ): ConfigBuilder {
foreach ( $defaults as $key => $defaultValue ) {
// Optimization: Inlined logic from setDefault() for performance
if ( array_key_exists( $key, $this->config ) ) {
$mergeStrategy = $mergeStrategies[$key] ?? null;
if ( $mergeStrategy && $defaultValue && is_array( $defaultValue ) ) {
$customValue = $this->config[$key];
if ( is_array( $customValue ) ) {
$newValue = $mergeStrategy->merge( $defaultValue, $customValue );
$this->config[$key] = $newValue;
}
}
} else {
$this->config[$key] = $defaultValue;
}
}
return $this;
}
}
|