Per my comment on r68760: Make MWfunction class, complete with call_user_func helper...
authorX! <soxred93@users.mediawiki.org>
Sun, 2 Jan 2011 06:48:07 +0000 (06:48 +0000)
committerX! <soxred93@users.mediawiki.org>
Sun, 2 Jan 2011 06:48:07 +0000 (06:48 +0000)
make the callback PHP 5.1 compatible with the Class::Method syntax. Add Unit tests to supplement it.

includes/AutoLoader.php
includes/MWFunction.php [new file with mode: 0644]
includes/WebStart.php
maintenance/doMaintenance.php
tests/phpunit/includes/MWFunctionTest.php [new file with mode: 0644]

index fefa987..2c7bfca 100644 (file)
@@ -166,6 +166,7 @@ $wgAutoloadLocalClasses = array(
        'MessageCache' => 'includes/MessageCache.php',
        'MimeMagic' => 'includes/MimeMagic.php',
        'MWException' => 'includes/Exception.php',
+       'MWFunction' => 'includes/MWFunction.php',
        'MWHttpRequest' => 'includes/HttpFunctions.php',
        'MWMemcached' => 'includes/memcached-client.php',
        'MWNamespace' => 'includes/Namespace.php',
diff --git a/includes/MWFunction.php b/includes/MWFunction.php
new file mode 100644 (file)
index 0000000..3622b69
--- /dev/null
@@ -0,0 +1,52 @@
+<?php
+
+/**
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ */
+
+class MWFunction {
+       
+       protected static function cleanCallback( $callback ) {
+               
+               if( is_string( $callback ) ) {
+                       if ( in_string( '::', $callback ) ) {
+                               //PHP 5.1 cannot use call_user_func( 'Class::Method' )
+                               //It can only handle only call_user_func( array( 'Class', 'Method' ) )
+                               $callback = explode( '::', $callback, 2);
+                       }
+               }
+               
+               return $callback;
+       }
+       
+       public static function call( $callback ) {
+               $callback = self::cleanCallback( $callback );
+               
+               $args = func_get_args();
+               
+               return call_user_func_array( 'call_user_func', $args );
+               
+       }
+       
+       public static function callArray( $callback, $params ) {
+       
+               $callback = self::cleanCallback( $callback );
+               return call_user_func_array( $callback, $params );
+               
+       }
+       
+}
index fede558..770e81f 100644 (file)
@@ -96,12 +96,8 @@ require_once( "$IP/includes/DefaultSettings.php" );
 
 if ( defined( 'MW_CONFIG_CALLBACK' ) ) {
        # Use a callback function to configure MediaWiki
-       $callback = MW_CONFIG_CALLBACK;
-       # PHP 5.1 doesn't support "class::method" for call_user_func, so split it
-       if ( strpos( $callback, '::' ) !== false ) {
-               $callback = explode( '::', $callback, 2);
-       }
-       call_user_func( $callback );
+       MWFunction::call( MW_CONFIG_CALLBACK );
+       
 } else {
        if ( !defined('MW_CONFIG_FILE') )
                define('MW_CONFIG_FILE', "$IP/LocalSettings.php");
index 292604a..59f5042 100644 (file)
@@ -65,12 +65,7 @@ require_once( "$IP/includes/DefaultSettings.php" );
 
 if ( defined( 'MW_CONFIG_CALLBACK' ) ) {
        # Use a callback function to configure MediaWiki
-       $callback = MW_CONFIG_CALLBACK;
-       # PHP 5.1 doesn't support "class::method" for call_user_func, so split it
-       if ( strpos( $callback, '::' ) !== false ) {
-               $callback = explode( '::', $callback, 2 );
-       }
-       call_user_func( $callback );
+       MWFunction::call( MW_CONFIG_CALLBACK );
 } elseif ( file_exists( "$IP/wmf-config/wikimedia-mode" ) ) {
        // Load settings, using wikimedia-mode if needed
        // Fixme: replace this hack with general farm-friendly code
diff --git a/tests/phpunit/includes/MWFunctionTest.php b/tests/phpunit/includes/MWFunctionTest.php
new file mode 100644 (file)
index 0000000..19eae81
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+class MWFunctionTest extends MediaWikiTestCase {
+       
+       function testCallUserFuncWorkarounds() {
+               
+               $this->assertEquals( 
+                       MWFunction::call( 'MWFunctionTest::someMethod' ), 
+                       call_user_func( array( 'MWFunctionTest', 'someMethod' ) )
+               );
+               $this->assertEquals( 
+                       MWFunction::call( 'MWFunctionTest::someMethod', 'foo', 'bar', 'baz' ), 
+                       call_user_func( array( 'MWFunctionTest', 'someMethod' ), 'foo', 'bar', 'baz' )
+               );
+               
+               
+               
+               $this->assertEquals( 
+                       MWFunction::callArray( 'MWFunctionTest::someMethod', array() ), 
+                       call_user_func_array( array( 'MWFunctionTest', 'someMethod' ), array() )
+               );
+               $this->assertEquals( 
+                       MWFunction::callArray( 'MWFunctionTest::someMethod', array( 'foo', 'bar', 'baz' ) ), 
+                       call_user_func_array( array( 'MWFunctionTest', 'someMethod' ), array( 'foo', 'bar', 'baz' ) )
+               );
+               
+       }
+       
+       public static function someMethod() {
+               return func_get_args();
+       }
+       
+}
+