Add a top-level "syncable" feature.
Tested with: cargo test --all cargo test --all --no-default-features cargo build --manifest-path tools/cli/Cargo.toml --no-default-features cargo run --manifest-path tools/cli/Cargo.toml --no-default-features debugcli Co-authored-by: Nick Alexander <nalexander@mozilla.com>
This commit is contained in:
parent
61e6b85e6a
commit
26446ddb05
7 changed files with 175 additions and 140 deletions
|
@ -16,9 +16,10 @@ version = "0.8.1"
|
||||||
build = "build/version.rs"
|
build = "build/version.rs"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["bundled_sqlite3"]
|
default = ["bundled_sqlite3", "syncable"]
|
||||||
bundled_sqlite3 = ["rusqlite/bundled"]
|
bundled_sqlite3 = ["rusqlite/bundled"]
|
||||||
sqlcipher = ["rusqlite/sqlcipher", "mentat_db/sqlcipher"]
|
sqlcipher = ["rusqlite/sqlcipher", "mentat_db/sqlcipher"]
|
||||||
|
syncable = ["mentat_tolstoy"]
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["tools/cli", "ffi"]
|
members = ["tools/cli", "ffi"]
|
||||||
|
@ -71,6 +72,7 @@ path = "query-translator"
|
||||||
|
|
||||||
[dependencies.mentat_tolstoy]
|
[dependencies.mentat_tolstoy]
|
||||||
path = "tolstoy"
|
path = "tolstoy"
|
||||||
|
optional = true
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
|
@ -29,6 +29,8 @@ use mentat_query_algebrizer;
|
||||||
use mentat_query_projector;
|
use mentat_query_projector;
|
||||||
use mentat_query_pull;
|
use mentat_query_pull;
|
||||||
use mentat_sql;
|
use mentat_sql;
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
use mentat_tolstoy;
|
use mentat_tolstoy;
|
||||||
|
|
||||||
pub type Result<T> = std::result::Result<T, MentatError>;
|
pub type Result<T> = std::result::Result<T, MentatError>;
|
||||||
|
@ -107,6 +109,7 @@ pub enum MentatError {
|
||||||
#[fail(display = "{}", _0)]
|
#[fail(display = "{}", _0)]
|
||||||
SQLError(#[cause] mentat_sql::SQLError),
|
SQLError(#[cause] mentat_sql::SQLError),
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
#[fail(display = "{}", _0)]
|
#[fail(display = "{}", _0)]
|
||||||
TolstoyError(#[cause] mentat_tolstoy::TolstoyError),
|
TolstoyError(#[cause] mentat_tolstoy::TolstoyError),
|
||||||
}
|
}
|
||||||
|
@ -159,6 +162,7 @@ impl From<mentat_sql::SQLError> for MentatError {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
impl From<mentat_tolstoy::TolstoyError> for MentatError {
|
impl From<mentat_tolstoy::TolstoyError> for MentatError {
|
||||||
fn from(error: mentat_tolstoy::TolstoyError) -> MentatError {
|
fn from(error: mentat_tolstoy::TolstoyError) -> MentatError {
|
||||||
MentatError::TolstoyError(error)
|
MentatError::TolstoyError(error)
|
||||||
|
|
|
@ -30,6 +30,8 @@ extern crate mentat_query_projector;
|
||||||
extern crate mentat_query_pull;
|
extern crate mentat_query_pull;
|
||||||
extern crate mentat_query_translator;
|
extern crate mentat_query_translator;
|
||||||
extern crate mentat_sql;
|
extern crate mentat_sql;
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
extern crate mentat_tolstoy;
|
extern crate mentat_tolstoy;
|
||||||
|
|
||||||
pub use mentat_core::{
|
pub use mentat_core::{
|
||||||
|
|
|
@ -38,6 +38,7 @@ use mentat_db::{
|
||||||
TxObserver,
|
TxObserver,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
use mentat_tolstoy::Syncer;
|
use mentat_tolstoy::Syncer;
|
||||||
|
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
@ -237,6 +238,7 @@ impl Pullable for Store {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
impl Syncable for Store {
|
impl Syncable for Store {
|
||||||
fn sync(&mut self, server_uri: &String, user_uuid: &String) -> Result<()> {
|
fn sync(&mut self, server_uri: &String, user_uuid: &String) -> Result<()> {
|
||||||
let uuid = Uuid::parse_str(&user_uuid).map_err(|_| MentatError::BadUuid(user_uuid.clone()))?;
|
let uuid = Uuid::parse_str(&user_uuid).map_err(|_| MentatError::BadUuid(user_uuid.clone()))?;
|
||||||
|
|
|
@ -10,40 +10,44 @@
|
||||||
|
|
||||||
extern crate mentat;
|
extern crate mentat;
|
||||||
extern crate mentat_core;
|
extern crate mentat_core;
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
extern crate mentat_tolstoy;
|
extern crate mentat_tolstoy;
|
||||||
|
|
||||||
use std::collections::BTreeMap;
|
#[cfg(feature = "syncable")]
|
||||||
|
mod tests {
|
||||||
|
use std::collections::BTreeMap;
|
||||||
|
|
||||||
use mentat::conn::Conn;
|
use mentat::conn::Conn;
|
||||||
|
|
||||||
use mentat::new_connection;
|
use mentat::new_connection;
|
||||||
use mentat_tolstoy::tx_processor::{
|
use mentat_tolstoy::tx_processor::{
|
||||||
Processor,
|
Processor,
|
||||||
TxReceiver,
|
TxReceiver,
|
||||||
TxPart,
|
TxPart,
|
||||||
};
|
};
|
||||||
use mentat_tolstoy::errors::Result;
|
use mentat_tolstoy::errors::Result;
|
||||||
use mentat_core::{
|
use mentat_core::{
|
||||||
Entid,
|
Entid,
|
||||||
TypedValue,
|
TypedValue,
|
||||||
ValueType,
|
ValueType,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct TxCountingReceiver {
|
struct TxCountingReceiver {
|
||||||
pub tx_count: usize,
|
pub tx_count: usize,
|
||||||
pub is_done: bool,
|
pub is_done: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TxCountingReceiver {
|
impl TxCountingReceiver {
|
||||||
fn new() -> TxCountingReceiver {
|
fn new() -> TxCountingReceiver {
|
||||||
TxCountingReceiver {
|
TxCountingReceiver {
|
||||||
tx_count: 0,
|
tx_count: 0,
|
||||||
is_done: false,
|
is_done: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TxReceiver for TxCountingReceiver {
|
impl TxReceiver for TxCountingReceiver {
|
||||||
fn tx<T>(&mut self, _tx_id: Entid, _d: &mut T) -> Result<()>
|
fn tx<T>(&mut self, _tx_id: Entid, _d: &mut T) -> Result<()>
|
||||||
where T: Iterator<Item=TxPart> {
|
where T: Iterator<Item=TxPart> {
|
||||||
self.tx_count = self.tx_count + 1;
|
self.tx_count = self.tx_count + 1;
|
||||||
|
@ -54,24 +58,24 @@ impl TxReceiver for TxCountingReceiver {
|
||||||
self.is_done = true;
|
self.is_done = true;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct TestingReceiver {
|
struct TestingReceiver {
|
||||||
pub txes: BTreeMap<Entid, Vec<TxPart>>,
|
pub txes: BTreeMap<Entid, Vec<TxPart>>,
|
||||||
pub is_done: bool,
|
pub is_done: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TestingReceiver {
|
impl TestingReceiver {
|
||||||
fn new() -> TestingReceiver {
|
fn new() -> TestingReceiver {
|
||||||
TestingReceiver {
|
TestingReceiver {
|
||||||
txes: BTreeMap::new(),
|
txes: BTreeMap::new(),
|
||||||
is_done: false,
|
is_done: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TxReceiver for TestingReceiver {
|
impl TxReceiver for TestingReceiver {
|
||||||
fn tx<T>(&mut self, tx_id: Entid, d: &mut T) -> Result<()>
|
fn tx<T>(&mut self, tx_id: Entid, d: &mut T) -> Result<()>
|
||||||
where T: Iterator<Item=TxPart> {
|
where T: Iterator<Item=TxPart> {
|
||||||
let datoms = self.txes.entry(tx_id).or_insert(vec![]);
|
let datoms = self.txes.entry(tx_id).or_insert(vec![]);
|
||||||
|
@ -83,16 +87,16 @@ impl TxReceiver for TestingReceiver {
|
||||||
self.is_done = true;
|
self.is_done = true;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn assert_tx_datoms_count(receiver: &TestingReceiver, tx_num: usize, expected_datoms: usize) {
|
fn assert_tx_datoms_count(receiver: &TestingReceiver, tx_num: usize, expected_datoms: usize) {
|
||||||
let tx = receiver.txes.keys().nth(tx_num).expect("first tx");
|
let tx = receiver.txes.keys().nth(tx_num).expect("first tx");
|
||||||
let datoms = receiver.txes.get(tx).expect("datoms");
|
let datoms = receiver.txes.get(tx).expect("datoms");
|
||||||
assert_eq!(expected_datoms, datoms.len());
|
assert_eq!(expected_datoms, datoms.len());
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_reader() {
|
fn test_reader() {
|
||||||
let mut c = new_connection("").expect("Couldn't open conn.");
|
let mut c = new_connection("").expect("Couldn't open conn.");
|
||||||
let mut conn = Conn::connect(&mut c).expect("Couldn't open DB.");
|
let mut conn = Conn::connect(&mut c).expect("Couldn't open DB.");
|
||||||
{
|
{
|
||||||
|
@ -154,4 +158,6 @@ fn test_reader() {
|
||||||
assert_eq!(TypedValue::Long(123), part.v);
|
assert_eq!(TypedValue::Long(123), part.v);
|
||||||
assert_eq!(true, part.added);
|
assert_eq!(true, part.added);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,9 +4,10 @@ version = "0.0.1"
|
||||||
|
|
||||||
# Forward mentat's features.
|
# Forward mentat's features.
|
||||||
[features]
|
[features]
|
||||||
default = ["bundled_sqlite3"]
|
default = ["bundled_sqlite3", "syncable"]
|
||||||
sqlcipher = ["mentat/sqlcipher"]
|
sqlcipher = ["mentat/sqlcipher"]
|
||||||
bundled_sqlite3 = ["mentat/bundled_sqlite3"]
|
bundled_sqlite3 = ["mentat/bundled_sqlite3"]
|
||||||
|
syncable = ["mentat/syncable"]
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "mentat_cli"
|
name = "mentat_cli"
|
||||||
|
|
|
@ -35,19 +35,23 @@ use mentat_core::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use mentat::{
|
use mentat::{
|
||||||
|
Binding,
|
||||||
CacheDirection,
|
CacheDirection,
|
||||||
Keyword,
|
Keyword,
|
||||||
Queryable,
|
|
||||||
QueryExplanation,
|
QueryExplanation,
|
||||||
QueryOutput,
|
QueryOutput,
|
||||||
QueryResults,
|
QueryResults,
|
||||||
|
Queryable,
|
||||||
Store,
|
Store,
|
||||||
Binding,
|
|
||||||
Syncable,
|
|
||||||
TxReport,
|
TxReport,
|
||||||
TypedValue,
|
TypedValue,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
|
use mentat::{
|
||||||
|
Syncable,
|
||||||
|
};
|
||||||
|
|
||||||
use command_parser::{
|
use command_parser::{
|
||||||
Command,
|
Command,
|
||||||
};
|
};
|
||||||
|
@ -66,7 +70,6 @@ use command_parser::{
|
||||||
COMMAND_QUERY_EXPLAIN_SHORT,
|
COMMAND_QUERY_EXPLAIN_SHORT,
|
||||||
COMMAND_QUERY_PREPARED_LONG,
|
COMMAND_QUERY_PREPARED_LONG,
|
||||||
COMMAND_SCHEMA,
|
COMMAND_SCHEMA,
|
||||||
COMMAND_SYNC,
|
|
||||||
COMMAND_TIMER_LONG,
|
COMMAND_TIMER_LONG,
|
||||||
COMMAND_TRANSACT_LONG,
|
COMMAND_TRANSACT_LONG,
|
||||||
COMMAND_TRANSACT_SHORT,
|
COMMAND_TRANSACT_SHORT,
|
||||||
|
@ -82,6 +85,11 @@ use command_parser::{
|
||||||
COMMAND_OPEN_ENCRYPTED,
|
COMMAND_OPEN_ENCRYPTED,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
|
use command_parser::{
|
||||||
|
COMMAND_SYNC,
|
||||||
|
};
|
||||||
|
|
||||||
use input::InputReader;
|
use input::InputReader;
|
||||||
use input::InputResult::{
|
use input::InputResult::{
|
||||||
Empty,
|
Empty,
|
||||||
|
@ -124,7 +132,9 @@ lazy_static! {
|
||||||
(COMMAND_TIMER_LONG, "Enable or disable timing of query and transact operations."),
|
(COMMAND_TIMER_LONG, "Enable or disable timing of query and transact operations."),
|
||||||
|
|
||||||
(COMMAND_CACHE, "Cache an attribute. Usage: `.cache :foo/bar reverse`"),
|
(COMMAND_CACHE, "Cache an attribute. Usage: `.cache :foo/bar reverse`"),
|
||||||
(COMMAND_SYNC, "Synchronize the database against a Sync Server URL for a provided user UUID."),
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
|
(COMMAND_SYNC, "Synchronize the database against a Mentat Sync Server URL for a provided user UUID."),
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -359,12 +369,20 @@ impl Repl {
|
||||||
Err(e) => eprintln!("{}", e)
|
Err(e) => eprintln!("{}", e)
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
#[cfg(feature = "syncable")]
|
||||||
Command::Sync(args) => {
|
Command::Sync(args) => {
|
||||||
match self.store.sync(&args[0], &args[1]) {
|
match self.store.sync(&args[0], &args[1]) {
|
||||||
Ok(_) => println!("Synced!"),
|
Ok(_) => println!("Synced!"),
|
||||||
Err(e) => eprintln!("{:?}", e)
|
Err(e) => eprintln!("{:?}", e)
|
||||||
};
|
};
|
||||||
}
|
},
|
||||||
|
|
||||||
|
#[cfg(not(feature = "syncable"))]
|
||||||
|
Command::Sync(_) => {
|
||||||
|
eprintln!(".sync requires the syncable Mentat feature");
|
||||||
|
},
|
||||||
|
|
||||||
Command::Timer(on) => {
|
Command::Timer(on) => {
|
||||||
self.toggle_timer(on);
|
self.toggle_timer(on);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue