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
use std::{
env, fs,
io::{Error, ErrorKind},
path::PathBuf,
};
/// Configuration path resolver following XDG Base Directory specification.
pub struct ConfigPaths;
impl ConfigPaths {
/// Configuration directory path (`$XDG_CONFIG_HOME/wayle` or `~/.config/wayle`).
///
/// # Errors
///
/// Returns error if neither `XDG_CONFIG_HOME` nor `HOME` is set.
pub fn config_dir() -> Result<PathBuf, Error> {
let config_home = env::var("XDG_CONFIG_HOME")
.or_else(|_| env::var("HOME").map(|home| format!("{home}/.config")))
.map_err(|e| {
Error::new(
ErrorKind::NotFound,
format!("Neither XDG_CONFIG_HOME nor HOME environment variable found: {e}"),
)
})?;
Ok(PathBuf::from(config_home).join("wayle"))
}
/// Data directory (`$XDG_DATA_HOME/wayle` or `~/.local/share/wayle`).
/// Creates directory if absent.
///
/// # Errors
///
/// Returns error if environment variables are not set or directory creation fails.
pub fn data_dir() -> Result<PathBuf, Error> {
let data_home = env::var("XDG_DATA_HOME")
.or_else(|_| env::var("HOME").map(|home| format!("{home}/.local/share")))
.map_err(|e| {
Error::new(
ErrorKind::NotFound,
format!("Neither XDG_DATA_HOME nor HOME environment variable found: {e}"),
)
})?;
let data_dir = PathBuf::from(data_home).join("wayle");
if !data_dir.exists() {
fs::create_dir_all(&data_dir)?;
}
Ok(data_dir)
}
/// State directory (`$XDG_STATE_HOME/wayle` or `~/.local/state/wayle`).
/// Creates directory if absent.
///
/// # Errors
///
/// Returns error if environment variables are not set or directory creation fails.
pub fn state_dir() -> Result<PathBuf, Error> {
let state_home = env::var("XDG_STATE_HOME")
.or_else(|_| env::var("HOME").map(|home| format!("{home}/.local/state")))
.map_err(|e| {
Error::new(
ErrorKind::NotFound,
format!("Neither XDG_STATE_HOME nor HOME environment variable found: {e}"),
)
})?;
let state_dir = PathBuf::from(state_home).join("wayle");
if !state_dir.exists() {
fs::create_dir_all(&state_dir)?;
}
Ok(state_dir)
}
/// Log directory (`$XDG_STATE_HOME/wayle` or `~/.local/state/wayle`).
/// Creates directory if absent.
///
/// # Errors
///
/// Returns error if directory creation fails.
pub fn log_dir() -> Result<PathBuf, Box<dyn std::error::Error>> {
let log_dir = Self::state_dir()?;
if !log_dir.exists() {
fs::create_dir_all(&log_dir)?;
}
Ok(log_dir)
}
/// Path to `config.toml`.
///
/// # Panics
///
/// Panics if config directory cannot be determined.
#[allow(clippy::panic)]
pub fn main_config() -> PathBuf {
match Self::config_dir() {
Ok(dir) => dir.join("config.toml"),
Err(_) => {
panic!("Failed to determine config directory - is $HOME or $XDG_CONFIG_HOME set?")
}
}
}
/// Path to `runtime.toml` (GUI-modified settings).
///
/// # Panics
///
/// Panics if config directory cannot be determined.
#[allow(clippy::panic)]
pub fn runtime_config() -> PathBuf {
match Self::config_dir() {
Ok(dir) => dir.join("runtime.toml"),
Err(_) => {
panic!("Failed to determine config directory - is $HOME or $XDG_CONFIG_HOME set?")
}
}
}
/// Path to `themes/` directory.
///
/// # Panics
///
/// Panics if config directory cannot be determined.
#[allow(clippy::panic)]
pub fn themes_dir() -> PathBuf {
match Self::config_dir() {
Ok(dir) => dir.join("themes"),
Err(_) => {
panic!("Failed to determine config directory - is $HOME or $XDG_CONFIG_HOME set?")
}
}
}
/// Path to `schema.json` for editor autocomplete and validation.
///
/// # Panics
///
/// Panics if config directory cannot be determined.
#[allow(clippy::panic)]
pub fn schema_json() -> PathBuf {
match Self::config_dir() {
Ok(dir) => dir.join("schema.json"),
Err(_) => {
panic!("Failed to determine config directory - is $HOME or $XDG_CONFIG_HOME set?")
}
}
}
/// Path to `config.toml.example` with default configuration values.
///
/// # Panics
///
/// Panics if config directory cannot be determined.
#[allow(clippy::panic)]
pub fn example_config() -> PathBuf {
match Self::config_dir() {
Ok(dir) => dir.join("config.toml.example"),
Err(_) => {
panic!("Failed to determine config directory - is $HOME or $XDG_CONFIG_HOME set?")
}
}
}
/// Path to `tombi.toml` for Tombi TOML editor support.
///
/// # Panics
///
/// Panics if config directory cannot be determined.
#[allow(clippy::panic)]
pub fn tombi_config() -> PathBuf {
match Self::config_dir() {
Ok(dir) => dir.join("tombi.toml"),
Err(_) => {
panic!("Failed to determine config directory - is $HOME or $XDG_CONFIG_HOME set?")
}
}
}
/// Cache directory (`$XDG_CACHE_HOME/wayle` or `~/.cache/wayle`).
/// Creates directory if absent.
///
/// # Errors
///
/// Returns error if environment variables are not set or directory creation fails.
pub fn cache_dir() -> Result<PathBuf, Error> {
let cache_home = env::var("XDG_CACHE_HOME")
.or_else(|_| env::var("HOME").map(|home| format!("{home}/.cache")))
.map_err(|e| {
Error::new(
ErrorKind::NotFound,
format!("Neither XDG_CACHE_HOME nor HOME environment variable found: {e}"),
)
})?;
let cache_dir = PathBuf::from(cache_home).join("wayle");
if !cache_dir.exists() {
fs::create_dir_all(&cache_dir)?;
}
Ok(cache_dir)
}
/// Path to cached matugen colors JSON.
///
/// # Errors
///
/// Returns error if cache directory cannot be determined or created.
pub fn matugen_colors() -> Result<PathBuf, Error> {
Ok(Self::cache_dir()?.join("matugen-colors.json"))
}
/// Path to pywal colors JSON (`~/.cache/wal/colors.json`).
///
/// # Errors
///
/// Returns error if `HOME` or `XDG_CACHE_HOME` is not set.
pub fn pywal_colors() -> Result<PathBuf, Error> {
let cache_home = env::var("XDG_CACHE_HOME")
.or_else(|_| env::var("HOME").map(|home| format!("{home}/.cache")))
.map_err(|e| {
Error::new(
ErrorKind::NotFound,
format!("Neither XDG_CACHE_HOME nor HOME environment variable found: {e}"),
)
})?;
Ok(PathBuf::from(cache_home).join("wal/colors.json"))
}
/// Path to cached wallust colors JSON.
///
/// # Errors
///
/// Returns error if cache directory cannot be determined or created.
pub fn wallust_colors() -> Result<PathBuf, Error> {
Ok(Self::cache_dir()?.join("wallust-colors.json"))
}
}