2018-02-09 17:55:19 +00:00
|
|
|
// Copyright 2018 Mozilla
|
2018-01-31 00:32:29 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-01-14 15:46:21 +00:00
|
|
|
use hyper;
|
|
|
|
use rusqlite;
|
|
|
|
use serde_json;
|
2018-06-29 04:47:19 +00:00
|
|
|
use std;
|
Basic sync support (#563) r=nalexander
* 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
2018-09-08 02:18:20 +00:00
|
|
|
use std::error::Error;
|
2018-06-29 04:47:19 +00:00
|
|
|
use uuid;
|
2018-01-31 00:32:29 +00:00
|
|
|
|
2020-01-14 15:46:21 +00:00
|
|
|
use db_traits::errors::DbError;
|
2018-01-31 00:32:29 +00:00
|
|
|
|
2018-06-07 18:28:46 +00:00
|
|
|
#[derive(Debug, Fail)]
|
|
|
|
pub enum TolstoyError {
|
Basic sync support (#563) r=nalexander
* 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
2018-09-08 02:18:20 +00:00
|
|
|
#[fail(display = "Received bad response from the remote: {}", _0)]
|
|
|
|
BadRemoteResponse(String),
|
|
|
|
|
|
|
|
// TODO expand this into concrete error types
|
|
|
|
#[fail(display = "Received bad remote state: {}", _0)]
|
|
|
|
BadRemoteState(String),
|
2018-02-09 17:55:19 +00:00
|
|
|
|
2018-06-07 18:28:46 +00:00
|
|
|
#[fail(display = "encountered more than one metadata value for key: {}", _0)]
|
|
|
|
DuplicateMetadata(String),
|
2018-02-09 17:55:19 +00:00
|
|
|
|
2018-06-07 18:28:46 +00:00
|
|
|
#[fail(display = "transaction processor didn't say it was done")]
|
|
|
|
TxProcessorUnfinished,
|
2018-02-09 17:55:19 +00:00
|
|
|
|
2018-06-07 18:28:46 +00:00
|
|
|
#[fail(display = "expected one, found {} uuid mappings for tx", _0)]
|
|
|
|
TxIncorrectlyMapped(usize),
|
2018-02-09 17:55:19 +00:00
|
|
|
|
2018-06-07 18:28:46 +00:00
|
|
|
#[fail(display = "encountered unexpected state: {}", _0)]
|
|
|
|
UnexpectedState(String),
|
2018-02-16 09:44:28 +00:00
|
|
|
|
2018-06-07 18:28:46 +00:00
|
|
|
#[fail(display = "not yet implemented: {}", _0)]
|
|
|
|
NotYetImplemented(String),
|
2018-06-29 04:47:19 +00:00
|
|
|
|
|
|
|
#[fail(display = "{}", _0)]
|
2018-08-08 17:37:59 +00:00
|
|
|
DbError(#[cause] DbError),
|
2018-06-29 04:47:19 +00:00
|
|
|
|
|
|
|
#[fail(display = "{}", _0)]
|
|
|
|
SerializationError(#[cause] serde_json::Error),
|
|
|
|
|
|
|
|
// It would be better to capture the underlying `rusqlite::Error`, but that type doesn't
|
|
|
|
// implement many useful traits, including `Clone`, `Eq`, and `PartialEq`.
|
Basic sync support (#563) r=nalexander
* 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
2018-09-08 02:18:20 +00:00
|
|
|
#[fail(display = "SQL error: {}, cause: {}", _0, _1)]
|
|
|
|
RusqliteError(String, String),
|
2018-06-29 04:47:19 +00:00
|
|
|
|
|
|
|
#[fail(display = "{}", _0)]
|
|
|
|
IoError(#[cause] std::io::Error),
|
|
|
|
|
|
|
|
#[fail(display = "{}", _0)]
|
2020-01-14 15:46:21 +00:00
|
|
|
UuidError(#[cause] uuid::Error),
|
2018-06-29 04:47:19 +00:00
|
|
|
|
|
|
|
#[fail(display = "{}", _0)]
|
|
|
|
NetworkError(#[cause] hyper::Error),
|
|
|
|
|
|
|
|
#[fail(display = "{}", _0)]
|
2020-01-14 15:46:21 +00:00
|
|
|
UriError(#[cause] http::uri::InvalidUri),
|
2018-06-29 04:47:19 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 17:37:59 +00:00
|
|
|
impl From<DbError> for TolstoyError {
|
2020-01-14 15:46:21 +00:00
|
|
|
fn from(error: DbError) -> Self {
|
2018-06-29 04:47:19 +00:00
|
|
|
TolstoyError::DbError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<serde_json::Error> for TolstoyError {
|
2020-01-14 15:46:21 +00:00
|
|
|
fn from(error: serde_json::Error) -> Self {
|
2018-06-29 04:47:19 +00:00
|
|
|
TolstoyError::SerializationError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<rusqlite::Error> for TolstoyError {
|
2020-01-14 15:46:21 +00:00
|
|
|
fn from(error: rusqlite::Error) -> Self {
|
2019-07-23 14:38:59 +00:00
|
|
|
let cause = match error.source() {
|
Basic sync support (#563) r=nalexander
* 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
2018-09-08 02:18:20 +00:00
|
|
|
Some(e) => e.to_string(),
|
2020-01-14 15:46:21 +00:00
|
|
|
None => "".to_string(),
|
Basic sync support (#563) r=nalexander
* 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
2018-09-08 02:18:20 +00:00
|
|
|
};
|
|
|
|
TolstoyError::RusqliteError(error.to_string(), cause)
|
2018-06-29 04:47:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<std::io::Error> for TolstoyError {
|
2020-01-14 15:46:21 +00:00
|
|
|
fn from(error: std::io::Error) -> Self {
|
2018-06-29 04:47:19 +00:00
|
|
|
TolstoyError::IoError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 15:46:21 +00:00
|
|
|
impl From<uuid::Error> for TolstoyError {
|
|
|
|
fn from(error: uuid::Error) -> Self {
|
2018-06-29 04:47:19 +00:00
|
|
|
TolstoyError::UuidError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<hyper::Error> for TolstoyError {
|
2020-01-14 15:46:21 +00:00
|
|
|
fn from(error: hyper::Error) -> Self {
|
2018-06-29 04:47:19 +00:00
|
|
|
TolstoyError::NetworkError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 15:46:21 +00:00
|
|
|
impl From<http::uri::InvalidUri> for TolstoyError {
|
|
|
|
fn from(error: http::uri::InvalidUri) -> Self {
|
2018-06-29 04:47:19 +00:00
|
|
|
TolstoyError::UriError(error)
|
|
|
|
}
|
2018-01-31 00:32:29 +00:00
|
|
|
}
|