aboutsummaryrefslogtreecommitdiff
path: root/src/db/lib.rs
diff options
context:
space:
mode:
authorZdenek Crha <zdenek.crha@gmail.com>2024-01-18 17:57:53 +0100
committerZdenek Crha <zdenek.crha@gmail.com>2024-01-18 17:57:56 +0100
commit4b54e053dfd1bd950e86ffad9b4155a47806d8f1 (patch)
treea13ece1f8aac75560503a672afe6b0ca417f46d3 /src/db/lib.rs
parent8527dd87cc7a685b3ffd2054fca1a88574b93ea4 (diff)
downloadgarage-4b54e053dfd1bd950e86ffad9b4155a47806d8f1.tar.gz
garage-4b54e053dfd1bd950e86ffad9b4155a47806d8f1.zip
convert_db: prevent conversion between same input/output engine
Use optional DB open overrides for both input and output database. Duplicating the same override flag for input/output would result in too many, too long flags. It would be too costly for very rare edge-case where converting between same DB engine, just with different flags. Because overrides flags for different engines are disjoint and we are preventing conversion between same input/ouput DB engine, we can have only one set. The override flag will be passed either to input or output, based on engine type it belongs to. It will never be passed to both of them and cause unwelcome surprise to user.
Diffstat (limited to 'src/db/lib.rs')
-rw-r--r--src/db/lib.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/db/lib.rs b/src/db/lib.rs
index fe44b01e..427140f9 100644
--- a/src/db/lib.rs
+++ b/src/db/lib.rs
@@ -171,6 +171,53 @@ impl Db {
}
}
+/// List of supported database engine types
+#[derive(Clone, Copy, Debug, PartialEq, Eq)]
+pub enum Engine {
+ #[cfg(feature = "lmdb")]
+ Lmdb,
+
+ #[cfg(feature = "sqlite")]
+ Sqlite,
+
+ #[cfg(feature = "sled")]
+ Sled,
+}
+
+impl std::fmt::Display for Engine {
+ fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
+ match self {
+ #[cfg(feature = "lmdb")]
+ Self::Lmdb => fmt.write_str("lmdb"),
+
+ #[cfg(feature = "sqlite")]
+ Self::Sqlite => fmt.write_str("sqlite"),
+
+ #[cfg(feature = "sled")]
+ Self::Sled => fmt.write_str("sled"),
+ }
+ }
+}
+
+impl std::str::FromStr for Engine {
+ type Err = Error;
+
+ fn from_str(text: &str) -> Result<Engine> {
+ match text {
+ #[cfg(feature = "lmdb")]
+ "lmdb" | "heed" => Ok(Self::Lmdb),
+
+ #[cfg(feature = "sqlite")]
+ "sqlite" | "sqlite3" | "rusqlite" => Ok(Self::Sqlite),
+
+ #[cfg(feature = "sled")]
+ "sled" => Ok(Self::Sled),
+
+ kind => Err(Error(format!("Invalid DB engine: {}", kind).into())),
+ }
+ }
+}
+
#[allow(clippy::len_without_is_empty)]
impl Tree {
#[inline]