Proof-of-concept compile-time Dependency Injection container using LeMP code-generation from the ECSharp
Compile-time dependency injection here is
the generation of object-graph "service creation code" given the interface-implementation registrations provided at compile-time.
In a simplest form you may consider "service creation code" as a method returning new A(new B(new C(), new C1(new D()), ...)
. The tool should generate this method at compile-time and make it a part of your project.
The idea is already implemented in my another project DryIoc using the T4 templates but has a number of problems.
In this repository I want to solve these problems and test the ideas without much accent on DI itself. Nevertheless, the DI should be a functional solution to make the test actually usable and verify the different aspects of the problem. OK, the DryIoc supports both compile-time and runtime registrations, because it not always possible to know everything at compile-time. Therefore this DI prototype should support this too.
The typical compile-time service registration will look like this:
di.Register<X>(resolver => new X(new A(), resolver.Resolve<B>()));
resolver.Resolver<B>()
here is the bridge to another registration which can be either compile-time or runtime-one.
You can imagine that X
and A
are your app services and B
is a context or configuration provided by
the framework at runtime.
-
I want the ability to use part of DI to help generate another part of DI at compile-time. It means that I need to reference the code (compiled) from the compile-time template to generate the remaining part of the code. But I don't want to split the first part to another library, then compile it, then load it for the rest of code-generation. So inevitably I am ending-up with the chicken-egg problem. For T4 the hack would be to compile the DI project first with the compile-time generation commented out, then uncomment the generation and load the produced dll to compile the new dll with generated code :/
-
I want to publish the DI as a code-only NuGet package with the template that's supposed to be modified by user - to put the registrations into it. I want the package to be easy (as automated as possible) consumed by modern .NET Core v3.1 applications, like ASP .NET Core MVC/WebAPI. And this combination currently is the real mess. Here is the one of the many issues. You need to really hack around your way to achieve this.
-
Given that I already invested the time and created the T4 implementation in DryIoc, it seems that I need to push it further, probably using the mono implementation to support modern targets. But T4 never felt to me like a good fit for C# because it is a different text manipulating tool tearing the C# code into disjoint parts. The errors are cryptic. Assembly loading and references is a quiz.
So here goes...
The project site http://ecsharp.net/
LeMP compile-time code-generation similar to T4 is supported starting from the v2.8.1
Update: There dotnet CLI LeMP-tool is available now to install and manage LeMP through NuGet.
LeMP solves the 3rd problem because its compile-time generation capabilities keep the code looking like C# with almost all valid C# syntax.
And ta-ba-dam, ta-ba-dam, ... it solves the 1st problem too via compileAndRuntime {}
which makes code available for the compile-time tools and keeps the code in the result runtime binary.
Other goodies are Extended CSharp features, macros and sugar.
The solution is supposed to be built and tested in VS Code. I did not yet tested it in Visual Studio.
- Add the folder
.nupkg
as a local NuGet source:dotnet nuget add source full\path\to\.nupkg --name Local
- Go to solution folder and built it with
dotnet build
- For
.ecs
and.ecs.include
files you may turn-on the CSharp syntax highlighting via "Change Language Mode" command (Ctrl+K,M
)
CompileTimeDI is the .NET Standard 2.0 project with the DI implementation contained in a single CompileTimeDI.ecs
.
The project also contains the ServiceRegistrations.ecs.include
file which is supposed to be edited by DI user.
The latter is included into former, then everything is processed by LeMP macro processor at compile-time and the output
is stored in CompileTimeDI.Generated.cs
file. Invoke the dotnet build
to run the processing.
When build in the Release configuration dotnet build -c Release
,
the project is packaged into the content-only NuGet package (yes, you can do this)
and can be found in the ".nupkg" folder.
AspNetCoreSample is the standard ASP .NET Core v3.1 WebApi dotnet template app consuming the CompileTimeDI package.
It installs the "CompileTimeDI" package from the Local feed (together with LempDotnetTool) and
specifies some test service registrations from the AnotherLib project. No need for a manual file copying and the prolonged user instructions.
Start the app from the project folder via dotnet run
.
Go to the listed localhost:port/services
in web browser to see the results.
The compile-time registrations are in ServiceRegistrations.ecs.include
and the remaing parts are in WeatherForcastController
.