mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-10 01:08:40 +00:00
246 lines
5.3 KiB
PHP
Executable File
246 lines
5.3 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package phpOMS
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS;
|
|
|
|
\spl_autoload_register('\phpOMS\Autoloader::defaultAutoloader');
|
|
|
|
/**
|
|
* Autoloader class.
|
|
*
|
|
* @package phpOMS
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
final class Autoloader
|
|
{
|
|
/**
|
|
* Use class map before paths
|
|
*
|
|
* @var bool
|
|
* @since 1.0.0
|
|
*/
|
|
public static bool $useClassMap = true;
|
|
|
|
/**
|
|
* Base paths for autoloading
|
|
*
|
|
* @var string[]
|
|
* @since 1.0.0
|
|
*/
|
|
private static $paths = [
|
|
__DIR__ . '/../',
|
|
];
|
|
|
|
/**
|
|
* Base paths for autoloading
|
|
*
|
|
* @var string[]
|
|
* @since 1.0.0
|
|
*/
|
|
private static $classmap = [
|
|
'phpOMS' => __DIR__ . '/../',
|
|
'Modules' => __DIR__ . '/../',
|
|
'Models' => __DIR__ . '/../',
|
|
];
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @since 1.0.0
|
|
* @codeCoverageIgnore
|
|
*/
|
|
private function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Add base path for autoloading
|
|
*
|
|
* @param string $path Absolute base path with / at the end
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function addPath(string $path) : void
|
|
{
|
|
self::$paths[] = \rtrim($path, '/\\') . '/';
|
|
}
|
|
|
|
/**
|
|
* Add base path for autoloading
|
|
*
|
|
* @param string $map Namespace start
|
|
* @param string $path Absolute base path with / at the end
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function addClassMap(string $map, string $path) : void
|
|
{
|
|
self::$classmap[$map] = \rtrim($path, '/\\') . '/';
|
|
}
|
|
|
|
/**
|
|
* Check if a path is already in the path list
|
|
*
|
|
* @param string $path Absolute base path with / at the end
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function inPaths(string $path) : bool
|
|
{
|
|
return \in_array(\rtrim($path, '/\\') . '/', self::$paths);
|
|
}
|
|
|
|
/**
|
|
* Check if a namespace map is already in the classpath list
|
|
*
|
|
* @param string $map Namespace start
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function inClassMap(string $map) : bool
|
|
{
|
|
return isset(self::$classmap[$map]);
|
|
}
|
|
|
|
/**
|
|
* Find include paths for class
|
|
*
|
|
* @param string $class Class name
|
|
*
|
|
* @return array
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function findPaths(string $class) : array
|
|
{
|
|
$class = \ltrim($class, '\\');
|
|
$class = \strtr($class, '_\\', '//');
|
|
|
|
if (self::$useClassMap) {
|
|
$nspacePos = \strpos($class, '/');
|
|
$subclass = $nspacePos === false ? '' : \substr($class, 0, $nspacePos);
|
|
|
|
if (isset(self::$classmap[$subclass])) {
|
|
return [self::$classmap[$subclass] . $class . '.php'];
|
|
}
|
|
}
|
|
|
|
$found = [];
|
|
foreach (self::$paths as $path) {
|
|
if (\is_file($file = $path . $class . '.php')) {
|
|
$found[] = $file;
|
|
}
|
|
}
|
|
|
|
return $found;
|
|
}
|
|
|
|
/**
|
|
* Loading classes by namespace + class name.
|
|
*
|
|
* @param string $class Class name
|
|
*
|
|
* @example Autoloader::defaultAutoloader('\phpOMS\Autoloader') // void
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function defaultAutoloader(string $class) : void
|
|
{
|
|
$class = \ltrim($class, '\\');
|
|
$class = \strtr($class, '_\\', '//');
|
|
|
|
if (self::$useClassMap) {
|
|
$nspacePos = \strpos($class, '/');
|
|
$subclass = $nspacePos === false ? '' : \substr($class, 0, $nspacePos);
|
|
|
|
if (isset(self::$classmap[$subclass])) {
|
|
include_once self::$classmap[$subclass] . $class . '.php';
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
foreach (self::$paths as $path) {
|
|
if (\is_file($file = $path . $class . '.php')) {
|
|
include_once $file;
|
|
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if class exists.
|
|
*
|
|
* @param string $class Class path
|
|
*
|
|
* @example Autoloader::exists('\phpOMS\Autoloader') // true
|
|
*
|
|
* @return bool Returns true if the namespace/class exists, otherwise false
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function exists(string $class) : bool
|
|
{
|
|
$class = \ltrim($class, '\\');
|
|
$class = \strtr($class, '_\\', '//');
|
|
|
|
foreach (self::$paths as $path) {
|
|
if (\is_file($path . $class . '.php')) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Invalidate a already loaded file
|
|
*
|
|
* IMPORTANT: This does not reload an already loaded file, this is not possible.
|
|
*
|
|
* @param string $class Class to invalidate
|
|
*
|
|
* @return bool
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function invalidate(string $class) : bool
|
|
{
|
|
if (!\extension_loaded('zend opcache')
|
|
|| !\opcache_is_script_cached($class)
|
|
|| \opcache_get_status() === false
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
\opcache_invalidate($class);
|
|
\opcache_compile_file($class);
|
|
|
|
return true;
|
|
}
|
|
}
|