Allow disabling the global classpath in an autoloader

This commit is contained in:
Robin Appelman 2013-05-07 22:24:47 +02:00
parent d1fcb7eb52
commit cac86bb4db
1 changed files with 19 additions and 3 deletions

View File

@ -9,6 +9,8 @@
namespace OC; namespace OC;
class Autoloader { class Autoloader {
private $useGlobalClassPath = true;
private $classPaths = array(); private $classPaths = array();
/** /**
@ -21,6 +23,20 @@ class Autoloader {
$this->classPaths[$class] = $path; $this->classPaths[$class] = $path;
} }
/**
* disable the usage of the global classpath \OC::$CLASSPATH
*/
public function disableGlobalClassPath() {
$this->useGlobalClassPath = false;
}
/**
* enable the usage of the global classpath \OC::$CLASSPATH
*/
public function enableGlobalClassPath() {
$this->useGlobalClassPath = true;
}
/** /**
* Load the specified class * Load the specified class
* *
@ -33,15 +49,15 @@ class Autoloader {
$paths = array(); $paths = array();
if (array_key_exists($class, $this->classPaths)) { if (array_key_exists($class, $this->classPaths)) {
$paths[] = $this->classPaths[$class]; $paths[] = $this->classPaths[$class];
} else if (array_key_exists($class, \OC::$CLASSPATH)) { } else if ($this->useGlobalClassPath and array_key_exists($class, \OC::$CLASSPATH)) {
$paths[] = \OC::$CLASSPATH[$class]; $paths[] = \OC::$CLASSPATH[$class];
/** /**
* @TODO: Remove this when necessary * @TODO: Remove this when necessary
* Remove "apps/" from inclusion path for smooth migration to mutli app dir * Remove "apps/" from inclusion path for smooth migration to mutli app dir
*/ */
if (strpos($path, 'apps/') === 0) { if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) {
\OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG); \OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG);
$path = str_replace('apps/', '', $path); $path = str_replace('apps/', '', \OC::$CLASSPATH[$class]);
} }
} elseif (strpos($class, 'OC_') === 0) { } elseif (strpos($class, 'OC_') === 0) {
$paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); $paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php');