aboutsummaryrefslogtreecommitdiff
path: root/src/model/bucket_alias_table.rs
blob: 4d300d05a96ade096f9dbac59793beb16ee33472 (plain) (blame)
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
use serde::{Deserialize, Serialize};

use garage_table::crdt::*;
use garage_table::*;
use garage_util::data::*;

/// The bucket alias table holds the names given to buckets
/// in the global namespace.
#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)]
pub struct BucketAlias {
	pub name: String,
	pub state: crdt::Lww<crdt::Deletable<AliasParams>>,
}

#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Debug, Serialize, Deserialize)]
pub struct AliasParams {
	pub bucket_id: Uuid,
	pub website_access: bool,
}

impl AutoCrdt for AliasParams {
	const WARN_IF_DIFFERENT: bool = true;
}

impl BucketAlias {
	pub fn new(name: String, bucket_id: Uuid, website_access: bool) -> Self {
		BucketAlias {
			name,
			state: crdt::Lww::new(crdt::Deletable::present(AliasParams {
				bucket_id,
				website_access,
			})),
		}
	}
	pub fn is_deleted(&self) -> bool {
		self.state.get().is_deleted()
	}
}

impl Crdt for BucketAlias {
	fn merge(&mut self, o: &Self) {
		self.state.merge(&o.state);
	}
}

impl Entry<EmptyKey, String> for BucketAlias {
	fn partition_key(&self) -> &EmptyKey {
		&EmptyKey
	}
	fn sort_key(&self) -> &String {
		&self.name
	}
}

pub struct BucketAliasTable;

impl TableSchema for BucketAliasTable {
	const TABLE_NAME: &'static str = "bucket_alias";

	type P = EmptyKey;
	type S = String;
	type E = BucketAlias;
	type Filter = DeletedFilter;

	fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool {
		filter.apply(entry.is_deleted())
	}
}