]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blobdiff - maintenance/mwdocgen.php
MediaWiki 1.16.0
[autoinstalls/mediawiki.git] / maintenance / mwdocgen.php
index d973342957a6308727d28bdc7d70b72b045e547b..b91922c39c8238ca12376c9b76eb2d0c9fb8242e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Script to easily generate the mediawiki documentation.
+ * Script to easily generate the mediawiki documentation using doxygen.
  *
  * By default it will generate the whole documentation but you will be able to
  * generate just some parts.
  *
  * Then make a selection from the menu
  *
+ * KNOWN BUGS:
+ *
+ * - pass_thru seems to always use buffering (even with ob_implicit_flush()),
+ * that make output slow when doxygen parses language files.
+ * - the menu doesnt work, got disabled at revision 13740. Need to code it.
+ *
+ *
+ * @file
  * @todo document
- * @package MediaWiki
- * @subpackage Maintenance
+ * @ingroup Maintenance
  *
  * @author Ashar Voultoiz <thoane@altern.org>
  * @version first release
 #
 
 if( php_sapi_name() != 'cli' ) {
-       die( "Run me from the command line." );
+       echo 'Run me from the command line.';
+       die( -1 );
 }
 
-/** Phpdoc script with full path */
-#$pdExec       = '/usr/bin/phpdoc';
-$pdExec = 'phpdoc';
+/** Figure out the base directory for MediaWiki location */
+$mwPath = dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR;
+
+/** Global variable: temporary directory */
+$tmpPath = '/tmp/';
 
-/** Figure out the base directory. */
-$here = dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR;
+/** doxygen binary script */
+$doxygenBin = 'doxygen';
+
+/** doxygen configuration template for mediawiki */
+$doxygenTemplate = $mwPath . 'maintenance/Doxyfile';
+
+/** svnstat command, used to get the version of each file */
+$svnstat = $mwPath . 'bin/svnstat';
 
 /** where Phpdoc should output documentation */
-#$pdOutput = '/var/www/mwdoc/';
-$pdOutput = "{$here}docs" . DIRECTORY_SEPARATOR . 'html';
-
-/** Some more Phpdoc settings */
-# This will be used as the default for all files that don't have a package,
-# it's useful to set it to something like 'untagged' to hunt down and fix files
-# that don't have a package name declared.
-$pdOthers = " -dn MediaWiki"; 
-$pdOthers .= ' --title "MediaWiki generated documentation"'; 
-$pdOthers .= ' --output "HTML:Smarty:HandS"'; #,HTML:Smarty:HandS"'; ###### HTML:frames:DOM/earthli
-$pdOthers .= ' --ignore AdminSettings.php,LocalSettings.php,tests/LocalTestSettings.php';
-$pdOthers .= ' --parseprivate on';
-$pdOthers .= ' --sourcecode on';
-
-/** MediaWiki location */
-#$mwPath = '/var/www/mediawiki/';
-$mwPath = "{$here}";
+#$doxyOutput = '/var/www/mwdoc/';
+$doxyOutput = $mwPath . 'docs' . DIRECTORY_SEPARATOR ;
 
 /** MediaWiki subpaths */
 $mwPathI = $mwPath.'includes/';
 $mwPathL = $mwPath.'languages/';
 $mwPathM = $mwPath.'maintenance/';
 $mwPathS = $mwPath.'skins/';
-$mwBaseFiles = $mwPath.'*php ';
-
 
 /** Variable to get user input */
 $input = '';
-/** shell command that will be run */
-$command = '';
+$exclude = '';
 
 #
 # Functions
 #
 
-function readaline( $prompt = '') {
+/**
+ * Read a line from the shell
+ * @param $prompt String
+ */
+function readaline( $prompt = '' ){
        print $prompt;
        $fp = fopen( "php://stdin", "r" );
        $resp = trim( fgets( $fp, 1024 ) );
        fclose( $fp );
        return $resp;
+}
+
+/**
+ * Copied from SpecialVersion::getSvnRevision()
+ * @param $dir String
+ * @return Mixed: string or false
+ */
+function getSvnRevision( $dir ) {
+       // http://svnbook.red-bean.com/nightly/en/svn.developer.insidewc.html
+       $entries = $dir . '/.svn/entries';
+
+       if( !file_exists( $entries ) ) {
+               return false;
+       }
+
+       $content = file( $entries );
+
+       // check if file is xml (subversion release <= 1.3) or not (subversion release = 1.4)
+       if( preg_match( '/^<\?xml/', $content[0] ) ) {
+               // subversion is release <= 1.3
+               if( !function_exists( 'simplexml_load_file' ) ) {
+                       // We could fall back to expat... YUCK
+                       return false;
+               }
+
+               $xml = simplexml_load_file( $entries );
+
+               if( $xml ) {
+                       foreach( $xml->entry as $entry ) {
+                               if( $xml->entry[0]['name'] == '' ) {
+                                       // The directory entry should always have a revision marker.
+                                       if( $entry['revision'] ) {
+                                               return intval( $entry['revision'] );
+                                       }
+                               }
+                       }
+               }
+               return false;
+       } else {
+               // subversion is release 1.4
+               return intval( $content[3] );
        }
+}
+
+/**
+ * Generate a configuration file given user parameters and return the temporary filename.
+ * @param $doxygenTemplate String: full path for the template.
+ * @param $outputDirectory String: directory where the stuff will be output.
+ * @param $stripFromPath String: path that should be stripped out (usually mediawiki base path).
+ * @param $currentVersion String: Version number of the software
+ * @param $svnstat String: path to the svnstat file
+ * @param $input String: Path to analyze.
+ * @param $exclude String: Additionals path regex to exlcude 
+ *                 (LocalSettings.php, AdminSettings.php and .svn directories are always excluded)
+ */
+function generateConfigFile( $doxygenTemplate, $outputDirectory, $stripFromPath, $currentVersion, $svnstat, $input, $exclude ){
+       global $tmpPath;
+
+       $template = file_get_contents( $doxygenTemplate );
+
+       // Replace template placeholders by correct values.     
+       $replacements = array(
+               '{{OUTPUT_DIRECTORY}}' => $outputDirectory,
+               '{{STRIP_FROM_PATH}}'  => $stripFromPath,
+               '{{CURRENT_VERSION}}'  => $currentVersion,
+               '{{SVNSTAT}}'          => $svnstat,
+               '{{INPUT}}'            => $input,
+               '{{EXCLUDE}}'          => $exclude,
+       );
+       $tmpCfg = str_replace( array_keys( $replacements ), array_values( $replacements ), $template );
+       $tmpFileName = $tmpPath . 'mwdocgen'. rand() .'.tmp';
+       file_put_contents( $tmpFileName , $tmpCfg ) or die("Could not write doxygen configuration to file $tmpFileName\n");
+
+       return $tmpFileName;
+}
 
 #
 # Main !
@@ -96,17 +172,23 @@ if( is_array( $argv ) && isset( $argv[1] ) ) {
                        $file = $argv[2];
                }
                break;
+       case '--no-extensions': $input = 6; break;
        }
 }
 
+// TODO : generate a list of paths ))
+
 if( $input === '' ) {
-?>Several documentation possibilities:
- 0 : whole documentation (1 + 2 + 3)
+       echo <<<OPTIONS
+Several documentation possibilities:
+ 0 : whole documentation (1 + 2 + 3 + 4)
  1 : only includes
  2 : only languages
  3 : only maintenance
  4 : only skins
- 5 : only a given file<?php
+ 5 : only a given file
+ 6 : all but the extensions directory
+OPTIONS;
        while ( !is_numeric($input) )
        {
                $input = readaline( "\nEnter your choice [0]:" );
@@ -116,51 +198,50 @@ if( $input === '' ) {
        }
 }
 
-$command = 'phpdoc ';
 switch ($input) {
-case 0:
-       $command .= " -f $mwBaseFiles -d $mwPathI,$mwPathL,$mwPathM,$mwPathS";
-       break;
-case 1:
-       $command .= "-d $mwPathI";
-       break;
-case 2: 
-       $command .= "-d $mwPathL";
-       break;
-case 3:
-       $command .= "-d $mwPathM";
-       break;
-case 4:
-       $command .= "-d $mwPathS";
-       break;
+case 0: $input = $mwPath;  break;
+case 1: $input = $mwPathI; break;
+case 2: $input = $mwPathL; break;
+case 3: $input = $mwPathM; break;
+case 4: $input = $mwPathS; break;
 case 5:
        if( !isset( $file ) ) {
-               $file = readaline("Enter file name $mwPath");
+               $file = readaline( "Enter file name $mwPath" );
        }
-       $command .= ' -f '.$mwPath.$file;
+       $input = $mwPath.$file;
+case 6:
+       $input = $mwPath;
+       $exclude = 'extensions';
+}
+
+$versionNumber = getSvnRevision( $input );
+if( $versionNumber === false ){ #Not using subversion ?
+       $svnstat = ''; # Not really useful if subversion not available
+       $version = 'trunk'; # FIXME
+} else {
+       $version = "trunk (r$versionNumber)";
 }
 
-$command .= " -t $pdOutput ".$pdOthers;
+$generatedConf = generateConfigFile( $doxygenTemplate, $doxyOutput, $mwPath, $version, $svnstat, $input, $exclude );
+$command = $doxygenBin . ' ' . $generatedConf;
 
-?>
+echo <<<TEXT
 ---------------------------------------------------
 Launching the command:
 
-<?php echo $command ?>
+$command
 
 ---------------------------------------------------
-<?php
 
-passthru($command);
+TEXT;
+
+passthru( $command );
 
-?>
+echo <<<TEXT
 ---------------------------------------------------
-Phpdoc execution finished.
+Doxygen execution finished.
 Check above for possible errors.
-<?php
-
-# phpdoc -d ./mediawiki/includes/ ./mediawiki/maintenance/ -f ./mediawiki/*php -t ./mwdoc/ -dn 'MediaWiki' --title 'MediaWiki generated documentation' -o 'HTML:frames:DOM/earthli'
 
-# phpdoc -f ./mediawiki/includes/GlobalFunctions.php -t ./mwdoc/ -dn 'MediaWiki' --title 'MediaWiki generated documentation' -o 'HTML:frames:DOM/earthli'
+You might want to delete the temporary file $generatedConf
 
-?>
+TEXT;