mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-24 12:39:54 +00:00
52 lines
1.7 KiB
Rust
52 lines
1.7 KiB
Rust
|
//! General constants used throughout `cuprate-database`.
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------- Import
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------- Constants
|
||
|
/// The directory that contains database-related files.
|
||
|
///
|
||
|
/// This is a sub-directory within the Cuprate folder, e.g:
|
||
|
/// ```txt
|
||
|
/// ~/.local/share/cuprate/
|
||
|
/// ├─ database/ # <-
|
||
|
/// ├─ data.mdb
|
||
|
/// ├─ lock.mdb
|
||
|
/// ```
|
||
|
pub const CUPRATE_DATABASE_DIR: &str = "database";
|
||
|
|
||
|
/// The actual database file name.
|
||
|
///
|
||
|
/// This is a _file_ within [`CUPRATE_DATABASE_DIR`], e.g:
|
||
|
/// ```txt
|
||
|
/// ~/.local/share/cuprate/
|
||
|
/// ├─ database/
|
||
|
/// ├─ data.mdb # <-
|
||
|
/// ├─ lock.mdb
|
||
|
/// ```
|
||
|
pub const CUPRATE_DATABASE_FILE: &str = "data";
|
||
|
|
||
|
cfg_if::cfg_if! {
|
||
|
// If both backends are enabled, fallback to `heed`.
|
||
|
// This is useful when using `--all-features`.
|
||
|
if #[cfg(all(feature = "sanakirja", not(feature = "heed")))] {
|
||
|
/// Static string of the `crate` being used as the database backend.
|
||
|
pub const DATABASE_BACKEND: &str = "sanakirja";
|
||
|
} else {
|
||
|
/// Static string of the `crate` being used as the database backend.
|
||
|
pub const DATABASE_BACKEND: &str = "heed";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//---------------------------------------------------------------------------------------------------- Tests
|
||
|
#[cfg(test)]
|
||
|
mod test {
|
||
|
use super::*;
|
||
|
|
||
|
#[test]
|
||
|
/// Sanity check that our PATHs aren't empty... (will cause disaster).
|
||
|
fn non_empty_path() {
|
||
|
assert!(!CUPRATE_DATABASE_DIR.is_empty());
|
||
|
assert!(!CUPRATE_DATABASE_FILE.is_empty());
|
||
|
}
|
||
|
}
|