mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
89 lines
2.6 KiB
Rust
89 lines
2.6 KiB
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
use std::path::Path;
|
|
|
|
use rusqlite::{params, types::FromSql, Connection, ToSql};
|
|
|
|
use super::*;
|
|
use crate::prelude::*;
|
|
|
|
impl SqliteStorage {
|
|
pub(crate) fn usn(&self, server: bool) -> Result<Usn> {
|
|
if server {
|
|
Ok(Usn(self
|
|
.db
|
|
.prepare_cached("select usn from col")?
|
|
.query_row([], |row| row.get(0))?))
|
|
} else {
|
|
Ok(Usn(-1))
|
|
}
|
|
}
|
|
|
|
pub(crate) fn set_usn(&self, usn: Usn) -> Result<()> {
|
|
self.db
|
|
.prepare_cached("update col set usn = ?")?
|
|
.execute([usn])?;
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn increment_usn(&self) -> Result<()> {
|
|
self.db
|
|
.prepare_cached("update col set usn = usn + 1")?
|
|
.execute([])?;
|
|
Ok(())
|
|
}
|
|
|
|
pub(crate) fn objects_pending_sync<T: FromSql>(&self, table: &str, usn: Usn) -> Result<Vec<T>> {
|
|
self.db
|
|
.prepare_cached(&format!(
|
|
"select id from {} where {}",
|
|
table,
|
|
usn.pending_object_clause()
|
|
))?
|
|
.query_and_then([usn], |r| r.get(0).map_err(Into::into))?
|
|
.collect()
|
|
}
|
|
|
|
pub(crate) fn maybe_update_object_usns<I: ToSql>(
|
|
&self,
|
|
table: &str,
|
|
ids: &[I],
|
|
new_usn: Option<Usn>,
|
|
) -> Result<()> {
|
|
if let Some(new_usn) = new_usn {
|
|
let mut stmt = self
|
|
.db
|
|
.prepare_cached(&format!("update {} set usn=? where id=?", table))?;
|
|
for id in ids {
|
|
stmt.execute(params![new_usn, id])?;
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
/// Return error if file is unreadable, fails the sqlite
|
|
/// integrity check, or is not in the 'delete' journal mode.
|
|
/// On success, returns the opened DB.
|
|
pub(crate) fn open_and_check_sqlite_file(path: &Path) -> Result<Connection> {
|
|
let db = Connection::open(path)?;
|
|
match db.pragma_query_value(None, "integrity_check", |row| row.get::<_, String>(0)) {
|
|
Ok(s) => {
|
|
if s != "ok" {
|
|
return Err(AnkiError::invalid_input(format!("corrupt: {}", s)));
|
|
}
|
|
}
|
|
Err(e) => return Err(e.into()),
|
|
};
|
|
match db.pragma_query_value(None, "journal_mode", |row| row.get::<_, String>(0)) {
|
|
Ok(s) => {
|
|
if s == "delete" {
|
|
Ok(db)
|
|
} else {
|
|
Err(AnkiError::invalid_input(format!("corrupt: {}", s)))
|
|
}
|
|
}
|
|
Err(e) => Err(e.into()),
|
|
}
|
|
}
|