mirror of
https://github.com/mbierlee/mirage-injector.git
synced 2024-11-15 05:14:01 +01:00
Add load functions for individual file formats
This commit is contained in:
parent
344dff29de
commit
d6dce5df1b
|
@ -10,6 +10,9 @@ module poodinis.valueinjector.mirage;
|
||||||
import poodinis : ValueInjector, DependencyContainer, Value, Autowire, existingInstance;
|
import poodinis : ValueInjector, DependencyContainer, Value, Autowire, existingInstance;
|
||||||
|
|
||||||
import mirage : ConfigDictionary, mirageLoadConfig = loadConfig;
|
import mirage : ConfigDictionary, mirageLoadConfig = loadConfig;
|
||||||
|
import mirage.json : mirageLoadJsonConfig = loadJsonConfig;
|
||||||
|
import mirage.java : mirageLoadJavaConfig = loadJavaConfig;
|
||||||
|
import mirage.ini : mirageLoadIniConfig = loadIniConfig;
|
||||||
|
|
||||||
class MirageValueInjector(Type) : ValueInjector!Type
|
class MirageValueInjector(Type) : ValueInjector!Type
|
||||||
{
|
{
|
||||||
|
@ -76,9 +79,60 @@ public void registerMirageInjectors(shared(DependencyContainer) container)
|
||||||
* Throws: ConfigCreationException when the file's extension is unrecognized.
|
* Throws: ConfigCreationException when the file's extension is unrecognized.
|
||||||
*/
|
*/
|
||||||
public void loadConfig(shared(DependencyContainer) container, const string configPath)
|
public void loadConfig(shared(DependencyContainer) container, const string configPath)
|
||||||
|
{
|
||||||
|
loadConfigWithLoader(container, configPath, &mirageLoadConfig);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a JSON config from disk.
|
||||||
|
* registerMirageInjectors will be called by this function. The loaded ConfigDictionary will be
|
||||||
|
* registered and available for injection by itself too.
|
||||||
|
* Params:
|
||||||
|
* container = Dependency container to register config and injectors with.
|
||||||
|
* configPath = Path to the configuration file.
|
||||||
|
*/
|
||||||
|
public void loadJsonConfig(shared(DependencyContainer) container, const string configPath)
|
||||||
|
{
|
||||||
|
loadConfigWithLoader(container, configPath, &mirageLoadJsonConfig);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load a Java properties from disk.
|
||||||
|
* registerMirageInjectors will be called by this function. The loaded ConfigDictionary will be
|
||||||
|
* registered and available for injection by itself too.
|
||||||
|
* Params:
|
||||||
|
* container = Dependency container to register config and injectors with.
|
||||||
|
* configPath = Path to the configuration file.
|
||||||
|
*/
|
||||||
|
public void loadJavaProperties(shared(DependencyContainer) container, const string configPath)
|
||||||
|
{
|
||||||
|
loadConfigWithLoader(container, configPath, &mirageLoadJavaConfig);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// ditto
|
||||||
|
alias loadJavaConfig = loadJavaProperties;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load an INI config from disk.
|
||||||
|
* registerMirageInjectors will be called by this function. The loaded ConfigDictionary will be
|
||||||
|
* registered and available for injection by itself too.
|
||||||
|
* Params:
|
||||||
|
* container = Dependency container to register config and injectors with.
|
||||||
|
* configPath = Path to the configuration file.
|
||||||
|
*/
|
||||||
|
public void loadIniConfig(shared(DependencyContainer) container, const string configPath)
|
||||||
|
{
|
||||||
|
loadConfigWithLoader(container, configPath, &mirageLoadIniConfig);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadConfigWithLoader(
|
||||||
|
shared(DependencyContainer) container,
|
||||||
|
const string configPath,
|
||||||
|
ConfigDictionary function(const string configPath) loaderFunc
|
||||||
|
)
|
||||||
{
|
{
|
||||||
container.registerMirageInjectors;
|
container.registerMirageInjectors;
|
||||||
auto config = mirageLoadConfig(configPath);
|
auto config = loaderFunc(configPath);
|
||||||
container.register!ConfigDictionary.existingInstance(config);
|
container.register!ConfigDictionary.existingInstance(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,4 +176,38 @@ version (unittest)
|
||||||
assert(testClass.horseName == "Breeeeeezer");
|
assert(testClass.horseName == "Breeeeeezer");
|
||||||
assert(testClass.horseChildCount == 4);
|
assert(testClass.horseChildCount == 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@("Load JSON config")
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
auto dependencies = new shared DependencyContainer;
|
||||||
|
dependencies.register!TestClass;
|
||||||
|
dependencies.loadJsonConfig("testfiles/horses.json");
|
||||||
|
|
||||||
|
auto testClass = dependencies.resolve!TestClass;
|
||||||
|
assert(testClass.horseName == "Maaarrrilll");
|
||||||
|
}
|
||||||
|
|
||||||
|
@("Load Java config")
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
auto dependencies = new shared DependencyContainer;
|
||||||
|
dependencies.register!TestClass;
|
||||||
|
dependencies.loadJavaConfig("testfiles/horses.properties");
|
||||||
|
|
||||||
|
auto testClass = dependencies.resolve!TestClass;
|
||||||
|
assert(testClass.horseName == "Beaaaaaaan");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@("Load INI config")
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
auto dependencies = new shared DependencyContainer;
|
||||||
|
dependencies.register!TestClass;
|
||||||
|
dependencies.loadIniConfig("testfiles/horses.ini");
|
||||||
|
|
||||||
|
auto testClass = dependencies.resolve!TestClass;
|
||||||
|
assert(testClass.horseName == "Breeeeeezer");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
6
testfiles/horses.json
Normal file
6
testfiles/horses.json
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"horse": {
|
||||||
|
"name": "Maaarrrilll",
|
||||||
|
"children": 11
|
||||||
|
}
|
||||||
|
}
|
2
testfiles/horses.properties
Normal file
2
testfiles/horses.properties
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
horse.name = Beaaaaaaan
|
||||||
|
horse.children = 98
|
Loading…
Reference in a new issue