mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
Compensate for broken isFunction in Phobos by rolling own implementation (Fixes #32)
This commit is contained in:
parent
edfa5cdffb
commit
6ab7795463
44
source/poodinis/altphobos.d
Normal file
44
source/poodinis/altphobos.d
Normal file
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
* Tweaks to Phobos's standard templates.
|
||||
*
|
||||
* Implementations copied and adapted from std.traits;
|
||||
*
|
||||
* Authors: $(HTTP erdani.org, Andrei Alexandrescu),
|
||||
* Jonathan M Davis,
|
||||
* $(HTTP digitalmars.com, Walter Bright),
|
||||
* Tomasz Stachowiak ($(D isExpressions)),
|
||||
* $(HTTP erdani.org, Andrei Alexandrescu),
|
||||
* Shin Fujishiro,
|
||||
* $(HTTP octarineparrot.com, Robert Clipsham),
|
||||
* $(HTTP klickverbot.at, David Nadlinger),
|
||||
* Kenji Hara,
|
||||
* Shoichi Kato,
|
||||
* Mike Bierlee (m.bierlee@lostmoment.com)
|
||||
* Copyright: Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2021 Mike Bierlee
|
||||
* License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||
*/
|
||||
|
||||
module poodinis.altphobos;
|
||||
|
||||
template isFunction(X...)
|
||||
{
|
||||
static if (X.length == 1)
|
||||
{
|
||||
static if (is(typeof(&X[0]) U : U*) && is(U == function) || is(typeof(&X[0]) U == delegate))
|
||||
{
|
||||
// x is a (nested) function symbol.
|
||||
enum isFunction = true;
|
||||
}
|
||||
else static if (is(X[0] T))
|
||||
{
|
||||
// x is a type. Take the type of it and examine.
|
||||
enum isFunction = is(T == function);
|
||||
}
|
||||
else
|
||||
enum isFunction = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
enum isFunction = false;
|
||||
}
|
||||
}
|
|
@ -21,14 +21,17 @@ import poodinis.container;
|
|||
import poodinis.registration;
|
||||
import poodinis.factory;
|
||||
import poodinis.valueinjection;
|
||||
import poodinis.polyfill;
|
||||
import poodinis.altphobos : isFunction;
|
||||
import poodinis.imports;
|
||||
|
||||
import std.exception;
|
||||
import std.stdio;
|
||||
import std.string;
|
||||
import std.traits;
|
||||
import std.range;
|
||||
import std.exception : enforce;
|
||||
import std.string : format;
|
||||
import std.traits : BaseClassesTuple, FieldNameTuple, fullyQualifiedName, hasUDA, isDynamicArray;
|
||||
import std.range : ElementType;
|
||||
|
||||
debug {
|
||||
import std.stdio : writeln;
|
||||
}
|
||||
|
||||
private struct UseMemberType {}
|
||||
|
||||
|
@ -92,8 +95,10 @@ struct OptionalDependency {}
|
|||
struct AssignNewInstance {}
|
||||
|
||||
private void printDebugAutowiredInstance(TypeInfo instanceType, void* instanceAddress) {
|
||||
debug {
|
||||
writeln(format("DEBUG: Autowiring members of [%s@%s]", instanceType, instanceAddress));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Autowires members of a given instance using dependencies registered in the given container.
|
||||
|
@ -121,12 +126,16 @@ public void autowire(Type)(shared(DependencyContainer) container, Type instance)
|
|||
}
|
||||
|
||||
private void printDebugAutowiringCandidate(TypeInfo candidateInstanceType, void* candidateInstanceAddress, TypeInfo instanceType, void* instanceAddress, string member) {
|
||||
debug {
|
||||
writeln(format("DEBUG: Autowired instance [%s@%s] to [%s@%s].%s", candidateInstanceType, candidateInstanceAddress, instanceType, instanceAddress, member));
|
||||
}
|
||||
}
|
||||
|
||||
private void printDebugAutowiringArray(TypeInfo superTypeInfo, TypeInfo instanceType, void* instanceAddress, string member) {
|
||||
debug {
|
||||
writeln(format("DEBUG: Autowired all registered instances of super type %s to [%s@%s].%s", superTypeInfo, instanceType, instanceAddress, member));
|
||||
}
|
||||
}
|
||||
|
||||
private void autowireMember(string member, size_t memberIndex, Type)(shared(DependencyContainer) container, Type instance) {
|
||||
foreach(attribute; __traits(getAttributes, Type.tupleof[memberIndex])) {
|
||||
|
@ -227,8 +236,10 @@ private void injectValue(string member, size_t memberIndex, string key, bool man
|
|||
}
|
||||
|
||||
private void printDebugValueInjection(TypeInfo instanceType, void* instanceAddress, string member, TypeInfo valueType, string key) {
|
||||
debug {
|
||||
writeln(format("DEBUG: Injected value with key '%s' of type %s into [%s@%s].%s", key, valueType, instanceType, instanceAddress, member));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Autowire the given instance using the globally available dependency container.
|
||||
|
|
|
@ -18,13 +18,12 @@ import poodinis.autowire;
|
|||
import poodinis.context;
|
||||
import poodinis.factory;
|
||||
import poodinis.valueinjection;
|
||||
import poodinis.polyfill;
|
||||
import poodinis.altphobos : isFunction;
|
||||
import poodinis.imports;
|
||||
|
||||
import std.string;
|
||||
import std.algorithm;
|
||||
import std.concurrency;
|
||||
import std.traits;
|
||||
import std.string : format;
|
||||
import std.algorithm: canFind;
|
||||
import std.traits : fullyQualifiedName, hasUDA, BaseTypeTuple;
|
||||
import std.meta : AliasSeq;
|
||||
|
||||
debug {
|
||||
|
|
|
@ -42,25 +42,3 @@ static if (!__traits(compiles, basicExceptionCtors)) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
static if (!__traits(compiles, isFunction)) {
|
||||
template isFunction(X...)
|
||||
{
|
||||
static if (X.length > 1) {
|
||||
enum isFunction = false;
|
||||
} else
|
||||
static if (is(typeof(&X[0]) U : U*) && is(U == function) ||
|
||||
is(typeof(&X[0]) U == delegate))
|
||||
{
|
||||
// x is a (nested) function symbol.
|
||||
enum isFunction = true;
|
||||
}
|
||||
else static if (is(X[0] T))
|
||||
{
|
||||
// x is a type. Take the type of it and examine.
|
||||
enum isFunction = is(T == function);
|
||||
}
|
||||
else
|
||||
enum isFunction = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue