Page MenuHomeDevCentral

Provide reflection bricks to build a service container
ClosedPublic

Authored by dereckson on Jun 19 2023, 23:05.
Tags
None
Referenced Files
F3303558: D3204.diff
Wed, Jul 3, 04:51
Unknown Object (File)
Thu, Jun 27, 09:20
Unknown Object (File)
Mon, Jun 24, 07:25
Unknown Object (File)
Mon, Jun 24, 04:42
Unknown Object (File)
Sun, Jun 23, 20:54
Unknown Object (File)
Sun, Jun 23, 06:37
Unknown Object (File)
Sat, Jun 22, 16:26
Unknown Object (File)
Sat, Jun 22, 07:44
Subscribers
None

Details

Summary

How to automatically build a controller with dependency injection?

A solution could be to get a services container with objects
of different types, and a controller with a constructor requiring
the needed services.

A working example of this solution can be found in AcmeApplication,
instantiated in CodeClassTest unit test.

A use case can be to automate in a MVC framework the controllers
instantiation.

This solution requires services to be first initialized and doesn't
allow other topologies like lazy loading directly, but the reflection
classes added can be use as a base to build custom services containers.

For example, a variant of CodeClass::newInstanceFromServices can be
used with a different callable to select and build the dependency
from the type in key.

The scope of this commit is to offer bricks required to create
a service container, not to be a dependency injection framework.

Test Plan

New unit tests offer full code coverage for added classes.

A proof of concept can be found in AcmeApplication and CodeClassTest.

A real-world test will be to build a service container in Zed.

Diff Detail

Repository
rKERUALD Keruald libraries development repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable