xdgdir 0.8.0

Resolves paths according to the XDG Base Directory Specification
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
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
//! Resolves paths according to the XDG Base Directory Specification.
//!
//! ## Overview
//!
//! `xdgdir` is a spec-compliant crate for locating user and system directories.
//!
//! - **Zero I/O**: The library performs no filesystem operations. It is a pure
//!   path resolver, making it fast, predictable, and suitable for any context,
//!   including async runtimes.
//! - **Spec Compliant**: Correctly handles environment variables, empty
//!   variables, and default fallbacks as defined by the spec.
//! - **Simple API**: Provides a minimal, ergonomic API for the most common use
//!   cases.
//!
//! ## Examples
//!
//! To get the set of directories for a specific application, use
//! `BaseDir::new()`.
//!
//! ```rust
//! use xdgdir::BaseDir;
//!
//! # fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let dirs = BaseDir::new("my-app")?;
//!
//! // Example output: /home/user/.config/my-app
//! println!("Config file should be in: {}", dirs.config.display());
//!
//! // Example output: /home/user/.local/share/my-app
//! println!("Data files should be in: {}", dirs.data.display());
//! # Ok(())
//! # }
//! ```
//!
//! To get the raw, non-application-specific base directories, use
//! `BaseDir::global()`.
//!
//! ## Errors
//!
//! The library functions return `Result<BaseDir, xdgdir::Error>`. Errors occur
//! if the environment is misconfigured according to the spec's requirements.

use std::{
    env,
    fmt,
    path::PathBuf,
};

trait Context {
    fn get(&self, key: &str) -> Option<String>;
}

struct Env;
impl Context for Env {
    fn get(&self, key: &str) -> Option<String> {
        env::var(key).ok()
    }
}

/// An error that can occur when resolving XDG base directories.
#[derive(Debug, PartialEq)]
pub enum Error {
    /// Returned if the `$HOME` environment variable is not set or is empty.
    HomeNotSet,
    /// Returned if `$HOME` or an `XDG_*` variable contains a relative path,
    /// which is disallowed by the specification.
    ///
    /// The inner values contain the name of the environment variable and the
    /// invalid path.
    NotAbsolutePath(String, PathBuf),
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::HomeNotSet => {
                write!(f, "$HOME is not set or empty")
            }
            Error::NotAbsolutePath(key, path) => {
                write!(
                    f,
                    "{key}=\"{path}\" is not absolute path",
                    path = path.display()
                )
            }
        }
    }
}

impl std::error::Error for Error {}

/// A struct containing resolved XDG directories, representing either a global
/// or an application-specific context.
///
/// It is constructed using either `BaseDir::global()` for non-app-specific
/// paths or `BaseDir::new("app-name")` for application-specific paths.
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct BaseDir {
    /// The user's home directory (`$HOME`).
    pub home: PathBuf,
    /// The user-specific configuration directory.
    /// Default: `$HOME/.config` (or `$XDG_CONFIG_HOME`).
    pub config: PathBuf,
    /// The user-specific data directory.
    /// Default: `$HOME/.local/share` (or `$XDG_DATA_HOME`).
    pub data: PathBuf,
    /// The user-specific state directory.
    /// Default: `$HOME/.local/state` (or `$XDG_STATE_HOME`).
    pub state: PathBuf,
    /// The user-specific cache directory.
    /// Default: `$HOME/.cache` (or `$XDG_CACHE_HOME`).
    pub cache: PathBuf,
    /// The user-specific runtime directory (may not be set).
    /// Path: `$XDG_RUNTIME_DIR`.
    pub runtime: Option<PathBuf>,
    /// The directory for user-specific executables.
    /// Path: `$HOME/.local/bin`.
    pub bin: PathBuf,
}

impl BaseDir {
    fn ensure_path(key: &str, path: String) -> Result<PathBuf, Error> {
        let path = PathBuf::from(path);
        if path.is_absolute() {
            Ok(path)
        } else {
            Err(Error::NotAbsolutePath(key.to_string(), path))
        }
    }

    fn get_home(context: &impl Context) -> Result<PathBuf, Error> {
        match context.get("HOME") {
            None => Err(Error::HomeNotSet),
            Some(path) if path.is_empty() => Err(Error::HomeNotSet),
            Some(path) => Self::ensure_path("HOME", path),
        }
    }

    fn get_path(
        context: &impl Context,
        key: &str,
        default: PathBuf,
    ) -> Result<PathBuf, Error> {
        match context.get(key) {
            None => Ok(default),
            Some(path) if path.is_empty() => Ok(default),
            Some(path) => Self::ensure_path(key, path),
        }
    }

    fn from_context(context: &impl Context) -> Result<Self, Error> {
        let home = Self::get_home(context)?;
        let bin = home.join(".local").join("bin");
        let data = Self::get_path(
            context,
            "XDG_DATA_HOME",
            home.join(".local").join("share"),
        )?;
        let config = Self::get_path(
            context, //
            "XDG_CONFIG_HOME",
            home.join(".config"),
        )?;
        let state = Self::get_path(
            context,
            "XDG_STATE_HOME",
            home.join(".local").join("state"),
        )?;
        let cache = Self::get_path(
            context, //
            "XDG_CACHE_HOME",
            home.join(".cache"),
        )?;
        let runtime = match context.get("XDG_RUNTIME_DIR") {
            None => Ok(None),
            Some(path) if path.is_empty() => Ok(None),
            Some(path) => Self::ensure_path("XDG_RUNTIME_DIR", path).map(Some),
        }?;

        Ok(BaseDir {
            home,
            bin,
            data,
            config,
            state,
            cache,
            runtime,
        })
    }

    /// Resolves the global, non-application-specific XDG base directories.
    ///
    /// This constructor reads from the environment to determine the raw base
    /// paths, such as `~/.config`. It is useful for manually constructing
    /// paths.
    pub fn global() -> Result<Self, Error> {
        Self::from_context(&Env)
    }

    /// A convenience constructor that resolves all XDG base directories for a
    /// given application name.
    ///
    /// This is the recommended entry point for most applications. It is a
    /// wrapper around `BaseDir::global()` that appends the application
    /// name to the `config`, `data`, `state`, `cache`, and `runtime` paths.
    pub fn new(app_name: &str) -> Result<Self, Error> {
        let mut global_dirs = Self::global()?;

        global_dirs.config.push(app_name);
        global_dirs.data.push(app_name);
        global_dirs.state.push(app_name);
        global_dirs.cache.push(app_name);
        if let Some(runtime_path) = global_dirs.runtime.as_mut() {
            runtime_path.push(app_name);
        }

        Ok(global_dirs)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::{
        borrow::Borrow,
        collections::HashMap,
        hash::Hash,
    };

    impl<K, S> Context for HashMap<K, S>
    where
        K: Borrow<str> + Eq + Hash,
        S: AsRef<str>,
    {
        fn get(&self, key: &str) -> Option<String> {
            self.get(key).map(|s| s.as_ref().to_string())
        }
    }

    #[test]
    fn home_not_set() {
        let mut context = HashMap::new();
        context.insert("DEBUG", "");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(error, Error::HomeNotSet);
        assert_eq!(report, "$HOME is not set or empty");
    }

    #[test]
    fn home_empty() {
        let mut context = HashMap::new();
        context.insert("HOME", "");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(error, Error::HomeNotSet);
        assert_eq!(report, "$HOME is not set or empty");
    }

    #[test]
    fn home_not_absolute() {
        let mut context = HashMap::new();
        context.insert("HOME", "some/dir");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(
            error,
            Error::NotAbsolutePath("HOME".into(), "some/dir".into())
        );
        assert_eq!(report, "HOME=\"some/dir\" is not absolute path");
    }

    #[test]
    fn bin() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.bin, PathBuf::from("/home/user/.local/bin"));
    }

    #[test]
    fn xdg_data_home_not_set() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.data, PathBuf::from("/home/user/.local/share"));
    }

    #[test]
    fn xdg_data_home_not_absolute() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_DATA_HOME", "some/dir");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(
            error,
            Error::NotAbsolutePath("XDG_DATA_HOME".into(), "some/dir".into())
        );
        assert_eq!(report, "XDG_DATA_HOME=\"some/dir\" is not absolute path");
    }

    #[test]
    fn xdg_data_home_valid() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_DATA_HOME", "/some/dir");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.data, PathBuf::from("/some/dir"));
    }

    #[test]
    fn xdg_config_home_not_set() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.config, PathBuf::from("/home/user/.config"));
    }

    #[test]
    fn xdg_config_home_not_absolute() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_CONFIG_HOME", "some/dir");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(
            error,
            Error::NotAbsolutePath("XDG_CONFIG_HOME".into(), "some/dir".into())
        );
        assert_eq!(report, "XDG_CONFIG_HOME=\"some/dir\" is not absolute path");
    }

    #[test]
    fn xdg_config_home_valid() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_CONFIG_HOME", "/some/dir");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.config, PathBuf::from("/some/dir"));
    }

    #[test]
    fn xdg_state_home_not_set() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.state, PathBuf::from("/home/user/.local/state"));
    }

    #[test]
    fn xdg_state_home_not_absolute() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_STATE_HOME", "some/dir");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(
            error,
            Error::NotAbsolutePath("XDG_STATE_HOME".into(), "some/dir".into())
        );
        assert_eq!(report, "XDG_STATE_HOME=\"some/dir\" is not absolute path");
    }

    #[test]
    fn xdg_state_home_valid() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_STATE_HOME", "/some/dir");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.state, PathBuf::from("/some/dir"));
    }

    #[test]
    fn xdg_cache_home_not_set() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.cache, PathBuf::from("/home/user/.cache"));
    }

    #[test]
    fn xdg_cache_home_not_absolute() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_CACHE_HOME", "some/dir");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(
            error,
            Error::NotAbsolutePath("XDG_CACHE_HOME".into(), "some/dir".into())
        );
        assert_eq!(report, "XDG_CACHE_HOME=\"some/dir\" is not absolute path");
    }

    #[test]
    fn xdg_cache_home_valid() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_CACHE_HOME", "/some/dir");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.cache, PathBuf::from("/some/dir"));
    }

    #[test]
    fn xdg_runtime_dir_not_set() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.runtime, None);
    }

    #[test]
    fn xdg_runtime_dir_empty() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_RUNTIME_DIR", "");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.runtime, None);
    }

    #[test]
    fn xdg_runtime_dir_not_absolute() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_RUNTIME_DIR", "some/dir");
        let result = BaseDir::from_context(&context);
        let error = result.unwrap_err();
        let report = format!("{}", error);
        assert_eq!(
            error,
            Error::NotAbsolutePath("XDG_RUNTIME_DIR".into(), "some/dir".into())
        );
        assert_eq!(report, "XDG_RUNTIME_DIR=\"some/dir\" is not absolute path");
    }

    #[test]
    fn xdg_runtime_dir_valid() {
        let mut context = HashMap::new();
        context.insert("HOME", "/home/user");
        context.insert("XDG_RUNTIME_DIR", "/run/user/1000");
        let result = BaseDir::from_context(&context).unwrap();
        assert_eq!(result.runtime, Some(PathBuf::from("/run/user/1000")));
    }
}