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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
use crate::root_state::*;
use crate::UniCyfsStackRef;
use cyfs_base::*;
use async_std::sync::Mutex as AsyncMutex;
use once_cell::sync::OnceCell;
use std::sync::{
atomic::{AtomicBool, Ordering},
Arc,
};
#[derive(Clone)]
struct StorageOpData {
path_stub: PathOpEnvStub,
single_stub: SingleOpEnvStub,
current: Arc<AsyncMutex<Option<ObjectId>>>,
}
pub struct StateStorage {
path: String,
content_type: ObjectMapSimpleContentType,
global_state: GlobalStateOutputProcessorRef,
target: Option<ObjectId>,
dec_id: Option<ObjectId>,
dirty: Arc<AtomicBool>,
auto_save: Arc<AtomicBool>,
op_data: OnceCell<StorageOpData>,
}
impl Drop for StateStorage {
fn drop(&mut self) {
async_std::task::block_on(async move {
self.abort().await;
})
}
}
impl StateStorage {
pub fn new(
global_state: GlobalStateOutputProcessorRef,
path: impl Into<String>,
content_type: ObjectMapSimpleContentType,
target: Option<ObjectId>,
dec_id: Option<ObjectId>,
) -> Self {
Self {
global_state,
path: path.into(),
content_type,
target,
dec_id,
dirty: Arc::new(AtomicBool::new(false)),
auto_save: Arc::new(AtomicBool::new(false)),
op_data: OnceCell::new(),
}
}
pub fn new_with_stack(
stack: UniCyfsStackRef,
category: GlobalStateCategory,
path: impl Into<String>,
content_type: ObjectMapSimpleContentType,
target: Option<ObjectId>,
dec_id: Option<ObjectId>,
) -> Self {
let global_state = match category {
GlobalStateCategory::RootState => stack.root_state().clone(),
GlobalStateCategory::LocalCache => stack.local_cache().clone(),
};
Self {
global_state,
path: path.into(),
content_type,
target,
dec_id,
dirty: Arc::new(AtomicBool::new(false)),
auto_save: Arc::new(AtomicBool::new(false)),
op_data: OnceCell::new(),
}
}
pub fn path(&self) -> &str {
&self.path
}
pub fn stub(&self) -> &SingleOpEnvStub {
&self.op_data.get().unwrap().single_stub
}
pub fn is_dirty(&self) -> bool {
self.dirty.load(Ordering::SeqCst)
}
pub fn set_dirty(&self, dirty: bool) {
self.dirty.store(dirty, Ordering::SeqCst);
}
pub async fn init(&self) -> BuckyResult<()> {
assert!(self.op_data.get().is_none());
let op_data = self.load().await?;
if let Err(_) = self.op_data.set(op_data) {
unreachable!();
}
Ok(())
}
pub fn start_save(&self, dur: std::time::Duration) {
use async_std::prelude::*;
let ret = self
.auto_save
.compare_exchange(false, true, Ordering::AcqRel, Ordering::Acquire);
if ret.is_err() {
warn!("storage already in saving state! path={}", self.path);
return;
}
let auto_save = self.auto_save.clone();
let path = self.path.clone();
let dirty = self.dirty.clone();
let op_data = self.op_data.get().unwrap().clone();
async_std::task::spawn(async move {
let mut interval = async_std::stream::interval(dur);
while let Some(_) = interval.next().await {
if !auto_save.load(Ordering::SeqCst) {
warn!("storage auto save stopped! path={}", path);
break;
}
let _ = Self::save_impl(&path, &dirty, &op_data).await;
}
});
}
pub fn stop_save(&self) {
if let Ok(_) =
self.auto_save
.compare_exchange(true, false, Ordering::AcqRel, Ordering::Acquire)
{
info!("stop state storage auto save! path={}", self.path);
}
}
async fn load(&self) -> BuckyResult<StorageOpData> {
let dec_id = match &self.dec_id {
Some(dec_id) => Some(dec_id.to_owned()),
None => Some(cyfs_core::get_system_dec_app().to_owned()),
};
let stub = GlobalStateStub::new(self.global_state.clone(), self.target.clone(), dec_id);
let path_stub = stub.create_path_op_env().await?;
path_stub
.lock(vec![self.path.clone()], u64::MAX)
.await
.unwrap();
let single_stub = stub.create_single_op_env().await?;
let current = path_stub.get_by_path(&self.path).await?;
match current {
Some(ref obj) => {
single_stub.load(obj.clone()).await?;
}
None => {
single_stub.create_new(self.content_type).await?;
}
}
let op_data = StorageOpData {
path_stub,
single_stub,
current: Arc::new(AsyncMutex::new(current)),
};
Ok(op_data)
}
pub async fn reload(&self) -> BuckyResult<bool> {
let op_data = self.op_data.get().unwrap();
let new = op_data.path_stub.get_by_path(&self.path).await?;
let mut current = op_data.current.lock().await;
if *current == new {
return Ok(false);
}
match new {
Some(ref obj) => {
op_data.single_stub.load(obj.clone()).await?;
}
None => {
op_data.single_stub.create_new(self.content_type).await?;
}
}
*current = new;
Ok(true)
}
pub async fn save(&self) -> BuckyResult<()> {
if let Some(op_data) = self.op_data.get() {
Self::save_impl(&self.path, &self.dirty, op_data).await
} else {
Ok(())
}
}
async fn save_impl(
path: &str,
dirty: &Arc<AtomicBool>,
op_data: &StorageOpData,
) -> BuckyResult<()> {
let ret = dirty.compare_exchange(true, false, Ordering::AcqRel, Ordering::Acquire);
if ret.is_err() {
return Ok(());
}
let ret = Self::commit_impl(path, op_data).await;
if ret.is_err() {
dirty.store(true, Ordering::SeqCst);
}
ret
}
pub async fn abort(&mut self) {
self.stop_save();
if let Some(op_data) = self.op_data.take() {
self.abort_impl(op_data).await;
}
}
async fn abort_impl(&self, op_data: StorageOpData) {
info!("will abort state storage: path={}", self.path);
let mut _current = op_data.current.lock().await;
if let Err(e) = op_data.single_stub.abort().await {
error!(
"abort state storage single stub error! path={}, {}",
self.path, e
);
}
if let Err(e) = op_data.path_stub.abort().await {
error!(
"abort state storage path stub error! path={}, {}",
self.path, e
);
}
self.set_dirty(false);
}
async fn commit_impl(path: &str, op_data: &StorageOpData) -> BuckyResult<()> {
let mut current = op_data.current.lock().await;
let new = op_data.single_stub.update().await.map_err(|e| {
error!("commit state storage failed! path={}, {}", path, e);
e
})?;
if Some(new) == *current {
debug!(
"commit state storage but not changed! path={}, current={}",
path, new
);
return Ok(());
}
match op_data
.path_stub
.set_with_path(path, &new, current.clone(), true)
.await
{
Ok(_) => {
info!(
"update state storage success! path={}, current={}, prev={:?}",
path, new, current
);
}
Err(e) => {
error!(
"update state storage but failed! path={}, current={}, prev={:?}, {}",
path, new, current, e
);
return Err(e);
}
}
op_data.path_stub.update().await.map_err(|e| {
error!(
"commit state storage to global state failed! path={}, {}",
path, e
);
e
})?;
*current = Some(new);
info!(
"commit state storage to global state success! path={}",
path
);
Ok(())
}
}
pub struct StateStorageMap {
storage: StateStorage,
}
impl StateStorageMap {
pub fn new(storage: StateStorage) -> Self {
Self { storage }
}
pub fn storage(&self) -> &StateStorage {
&self.storage
}
pub fn into_storage(self) -> StateStorage {
self.storage
}
pub async fn save(&self) -> BuckyResult<()> {
self.storage.save().await
}
pub async fn abort(mut self) {
self.storage.abort().await
}
pub async fn get(&self, key: impl Into<String>) -> BuckyResult<Option<ObjectId>> {
self.storage.stub().get_by_key(key).await
}
pub async fn set(
&self,
key: impl Into<String>,
value: &ObjectId,
) -> BuckyResult<Option<ObjectId>> {
self.set_ex(key, value, None, true).await
}
pub async fn set_ex(
&self,
key: impl Into<String>,
value: &ObjectId,
prev_value: Option<ObjectId>,
auto_insert: bool,
) -> BuckyResult<Option<ObjectId>> {
let ret = self
.storage
.stub()
.set_with_key(key, value, prev_value.clone(), auto_insert)
.await?;
if Some(*value) != ret {
self.storage.set_dirty(true);
}
Ok(ret)
}
pub async fn insert(&self, key: impl Into<String>, value: &ObjectId) -> BuckyResult<()> {
let ret = self.storage.stub().insert_with_key(key, value).await?;
self.storage.set_dirty(true);
Ok(ret)
}
pub async fn remove(&self, key: impl Into<String>) -> BuckyResult<Option<ObjectId>> {
self.remove_ex(key, None).await
}
pub async fn remove_ex(
&self,
key: impl Into<String>,
prev_value: Option<ObjectId>,
) -> BuckyResult<Option<ObjectId>> {
let ret = self.storage.stub().remove_with_key(key, prev_value).await?;
if ret.is_some() {
self.storage.set_dirty(true);
}
Ok(ret)
}
pub async fn next(&self, step: u32) -> BuckyResult<Vec<(String, ObjectId)>> {
let list = self.storage.stub().next(step).await?;
self.convert_list(list)
}
pub async fn reset(&self) -> BuckyResult<()> {
self.storage.stub().reset().await
}
pub async fn list(&self) -> BuckyResult<Vec<(String, ObjectId)>> {
let list = self.storage.stub().list().await?;
self.convert_list(list)
}
fn convert_list(
&self,
list: Vec<ObjectMapContentItem>,
) -> BuckyResult<Vec<(String, ObjectId)>> {
if list.is_empty() {
return Ok(vec![]);
}
if list[0].content_type() != ObjectMapSimpleContentType::Map {
let msg = format!(
"state storage is not valid map type! path={}, type={}",
self.storage().path,
list[0].content_type().as_str()
);
error!("{}", msg);
return Err(BuckyError::new(BuckyErrorCode::InvalidFormat, msg));
}
let list = list
.into_iter()
.map(|item| match item {
ObjectMapContentItem::Map(kp) => kp,
_ => unreachable!(),
})
.collect();
Ok(list)
}
}
pub struct StateStorageSet {
storage: StateStorage,
}
impl StateStorageSet {
pub fn new(storage: StateStorage) -> Self {
Self { storage }
}
pub fn storage(&self) -> &StateStorage {
&self.storage
}
pub fn into_storage(self) -> StateStorage {
self.storage
}
pub async fn save(&self) -> BuckyResult<()> {
self.storage.save().await
}
pub async fn abort(mut self) {
self.storage.abort().await
}
pub async fn contains(&self, object_id: &ObjectId) -> BuckyResult<bool> {
self.storage.stub().contains(object_id).await
}
pub async fn insert(&self, object_id: &ObjectId) -> BuckyResult<bool> {
let ret = self.storage.stub().insert(object_id).await?;
if ret {
self.storage.set_dirty(true);
}
Ok(ret)
}
pub async fn remove(&self, object_id: &ObjectId) -> BuckyResult<bool> {
let ret = self.storage.stub().remove(object_id).await?;
if ret {
self.storage.set_dirty(true);
}
Ok(ret)
}
pub async fn next(&self, step: u32) -> BuckyResult<Vec<ObjectId>> {
let list = self.storage.stub().next(step).await?;
self.convert_list(list)
}
pub async fn reset(&self) -> BuckyResult<()> {
self.storage.stub().reset().await
}
pub async fn list(&self) -> BuckyResult<Vec<ObjectId>> {
let list = self.storage.stub().list().await?;
self.convert_list(list)
}
fn convert_list(&self, list: Vec<ObjectMapContentItem>) -> BuckyResult<Vec<ObjectId>> {
if list.is_empty() {
return Ok(vec![]);
}
if list[0].content_type() != ObjectMapSimpleContentType::Set {
let msg = format!(
"state storage is not valid set type! path={}, type={}",
self.storage().path,
list[0].content_type().as_str()
);
error!("{}", msg);
return Err(BuckyError::new(BuckyErrorCode::InvalidFormat, msg));
}
let list = list
.into_iter()
.map(|item| match item {
ObjectMapContentItem::Set(id) => id,
_ => unreachable!(),
})
.collect();
Ok(list)
}
}