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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
use std::collections::HashSet;
use std::io;
use std::ops::{Deref, DerefMut};
use async_trait::async_trait;
use bytes::Bytes;
use destream::{de, en};
use futures::{future, TryFutureExt, TryStreamExt};
use sha2::{Digest, Sha256};
use tokio::io::{AsyncReadExt, AsyncWrite};
use tokio_util::io::StreamReader;
use tc_error::*;
use tc_value::Value;
use tcgeneric::{Id, PathSegment, TCBoxTryFuture};
use super::TxnId;
pub type BlockId = PathSegment;
#[async_trait]
pub trait BlockData: de::FromStream<Context = ()> + Clone + Send + Sync {
fn ext() -> &'static str;
fn max_size() -> u64;
async fn hash<'en>(&'en self) -> TCResult<Bytes>
where
Self: en::ToStream<'en>,
{
let mut data = destream_json::en::encode(self).map_err(TCError::internal)?;
let mut hasher = Sha256::default();
while let Some(chunk) = data.try_next().map_err(TCError::internal).await? {
hasher.update(&chunk);
}
let digest = hasher.finalize();
Ok(Bytes::from(digest.to_vec()))
}
async fn load<S: AsyncReadExt + Send + Unpin>(source: S) -> TCResult<Self> {
destream_json::de::read_from((), source)
.map_err(|e| TCError::internal(format!("unable to parse Value: {}", e)))
.await
}
async fn persist<'en, W: AsyncWrite + Send + Unpin>(&'en self, sink: &mut W) -> TCResult<u64>
where
Self: en::ToStream<'en>,
{
let encoded = destream_json::en::encode(self)
.map_err(|e| TCError::internal(format!("unable to serialize Value: {}", e)))?;
let mut reader = StreamReader::new(
encoded
.map_ok(Bytes::from)
.map_err(|e| io::Error::new(io::ErrorKind::InvalidInput, e)),
);
tokio::io::copy(&mut reader, sink)
.map_err(|e| TCError::bad_gateway(e))
.await
}
async fn into_size<'en>(self) -> TCResult<u64>
where
Self: Clone + en::IntoStream<'en> + 'en,
{
let encoded = destream_json::en::encode(self)
.map_err(|e| TCError::bad_request("serialization error", e))?;
encoded
.map_err(|e| TCError::bad_request("serialization error", e))
.try_fold(0, |size, chunk| {
future::ready(Ok(size + chunk.len() as u64))
})
.await
}
async fn size<'en>(&'en self) -> TCResult<u64>
where
Self: en::ToStream<'en>,
{
let encoded = destream_json::en::encode(self)
.map_err(|e| TCError::bad_request("serialization error", e))?;
encoded
.map_err(|e| TCError::bad_request("serialization error", e))
.try_fold(0, |size, chunk| {
future::ready(Ok(size + chunk.len() as u64))
})
.await
}
}
#[async_trait]
impl BlockData for Value {
fn ext() -> &'static str {
"value"
}
fn max_size() -> u64 {
4096
}
}
pub trait BlockRead<B: BlockData, F: File<B>>: Deref<Target = B> + Send {
fn upgrade(self, file: &F)
-> TCBoxTryFuture<<<F as File<B>>::Block as Block<B, F>>::WriteLock>;
}
pub trait BlockWrite<B: BlockData, F: File<B>>: DerefMut<Target = B> + Send {
fn downgrade(
self,
file: &F,
) -> TCBoxTryFuture<<<F as File<B>>::Block as Block<B, F>>::ReadLock>;
}
#[async_trait]
pub trait Block<B: BlockData, F: File<B>>: Send + Sync {
type ReadLock: BlockRead<B, F>;
type WriteLock: BlockWrite<B, F>;
async fn read(self) -> Self::ReadLock;
async fn write(self) -> Self::WriteLock;
}
#[async_trait]
pub trait Store: Clone + Send + Sync {
async fn is_empty(&self, txn_id: &TxnId) -> TCResult<bool>;
}
#[async_trait]
pub trait File<B: BlockData>: Store + Sized {
type Block: Block<B, Self>;
async fn block_ids(&self, txn_id: &TxnId) -> TCResult<HashSet<BlockId>>;
async fn unique_id(&self, txn_id: &TxnId) -> TCResult<BlockId>;
async fn contains_block(&self, txn_id: &TxnId, name: &BlockId) -> TCResult<bool>;
async fn create_block(
&self,
txn_id: TxnId,
name: BlockId,
initial_value: B,
) -> TCResult<Self::Block>;
async fn delete_block(&self, txn_id: TxnId, name: &BlockId) -> TCResult<()>;
async fn get_block(&self, txn_id: TxnId, name: BlockId) -> TCResult<Self::Block>;
async fn read_block(
&self,
txn_id: TxnId,
name: BlockId,
) -> TCResult<<Self::Block as Block<B, Self>>::ReadLock>;
async fn read_block_owned(
self,
txn_id: TxnId,
name: BlockId,
) -> TCResult<<Self::Block as Block<B, Self>>::ReadLock>;
async fn write_block(
&self,
txn_id: TxnId,
name: BlockId,
) -> TCResult<<Self::Block as Block<B, Self>>::WriteLock>;
}
#[async_trait]
pub trait Dir: Store + Sized {
type File;
type FileClass;
async fn contains(&self, txn_id: &TxnId, name: &PathSegment) -> TCResult<bool>;
async fn create_dir(&self, txn_id: TxnId, name: PathSegment) -> TCResult<Self>;
async fn create_dir_tmp(&self, txn_id: TxnId) -> TCResult<Self>;
async fn create_file(
&self,
txn_id: TxnId,
name: Id,
class: Self::FileClass,
) -> TCResult<Self::File>;
async fn create_file_tmp(&self, txn_id: TxnId, class: Self::FileClass) -> TCResult<Self::File>;
async fn get_dir(&self, txn_id: &TxnId, name: &PathSegment) -> TCResult<Option<Self>>;
async fn get_file(&self, txn_id: &TxnId, name: &Id) -> TCResult<Option<Self::File>>;
}
#[async_trait]
pub trait Persist: Sized {
type Schema;
type Store: Store;
fn schema(&'_ self) -> &'_ Self::Schema;
async fn load(schema: Self::Schema, store: Self::Store, txn_id: TxnId) -> TCResult<Self>;
}