A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

169 lines
3.3 KiB

6 years ago
<?php
/*
* Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
*/
namespace Phacil\Framework;
/**
* The registration off all objects on this Framework.
*
* @since 0.0.1
*
* @package Phacil\Framework
*/
6 years ago
final class Registry {
/**
* data Objects
* @var array
*/
6 years ago
private $data = array();
/**
* Instances objects
*
* @var array
*/
private $instances = [];
/**
* Original route for childs
* @var string
*/
public $routeOrig;
/**
*
* @var string
*/
public $route;
/**
* AutoInstances Loaded
*
* @var array
*/
static private $autoInstances = [];
/**
* Magic method to return engine instances
*
* @param string $key
* @return mixed
*/
public function __get($key) {
return $this->get($key);
}
/**
* @param string $key
* @return mixed
*/
6 years ago
public function get($key) {
return (isset($this->instances[$key]) ? $this->instances[$key] : $this->engine->checkRegistry($key));
6 years ago
}
/**
* @param string $key
* @param string $value
* @return void
*/
6 years ago
public function set($key, $value) {
$this->instances[$key] = $value;
6 years ago
}
/**
* @param string $key
* @return bool
*/
6 years ago
public function has($key) {
return isset($this->instances[$key]);
6 years ago
}
/**
* UnSet
*
* Unsets registry value by key.
*
* @param string $key
* @return void
*/
public function delete(string $key) {
if (isset($this->instances[$key])) {
unset($this->instances[$key]);
}
}
/**
* Try to obtain an iniciated engine instance
*
* @param string|object|null $class (optional)
* @param array $args (optional)
*
* @return \Phacil\Framework\Registry
* @since 2.0.0
*/
static public function getInstance($class = null, $args = []) {
if(!$class) return \Phacil\Framework\startEngineExacTI::getRegistry();
$registry = \Phacil\Framework\startEngineExacTI::getRegistry();
$return = false;
$classObj = (is_object($class)) ? get_class($class) : $class;
if (isset(self::$autoInstances[($classObj)])) return self::$autoInstances[($classObj)];
foreach ($registry->instances as $key => $value) {
# code...
if(!is_object($value)) continue;
if(get_class($value) == $classObj) {$return = $value; break; }
}
if($return) return $return;
if(is_string($class)) {
$reflector = new ReflectionClass($class);
return self::setAutoInstance($reflector->newInstanceArgs($args));
}
if (is_object($class)) {
return self::getInstance($class);
}
return null;
}
/**
*
* @param object $class
* @return object
* @throws \Phacil\Framework\Exception
* @since 2.0.0
*/
static public function setAutoInstance($class) {
if(!is_object($class)) throw new Exception('Object type is required!');
self::$autoInstances[get_class($class)] = $class;
return $class;
}
/**
*
* @param object $class
* @return object
* @since 2.0.0
* @throws \Phacil\Framework\Exception
*/
static public function getAutoInstance($class) {
if (!is_object($class)) throw new Exception('Object type is required!');
return isset(self::$autoInstances[get_class($class)]) ? self::$autoInstances[get_class($class)] : self::setAutoInstance($class);
}
6 years ago
}