Skip to content

Commit 15b74e7

Browse files
committed
Refactor more parts to use new reflection library
1 parent f326c67 commit 15b74e7

5 files changed

+42
-46
lines changed
+12-12
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
<?php namespace inject;
22

3-
use lang\{IllegalArgumentException, XPClass};
3+
use lang\reflection\{Type, Kind};
4+
use lang\{IllegalArgumentException, Reflection};
45

56
class ClassBinding implements Binding {
6-
protected $class;
7+
protected $type;
78

89
/**
910
* Creates a new instance binding
1011
*
11-
* @param string|lang.XPClass $class
12+
* @param string|lang.XPClass|lang.reflection.Type $class
1213
* @param lang.XPClass $type
1314
* @throws lang.IllegalArgumentException
1415
*/
1516
public function __construct($class, $type= null) {
16-
$c= $class instanceof XPClass ? $class : XPClass::forName($class);
17-
if ($type && !$type->isAssignableFrom($c)) {
18-
throw new IllegalArgumentException($type.' is not assignable from '.$c);
19-
} else if ($c->isInterface() || $c->getModifiers() & MODIFIER_ABSTRACT) {
20-
throw new IllegalArgumentException('Cannot bind to non-concrete type '.$type);
21-
}
17+
$this->type= $class instanceof Type ? $class : Reflection::type($class);
2218

23-
$this->class= $c;
19+
if ($type && !$type->isAssignableFrom($this->type->class())) {
20+
throw new IllegalArgumentException($type.' is not assignable from '.$this->type->name());
21+
} else if (Kind::$CLASS !== $this->type->kind() || $this->type->modifiers()->isAbstract()) {
22+
throw new IllegalArgumentException('Cannot bind to non-concrete type '.$this->type->name());
23+
}
2424
}
2525

2626
/**
@@ -30,7 +30,7 @@ public function __construct($class, $type= null) {
3030
* @return inject.Provider<?>
3131
*/
3232
public function provider($injector) {
33-
return new TypeProvider($this->class, $injector);
33+
return new TypeProvider($this->type, $injector);
3434
}
3535

3636
/**
@@ -40,6 +40,6 @@ public function provider($injector) {
4040
* @return var
4141
*/
4242
public function resolve($injector) {
43-
return $injector->newInstance($this->class);
43+
return $injector->newInstance($this->type);
4444
}
4545
}

src/main/php/inject/ConfiguredBindings.class.php

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php namespace inject;
22

3-
use lang\{ClassLoader, ClassNotFoundException, ClassCastException};
3+
use lang\{ClassLoader, ClassNotFoundException, ClassCastException, Reflection};
44
use util\{Properties, PropertyAccess};
55

66
/**
@@ -130,13 +130,9 @@ private function bindingTo($cl, $namespaces, $input) {
130130
if (false === ($p= strpos($input, '('))) {
131131
return $this->resolveType($cl, $namespaces, $input);
132132
} else {
133-
$class= $this->resolveType($cl, $namespaces, substr($input, 0, $p));
134-
if ($class->hasConstructor()) {
135-
$arguments= eval('return ['.substr($input, $p + 1, -1).'];');
136-
return $class->getConstructor()->newInstance($arguments);
137-
} else {
138-
return $class->newInstance();
139-
}
133+
$type= $this->resolveType($cl, $namespaces, substr($input, 0, $p));
134+
$arguments= eval('return ['.substr($input, $p + 1, -1).'];');
135+
return Reflection::type($type)->newInstance(...$arguments);
140136
}
141137
}
142138

src/main/php/inject/Injector.class.php

+15-14
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static function asBinding($t, $impl) {
4848
} else if (is_array($impl)) {
4949
return new ArrayBinding($impl, $t);
5050
} else {
51-
return new ClassBinding(XPClass::forName((string)$impl), $t);
51+
return new ClassBinding(Reflection::type((string)$impl), $t);
5252
}
5353
}
5454

@@ -147,19 +147,18 @@ private function argumentsOf($routine, $named= []) {
147147
/**
148148
* Implicitely creates an instance binding for a given class.
149149
*
150-
* @param lang.XPClass $class
150+
* @param lang.reflection.Type $type
151151
* @param [:var] $named
152152
* @return inject.Binding
153153
* @throws inject.ProvisionException
154154
*/
155-
private function instanceOf($class, $named= []) {
156-
$t= Reflection::type($class);
157-
if (!$t->instantiable(true)) {
158-
throw new ProvisionException('Cannot instantiate '.$class->getName().' with non-public constructor');
155+
private function instanceOf($type, $named= []) {
156+
if (!$type->instantiable(true)) {
157+
throw new ProvisionException('Cannot instantiate '.$type->name().' with non-public constructor');
159158
}
160159

161-
$constructor= $t->constructor();
162-
if (null === $constructor) return new InstanceBinding($class->newInstance());
160+
$constructor= $type->constructor();
161+
if (null === $constructor) return new InstanceBinding($type->newInstance());
163162

164163
$arguments= $this->argumentsOf($constructor, $named);
165164
if (!$this->provided($arguments)) return $arguments;
@@ -169,7 +168,7 @@ private function instanceOf($class, $named= []) {
169168
try {
170169
return new InstanceBinding($constructor->newInstance($arguments->resolve($this)));
171170
} catch (Throwable $e) {
172-
throw new ProvisionException('Error creating an instance of '.$class->getName(), $e);
171+
throw new ProvisionException('Error creating an instance of '.$type->name(), $e);
173172
}
174173
}
175174

@@ -204,8 +203,9 @@ public function binding($type, $name= null) {
204203
$literal= $t->literal();
205204
if ($binding= $this->bindings[$literal][$name] ?? null) {
206205
return $binding;
207-
} else if (null === $name && $t instanceof XPClass && !($t->isInterface() || $t->getModifiers() & MODIFIER_ABSTRACT)) {
208-
return $this->instanceOf($t);
206+
} else if (null === $name && $t instanceof XPClass) {
207+
$type= Reflection::type($t);
208+
if ($type->instantiable()) return $this->instanceOf($type);
209209
}
210210
}
211211

@@ -244,12 +244,13 @@ public function args($routine, $named= []) {
244244
* injection, the arguments are compiled from the relevant annotations.
245245
* Otherwise, optional constructor arguments may be passed.
246246
*
247-
* @param lang.XPClass $class
247+
* @param lang.XPClass|lang.reflection.Type $class
248248
* @param [:var] $named Named arguments
249249
* @return object
250250
* @throws inject.ProvisionException
251251
*/
252-
public function newInstance(XPClass $class, $named= []) {
253-
return $this->instanceOf($class, $named)->resolve($this);
252+
public function newInstance($class, $named= []) {
253+
$type= $class instanceof XPClass ? Reflection::type($class) : $class;
254+
return $this->instanceOf($type, $named)->resolve($this);
254255
}
255256
}
+10-11
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
11
<?php namespace inject;
22

3-
use lang\{IllegalArgumentException, XPClass};
3+
use lang\reflection\{Type, Kind};
4+
use lang\{IllegalArgumentException, Reflection};
45

56
class SingletonBinding implements Binding {
6-
private $class;
7+
private $type;
78
private $instance= null;
89

910
/**
1011
* Creates a new singleton binding
1112
*
12-
* @param string|lang.XPClass $class
13+
* @param string|lang.XPClass|lang.reflection.Type $class
1314
* @throws lang.IllegalArgumentException
1415
*/
1516
public function __construct($class) {
16-
$c= $class instanceof XPClass ? $class : XPClass::forName($class);
17-
if ($c->isInterface() || $c->getModifiers() & MODIFIER_ABSTRACT) {
18-
throw new IllegalArgumentException('Cannot bind to non-concrete type '.$c);
17+
$this->type= $class instanceof Type ? $class : Reflection::type($class);
18+
if (Kind::$CLASS !== $this->type->kind() || $this->type->modifiers()->isAbstract()) {
19+
throw new IllegalArgumentException('Cannot bind to non-concrete type '.$this->type->name());
1920
}
20-
21-
$this->class= $c;
2221
}
2322

2423
/**
2524
* Returns a provider for this binding
2625
*
2726
* @param inject.Injector $injector
28-
* @param inject.Provider<?>
27+
* @return inject.Provider<?>
2928
*/
3029
public function provider($injector) {
3130
return new ResolvingProvider($this, $injector);
@@ -35,9 +34,9 @@ public function provider($injector) {
3534
* Resolves this binding and returns the instance
3635
*
3736
* @param inject.Injector $injector
38-
* @param var
37+
* @return var
3938
*/
4039
public function resolve($injector) {
41-
return $this->instance ?: $this->instance= $injector->newInstance($this->class);
40+
return $this->instance ?: $this->instance= $injector->newInstance($this->type);
4241
}
4342
}

src/main/php/inject/TypeProvider.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class TypeProvider implements Provider {
1010
/**
1111
* Creates a new type provider
1212
*
13-
* @param lang.XPClass $type
13+
* @param lang.XPClass|lang.reflection.Type $type
1414
* @param inject.Injector $injector
1515
*/
1616
public function __construct($type, $injector) {

0 commit comments

Comments
 (0)