* Remove manual query building in search mysql
[lhc/web/wiklou.git] / includes / GlobalFunctions.php
index 2f83b07..d9db140 100644 (file)
@@ -342,43 +342,53 @@ function wfErrorLog( $text, $file ) {
  */
 function wfLogProfilingData() {
        global $wgRequestTime, $wgDebugLogFile, $wgDebugRawPage, $wgRequest;
-       global $wgProfiler, $wgProfileLimit, $wgUser;
+       global $wgProfileLimit, $wgUser;
+
+       $profiler = Profiler::instance();
+
        # Profiling must actually be enabled...
-       if( is_null( $wgProfiler ) ) {
+       if ( $profiler->isStub() ) {
                return;
        }
-       # Get total page request time
+
+       // Get total page request time and only show pages that longer than
+       // $wgProfileLimit time (default is 0)
        $now = wfTime();
        $elapsed = $now - $wgRequestTime;
-       # Only show pages that longer than $wgProfileLimit time (default is 0)
-       if( $elapsed <= $wgProfileLimit ) {
+       if ( $elapsed <= $wgProfileLimit ) {
+               return;
+       }
+
+       $profiler->logData();
+
+       // Check whether this should be logged in the debug file.
+       if ( $wgDebugLogFile == '' || ( $wgRequest->getVal( 'action' ) == 'raw' && !$wgDebugRawPage ) ) {
                return;
        }
-       $prof = wfGetProfilingOutput( $wgRequestTime, $elapsed );
+
        $forward = '';
-       if( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
+       if ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
                $forward = ' forwarded for ' . $_SERVER['HTTP_X_FORWARDED_FOR'];
        }
-       if( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
+       if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
                $forward .= ' client IP ' . $_SERVER['HTTP_CLIENT_IP'];
        }
-       if( !empty( $_SERVER['HTTP_FROM'] ) ) {
+       if ( !empty( $_SERVER['HTTP_FROM'] ) ) {
                $forward .= ' from ' . $_SERVER['HTTP_FROM'];
        }
-       if( $forward ) {
+       if ( $forward ) {
                $forward = "\t(proxied via {$_SERVER['REMOTE_ADDR']}{$forward})";
        }
        // Don't unstub $wgUser at this late stage just for statistics purposes
        // FIXME: We can detect some anons even if it is not loaded. See User::getId()
-       if( $wgUser->mDataLoaded && $wgUser->isAnon() ) {
+       if ( $wgUser->mDataLoaded && $wgUser->isAnon() ) {
                $forward .= ' anon';
        }
        $log = sprintf( "%s\t%04.3f\t%s\n",
                gmdate( 'YmdHis' ), $elapsed,
                urldecode( $wgRequest->getRequestURL() . $forward ) );
-       if ( $wgDebugLogFile != '' && ( $wgRequest->getVal( 'action' ) != 'raw' || $wgDebugRawPage ) ) {
-               wfErrorLog( $log . $prof, $wgDebugLogFile );
-       }
+
+       wfErrorLog( $log . $profiler->getOutput(), $wgDebugLogFile );
 }
 
 /**
@@ -590,8 +600,11 @@ function wfMsgNoDB( $key ) {
 
 /**
  * Get a message from the language file, for the content
+ *
+ * @deprecated in 1.18; use wfMessage()
  */
 function wfMsgNoDBForContent( $key ) {
+       wfDeprecated( __FUNCTION__ );
        global $wgForceUIMsgAsContentMsg;
        $args = func_get_args();
        array_shift( $args );
@@ -629,6 +642,7 @@ function wfMsgReal( $key, $args, $useDB = true, $forContent = false, $transform
  * @param $key String
  */
 function wfMsgWeirdKey( $key ) {
+       wfDeprecated( __FUNCTION__ );
        $source = wfMsgGetKey( $key, false, true, false );
        if ( wfEmptyMsg( $key ) ) {
                return '';
@@ -716,11 +730,10 @@ function wfMsgHtml( $key ) {
  * @return string
  */
 function wfMsgWikiHtml( $key ) {
-       global $wgMessageCache;
        $args = func_get_args();
        array_shift( $args );
        return wfMsgReplaceArgs(
-               $wgMessageCache->parse( wfMsgGetKey( $key, true ), null, /* can't be set to false */ true ),
+               MessageCache::singleton()->parse( wfMsgGetKey( $key, true ), $key, /* can't be set to false */ true )->getText(),
                $args );
 }
 
@@ -743,8 +756,6 @@ function wfMsgWikiHtml( $key ) {
  * Behavior for conflicting options (e.g., parse+parseinline) is undefined.
  */
 function wfMsgExt( $key, $options ) {
-       global $wgMessageCache;
-
        $args = func_get_args();
        array_shift( $args );
        array_shift( $args );
@@ -782,16 +793,17 @@ function wfMsgExt( $key, $options ) {
                $string = wfMsgReplaceArgs( $string, $args );
        }
 
+       $messageCache = MessageCache::singleton();
        if( in_array( 'parse', $options, true ) ) {
-               $string = $wgMessageCache->parse( $string, null, true, !$forContent, $langCodeObj );
+               $string = $messageCache->parse( $string, $key, true, !$forContent, $langCodeObj )->getText();
        } elseif ( in_array( 'parseinline', $options, true ) ) {
-               $string = $wgMessageCache->parse( $string, null, true, !$forContent, $langCodeObj );
+               $string = $messageCache->parse( $string, $key, true, !$forContent, $langCodeObj )->getText();
                $m = array();
                if( preg_match( '/^<p>(.*)\n?<\/p>\n?$/sU', $string, $m ) ) {
                        $string = $m[1];
                }
        } elseif ( in_array( 'parsemag', $options, true ) ) {
-               $string = MessageCache::singleton()->transform( $string,
+               $string = $messageCache->transform( $string,
                                !$forContent, $langCodeObj );
        }
 
@@ -1779,6 +1791,10 @@ function wfSuppressWarnings( $end = false ) {
                }
        } else {
                if ( !$suppressCount ) {
+                       // E_DEPRECATED is undefined in PHP 5.2
+                       if( !defined( 'E_DEPRECATED' ) ){
+                               define( 'E_DEPRECATED', 8192 );
+                       }
                        $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_DEPRECATED ) );
                }
                ++$suppressCount;
@@ -2276,19 +2292,30 @@ function wfIniGetBool( $setting ) {
  *
  * @param $extension String A PHP extension. The file suffix (.so or .dll)
  *                          should be omitted
+ * @param $fileName String Name of the library, if not $extension.suffix
  * @return Bool - Whether or not the extension is loaded
  */
-function wfDl( $extension ) {
+function wfDl( $extension, $fileName = null ) {
        if( extension_loaded( $extension ) ) {
                return true;
        }
 
-       $canDl = ( function_exists( 'dl' ) && is_callable( 'dl' )
+       $canDl = false;
+       $sapi = php_sapi_name();
+       if( version_compare( PHP_VERSION, '5.3.0', '<' ) ||
+               $sapi == 'cli' || $sapi == 'cgi' || $sapi == 'embed' )
+       {
+               $canDl = ( function_exists( 'dl' ) && is_callable( 'dl' )
                && wfIniGetBool( 'enable_dl' ) && !wfIniGetBool( 'safe_mode' ) );
+       }
 
        if( $canDl ) {
+               $fileName = $fileName ? $fileName : $extension;
+               if( wfIsWindows() ) {
+                       $fileName = 'php_' . $fileName;
+               }
                wfSuppressWarnings();
-               dl( $extension . '.' . PHP_SHLIB_SUFFIX );
+               dl( $fileName . '.' . PHP_SHLIB_SUFFIX );
                wfRestoreWarnings();
        }
        return extension_loaded( $extension );
@@ -3140,34 +3167,24 @@ function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
 }
 
 /**
- * Sleep until the worst slave's replication lag is less than or equal to
- * $maxLag, in seconds.  Use this when updating very large numbers of rows, as
+ * Modern version of wfWaitForSlaves(). Instead of looking at replication lag
+ * and waiting for it to go down, this waits for the slaves to catch up to the
+ * master position. Use this when updating very large numbers of rows, as
  * in maintenance scripts, to avoid causing too much lag.  Of course, this is
  * a no-op if there are no slaves.
- *
- * Every time the function has to wait for a slave, it will print a message to
- * that effect (and then sleep for a little while), so it's probably not best
- * to use this outside maintenance scripts in its present form.
- *
- * @param $maxLag Integer
+ * 
+ * @param $maxLag Integer (deprecated)
  * @param $wiki mixed Wiki identifier accepted by wfGetLB
  * @return null
  */
-function wfWaitForSlaves( $maxLag, $wiki = false ) {
-       if( $maxLag ) {
-               $lb = wfGetLB( $wiki );
-               list( $host, $lag ) = $lb->getMaxLag( $wiki );
-               while( $lag > $maxLag ) {
-                       wfSuppressWarnings();
-                       $name = gethostbyaddr( $host );
-                       wfRestoreWarnings();
-                       if( $name !== false ) {
-                               $host = $name;
-                       }
-                       print "Waiting for $host (lagged $lag seconds)...\n";
-                       sleep( $maxLag );
-                       list( $host, $lag ) = $lb->getMaxLag();
-               }
+function wfWaitForSlaves( $maxLag = false, $wiki = false ) {
+       $lb = wfGetLB( $wiki );
+       // bug 27975 - Don't try to wait for slaves if there are none
+       // Prevents permission error when getting master position
+       if ( $lb->getServerCount() > 1 ) {
+               $dbw = $lb->getConnection( DB_MASTER );
+               $pos = $dbw->getMasterPos();
+               $lb->waitForAll( $pos );
        }
 }
 
@@ -3237,6 +3254,8 @@ function wfStripIllegalFilenameChars( $name ) {
  * @param $array Array: The array.
  * @param $insert Array: The array to insert.
  * @param $after Mixed: The key to insert after
+ * @return Array
+ * @since 1.16
  */
 function wfArrayInsertAfter( $array, $insert, $after ) {
        // Find the offset of the element to insert after.