1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158:
<?php
namespace VSP\Core;
defined( 'ABSPATH' ) || exit;
use ReflectionClass;
use ReflectionException;
use ReflectionMethod;
use VSP\Framework;
abstract class Instance_Handler {
private static $_instances = array();
protected $instances = array();
public static function instance() {
$class = static::class;
if ( ! isset( self::$_instances[ $class ] ) ) {
try {
$refl = new ReflectionClass( $class );
self::$_instances[ $class ] = $refl->newInstanceArgs( func_get_args() );
} catch ( ReflectionException $exception ) {
}
}
return isset( self::$_instances[ $class ] ) ? self::$_instances[ $class ] : false;
}
protected function get_instance( $key ) {
if ( isset( self::$_instances[ $key ] ) ) {
return self::$_instances[ $key ];
}
return ( isset( $this->instances[ $key ] ) ) ? $this->instances[ $key ] : false;
}
protected function set_instance( $key, $instance ) {
$this->instances[ $key ] = $instance;
}
private function get_framework_key() {
if ( $this instanceof Framework ) {
return static::class;
}
if ( property_exists( $this, 'plugin_class' ) && ! empty( $this->plugin_class ) ) {
return ( $this->plugin_class instanceof Framework ) ? get_class( $this->plugin_class ) : $this->plugin_class;
}
return false;
}
private function generate_instance( $class, $arguments ) {
$refl = new ReflectionClass( $class );
if ( $refl->isSubclassOf( '\VSP\Base' ) ) {
$instance = $refl->newInstanceWithoutConstructor();
$plugin_class = $refl->getProperty( 'plugin_class' );
$plugin_class->setAccessible( 'public' );
$plugin_class->setValue( $instance, $this->get_framework_key() );
$plugin_class->setAccessible( 'protected' );
$constructor = $refl->getConstructor();
if ( $constructor instanceof ReflectionMethod && $constructor->isConstructor() ) {
$constructor->invokeArgs( $instance, $arguments );
}
return $instance;
}
return $refl->newInstanceArgs( $arguments );
}
public function _instance( $class, ...$arguments ) {
if ( $this->get_instance( $class ) === false ) {
try {
$ins = $this->generate_instance( $class, $arguments );
$this->set_instance( $class, $ins );
return $ins;
} catch ( ReflectionException $exception ) {
}
}
return $this->get_instance( $class );
}
public function create( $class, $id = '', ...$arguments ) {
$id = ( empty( $id ) ) ? $class : $id;
if ( $this->get_instance( $id ) === false ) {
try {
$ins = $this->generate_instance( $class, $arguments );
$this->set_instance( $id, $ins );
} catch ( ReflectionException $exception ) {
}
}
return $this->get_instance( $id );
}
}