Crates.io | plugx-config |
lib.rs | plugx-config |
version | 0.3.0 |
source | src |
created_at | 2023-10-02 13:44:20.575055 |
updated_at | 2024-06-21 18:18:53.046799 |
description | Plugin configuration management |
homepage | https://crates.io/crates/plugx-config |
repository | https://github.com/plugx-rs/plugx-config |
max_upload_size | |
id | 989976 |
size | 134,234 |
Package | Documentation | Repository
Example URLs:
file:///etc/directory/
file://file.[json|yml|toml|env]
http://config-server.tld/path/to/config
env://?prefix=APP_NAME
custom://custom?custom=custom
┌──────────────────────────────────────────────┐ ┌──────────────────────┐ ┌───┐ ┌─────────┐
│ FILE SYSTEM │ │ │ │ │ │ │
│ ┌───────────────┐ ┌────────────────────────┐ │ │ │ │ │ │ │
│ │/etc/directory/│ │file.[json|yml|toml|env]│ │ │REST API (e.g. Consul)│ │Env│ │ Custom │
│ └────────────┬──┘ └──┬─────────────────────┘ │ │ │ │ │ │ │
│ │ │ │ │ │ │ │ │ │
└──────────────┼───────┼───────────────────────┘ └─┬────────────────────┘ └─┬─┘ └──┬──────┘
│ │ │ │ │
│ │ │ │ │
│ │ │ │ │
┌──────────────┼───────┼───────────────────────────┼────────────────────────┼──────┼──────┐
│ plugx-config │ │ │ │ │ │
│ ┌────────────┼───────┼───────────────────────────┼────────────────────────┼──────┼────┐ │
│ │ Loader │ │ │ │ │ │ │
│ │ ┌──────────▼───────▼───┐ ┌─────────────────────▼─┐ ┌────────────────────▼┐ ┌───▼──┐ │ │
│ │ │ LoaderFs │ │ LoaderHttp │ │ LoaderEnv │ │Custom│ │ │
│ │ └──────────┬───────┬──┬┘ └─────────────────────┬─┘ └────────────┬────────┘ └───┬──┘ │ │
│ │ │ │ │ │ │ │ │ │
│ └────────────┼───────┼──┼────────────────────────┼────────────────┼──────────────┼────┘ │
│ │ │ │ │ │ │ │
│ │ │ └───────────────┐ │ │ │ │
│ │ │ │ │ │ │ │
│ ┌────────────┼───────┼──────────────────┼────────┼────────────────┼──────────────┼────┐ │
│ │ Parser │ │ │ │ │ │ │ │
│ │ ┌──────────▼───┐ ┌─▼──────────────┐ ┌─▼────────▼─────┐ ┌────────▼────────┐ ┌───▼──┐ │ │
│ │ │ ParserYaml │ │ ParserToml │ │ ParserJson │ │ ParserEnv │ │Custom│ │ │
│ │ └──────────┬───┘ └─┬──────────────┘ └─┬────────┬─────┘ └────────┬────────┘ └───┬──┘ │ │
│ │ │ │ │ │ │ │ │ │
│ └────────────┼───────┼──────────────────┼────────┼────────────────┼──────────────┼────┘ │
│ │ │ │ │ │ │ │
│ │ │ │ │ │ │ │
│ ┌────────────▼───────▼──────────────────▼────────▼────────────────▼──────────────▼────┐ │
│ │ Merge │ │
│ └─────────────────────────────────────────┬───────────────────────────────────────────┘ │
│ │ │
│ │ │
│ ┌─────────────────────────────────────────▼───────────────────────────────────────────┐ │
│ │ Validate │ │
│ └─────────────────────────────────────────┬───────────────────────────────────────────┘ │
│ │ │
└───────────────────────────────────────────┼─────────────────────────────────────────────┘
│
│
▼
Vec<(Name, Config)>
In this example we're going to load our plugins' configurations from a directory and environment-variables.
Here we have four configuration files for four plugins foo
, bar
, baz
, and qux
inside our example tests/etc
directory:
$ tree tests/etc
tests/etc
├── bar.json
├── baz.toml
├── foo.env
└── qux.yml
{
"sqlite": {
"recreate": true
}
}
[logging]
format = "json"
SERVER__PORT="8080" # listen port
https:
follow_redirects: false
Additionally, we set the following environment-variables:
export APP_NAME__FOO__SERVER__ADDRESS="127.0.0.1"
export APP_NAME__BAR__SQLITE__FILE="/path/to/app.db"
export APP_NAME__BAZ__LOGGING__LEVEL="debug"
export APP_NAME__QUX__HTTPS__INSECURE="false"
use plugx_config::{
ext::anyhow::{Context, Result},
Configuration, Url,
};
fn main() -> Result<()> {
let url_list: Vec<Url> = get_url_list_from_cmd_args()?;
let mut configuration = Configuration::new();
url_list
.into_iter()
.try_for_each(|url| configuration.add_url(url))?;
// Load & Parse & Merge & print:
configuration
.load_parse_merge(true)?
.iter()
.for_each(|(plugin_name, configuration)| println!("{plugin_name}: {configuration}"));
Ok(())
}
fn get_url_list_from_cmd_args() -> Result<Vec<Url>> {
std::env::args()
.skip(1)
.try_fold(Vec::new(), |mut list, arg| {
list.push(
Url::parse(&arg).with_context(|| format!("Could not parse URL `{arg}`"))?,
);
Ok(list)
})
}
$ /path/to/main 'env://?prefix=APP_NAME' 'fs:///tests/etc/?strip-slash=true'
bar: {"sqlite": {"recreate": true, "file": "/path/to/app.db"}}
foo: {"server": {"address": "127.0.0.1", "port": 8080}}
baz: {"logging": {"level": "debug", "format": "json"}}
qux: {"https": {"follow_redirects": false, "insecure": false}}