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
// Copyright 2019 MaidSafe.net limited.
//
// This SAFE Network Software is licensed to you under the MIT license <LICENSE-MIT
// http://opensource.org/licenses/MIT> or the Modified BSD license <LICENSE-BSD
// https://opensource.org/licenses/BSD-3-Clause>, at your option. This file may not be copied,
// modified, or distributed except according to those terms. Please review the Licences for the
// specific language governing permissions and limitations relating to use of the SAFE Network
// Software.

#[cfg(any(
    all(
        unix,
        not(any(target_os = "android", target_os = "androideabi", target_os = "ios"))
    ),
    windows
))]
use directories::ProjectDirs;
use std::path::{Path, PathBuf};

/// For Operating Systems beyond Windows or UNIX. May also be used for testing
/// and mobile platforms.
pub struct OverRide {
    path: PathBuf,
}

impl OverRide {
    /// This path will be the root directory that all files will be read and written.
    #[allow(unused)]
    pub fn new(path: &str) -> Self {
        Self {
            path: PathBuf::from(path.to_owned()),
        }
    }
}

/// Location at which data such as config, keys, certificates and other backup data
/// are stored.
pub enum Dirs {
    /// User defined custom directory for all data.
    #[allow(unused)]
    Overide(OverRide),
    /// Set of directories to specifically store the cache, config, app data etc.
    #[cfg(any(
        all(
            unix,
            not(any(target_os = "android", target_os = "androideabi", target_os = "ios"))
        ),
        windows
    ))]
    Desktop(ProjectDirs),
}

impl Dirs {
    /// Location of config, keys and certificates.
    pub(crate) fn config_dir(&self) -> &Path {
        use Dirs::*;
        match *self {
            Overide(ref x) => x.path.as_path(),
            #[cfg(any(
                all(
                    unix,
                    not(any(target_os = "android", target_os = "androideabi", target_os = "ios"))
                ),
                windows
            ))]
            Desktop(ref x) => x.config_dir(),
        }
    }

    /// Location were boostrap cache is stored.
    pub(crate) fn cache_dir(&self) -> &Path {
        use Dirs::*;
        match *self {
            Overide(ref x) => x.path.as_path(),
            #[cfg(any(
                all(
                    unix,
                    not(any(target_os = "android", target_os = "androideabi", target_os = "ios"))
                ),
                windows
            ))]
            Desktop(ref x) => x.cache_dir(),
        }
    }

    /// Location of any backup data for restarts.
    #[allow(unused)]
    pub(crate) fn data_dir(&self) -> &Path {
        use Dirs::*;
        match *self {
            Overide(ref x) => x.path.as_path(),
            #[cfg(any(
                all(
                    unix,
                    not(any(target_os = "android", target_os = "androideabi", target_os = "ios"))
                ),
                windows
            ))]
            Desktop(ref x) => x.data_dir(),
        }
    }
}