Add `parseIniDocument` example

This commit is contained in:
Elias Batek 2025-02-14 04:38:16 +01:00
parent 7e793993b9
commit 2aa7a7573c
1 changed files with 42 additions and 0 deletions

42
ini.d
View File

@ -92,6 +92,48 @@ module arsd.ini;
assert(icon == "setup.exe,0"); assert(icon == "setup.exe,0");
} }
///
@safe unittest {
// INI example data (e.g. from an `autorun.inf` file):
static immutable string rawIniData =
"[autorun]\n"
~ "open=setup.exe\n"
~ "icon=setup.exe,0\n";
// Parse the document.
IniDocument!string document = parseIniDocument(rawIniData);
// Lets search for the value of an entry `icon` in the `autorun` section.
static string searchAutorunIcon(IniDocument!string document) {
// Iterate over all sections.
foreach (IniSection!string section; document.sections) {
// Search for the `[autorun]` section.
if (section.name == "autorun") {
// Iterate over all items in the section.
foreach (IniKeyValuePair!string item; section.items) {
// Search for the `icon` entry.
if (item.key == "icon") {
// Found!
return item.value;
}
}
}
}
// Not found!
return null;
}
// Call our search function.
string icon = searchAutorunIcon(document);
// Finally, verify the result.
assert(icon == "setup.exe,0");
}
/++ /++
Determines whether a type `T` is a string type compatible with this library. Determines whether a type `T` is a string type compatible with this library.
+/ +/