b22b29679b
* Pre: remove remnants of 'open_empty' * Pre: Cleanup 'datoms' table after a timeline move Since timeline move operations use a transactor, they generate a "phantom" 'tx' and a 'txInstant' assertion. It is "phantom" in a sense that it was never present in the 'transactions' table, and is entirely synthetic as far as our database is concerned. It's an implementational artifact, and we were not cleaning it up. It becomes a problem when we start inserting transactions after a move. Once the transactor clashes with the phantom 'tx', it will retract the phantom 'txInstant' value, leaving the transactions log in an incorrect state. This patch adds a test for this scenario and elects the easy way out: simply remove the offending 'txInstant' datom. * Part 1: Sync without support for side-effects A "side-effect" is defined here as a mutation of a remote state as part of the sync. If, during a sync we determine that a remote state needs to be changed, bail out. This generally supports different variations of "baton-passing" syncing, where clients will succeed syncing if each change is non-conflicting. * Part 2: Support basic "side-effects" syncing This patch introduces a concept of a follow-up sync. If a sync generated a "merge transaction" (a regular transaction that contains assertions necessary for local and remote transaction logs to converge), then this transaction needs to be uploaded in a follow-up sync. Generated SyncReport indicates if a follow-up sync is required. Follow-up sync itself is just a regular sync. If remote state did not change, it will result in a simple RemoteFastForward. Otherwise, we'll continue merging and requesting a follow-up. Schema alterations are explicitly not supported. As local transactions are rebased on top of remote, following changes happen: - entids are changed into tempids, letting transactor upsert :db/unique values - entids for retractions are changed into lookup-refs if we're confident they'll succeed -- otherwise, retractions are dropped on the floor * Post: use a macro for more readable tests * Tolstoy README
105 lines
2.8 KiB
Rust
105 lines
2.8 KiB
Rust
// Copyright 2018 Mozilla
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
// this file except in compliance with the License. You may obtain a copy of the
|
|
// License at http://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software distributed
|
|
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations under the License.
|
|
|
|
// TODO could hide this behind #[cfg(test)], since this is only for test use.
|
|
|
|
use rusqlite;
|
|
|
|
use uuid::Uuid;
|
|
|
|
use edn::entities::{
|
|
EntidOrIdent,
|
|
};
|
|
|
|
use core_traits::{
|
|
Entid,
|
|
TypedValue,
|
|
};
|
|
|
|
use mentat_core::{
|
|
HasSchema,
|
|
Schema,
|
|
};
|
|
|
|
use mentat_db::{
|
|
TypedSQLValue,
|
|
};
|
|
|
|
use mentat_db::debug::{
|
|
Datom,
|
|
Datoms,
|
|
transactions_after,
|
|
};
|
|
|
|
use types::{
|
|
Tx,
|
|
TxPart,
|
|
};
|
|
|
|
/// A rough equivalent of mentat_db::debug::transactions_after
|
|
/// for Tolstoy's Tx type.
|
|
pub fn txs_after(sqlite: &rusqlite::Connection, schema: &Schema, after: Entid) -> Vec<Tx> {
|
|
let transactions = transactions_after(
|
|
sqlite, schema, after
|
|
).expect("remote transactions");
|
|
|
|
let mut txs = vec![];
|
|
|
|
for transaction in transactions.0 {
|
|
let mut tx = Tx {
|
|
tx: Uuid::new_v4(),
|
|
parts: vec![],
|
|
};
|
|
|
|
for datom in &transaction.0 {
|
|
let e = match datom.e {
|
|
EntidOrIdent::Entid(ref e) => *e,
|
|
_ => panic!(),
|
|
};
|
|
let a = match datom.a {
|
|
EntidOrIdent::Entid(ref a) => *a,
|
|
EntidOrIdent::Ident(ref a) => schema.get_entid(a).unwrap().0,
|
|
};
|
|
|
|
tx.parts.push(TxPart {
|
|
partitions: None,
|
|
e: e,
|
|
a: a,
|
|
v: TypedValue::from_edn_value(&datom.v).unwrap(),
|
|
tx: datom.tx,
|
|
added: datom.added.unwrap()
|
|
});
|
|
}
|
|
|
|
txs.push(tx);
|
|
}
|
|
|
|
txs
|
|
}
|
|
|
|
pub fn part_to_datom(schema: &Schema, part: &TxPart) -> Datom {
|
|
Datom {
|
|
e: match schema.get_ident(part.e) {
|
|
Some(ident) => EntidOrIdent::Ident(ident.clone()),
|
|
None => EntidOrIdent::Entid(part.e),
|
|
},
|
|
a: match schema.get_ident(part.a) {
|
|
Some(ident) => EntidOrIdent::Ident(ident.clone()),
|
|
None => EntidOrIdent::Entid(part.a),
|
|
},
|
|
v: TypedValue::to_edn_value_pair(&part.v).0,
|
|
tx: part.tx,
|
|
added: Some(part.added),
|
|
}
|
|
}
|
|
|
|
pub fn parts_to_datoms(schema: &Schema, parts: &Vec<TxPart>) -> Datoms {
|
|
Datoms(parts.iter().map(|p| part_to_datom(schema, p)).collect())
|
|
}
|