mirage-config/source/poodinis/config/dictionary.d

361 lines
9.9 KiB
D
Raw Normal View History

2022-09-24 00:13:08 +02:00
/**
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2022 Mike Bierlee
* License:
* This software is licensed under the terms of the MIT license.
* The full terms of the license can be found in the LICENSE file.
*/
2022-09-23 22:34:46 +02:00
module poodinis.config.dictionary;
2022-09-24 00:13:08 +02:00
import std.exception : enforce;
import std.string : split, startsWith, endsWith, join;
2022-09-24 00:13:08 +02:00
import std.conv : to, ConvException;
class ConfigReadException : Exception {
this(string msg, string file = __FILE__, size_t line = __LINE__) {
super(msg, file, line);
}
}
class PathParseException : Exception {
this(string msg, string path, string file = __FILE__, size_t line = __LINE__) {
string fullMsg = msg ~ " (Path: " ~ path ~ ")";
super(fullMsg, file, line);
}
}
2022-09-23 22:34:46 +02:00
interface ConfigNode {
string nodeType();
2022-09-23 22:34:46 +02:00
}
2022-09-24 00:15:16 +02:00
class ValueNode : ConfigNode {
2022-09-23 22:34:46 +02:00
string value;
this() {
}
this(string value) {
this.value = value;
}
string nodeType() {
return "value";
}
2022-09-23 22:34:46 +02:00
}
2022-09-24 00:15:16 +02:00
class ObjectNode : ConfigNode {
2022-09-23 22:34:46 +02:00
ConfigNode[string] children;
this() {
}
this(ConfigNode[string] children) {
this.children = children;
}
this(string[string] values) {
foreach (key, value; values) {
children[key] = new ValueNode(value);
}
}
string nodeType() {
return "object";
}
2022-09-23 22:34:46 +02:00
}
2022-09-24 00:15:16 +02:00
class ArrayNode : ConfigNode {
2022-09-23 22:34:46 +02:00
ConfigNode[] children;
this() {
}
this(ConfigNode[] children...) {
this.children = children;
}
2022-09-24 00:13:08 +02:00
this(string[] values...) {
foreach (string value; values) {
2022-09-24 00:15:16 +02:00
children ~= new ValueNode(value);
2022-09-24 00:13:08 +02:00
}
}
string nodeType() {
return "array";
}
2022-09-24 00:13:08 +02:00
}
interface PathSegment {
2022-09-24 00:13:08 +02:00
}
class ArrayPathSegment : PathSegment {
const size_t index;
this(const size_t index) {
this.index = index;
}
}
class PropertyPathSegment : PathSegment {
const string propertyName;
this(const string propertyName) {
this.propertyName = propertyName;
}
}
2022-09-24 00:13:08 +02:00
class ConfigPath {
private const string path;
private string[] previousSegments;
2022-09-24 00:13:08 +02:00
private string[] segments;
this(const string path) {
this.path = path;
this.segments = path.split(".");
}
PathSegment getNextSegment() {
if (segments.length == 0) {
return null;
}
PathSegment ret(PathSegment segment) {
previousSegments ~= segments[0];
segments = segments[1 .. $];
2022-09-24 00:13:08 +02:00
return segment;
}
string segment = segments[0];
if (segment.startsWith("[") && segment.endsWith("]")) {
if (segment.length <= 2) {
throw new PathParseException("Path has array accessor but no index specified", path);
}
auto indexString = segment[1 .. $ - 1];
try {
auto index = indexString.to!size_t;
return ret(new ArrayPathSegment(index));
} catch (ConvException e) {
throw new PathParseException("Array index '" ~ indexString ~ "' is not acceptable as an array number", path);
}
}
return ret(new PropertyPathSegment(segment));
2022-09-24 00:13:08 +02:00
}
string getCurrentPath() {
return previousSegments.join(".");
}
2022-09-23 22:34:46 +02:00
}
class ConfigDictionary {
ConfigNode rootNode;
2022-09-24 00:13:08 +02:00
string get(string configPath) {
enforce!ConfigReadException(rootNode !is null, "The config is empty");
enforce!ConfigReadException(configPath.length > 0, "Supplied config path is empty");
if (configPath == ".") {
2022-09-24 00:15:16 +02:00
auto rootValue = cast(ValueNode) rootNode;
2022-09-24 00:13:08 +02:00
if (rootValue) {
return rootValue.value;
} else {
throw new ConfigReadException("The root of the config is not a value type");
}
}
auto path = new ConfigPath(configPath);
auto currentNode = rootNode;
PathSegment currentPathSegment = path.getNextSegment();
string createExceptionPath() {
return "'" ~ configPath ~ "' (at '" ~ path.getCurrentPath() ~ "')";
}
2022-09-24 00:13:08 +02:00
while (currentPathSegment !is null) {
if (currentNode is null) {
throw new ConfigReadException(
"Path does not exist: " ~ createExceptionPath());
}
auto valueNode = cast(ValueNode) currentNode;
if (valueNode) {
throw new ConfigReadException(
"Path does not exist: " ~ createExceptionPath());
}
2022-09-24 00:13:08 +02:00
auto arrayPath = cast(ArrayPathSegment) currentPathSegment;
if (arrayPath) {
2022-09-24 00:15:16 +02:00
auto arrayNode = cast(ArrayNode) currentNode;
2022-09-24 00:13:08 +02:00
if (arrayNode) {
if (arrayNode.children.length < arrayPath.index) {
throw new ConfigReadException(
"Array index out of bounds: " ~ createExceptionPath());
}
2022-09-24 00:13:08 +02:00
currentNode = arrayNode.children[arrayPath.index];
}
}
auto propertyPath = cast(PropertyPathSegment) currentPathSegment;
if (propertyPath) {
auto objectNode = cast(ObjectNode) currentNode;
if (objectNode) {
auto propertyNode = propertyPath.propertyName in objectNode.children;
if (propertyNode) {
currentNode = *propertyNode;
} else {
throw new ConfigReadException(
"Path does not exist: " ~ createExceptionPath());
}
}
}
2022-09-24 00:13:08 +02:00
currentPathSegment = path.getNextSegment();
}
2022-09-24 00:15:16 +02:00
auto value = cast(ValueNode) currentNode;
2022-09-24 00:13:08 +02:00
if (value) {
return value.value;
} else {
throw new ConfigReadException(
"Value expected but " ~ currentNode.nodeType ~ " found at path: " ~ createExceptionPath());
2022-09-24 00:13:08 +02:00
}
}
2022-09-23 22:34:46 +02:00
}
version (unittest) {
2022-09-24 00:13:08 +02:00
import std.exception : assertThrown;
2022-09-23 22:34:46 +02:00
@("Dictionary creation")
unittest {
2022-09-24 00:15:16 +02:00
auto root = new ObjectNode([
"english": new ArrayNode([new ValueNode("one"), new ValueNode("two")]),
"spanish": new ArrayNode(new ValueNode("uno"), new ValueNode("dos"))
2022-09-23 22:34:46 +02:00
]);
auto dictionary = new ConfigDictionary();
dictionary.rootNode = root;
}
2022-09-24 00:13:08 +02:00
@("Get value in dictionary with empty root fails")
unittest {
auto dictionary = new ConfigDictionary();
assertThrown!ConfigReadException(dictionary.get("."));
}
@("Get value in dictionary with empty path fails")
unittest {
auto dictionary = new ConfigDictionary();
2022-09-24 00:15:16 +02:00
dictionary.rootNode = new ValueNode("hehehe");
2022-09-24 00:13:08 +02:00
assertThrown!ConfigReadException(dictionary.get(""));
}
@("Get value in root")
unittest {
auto dictionary = new ConfigDictionary();
2022-09-24 00:15:16 +02:00
dictionary.rootNode = new ValueNode("yup");
2022-09-24 00:13:08 +02:00
assert(dictionary.get(".") == "yup");
}
@("Get value in root fails when root is not a value")
unittest {
auto dictionary = new ConfigDictionary();
2022-09-24 00:15:16 +02:00
dictionary.rootNode = new ArrayNode();
2022-09-24 00:13:08 +02:00
assertThrown!ConfigReadException(dictionary.get("."));
}
@("Get array value from root")
unittest {
auto dictionary = new ConfigDictionary();
2022-09-24 00:15:16 +02:00
dictionary.rootNode = new ArrayNode("aap", "noot", "mies");
2022-09-24 00:13:08 +02:00
assert(dictionary.get("[0]") == "aap");
assert(dictionary.get("[1]") == "noot");
assert(dictionary.get("[2]") == "mies");
}
@("Get value from object at root")
unittest {
auto dictionary = new ConfigDictionary();
dictionary.rootNode = new ObjectNode([
"aap": "monkey",
"noot": "nut",
"mies": "mies" // It's a name!
]);
assert(dictionary.get("aap") == "monkey");
assert(dictionary.get("noot") == "nut");
assert(dictionary.get("mies") == "mies");
}
@("Get value from object in object")
unittest {
auto dictionary = new ConfigDictionary();
dictionary.rootNode = new ObjectNode([
"server": new ObjectNode([
"port": "8080"
])
]);
assert(dictionary.get("server.port") == "8080");
}
@("Get value from array in object")
unittest {
auto dictionary = new ConfigDictionary();
dictionary.rootNode = new ObjectNode([
"hostname": new ArrayNode(["google.com", "dlang.org"])
]);
assert(dictionary.get("hostname.[1]") == "dlang.org");
}
@("Exception is thrown when array out of bounds when fetching from root")
unittest {
auto dictionary = new ConfigDictionary();
dictionary.rootNode = new ArrayNode(["google.com", "dlang.org"]);
assertThrown!ConfigReadException(dictionary.get("[5]"));
}
@("Exception is thrown when array out of bounds when fetching from object")
unittest {
auto dictionary = new ConfigDictionary();
dictionary.rootNode = new ObjectNode([
"hostname": new ArrayNode(["google.com", "dlang.org"])
]);
assertThrown!ConfigReadException(dictionary.get("hostname.[5]"));
}
@("Exception is thrown when path does not exist")
unittest {
auto dictionary = new ConfigDictionary();
dictionary.rootNode = new ObjectNode(
[
"hostname": new ObjectNode(["cluster": new ValueNode("")])
]);
assertThrown!ConfigReadException(dictionary.get("hostname.cluster.spacey"));
}
@("Exception is thrown when given path terminates too early")
unittest {
auto dictionary = new ConfigDictionary();
dictionary.rootNode = new ObjectNode(
[
"hostname": new ObjectNode(["cluster": new ValueNode(null)])
]);
assertThrown!ConfigReadException(dictionary.get("hostname"));
}
2022-09-23 22:34:46 +02:00
}