sublime_standard_tools 0.0.15

A collection of utilities for working with Node.js projects from Rust applications
Documentation
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
//! Configuration sources.
//!
//! This module defines different sources from which configuration can be loaded,
//! such as files, environment variables, and defaults.

use async_trait::async_trait;
use std::collections::HashMap;
use std::path::{Path, PathBuf};

use crate::error::{ConfigError, ConfigResult};
use crate::filesystem::AsyncFileSystem;

use super::format::ConfigFormat;
use super::traits::ConfigProvider;
use super::value::ConfigValue;

/// Priority levels for configuration sources.
///
/// Higher priority sources override lower priority ones.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum ConfigSourcePriority {
    /// Built-in default values (lowest priority)
    Default = 0,
    /// System-wide configuration
    Global = 1,
    /// Project-specific configuration
    Project = 2,
    /// Environment variables
    Environment = 3,
    /// Runtime programmatic overrides (highest priority)
    Runtime = 4,
}

/// Different sources of configuration data.
#[derive(Debug, Clone)]
pub enum ConfigSource {
    /// Configuration from a file
    File {
        /// Path to the configuration file
        path: PathBuf,
        /// Format of the file (auto-detected if None)
        format: Option<ConfigFormat>,
        /// Priority of this source
        priority: ConfigSourcePriority,
    },
    /// Configuration from environment variables
    Environment {
        /// Prefix for environment variables (e.g., "SUBLIME_")
        prefix: String,
        /// Priority of this source
        priority: ConfigSourcePriority,
    },
    /// Default configuration values
    Default {
        /// The default values
        values: ConfigValue,
        /// Priority of this source
        priority: ConfigSourcePriority,
    },
    /// In-memory configuration
    Memory {
        /// The configuration values
        values: HashMap<String, ConfigValue>,
        /// Priority of this source
        priority: ConfigSourcePriority,
    },
}

impl ConfigSource {
    /// Creates a new file configuration source.
    ///
    /// # Arguments
    ///
    /// * `path` - Path to the configuration file
    /// * `priority` - Priority of this source
    ///
    /// # Examples
    ///
    /// ```
    /// use sublime_standard_tools::config::{ConfigSource, ConfigSourcePriority};
    ///
    /// let source = ConfigSource::file("config.toml", ConfigSourcePriority::Project);
    /// ```
    pub fn file(path: impl AsRef<Path>, priority: ConfigSourcePriority) -> Self {
        Self::File { path: path.as_ref().to_path_buf(), format: None, priority }
    }

    /// Creates a new file configuration source with a specific format.
    ///
    /// # Arguments
    ///
    /// * `path` - Path to the configuration file
    /// * `format` - The format of the file
    /// * `priority` - Priority of this source
    ///
    /// # Examples
    ///
    /// ```
    /// use sublime_standard_tools::config::{ConfigSource, ConfigFormat, ConfigSourcePriority};
    ///
    /// let source = ConfigSource::file_with_format(
    ///     "config.custom",
    ///     ConfigFormat::Toml,
    ///     ConfigSourcePriority::Project
    /// );
    /// ```
    pub fn file_with_format(
        path: impl AsRef<Path>,
        format: ConfigFormat,
        priority: ConfigSourcePriority,
    ) -> Self {
        Self::File { path: path.as_ref().to_path_buf(), format: Some(format), priority }
    }

    /// Creates a new environment variable configuration source.
    ///
    /// # Arguments
    ///
    /// * `prefix` - Prefix for environment variables
    /// * `priority` - Priority of this source
    ///
    /// # Examples
    ///
    /// ```
    /// use sublime_standard_tools::config::{ConfigSource, ConfigSourcePriority};
    ///
    /// let source = ConfigSource::environment("SUBLIME", ConfigSourcePriority::Environment);
    /// ```
    pub fn environment(prefix: impl Into<String>, priority: ConfigSourcePriority) -> Self {
        Self::Environment { prefix: prefix.into(), priority }
    }

    /// Creates a new default configuration source.
    ///
    /// # Arguments
    ///
    /// * `values` - The default configuration values
    ///
    /// # Examples
    ///
    /// ```
    /// use sublime_standard_tools::config::{ConfigSource, ConfigValue};
    /// use std::collections::HashMap;
    ///
    /// let mut defaults = HashMap::new();
    /// defaults.insert("timeout".to_string(), ConfigValue::Integer(30));
    /// let source = ConfigSource::defaults(ConfigValue::Map(defaults));
    /// ```
    pub fn defaults(values: ConfigValue) -> Self {
        Self::Default { values, priority: ConfigSourcePriority::Default }
    }

    /// Creates a new in-memory configuration source.
    ///
    /// # Arguments
    ///
    /// * `values` - The configuration values
    /// * `priority` - Priority of this source
    ///
    /// # Examples
    ///
    /// ```
    /// use sublime_standard_tools::config::{ConfigSource, ConfigValue, ConfigSourcePriority};
    /// use std::collections::HashMap;
    ///
    /// let mut values = HashMap::new();
    /// values.insert("key".to_string(), ConfigValue::String("value".to_string()));
    /// let source = ConfigSource::memory(values, ConfigSourcePriority::Runtime);
    /// ```
    pub fn memory(values: HashMap<String, ConfigValue>, priority: ConfigSourcePriority) -> Self {
        Self::Memory { values, priority }
    }

    /// Gets the priority of this source.
    #[must_use]
    #[allow(clippy::match_same_arms)] // Each variant has its own priority field
    pub fn priority(&self) -> ConfigSourcePriority {
        match self {
            Self::File { priority, .. } => *priority,
            Self::Environment { priority, .. } => *priority,
            Self::Default { priority, .. } => *priority,
            Self::Memory { priority, .. } => *priority,
        }
    }
}

/// File-based configuration provider.
pub struct FileProvider<FS: AsyncFileSystem> {
    path: PathBuf,
    format: ConfigFormat,
    priority: ConfigSourcePriority,
    fs: FS,
}

impl<FS: AsyncFileSystem> FileProvider<FS> {
    /// Creates a new file provider.
    ///
    /// # Arguments
    ///
    /// * `path` - Path to the configuration file
    /// * `format` - Format of the file
    /// * `priority` - Priority of this provider
    /// * `fs` - Filesystem to use
    pub fn new(
        path: PathBuf,
        format: ConfigFormat,
        priority: ConfigSourcePriority,
        fs: FS,
    ) -> Self {
        Self { path, format, priority, fs }
    }
}

#[async_trait]
impl<FS: AsyncFileSystem> ConfigProvider for FileProvider<FS> {
    async fn load(&self) -> ConfigResult<ConfigValue> {
        let content = self.fs.read_file_string(&self.path).await.map_err(|e| {
            ConfigError::FileReadError { path: self.path.clone(), message: e.to_string() }
        })?;

        self.format.parse(&content)
    }

    async fn save(&self, value: &ConfigValue) -> ConfigResult<()> {
        let content = self.format.serialize(value)?;
        self.fs.write_file(&self.path, content.as_bytes()).await.map_err(|e| {
            ConfigError::FileWriteError { path: self.path.clone(), message: e.to_string() }
        })
    }

    fn name(&self) -> &str {
        self.path.to_str().unwrap_or("file")
    }

    fn priority(&self) -> i32 {
        self.priority as i32
    }
}

/// Environment variable configuration provider.
pub struct EnvironmentProvider {
    prefix: String,
    priority: ConfigSourcePriority,
}

impl EnvironmentProvider {
    /// Creates a new environment provider.
    ///
    /// # Arguments
    ///
    /// * `prefix` - Prefix for environment variables
    /// * `priority` - Priority of this provider
    pub fn new(prefix: String, priority: ConfigSourcePriority) -> Self {
        Self { prefix, priority }
    }

    /// Inserts a value into a nested structure.
    fn insert_nested_value(
        map: &mut HashMap<String, ConfigValue>,
        parts: &[&str],
        value: ConfigValue,
    ) {
        if parts.is_empty() {
            return;
        }

        if parts.len() == 1 {
            map.insert(parts[0].to_string(), value);
            return;
        }

        let key = parts[0].to_string();
        let rest = &parts[1..];

        let entry = map.entry(key).or_insert_with(|| ConfigValue::Map(HashMap::new()));

        if let ConfigValue::Map(nested_map) = entry {
            Self::insert_nested_value(nested_map, rest, value);
        }
    }
}

#[async_trait]
impl ConfigProvider for EnvironmentProvider {
    async fn load(&self) -> ConfigResult<ConfigValue> {
        let mut map = HashMap::new();
        let prefix_with_underscore = format!("{}_", self.prefix);

        for (key, value) in std::env::vars() {
            if key.starts_with(&prefix_with_underscore) {
                let config_key =
                    key[prefix_with_underscore.len()..].to_lowercase().replace('_', ".");

                // Try to parse as different types
                let config_value = if let Ok(b) = value.parse::<bool>() {
                    ConfigValue::Boolean(b)
                } else if let Ok(i) = value.parse::<i64>() {
                    ConfigValue::Integer(i)
                } else if let Ok(f) = value.parse::<f64>() {
                    ConfigValue::Float(f)
                } else {
                    ConfigValue::String(value)
                };

                // Handle nested keys (e.g., "database.host" -> { database: { host: ... } })
                let parts: Vec<&str> = config_key.split('.').collect();
                Self::insert_nested_value(&mut map, &parts, config_value);
            }
        }

        Ok(ConfigValue::Map(map))
    }

    async fn save(&self, _value: &ConfigValue) -> ConfigResult<()> {
        // Environment variables cannot be saved
        Ok(())
    }

    fn name(&self) -> &'static str {
        "environment"
    }

    fn supports_save(&self) -> bool {
        false
    }

    fn priority(&self) -> i32 {
        self.priority as i32
    }
}

/// Default values configuration provider.
pub struct DefaultProvider {
    values: ConfigValue,
    priority: ConfigSourcePriority,
}

impl DefaultProvider {
    /// Creates a new default provider.
    ///
    /// # Arguments
    ///
    /// * `values` - The default values
    /// * `priority` - Priority of this provider
    pub fn new(values: ConfigValue, priority: ConfigSourcePriority) -> Self {
        Self { values, priority }
    }
}

#[async_trait]
impl ConfigProvider for DefaultProvider {
    async fn load(&self) -> ConfigResult<ConfigValue> {
        Ok(self.values.clone())
    }

    async fn save(&self, _value: &ConfigValue) -> ConfigResult<()> {
        // Default values cannot be saved
        Ok(())
    }

    fn name(&self) -> &'static str {
        "defaults"
    }

    fn supports_save(&self) -> bool {
        false
    }

    fn priority(&self) -> i32 {
        self.priority as i32
    }
}

/// In-memory configuration provider.
pub struct MemoryProvider {
    values: HashMap<String, ConfigValue>,
    priority: ConfigSourcePriority,
}

impl MemoryProvider {
    /// Creates a new memory provider.
    ///
    /// # Arguments
    ///
    /// * `values` - The configuration values
    /// * `priority` - Priority of this provider
    pub fn new(values: HashMap<String, ConfigValue>, priority: ConfigSourcePriority) -> Self {
        Self { values, priority }
    }
}

#[async_trait]
impl ConfigProvider for MemoryProvider {
    async fn load(&self) -> ConfigResult<ConfigValue> {
        Ok(ConfigValue::Map(self.values.clone()))
    }

    async fn save(&self, _value: &ConfigValue) -> ConfigResult<()> {
        // Memory provider doesn't persist
        Ok(())
    }

    fn name(&self) -> &'static str {
        "memory"
    }

    fn priority(&self) -> i32 {
        self.priority as i32
    }
}