2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
2008-01-09 05:18:36 +01:00
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage core
|
2008-02-25 02:06:39 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* Name of the manifest file
|
2008-02-25 02:06:39 +01:00
|
|
|
*/
|
|
|
|
define("MANIFEST_FILE", TEMP_FOLDER . "/manifest" . str_replace(array("/",":", "\\"),"_", $_SERVER['SCRIPT_FILENAME']));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ManifestBuilder class generates the manifest file and keeps it fresh.
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* The manifest file is a PHP include that contains global variables that
|
|
|
|
* represent the collected contents of the application:
|
|
|
|
* - all classes ({@link __autoload()})
|
|
|
|
* - all templates ({@link SSViewer})
|
|
|
|
* - all _config.php files
|
|
|
|
*
|
|
|
|
* Traversing the filesystem to collect this information on everypage.
|
|
|
|
* This information is cached so that it need not be regenerated on every
|
|
|
|
* pageview.
|
|
|
|
*
|
|
|
|
* {@link ManifestBuilder::compileManifest()} is called by {@link main.php}
|
|
|
|
* whenever {@link ManifestBuilder::staleManifest()} returns true.
|
|
|
|
*
|
|
|
|
* @see main.php, __autoload(), SSViewer, Requirements::themedCSS()
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage core
|
2007-09-15 23:29:52 +02:00
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
class ManifestBuilder {
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $restrict_to_modules = array();
|
2008-02-25 03:10:37 +01:00
|
|
|
static $extendsArray = array();
|
|
|
|
static $classArray = array();
|
|
|
|
static $implementsArray = array();
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-09-15 01:03:29 +02:00
|
|
|
/**
|
|
|
|
* @var array $ignore_files Full filenames (without directory-path) which
|
|
|
|
* should be ignored by the manifest.
|
|
|
|
*/
|
|
|
|
public static $ignore_files = array(
|
|
|
|
'main.php',
|
|
|
|
'cli-script.php',
|
|
|
|
'install.php',
|
|
|
|
'index.php',
|
|
|
|
'check-php.php',
|
|
|
|
'rewritetest.php'
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array $ignore_folders Foldernames (without path) which
|
|
|
|
* should be ignored by the manifest.
|
|
|
|
*/
|
|
|
|
public static $ignore_folders = array(
|
2008-02-25 03:10:37 +01:00
|
|
|
'mysql',
|
|
|
|
'assets',
|
|
|
|
'shortstat',
|
2007-10-02 06:58:26 +02:00
|
|
|
'HTML',
|
2007-09-15 01:03:29 +02:00
|
|
|
);
|
2008-03-26 10:23:51 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Returns true if the manifest file should be regenerated
|
2007-09-15 23:29:52 +02:00
|
|
|
*
|
|
|
|
* @return bool Returns TRUE if the manifest file should be regenerated,
|
|
|
|
* otherwise FALSE.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function staleManifest() {
|
2007-09-15 23:29:52 +02:00
|
|
|
/*if(Director::isDev() || Director::isTest())
|
|
|
|
$lastEdited = Filesystem::folderModTime(".", array('ss','php'));
|
|
|
|
else*/
|
|
|
|
$lastEdited = filemtime("../");
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
return !file_exists(MANIFEST_FILE)
|
|
|
|
|| (filemtime(MANIFEST_FILE) < $lastEdited)
|
2007-07-19 12:40:28 +02:00
|
|
|
|| (filemtime(MANIFEST_FILE) < time() - 3600)
|
|
|
|
|| isset($_GET['buildmanifest']) || isset($_GET['flush']);
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-15 23:29:52 +02:00
|
|
|
* Generates a new manifest file and saves it to {@link MANIFEST_FILE}
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function compileManifest() {
|
|
|
|
// Config manifest
|
2007-09-15 23:29:52 +02:00
|
|
|
$baseDir = dirname($_SERVER['SCRIPT_FILENAME']) . "/..";
|
|
|
|
$baseDir = ereg_replace("/[^/]+/\\.\\.", "", $baseDir);
|
2008-03-26 10:23:51 +01:00
|
|
|
|
|
|
|
$manifest = self::generate_php_file(self::get_manifest_info($baseDir));
|
|
|
|
|
|
|
|
if($fh = fopen(MANIFEST_FILE, "w")) {
|
|
|
|
fwrite($fh, $manifest);
|
|
|
|
fclose($fh);
|
|
|
|
} else {
|
|
|
|
die("Cannot write manifest file! Check permissions of " .
|
|
|
|
MANIFEST_FILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Turn an array produced by get_manifest_info() into the content of the manifest PHP include
|
|
|
|
*/
|
|
|
|
static function generate_php_file($manifestInfo) {
|
|
|
|
$output = "<?php\n";
|
|
|
|
|
|
|
|
foreach($manifestInfo['globals'] as $globalName => $globalVal) {
|
|
|
|
$output .= "\$$globalName = " . var_export($globalVal, true) . ";\n\n";
|
|
|
|
}
|
|
|
|
foreach($manifestInfo['require_once'] as $requireItem) {
|
|
|
|
$output .= "require_once(\"$requireItem\");\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an array containing information for the manifest
|
|
|
|
*/
|
|
|
|
static function get_manifest_info($baseDir) {
|
2007-09-15 23:29:52 +02:00
|
|
|
// locate and include the exclude files
|
|
|
|
$topLevel = scandir($baseDir);
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($topLevel as $file) {
|
2008-02-25 03:10:37 +01:00
|
|
|
if($file[0] == '.') continue
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$fullPath = $baseDir . '/' . $file;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
if(@is_dir($fullPath . '/') && file_exists($fullPath . '/_exclude.php'))
|
2007-07-19 12:40:28 +02:00
|
|
|
require_once($fullPath . '/_exclude.php');
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Class manifest
|
2007-09-15 23:29:52 +02:00
|
|
|
$classManifest = array();
|
|
|
|
if(is_array(self::$restrict_to_modules) && count(self::$restrict_to_modules)) {
|
|
|
|
// $restrict_to_modules is set, so we include only those specified
|
|
|
|
// modules
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach(self::$restrict_to_modules as $module)
|
2007-09-15 23:29:52 +02:00
|
|
|
ManifestBuilder::getClassManifest($baseDir . '/' . $module,
|
|
|
|
$classManifest);
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
2007-09-15 23:29:52 +02:00
|
|
|
// Include all directories which have an _config.php file but don't
|
|
|
|
// have an _manifest_exclude file
|
2007-07-19 12:40:28 +02:00
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
foreach($topLevel as $filename) {
|
2008-02-25 03:10:37 +01:00
|
|
|
if($filename[0] == '.') continue;
|
|
|
|
if(@is_dir("$baseDir/$filename") &&
|
|
|
|
file_exists("$baseDir/$filename/_config.php") &&
|
|
|
|
!file_exists("$baseDir/$filename/_manifest_exclude")) {
|
2007-09-15 23:29:52 +02:00
|
|
|
ManifestBuilder::getClassManifest("$baseDir/$filename",
|
|
|
|
$classManifest);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2008-03-26 10:23:51 +01:00
|
|
|
$manifestInfo["globals"]["_CLASS_MANIFEST"] = $classManifest;
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
// Load the manifest in, so that the autoloader works
|
|
|
|
global $_CLASS_MANIFEST;
|
|
|
|
$_CLASS_MANIFEST = $classManifest;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// _config.php manifest
|
|
|
|
global $databaseConfig;
|
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
foreach($topLevel as $filename) {
|
2008-02-25 03:10:37 +01:00
|
|
|
if($filename[0] == '.') continue;
|
|
|
|
if(@is_dir("$baseDir/$filename/") &&
|
|
|
|
file_exists("$baseDir/$filename/_config.php") &&
|
2007-09-15 23:29:52 +02:00
|
|
|
!file_exists("$baseDir/$filename/_manifest_exclude")) {
|
2008-03-26 10:23:51 +01:00
|
|
|
$manifestInfo["require_once"][] = "$baseDir/$filename/_config.php";
|
2007-09-15 23:29:52 +02:00
|
|
|
// Include this so that we're set up for connecting to the database
|
|
|
|
// in the rest of the manifest builder
|
2008-04-07 06:42:35 +02:00
|
|
|
require("$baseDir/$filename/_config.php");
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
if(!project())
|
|
|
|
user_error("\$project isn't set", E_USER_WARNING);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
// Template & CSS manifest
|
|
|
|
$templateManifest = array();
|
|
|
|
$cssManifest = array();
|
|
|
|
|
|
|
|
// Only include directories if they have an _config.php file
|
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
foreach($topLevel as $filename) {
|
2008-02-25 03:10:37 +01:00
|
|
|
if($filename[0] == '.') continue;
|
|
|
|
if($filename != 'themes' && @is_dir("$baseDir/$filename") && file_exists("$baseDir/$filename/_config.php")) {
|
2007-07-19 12:40:28 +02:00
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, $filename, $templateManifest, $cssManifest);
|
|
|
|
}
|
|
|
|
}
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Get themes
|
|
|
|
if(file_exists("$baseDir/themes")) {
|
|
|
|
$themeDirs = scandir("$baseDir/themes");
|
|
|
|
foreach($themeDirs as $themeDir) {
|
|
|
|
if(substr($themeDir,0,1) == '.') continue;
|
|
|
|
// The theme something_forum is understood as being a part of the theme something
|
|
|
|
$themeName = strtok($themeDir, '_');
|
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, "themes/$themeDir", $templateManifest, $cssManifest, $themeName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that any custom templates get favoured
|
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, project(), $templateManifest, $cssManifest);
|
|
|
|
|
2008-03-26 10:23:51 +01:00
|
|
|
$manifestInfo["globals"]["_TEMPLATE_MANIFEST"] = $templateManifest;
|
|
|
|
$manifestInfo["globals"]["_CSS_MANIFEST"] = $cssManifest;
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
DB::connect($databaseConfig);
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-10-03 02:10:03 +02:00
|
|
|
// Database manifest
|
|
|
|
$allClasses = ManifestBuilder::allClasses($classManifest);
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2008-03-26 10:23:51 +01:00
|
|
|
$manifestInfo["globals"]["_ALL_CLASSES"] = $allClasses;
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-10-03 02:10:03 +02:00
|
|
|
global $_ALL_CLASSES;
|
|
|
|
$_ALL_CLASSES = $allClasses;
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-03-26 10:23:51 +01:00
|
|
|
return $manifestInfo;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-15 23:29:52 +02:00
|
|
|
* Generates the class manifest - a list of all the PHP files in the
|
|
|
|
* application
|
|
|
|
*
|
|
|
|
* @param string $folder The folder to traverse (recursively)
|
2008-02-25 03:10:37 +01:00
|
|
|
* @param array $classMap The already built class map
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
private static function getClassManifest($folder, &$classMap) {
|
|
|
|
$items = scandir($folder);
|
|
|
|
if($items) foreach($items as $item) {
|
2007-09-15 23:29:52 +02:00
|
|
|
// Skip some specific PHP files
|
2007-09-15 01:03:29 +02:00
|
|
|
if(in_array($item, self::$ignore_files)) continue;
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-09-15 01:03:29 +02:00
|
|
|
// ignore hidden files and folders
|
2007-07-19 12:40:28 +02:00
|
|
|
if(substr($item,0,1) == '.') continue;
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-09-15 01:03:29 +02:00
|
|
|
// ignore files without php-extension
|
2008-02-25 03:10:37 +01:00
|
|
|
if(substr($item,-4) != '.php' && !@is_dir("$folder/$item")) continue;
|
|
|
|
|
2007-09-15 01:03:29 +02:00
|
|
|
// ignore files and folders with underscore-prefix
|
|
|
|
if(substr($item,0,1) == '_') continue;
|
2008-02-25 03:10:37 +01:00
|
|
|
|
|
|
|
// ignore certain directories
|
|
|
|
if(@is_dir("$folder/$item") && in_array($item, self::$ignore_folders)) continue;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
// ignore directories with _manifest_exlude file
|
2008-02-25 03:10:37 +01:00
|
|
|
if(@is_dir("$folder/$item") && file_exists("$folder/$item/_manifest_exclude")) continue;
|
|
|
|
|
2007-09-15 22:06:42 +02:00
|
|
|
// i18n: ignore language files (loaded on demand)
|
2008-02-25 03:10:37 +01:00
|
|
|
if($item == 'lang' && @is_dir("$folder/$item") && ereg_replace("/[^/]+/\\.\\.","",$folder.'/..') == Director::baseFolder()) continue;
|
|
|
|
|
|
|
|
if(@is_dir("$folder/$item")) {
|
|
|
|
// recurse into directories (if not in $ignore_folders)
|
2007-09-15 01:03:29 +02:00
|
|
|
ManifestBuilder::getClassManifest("$folder/$item", $classMap);
|
|
|
|
} else {
|
|
|
|
// include item in the manifest
|
2007-07-19 12:40:28 +02:00
|
|
|
$itemCode = substr($item,0,-4);
|
2007-09-15 01:03:29 +02:00
|
|
|
// if $itemCode is already in manifest, check if the two files do really contain the same class
|
|
|
|
if($classMap && array_key_exists($itemCode, $classMap)) {
|
|
|
|
$regex = '/class\s' . $itemCode .'/';
|
|
|
|
if(
|
2008-02-25 03:10:37 +01:00
|
|
|
preg_match($regex, file_get_contents("$folder/$item"))
|
2007-09-15 01:03:29 +02:00
|
|
|
&& preg_match($regex, file_get_contents($classMap[$itemCode]))
|
|
|
|
) {
|
2008-02-25 03:10:37 +01:00
|
|
|
user_error("Warning: there are two '$itemCode' files both containing the same class: '$folder/$item' and '{$classMap[$itemCode]}'.
|
2007-09-15 01:03:29 +02:00
|
|
|
This might mean that the wrong code is being used.", E_USER_WARNING);
|
|
|
|
} else {
|
2008-02-25 03:10:37 +01:00
|
|
|
user_error("Warning: there are two '$itemCode' files with the same filename: '$folder/$item' and '{$classMap[$itemCode]}'.
|
2007-09-15 03:55:55 +02:00
|
|
|
This might mean that the wrong code is being used.", E_USER_NOTICE);
|
2007-09-15 01:03:29 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$classMap[$itemCode] = "$folder/$item";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-15 23:29:52 +02:00
|
|
|
* Generates the template manifest - a list of all the .SS files in the
|
|
|
|
* application
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
private static function getTemplateManifest($baseDir, $folder, &$templateManifest, &$cssManifest, $themeName = null) {
|
|
|
|
$items = scandir("$baseDir/$folder");
|
|
|
|
if($items) foreach($items as $item) {
|
|
|
|
if(substr($item,0,1) == '.') continue;
|
|
|
|
if(substr($item,-3) == '.ss') {
|
|
|
|
$templateName = substr($item, 0, -3);
|
|
|
|
$templateType = substr($folder,strrpos($folder,'/')+1);
|
|
|
|
if($templateType == "templates") $templateType = "main";
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($themeName) {
|
2008-02-25 03:10:37 +01:00
|
|
|
$templateManifest[$templateName]['themes'][$themeName][$templateType] = "$baseDir/$folder/$item";
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
2008-02-25 03:10:37 +01:00
|
|
|
$templateManifest[$templateName][$templateType] = "$baseDir/$folder/$item";
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if(substr($item,-4) == '.css') {
|
|
|
|
$cssName = substr($item, 0, -4);
|
2007-07-20 01:15:05 +02:00
|
|
|
// Debug::message($item);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
if($themeName) {
|
2008-02-25 03:10:37 +01:00
|
|
|
$cssManifest[$cssName]['themes'][$themeName] = "$folder/$item";
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
2008-02-25 03:10:37 +01:00
|
|
|
$cssManifest[$cssName]['unthemed'] = "$folder/$item";
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
} else if(@is_dir("$baseDir/$folder/$item")) {
|
2007-07-19 12:40:28 +02:00
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, "$folder/$item", $templateManifest, $cssManifest, $themeName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include everything, so that actually *all* classes are available and
|
|
|
|
* build a map of classes and their subclasses and the information if
|
|
|
|
* the class has a database table
|
|
|
|
*
|
|
|
|
* @return array Returns an array that holds all class relevant
|
|
|
|
* information.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
private static function allClasses($classManifest) {
|
2008-03-26 10:23:51 +01:00
|
|
|
self::$classArray = array();
|
|
|
|
self::$extendsArray = array();
|
|
|
|
self::$implementsArray = array();
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Include everything, so we actually have *all* classes
|
|
|
|
foreach($classManifest as $file) {
|
|
|
|
$b = basename($file);
|
2007-09-15 23:29:52 +02:00
|
|
|
if($b != 'cli-script.php' && $b != 'main.php')
|
2008-02-25 03:10:37 +01:00
|
|
|
self::parse_file($file);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2008-02-25 03:10:37 +01:00
|
|
|
|
|
|
|
$tables = DB::isActive() ? DB::getConn()->tableList() : array();
|
|
|
|
|
|
|
|
$allClasses["parents"] = self::find_parents();
|
|
|
|
$allClasses["children"] = self::find_children();
|
|
|
|
$allClasses["implementors"] = self::$implementsArray;
|
|
|
|
|
|
|
|
foreach(self::$classArray as $class => $info) {
|
|
|
|
$allClasses['exists'][$class] = $class;
|
|
|
|
if(isset($tables[strtolower($class)])) $allClasses['hastable'][$class] = $class;
|
2007-08-20 01:47:49 +02:00
|
|
|
}
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Build a map of classes and their subclasses
|
|
|
|
$_classes = get_declared_classes();
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($_classes as $class) {
|
|
|
|
$allClasses['exists'][$class] = $class;
|
2008-02-25 03:10:37 +01:00
|
|
|
if(isset($tables[strtolower($class)])) $allClasses['hastable'][$class] = $class;
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($_classes as $subclass) {
|
2008-02-25 03:10:37 +01:00
|
|
|
if(is_subclass_of($class, $subclass)) $allClasses['parents'][$class][$subclass] = $subclass;
|
|
|
|
if(is_subclass_of($subclass, $class)) $allClasses['children'][$class][$subclass] = $subclass;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2008-03-26 10:23:51 +01:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return $allClasses;
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
|
|
|
* Parses a php file and adds any class or interface information into self::$classArray
|
|
|
|
*
|
|
|
|
* @param string $filename
|
|
|
|
*/
|
|
|
|
private static function parse_file($filename) {
|
|
|
|
$file = file_get_contents($filename);
|
|
|
|
|
|
|
|
$implements = "";
|
|
|
|
$extends = "";
|
|
|
|
$class="";
|
|
|
|
|
|
|
|
if(!$file) die("Couldn't open $filename<br />");
|
|
|
|
|
2008-04-07 06:42:35 +02:00
|
|
|
// Remove comments from $file so that we don't make use of a class-def inside a comment
|
|
|
|
$file = preg_replace('/\/\/.*([\n\r])/','$1', $file);
|
|
|
|
$file = preg_replace('/\/\*.*\*\//Us','', $file);
|
|
|
|
|
|
|
|
// Remove strings from $file so that we don't make use of a class-def inside a strin
|
|
|
|
$file = str_replace(array("\\'",'\\"'), "{! ESCAPED QUOTE !}", $file);
|
|
|
|
$file = preg_replace("/'[^']*'/s",'', $file);
|
|
|
|
$file = preg_replace('/"[^"]*"/s','', $file);
|
|
|
|
|
|
|
|
// Remove heredoc strings from $file so that we don't make use of a class-def inside a strin
|
|
|
|
if(preg_match_all('/<<<(.*)/', $file, $heredocs)) {
|
|
|
|
foreach($heredocs[1] as $code) {
|
|
|
|
$file = preg_replace('/<<<' . $code . '\n.*\n' . $code . '[\n;]/s', '', $file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
$classes = array();
|
|
|
|
$size = preg_match_all('/class (.*)[ \n]*{/m', $file, $classes);
|
|
|
|
|
|
|
|
for($i=0; $i < $size; $i++) {
|
|
|
|
//we have a class
|
|
|
|
$args = split("implements", $classes[1][$i]);
|
|
|
|
$implements = isset($args[1]) ? $args[1] : null;
|
|
|
|
|
2008-03-12 10:34:27 +01:00
|
|
|
$interfaces = explode(",", trim($implements));
|
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
$args = split("extends", $args[0]);
|
|
|
|
$extends = trim(isset($args[1]) ? $args[1] : null);
|
|
|
|
$class = trim($args[0]);
|
2008-03-12 10:34:27 +01:00
|
|
|
if($extends) self::$extendsArray[trim($extends)][$class] = $class;
|
2008-02-25 03:10:37 +01:00
|
|
|
|
|
|
|
foreach($interfaces as $interface) {
|
2008-03-12 10:34:27 +01:00
|
|
|
self::$implementsArray[trim($interface)][$class] = $class;
|
2008-02-25 03:10:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
self::$classArray[$class] = array(
|
|
|
|
"interfaces" => $interfaces,
|
|
|
|
"extends" => $extends,
|
|
|
|
"file" => $filename
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$interfaces = array();
|
|
|
|
$size = preg_match_all('/interface (.*){/', $file, $interfaces);
|
|
|
|
|
|
|
|
for($i=0;$i<$size;$i++) {
|
|
|
|
$class = trim($interfaces[1][$i]);
|
|
|
|
self::$classArray[$class] = array(
|
|
|
|
"interfaces"=>array(),
|
|
|
|
"extends" => "",
|
|
|
|
"isinterface"=>true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
/**
|
2008-02-25 03:10:37 +01:00
|
|
|
* Moves through self::$classArray and creates an array containing parent data
|
|
|
|
*
|
|
|
|
* @return array
|
2007-09-15 23:29:52 +02:00
|
|
|
*/
|
2008-02-25 03:10:37 +01:00
|
|
|
private static function find_parents() {
|
|
|
|
$parentArray = array();
|
|
|
|
foreach(self::$classArray as $class => $info) {
|
|
|
|
$extendArray = array();
|
|
|
|
|
|
|
|
$parent = $info["extends"];
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
while($parent) {
|
|
|
|
$extendArray[$parent] = $parent;
|
|
|
|
$parent = isset(self::$classArray[$parent]["extends"]) ? self::$classArray[$parent]["extends"] : null;
|
|
|
|
}
|
|
|
|
$parentArray[$class] = array_reverse($extendArray);
|
|
|
|
}
|
|
|
|
return $parentArray;
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
|
|
|
* Iterates through self::$classArray and returns an array with any descendant data
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private static function find_children() {
|
|
|
|
$childrenArray = array();
|
|
|
|
foreach(self::$extendsArray as $class => $children) {
|
|
|
|
$allChildren = $children;
|
|
|
|
foreach($children as $childName) {
|
|
|
|
$allChildren = array_merge($allChildren, self::up_children($childName));
|
|
|
|
}
|
|
|
|
$childrenArray[$class] = $allChildren;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2008-02-25 03:10:37 +01:00
|
|
|
return $childrenArray;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to find all children of give class
|
|
|
|
*
|
|
|
|
* @param string $class
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private static function get_children($class) {
|
|
|
|
return isset(self::$extendsArray[$class]) ? self::$extendsArray[$class] : array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a flat array with all children of a given class
|
|
|
|
*
|
|
|
|
* @param string $class
|
|
|
|
* @param array $results
|
|
|
|
*/
|
|
|
|
function up_children($class) {
|
|
|
|
$children = self::get_Children($class);
|
|
|
|
$results = $children;
|
|
|
|
foreach($children as $className) {
|
|
|
|
$results = array_merge($results, self::up_children($className));
|
|
|
|
}
|
|
|
|
return $results;;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-08-15 04:50:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the active table list in the class info in the manifest, but leaves everything else as-is.
|
|
|
|
* Much quicker to run than compileManifest :-)
|
|
|
|
*/
|
|
|
|
static function update_db_tables() {
|
|
|
|
global $_ALL_CLASSES;
|
|
|
|
$_ALL_CLASSES['hastable'] = array();
|
|
|
|
|
|
|
|
$tables = DB::getConn()->tableList();
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-08-15 04:50:39 +02:00
|
|
|
// We need to iterate through the full class lists, because the table names come out in lowercase
|
|
|
|
foreach($_ALL_CLASSES['exists'] as $class) {
|
|
|
|
if(isset($tables[strtolower($class)])) $_ALL_CLASSES['hastable'][$class] = $class;
|
|
|
|
}
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-08-15 04:50:39 +02:00
|
|
|
self::write_manifest();
|
|
|
|
}
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2007-08-15 04:50:39 +02:00
|
|
|
/**
|
|
|
|
* Write the manifest file, containing the updated values in the applicable globals
|
|
|
|
*/
|
|
|
|
static function write_manifest() {
|
|
|
|
global $_CLASS_MANIFEST, $_TEMPLATE_MANIFEST, $_CSS_MANIFEST, $_ALL_CLASSES;
|
|
|
|
|
|
|
|
$manifest = "\$_CLASS_MANIFEST = " . var_export($_CLASS_MANIFEST, true) . ";\n";
|
|
|
|
|
|
|
|
// Config manifest
|
2008-02-25 03:10:37 +01:00
|
|
|
$baseDir = dirname($_SERVER['SCRIPT_FILENAME']) . "/..";
|
2007-08-15 04:50:39 +02:00
|
|
|
$baseDir = ereg_replace("/[^/]+/\\.\\.","",$baseDir);
|
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
|
|
|
|
foreach($topLevel as $filename) {
|
2008-02-25 03:10:37 +01:00
|
|
|
if($filename[0] == '.') continue;
|
|
|
|
if(@is_dir("$baseDir/$filename/") && file_exists("$baseDir/$filename/_config.php")) {
|
2007-08-15 04:50:39 +02:00
|
|
|
$manifest .= "require_once(\"$baseDir/$filename/_config.php\");\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$manifest .= "\$_TEMPLATE_MANIFEST = " . var_export($_TEMPLATE_MANIFEST, true) . ";\n";
|
|
|
|
$manifest .= "\$_CSS_MANIFEST = " . var_export($_CSS_MANIFEST, true) . ";\n";
|
|
|
|
$manifest .= "\$_ALL_CLASSES = " . var_export($_ALL_CLASSES, true) . ";\n";
|
|
|
|
$manifest = "<?php\n$manifest\n?>";
|
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
if($fh = fopen(MANIFEST_FILE,"w")) {
|
2007-08-15 04:50:39 +02:00
|
|
|
fwrite($fh, $manifest);
|
|
|
|
fclose($fh);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
die("Cannot write manifest file! Check permissions of " . MANIFEST_FILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2008-04-07 06:42:35 +02:00
|
|
|
?>
|