1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
use std::{
collections::HashSet,
};
use enum_dispatch::enum_dispatch;
use samevariant::samevariant;
use crate::graphmigrate::Comparison;
use super::{
table::{
NodeTable_,
TableId,
},
field::{
NodeField_,
FieldId,
},
constraint::{
NodeConstraint_,
ConstraintId,
},
index::{
NodeIndex_,
IndexId,
},
utils::{
SqliteMigrateCtx,
SqliteNodeDataDispatch,
SqliteNodeData,
},
};
#[derive(Clone, Eq, PartialEq, Hash, Debug)]
pub enum Id {
Table(TableId),
Field(FieldId),
Constraint(ConstraintId),
Index(IndexId),
}
#[derive(Clone)]
#[enum_dispatch(SqliteNodeDataDispatch)]
#[samevariant(PairwiseNode)]
pub(crate) enum Node {
Table(NodeTable_),
Field(NodeField_),
Constraint(NodeConstraint_),
Index(NodeIndex_),
}
impl Node {
pub(crate) fn table(t: NodeTable_) -> Self {
Node::Table(t)
}
pub(crate) fn field(t: NodeField_) -> Self {
Node::Field(t)
}
pub(crate) fn table_constraint(t: NodeConstraint_) -> Self {
Node::Constraint(t)
}
pub(crate) fn table_index(t: NodeIndex_) -> Self {
Node::Index(t)
}
}
impl<'a> crate::graphmigrate::NodeData for Node {
type O = SqliteMigrateCtx;
type I = Id;
fn compare(&self, other: &Self, created: &HashSet<Self::I>) -> Comparison {
match PairwiseNode::pairs(self, &other) {
PairwiseNode::Table(current, old) => current.compare(old, created),
PairwiseNode::Field(current, old) => current.compare(old, created),
PairwiseNode::Constraint(current, old) => current.compare(old, created),
PairwiseNode::Index(current, old) => current.compare(old, created),
PairwiseNode::Nonmatching(_, _) => unreachable!(),
}
}
fn create(&self, ctx: &mut SqliteMigrateCtx) {
SqliteNodeDataDispatch::create(self, ctx)
}
fn delete(&self, ctx: &mut SqliteMigrateCtx) {
SqliteNodeDataDispatch::delete(self, ctx)
}
fn update(&self, ctx: &mut SqliteMigrateCtx, old: &Self) {
match PairwiseNode::pairs(self, &old) {
PairwiseNode::Table(current, old) => current.update(ctx, &old),
PairwiseNode::Field(current, old) => current.update(ctx, &old),
PairwiseNode::Constraint(current, old) => current.update(ctx, &old),
PairwiseNode::Index(current, old) => current.update(ctx, &old),
PairwiseNode::Nonmatching(_, _) => unreachable!(),
}
}
fn create_coalesce(&mut self, other: Self) -> Option<Self> {
SqliteNodeDataDispatch::create_coalesce(self, other)
}
fn delete_coalesce(&mut self, other: Self) -> Option<Self> {
SqliteNodeDataDispatch::delete_coalesce(self, other)
}
}