-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c24460d
commit e584618
Showing
4 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
use crate::error::Error; | ||
use std::str::FromStr; | ||
|
||
/// Refer to [SQLite documentation] for the meaning of various synchronous settings. | ||
/// | ||
/// [SQLite documentation]: https://www.sqlite.org/pragma.html#pragma_synchronous | ||
#[derive(Debug, Clone)] | ||
pub enum SqliteSynchronous { | ||
Off, | ||
Normal, | ||
Full, | ||
Extra, | ||
} | ||
|
||
impl SqliteSynchronous { | ||
pub(crate) fn as_str(&self) -> &'static str { | ||
match self { | ||
SqliteSynchronous::Off => "OFF", | ||
SqliteSynchronous::Normal => "NORMAL", | ||
SqliteSynchronous::Full => "FULL", | ||
SqliteSynchronous::Extra => "EXTRA", | ||
} | ||
} | ||
} | ||
|
||
impl Default for SqliteSynchronous { | ||
fn default() -> Self { | ||
SqliteSynchronous::Full | ||
} | ||
} | ||
|
||
impl FromStr for SqliteSynchronous { | ||
type Err = Error; | ||
|
||
fn from_str(s: &str) -> Result<Self, Error> { | ||
Ok(match &*s.to_ascii_lowercase() { | ||
"off" => SqliteSynchronous::Off, | ||
"normal" => SqliteSynchronous::Normal, | ||
"full" => SqliteSynchronous::Full, | ||
"extra" => SqliteSynchronous::Extra, | ||
|
||
_ => { | ||
return Err(Error::Configuration( | ||
format!("unknown value {:?} for `synchronous`", s).into(), | ||
)); | ||
} | ||
}) | ||
} | ||
} |