6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
25 * Factory class to create Config objects
32 * Map of config name => callback
35 protected $factoryFunctions = array();
38 * Config objects that have already been created
39 * name => Config object
42 protected $configs = array();
44 public static function getDefaultInstance() {
48 global $wgConfigRegistry;
49 foreach ( $wgConfigRegistry as $name => $callback ) {
50 $self->register( $name, $callback );
57 * Register a new config factory function
58 * Will override if it's already registered
60 * @param callable $callback that takes this ConfigFactory as an argument
61 * @throws InvalidArgumentException if an invalid callback is provided
63 public function register( $name, $callback ) {
64 if ( !is_callable( $callback ) ) {
65 throw new InvalidArgumentException( 'Invalid callback provided' );
67 $this->factoryFunctions
[$name] = $callback;
71 * Create a given Config using the registered callback for $name.
72 * If an object was already created, the same Config object is returned.
73 * @param string $name of the extension/component you want a Config object for
74 * 'main' is used for core
75 * @throws ConfigException if a factory function isn't registered for $name
76 * @throws UnexpectedValueException if the factory function returns a non-Config object
79 public function makeConfig( $name ) {
80 if ( !isset( $this->configs
[$name] ) ) {
81 if ( !isset( $this->factoryFunctions
[$name] ) ) {
82 throw new ConfigException( "No registered builder available for $name." );
84 $conf = call_user_func( $this->factoryFunctions
[$name], $this );
85 if ( $conf instanceof Config
) {
86 $this->configs
[$name] = $conf;
88 throw new UnexpectedValueException( "The builder for $name returned a non-Config object." );
92 return $this->configs
[$name];