X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Floader%2Fclass_ClassLoader.php;h=eea558055fee071088fdac0eefd59d9f53e3e2a2;hp=d7c3c33d48e6e3b6b1c3e0576398fcb31bf4717c;hb=2b85c64a9fedc1f93ce3495a852113c3c5b651b2;hpb=ac948286448f4e0d4ef71d2dc8daaac53e8c902b diff --git a/inc/loader/class_ClassLoader.php b/inc/loader/class_ClassLoader.php index d7c3c33d..eea55805 100644 --- a/inc/loader/class_ClassLoader.php +++ b/inc/loader/class_ClassLoader.php @@ -2,11 +2,11 @@ /** * This class loads class include files with a specific prefix and suffix * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * 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 @@ -69,19 +69,19 @@ class ClassLoader { private $ignoreList = array(); /** - * Debug this class loader? (true = yes, false = no) + * Debug this class loader? (TRUE = yes, FALSE = no) */ - private $debug = false; + private $debug = FALSE; /** * Whether the file list is cached */ - private $listCached = false; + private $listCached = FALSE; /** * Wethe class content has been cached */ - private $classesCached = false; + private $classesCached = FALSE; /** * Filename for the list cache @@ -98,6 +98,17 @@ class ClassLoader { */ private $total = 0; + /** + * Framework/application paths for classes, etc. + */ + private static $frameworkPaths = array( + 'exceptions', // Exceptions + 'interfaces', // Interfaces + 'main', // General main classes + 'middleware' // The middleware + ); + + /** * The protected constructor. Please use the factory method below, or use * getSelfInstance() for singleton @@ -120,14 +131,14 @@ class ClassLoader { } // END - if // Skip here if already cached - if ($this->listCached === false) { + if ($this->listCached === FALSE) { // Writes the cache file of our list away $cacheContent = serialize($this->classes); file_put_contents($this->listCacheFQFN, $cacheContent); } // END - if // Skip here if already cached - if ($this->classesCached === false) { + if ($this->classesCached === FALSE) { // Generate a full-cache of all classes $cacheContent = ''; foreach ($this->loadedClasses as $fqfn) { @@ -157,6 +168,44 @@ class ClassLoader { return $loaderInstance; } + /** + * Scans for all framework classes, exceptions and interfaces. + * + * @return void + */ + public static function scanFrameworkClasses () { + // Cache loader instance + $loaderInstance = self::getSelfInstance(); + + // Load all classes + foreach (self::$frameworkPaths as $className) { + // Try to load the framework classes + $loaderInstance->scanClassPath('inc/classes/' . $className . '/'); + } // END - foreach + } + + /** + * Scans for application's classes, etc. + * + * @return void + */ + public static function scanApplicationClasses () { + // Get config instance + $cfg = FrameworkConfiguration::getSelfInstance(); + + // Load all classes for the application + foreach (self::$frameworkPaths as $class) { + // Create path name + $path = sprintf('%s/%s/%s', $cfg->getConfigEntry('application_path'), $cfg->getConfigEntry('app_name'), $class); + + // Is the path readable? + if (is_dir($path)) { + // Try to load the application classes + ClassLoader::getSelfInstance()->scanClassPath($path); + } // END - if + } // END - foreach + } + /** * Initializes our loader class * @@ -194,7 +243,7 @@ class ClassLoader { $this->classes = unserialize($cacheContent); // List has been restored from cache! - $this->listCached = true; + $this->listCached = TRUE; } // END - if // Does the class cache exist? @@ -203,7 +252,7 @@ class ClassLoader { require($this->classCacheFQFN); // Mark the class cache as loaded - $this->classesCached = true; + $this->classesCached = TRUE; } // END - if } @@ -243,7 +292,7 @@ class ClassLoader { */ public function scanClassPath ($basePath, array $ignoreList = array() ) { // Is a list has been restored from cache, don't read it again - if ($this->listCached === true) { + if ($this->listCached === TRUE) { // Abort here return; } // END - if @@ -268,8 +317,8 @@ class ClassLoader { */ $basePath2 = realpath($basePath); - // If the basePath is false it is invalid - if ($basePath2 === false) { + // If the basePath is FALSE it is invalid + if ($basePath2 === FALSE) { /* @todo: Do not die here. */ exit(__METHOD__ . ':Cannot read ' . $basePath . ' !'); } else { @@ -279,9 +328,9 @@ class ClassLoader { // Get a new iterator //* DEBUG: */ echo "Base path: {$basePath}
\n"; - $iterator = new RecursiveDirectoryIterator($basePath); - $recursive = new RecursiveIteratorIterator($iterator); - foreach ($recursive as $entry) { + $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($basePath)); + + foreach ($iterator as $entry) { // Get filename from iterator $fileName = $entry->getFileName(); @@ -354,7 +403,7 @@ class ClassLoader { // Developer mode excludes caching (better debugging) if (!defined('DEVELOPER')) { // Reset cache - $this->classesCached = false; + $this->classesCached = FALSE; } // END - if } // END - if }