scuffle_settings/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
//! A crate designed to provide a simple interface to load and manage settings.
//!
//! This crate is a wrapper around the `config` crate and `clap` crate
//! to provide a simple interface to load and manage settings.
//!
//! ## How to use this
//!
//! ### With `scuffle_bootstrap`
//!
//! ```rust
//! // Define a config struct like this
//! // You can use all of the serde attributes to customize the deserialization
//! #[derive(serde::Deserialize)]
//! struct MyConfig {
//!     some_setting: String,
//!     #[serde(default)]
//!     some_other_setting: i32,
//! }
//!
//! // Implement scuffle_boostrap::ConfigParser for the config struct like this
//! scuffle_settings::bootstrap!(MyConfig);
//!
//! # use std::sync::Arc;
//! /// Our global state
//! struct Global;
//!
//! impl scuffle_bootstrap::global::Global for Global {
//!     type Config = MyConfig;
//!
//!     async fn init(config: MyConfig) -> anyhow::Result<Arc<Self>> {
//!         // Here you now have access to the config
//!         Ok(Arc::new(Self))
//!     }
//! }
//! ```
//!
//! ### Without `scuffle_bootstrap`
//!
//! ```rust
//! # fn test() -> Result<(), scuffle_settings::SettingsError> {
//! // Define a config struct like this
//! // You can use all of the serde attributes to customize the deserialization
//! #[derive(serde::Deserialize)]
//! struct MyConfig {
//!     some_setting: String,
//!     #[serde(default)]
//!     some_other_setting: i32,
//! }
//!
//! // Parsing options
//! let options = scuffle_settings::Options {
//!     env_prefix: Some("MY_APP"),
//!     ..Default::default()
//! };
//! // Parse the settings
//! let settings: MyConfig = scuffle_settings::parse_settings(options)?;
//! # Ok(())
//! # }
//! # std::env::set_var("MY_APP_SOME_SETTING", "value");
//! # test().unwrap();
//! ```
//!
//! See [`Options`] for more information on how to customize parsing.
//!
//! ## Templates
//!
//! If the `templates` feature is enabled, the parser will attempt to render
//! the configuration file as a jinja template before processing it.
//!
//! All environment variables set during execution will be available under
//! the `env` variable inside the file.
//!
//! Example TOML file:
//!
//! ```toml
//! some_setting = "${{ env.MY_APP_SECRET }}"
//! ```
//!
//! Use `${{` and `}}` for variables, `{%` and `%}` for blocks and `{#` and `#}` for comments.
//!
//! ## Command Line Interface
//!
//! The following options are available for the CLI:
//!
//! - `--config` or `-c`
//!
//!   Path to a configuration file. This option can be used multiple times to load multiple files.
//! - `--override` or `-o`
//!
//!   Provide an override for a configuration value, in the format `KEY=VALUE`.
//!
//! ## Feature Flags
//!
//! - `full`: Enables all of the following features
//! - `templates`: Enables template support
//!
//!   See [Templates](#templates) above.
//! - `bootstrap`: Enables the `bootstrap!` macro
//!
//!   See [`bootstrap!`] and [With `scuffle_bootstrap`](#with-scuffle_bootstrap) above.
//! - `cli`: Enables the CLI
//!
//!   See [Command Line Interface](#command-line-interface) above.
//! - `all-formats`: Enables all of the following formats
//!
//! ### Format Feature Flags
//!
//! - `toml`: Enables TOML support
//! - `yaml`: Enables YAML support
//! - `json`: Enables JSON support
//! - `json5`: Enables JSON5 support
//! - `ron`: Enables RON support
//! - `ini`: Enables INI support
//!
//! ## Status
//!
//! This crate is currently under development and is not yet stable.
//!
//! Unit tests are not yet fully implemented. Use at your own risk.
//!
//! ## License
//!
//! This project is licensed under the [MIT](./LICENSE.MIT) or [Apache-2.0](./LICENSE.Apache-2.0) license.
//! You can choose between one of them if you use this work.
//!
//! `SPDX-License-Identifier: MIT OR Apache-2.0`
#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]

use std::borrow::Cow;
use std::path::Path;

use config::FileStoredFormat;

mod options;

pub use options::*;

#[derive(Debug, Clone, Copy)]
struct FormatWrapper;

#[cfg(not(feature = "templates"))]
fn template_text<'a>(
    text: &'a str,
    _: &config::FileFormat,
) -> Result<Cow<'a, str>, Box<dyn std::error::Error + Send + Sync>> {
    Ok(Cow::Borrowed(text))
}

#[cfg(feature = "templates")]
fn template_text<'a>(
    text: &'a str,
    _: &config::FileFormat,
) -> Result<Cow<'a, str>, Box<dyn std::error::Error + Send + Sync>> {
    use minijinja::syntax::SyntaxConfig;

    let mut env = minijinja::Environment::new();

    env.add_global("env", std::env::vars().collect::<std::collections::HashMap<_, _>>());
    env.set_syntax(
        SyntaxConfig::builder()
            .block_delimiters("{%", "%}")
            .variable_delimiters("${{", "}}")
            .comment_delimiters("{#", "#}")
            .build()
            .unwrap(),
    );

    Ok(Cow::Owned(env.template_from_str(text).unwrap().render(())?))
}

impl config::Format for FormatWrapper {
    fn parse(
        &self,
        uri: Option<&String>,
        text: &str,
    ) -> Result<config::Map<String, config::Value>, Box<dyn std::error::Error + Send + Sync>> {
        let uri_ext = uri.and_then(|s| Path::new(s.as_str()).extension()).and_then(|s| s.to_str());

        let mut formats: Vec<config::FileFormat> = vec![
            #[cfg(feature = "toml")]
            config::FileFormat::Toml,
            #[cfg(feature = "json")]
            config::FileFormat::Json,
            #[cfg(feature = "yaml")]
            config::FileFormat::Yaml,
            #[cfg(feature = "json5")]
            config::FileFormat::Json5,
            #[cfg(feature = "ini")]
            config::FileFormat::Ini,
            #[cfg(feature = "ron")]
            config::FileFormat::Ron,
        ];

        if let Some(uri_ext) = uri_ext {
            formats.sort_by_key(|f| if f.file_extensions().contains(&uri_ext) { 0 } else { 1 });
        }

        for format in formats {
            if let Ok(map) = format.parse(uri, template_text(text, &format)?.as_ref()) {
                return Ok(map);
            }
        }

        Err(Box::new(std::io::Error::new(
            std::io::ErrorKind::InvalidData,
            format!("No supported format found for file: {:?}", uri),
        )))
    }
}

impl config::FileStoredFormat for FormatWrapper {
    fn file_extensions(&self) -> &'static [&'static str] {
        &[
            #[cfg(feature = "toml")]
            "toml",
            #[cfg(feature = "json")]
            "json",
            #[cfg(feature = "yaml")]
            "yaml",
            #[cfg(feature = "yaml")]
            "yml",
            #[cfg(feature = "json5")]
            "json5",
            #[cfg(feature = "ini")]
            "ini",
            #[cfg(feature = "ron")]
            "ron",
        ]
    }
}

/// An error that can occur when parsing settings.
#[derive(Debug, thiserror::Error)]
pub enum SettingsError {
    #[error(transparent)]
    Config(#[from] config::ConfigError),
    #[cfg(feature = "cli")]
    #[error(transparent)]
    Clap(#[from] clap::Error),
}

/// Parse settings using the given options.
///
/// Refer to the [`Options`] struct for more information on how to customize parsing.
pub fn parse_settings<T: serde::de::DeserializeOwned>(options: Options) -> Result<T, SettingsError> {
    let mut config = config::Config::builder();

    #[allow(unused_mut)]
    let mut added_files = false;

    #[cfg(feature = "cli")]
    if let Some(cli) = options.cli {
        let command = clap::Command::new(cli.name)
            .version(cli.version)
            .about(cli.about)
            .author(cli.author)
            .bin_name(cli.name)
            .arg(
                clap::Arg::new("config")
                    .short('c')
                    .long("config")
                    .value_name("FILE")
                    .help("Path to configuration file(s)")
                    .action(clap::ArgAction::Append),
            )
            .arg(
                clap::Arg::new("overrides")
                    .long("override")
                    .short('o')
                    .alias("set")
                    .help("Provide an override for a configuration value, in the format KEY=VALUE")
                    .action(clap::ArgAction::Append),
            );

        let matches = command.get_matches_from(cli.argv);

        if let Some(config_files) = matches.get_many::<String>("config") {
            for path in config_files {
                config = config.add_source(config::File::new(path, FormatWrapper));
                added_files = true;
            }
        }

        if let Some(overrides) = matches.get_many::<String>("overrides") {
            for ov in overrides {
                let (key, value) = ov.split_once('=').ok_or_else(|| {
                    clap::Error::raw(
                        clap::error::ErrorKind::InvalidValue,
                        "Override must be in the format KEY=VALUE",
                    )
                })?;

                config = config.set_override(key, value)?;
            }
        }
    }

    if !added_files {
        if let Some(default_config_file) = options.default_config_file {
            config = config.add_source(config::File::new(default_config_file, FormatWrapper).required(false));
        }
    }

    if let Some(env_prefix) = options.env_prefix {
        config = config.add_source(config::Environment::with_prefix(env_prefix));
    }

    Ok(config.build()?.try_deserialize()?)
}

#[doc(hidden)]
#[cfg(feature = "bootstrap")]
pub mod macros {
    pub use {anyhow, scuffle_bootstrap};
}

/// This macro can be used to integrate with the [`scuffle_bootstrap`] ecosystem.
///
/// This macro will implement the [`scuffle_bootstrap::config::ConfigParser`] trait for the given type.
/// The generated implementation uses the [`parse_settings`] function to parse the settings.
///
/// ## Example
///
/// ```rust
/// #[derive(serde::Deserialize)]
/// struct MySettings {
///     key: String,
/// }
/// ```
#[cfg(feature = "bootstrap")]
#[macro_export]
macro_rules! bootstrap {
    ($ty:ty) => {
        impl $crate::macros::scuffle_bootstrap::config::ConfigParser for $ty {
            async fn parse() -> $crate::macros::anyhow::Result<Self> {
                $crate::macros::anyhow::Context::context(
                    $crate::parse_settings($crate::Options {
                        cli: Some($crate::cli!()),
                        ..::std::default::Default::default()
                    }),
                    "config",
                )
            }
        }
    };
}

#[cfg(test)]
#[cfg_attr(all(test, coverage_nightly), coverage(off))]
mod tests {
    use crate::{parse_settings, Cli, Options};

    #[derive(Debug, serde::Deserialize)]
    struct TestSettings {
        key: String,
    }

    #[test]
    fn parse_empty() {
        let err = parse_settings::<TestSettings>(Options::default()).expect_err("expected error");
        assert!(matches!(err, crate::SettingsError::Config(config::ConfigError::Message(_))));
        assert_eq!(err.to_string(), "missing field `key`");
    }

    #[test]
    fn parse_cli() {
        let options = Options {
            cli: Some(Cli {
                name: "test",
                version: "0.1.0",
                about: "test",
                author: "test",
                argv: vec!["test".to_string(), "-o".to_string(), "key=value".to_string()],
            }),
            ..Default::default()
        };
        let settings: TestSettings = parse_settings(options).expect("failed to parse settings");

        assert_eq!(settings.key, "value");
    }

    #[test]
    fn cli_error() {
        let options = Options {
            cli: Some(Cli {
                name: "test",
                version: "0.1.0",
                about: "test",
                author: "test",
                argv: vec!["test".to_string(), "-o".to_string(), "error".to_string()],
            }),
            ..Default::default()
        };
        let err = parse_settings::<TestSettings>(options).expect_err("expected error");

        if let crate::SettingsError::Clap(err) = err {
            assert_eq!(err.to_string(), "error: Override must be in the format KEY=VALUE");
        } else {
            panic!("unexpected error: {}", err);
        }
    }

    #[test]
    fn parse_file() {
        let options = Options {
            cli: Some(Cli {
                name: "test",
                version: "0.1.0",
                about: "test",
                author: "test",
                argv: vec!["test".to_string(), "-c".to_string(), "assets/test.toml".to_string()],
            }),
            ..Default::default()
        };
        let settings: TestSettings = parse_settings(options).expect("failed to parse settings");

        assert_eq!(settings.key, "filevalue");
    }

    #[test]
    fn file_error() {
        let options = Options {
            cli: Some(Cli {
                name: "test",
                version: "0.1.0",
                about: "test",
                author: "test",
                argv: vec!["test".to_string(), "-c".to_string(), "assets/invalid.txt".to_string()],
            }),
            ..Default::default()
        };
        let err = parse_settings::<TestSettings>(options).expect_err("expected error");

        if let crate::SettingsError::Config(config::ConfigError::FileParse { uri: Some(uri), cause }) = err {
            assert_eq!(uri, "assets/invalid.txt");
            assert_eq!(
                cause.to_string(),
                "No supported format found for file: Some(\"assets/invalid.txt\")"
            );
        } else {
            panic!("unexpected error: {}", err);
        }
    }

    #[test]
    fn parse_env() {
        let options = Options {
            cli: Some(Cli {
                name: "test",
                version: "0.1.0",
                about: "test",
                author: "test",
                argv: vec![],
            }),
            env_prefix: Some("SETTINGS_PARSE_ENV_TEST"),
            ..Default::default()
        };
        std::env::set_var("SETTINGS_PARSE_ENV_TEST_KEY", "envvalue");
        let settings: TestSettings = parse_settings(options).expect("failed to parse settings");

        assert_eq!(settings.key, "envvalue");
    }

    #[test]
    fn overrides() {
        let options = Options {
            cli: Some(Cli {
                name: "test",
                version: "0.1.0",
                about: "test",
                author: "test",
                argv: vec!["test".to_string(), "-o".to_string(), "key=value".to_string()],
            }),
            env_prefix: Some("SETTINGS_OVERRIDES_TEST"),
            ..Default::default()
        };
        std::env::set_var("SETTINGS_OVERRIDES_TEST_KEY", "envvalue");
        let settings: TestSettings = parse_settings(options).expect("failed to parse settings");

        assert_eq!(settings.key, "value");
    }

    #[test]
    fn templates() {
        let options = Options {
            cli: Some(Cli {
                name: "test",
                version: "0.1.0",
                about: "test",
                author: "test",
                argv: vec!["test".to_string(), "-c".to_string(), "assets/templates.toml".to_string()],
            }),
            ..Default::default()
        };
        std::env::set_var("SETTINGS_TEMPLATES_TEST", "templatevalue");
        let settings: TestSettings = parse_settings(options).expect("failed to parse settings");

        assert_eq!(settings.key, "templatevalue");
    }
}