Pygmalions.Nebula.Injecting
0.2.0
See the version list below for details.
dotnet add package Pygmalions.Nebula.Injecting --version 0.2.0
NuGet\Install-Package Pygmalions.Nebula.Injecting -Version 0.2.0
<PackageReference Include="Pygmalions.Nebula.Injecting" Version="0.2.0" />
paket add Pygmalions.Nebula.Injecting --version 0.2.0
#r "nuget: Pygmalions.Nebula.Injecting, 0.2.0"
// Install Pygmalions.Nebula.Injecting as a Cake Addin #addin nuget:?package=Pygmalions.Nebula.Injecting&version=0.2.0 // Install Pygmalions.Nebula.Injecting as a Cake Tool #tool nuget:?package=Pygmalions.Nebula.Injecting&version=0.2.0
Nebula Injecting
Fundamental library of Pygmalions' Nebula Framework.
This library provides an implementation of IoC mechanism. It supports intrusive injection (attribute), and non-intrusive injection (preset).
Concepts
Preset
Preset is a data class, which describes how to inject an object instance. You can preset the values of fields, properties, and method invocations in presets, then they will be injected into the instance when the object instance is passed to the Inject method or be acquired by a container.
Definition
A definition describes how to acquire and inject an object. It contains a Preset to describe the injection information.
Injection Styles
- Preset Injection: it is the non-intrusive style which uses a preset to instruct the container to inject an instance.
- Passive Injection: it is the intrusive style by marking [Injection] attribute on members.
How to use
Sample Object for Injection
This is the object class which we will use to show how to use this library:
public class SampleObject
{
public int SampleField;
public int SampleProperty { get; set; }
public int MethodValue;
public void SampleMethod(int value)
{
MethodValue = value;
}
public int ConstructorValue;
public SampleObject()
{
SampleField = -1;
SampleProperty = -1;
MethodValue = -1;
ConstructorValue = -1;
}
public SampleObject(int value)
{
SampleField = -1;
SampleProperty = -1;
MethodValue = -1;
ConstructorValue = value;
}
}
Use a preset
This code will set the SampleFiled to 1, SampleProperty to 2, and invoke the SampleMethod with a parameter 3.
var injector = new Preset()
.SetField("SampleField", Bind.Value(1))
.SetProperty("SampleProperty", Bind.Value(2))
.InvokeMethod("SampleMethod", Bind.Array(3));
var instance = new SampleObject();
injector.Inject(instance);
Use a container and a preset
It is quite similar to use a preset directly:
var container = new Container();
container.Declare<SampleObject>()
.AsPreset()
.SetField("SampleField", Bind.Value(1))
.SetProperty("SampleProperty", Bind.Value(2));
var instance = container.Get<SampleObject>();
Sample Object for Passive Injection
Compared to SampleObject, this class has [Injection] on members.
public class PassiveSampleObject
{
[Injection("SampleField")]
public int SampleField;
[Injection("SampleProperty")]
public int SampleProperty { get; set; }
public int MethodValue;
[Injection]
public void SampleMethod([Injection("SampleMethod")] int value)
{
MethodValue = value;
}
public int ConstructorValue;
public PassiveSampleObject()
{
SampleField = -1;
SampleProperty = -1;
MethodValue = -1;
ConstructorValue = -1;
}
[Injection]
public PassiveSampleObject([Injection("SampleConstructor")] int value)
{
SampleField = -1;
SampleProperty = -1;
MethodValue = -1;
ConstructorValue = value;
}
}
Use a container for passive injection
First, you have declare the objects which is marked as injected in the PassiveSampleObject, then you can declare and get an PassiveSampleObject:
var container = new Container();
container.DeclareValue<int>(1, "SampleField");
container.DeclareValue<int>(2, "SampleProperty");
container.DeclareValue<int>(3, "SampleMethod");
container.DeclareValue<int>(4, "SampleConstructor");
container.Declare<PassiveSampleObject>();
var instance = container.Get<PassiveSampleObject>();
Remarks
Attention
To preset a language built-in value (such as int, bool, float, etc), you must use BindBuilder on the declaration for these types don't have any constructors, or use DeclareValue (or DeclareArray, etc) to quickly declare and bind a binder to the declaration.
Unstable API
NOT compatible with versions older than 0.2.0. Concepts are simplified compared than the previous versions.
This library is under rapid development, thus its API may be very unstable, DO NOT use it in the production environment, until its version reaches 1.0.0.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Pygmalions.Nebula.Reporting (>= 0.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
This library under rapid development, thus its API may be unstable. It is not recommended to use this library in production until the version of this library reaches 1.0.0.