PostgreSQL: Port update-keys.sql to PostgreSQL
[lhc/web/wiklou.git] / includes / libs / ObjectFactory.php
1 <?php
2 /**
3 * @section LICENSE
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 * http://www.gnu.org/copyleft/gpl.html
18 *
19 * @file
20 */
21
22 /**
23 * Construct objects from configuration instructions.
24 *
25 * @author Bryan Davis <bd808@wikimedia.org>
26 * @copyright © 2014 Bryan Davis and Wikimedia Foundation.
27 */
28 class ObjectFactory {
29
30 /**
31 * Instantiate an object based on a specification array.
32 *
33 * The specification array must contain a 'class' key with string value
34 * that specifies the class name to instantiate or a 'factory' key with
35 * a callable (is_callable() === true). It can optionally contain
36 * an 'args' key that provides arguments to pass to the
37 * constructor/callable.
38 *
39 * Object construction using a specification having both 'class' and
40 * 'args' members will call the constructor of the class using
41 * ReflectionClass::newInstanceArgs. The use of ReflectionClass carries
42 * a performance penalty and should not be used to create large numbers of
43 * objects. If this is needed, consider introducing a factory method that
44 * can be called via call_user_func_array() instead.
45 *
46 * Values in the arguments collection which are Closure instances will be
47 * expanded by invoking them with no arguments before passing the
48 * resulting value on to the constructor/callable. This can be used to
49 * pass DatabaseBase instances or other live objects to the
50 * constructor/callable.
51 *
52 * @param array $spec Object specification
53 * @return object
54 * @throws InvalidArgumentException when object specification does not
55 * contain 'class' or 'factory' keys
56 * @throws ReflectionException when 'args' are supplied and 'class'
57 * constructor is non-public or non-existant
58 */
59 public static function getObjectFromSpec( $spec ) {
60 $args = isset( $spec['args'] ) ? $spec['args'] : array();
61
62 $args = array_map( function ( $value ) {
63 if ( is_object( $value ) && $value instanceof Closure ) {
64 // If an argument is a Closure, call it.
65 return $value();
66 } else {
67 return $value;
68 }
69 }, $args );
70
71 if ( isset( $spec['class'] ) ) {
72 $clazz = $spec['class'];
73 if ( !$args ) {
74 $obj = new $clazz();
75 } else {
76 $ref = new ReflectionClass( $clazz );
77 $obj = $ref->newInstanceArgs( $args );
78 }
79 } elseif ( isset( $spec['factory'] ) ) {
80 $obj = call_user_func_array( $spec['factory'], $args );
81 } else {
82 throw new InvalidArgumentException(
83 'Provided specification lacks both factory and class parameters.'
84 );
85 }
86
87 return $obj;
88 }
89 }