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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
use super::super::pubtrait::Keyspace;
use crate::engine::structure::Engine;
use crate::engine::utils::send_data;
use crate::errors::MontycatClientError;
use crate::request::store_request::structure::StoreRequestClient;
use crate::request::structure::Req;
use crate::request::utis::functions::{convert_custom_key, is_custom_type};
use crate::tools::functions::{process_bulk_values, process_json_value, process_value};
use crate::traits::RuntimeSchema;
use serde::Serialize;
use std::any::type_name;
/// Represents an in-memory keyspace in the Montycat database.
///
/// # Fields
/// - `name`: The name of the keyspace.
/// - `persistent`: A boolean indicating if the keyspace is persistent.
/// - `distributed`: A boolean indicating if the keyspace is distributed.
/// - `engine`: The Montycat engine instance associated with the keyspace.
///
#[derive(Debug, Clone)]
pub struct InMemoryKeyspace {
name: String,
persistent: bool,
distributed: bool,
engine: Engine,
}
impl Keyspace for InMemoryKeyspace {
/// Retrieves the associated Montycat engine.
///
/// # Returns
/// - `Engine`: The Montycat engine instance.
///
fn get_engine(&self) -> Engine {
self.engine.clone()
}
/// Retrieves the name of the keyspace.
///
/// # Returns
/// - `&str`: The name of the keyspace.
///
fn get_name(&self) -> &str {
&self.name
}
/// Checks if the keyspace is persistent.
///
/// # Returns
/// - `bool`: True if the keyspace is persistent, false otherwise.
///
fn get_persistent(&self) -> bool {
self.persistent
}
/// Checks if the keyspace is distributed.
///
/// # Returns
/// - `bool`: True if the keyspace is distributed, false otherwise.
///
/// # Notes
/// In Development
///
fn get_distributed(&self) -> bool {
self.distributed
}
}
impl InMemoryKeyspace {
/// Creates a new instance of `InMemoryKeyspace`.
///
/// # Arguments
/// - `name: &str`: The name of the keyspace.
/// - `engine: &Engine`: A reference to the Montycat engine.
///
/// # Returns
/// - `InMemoryKeyspace`: A new instance of `InMemoryKeyspace`.
///
/// # Examples
///
/// ```rust, ignore
/// let keyspace: InMemoryKeyspace = InMemoryKeyspace::new("test_keyspace", &engine);
/// ```
///
pub fn new(name: &str, engine: &Engine) -> Self {
Self {
name: name.to_owned(),
persistent: false,
distributed: false,
engine: engine.clone(),
}
}
/// Creates a new keyspace in the Montycat database.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.create_keyspace().await;
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn create_keyspace(&self) -> Result<Option<Vec<u8>>, MontycatClientError> {
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let vec: Vec<String> = vec![
"create-keyspace".into(),
"store".into(),
store,
"keyspace".into(),
name.to_owned(),
"persistent".into(),
if persistent { "y".into() } else { "n".into() },
"distributed".into(),
if distributed { "y".into() } else { "n".into() },
];
let credentials: Vec<String> = engine.get_credentials();
let query: Req = Req::new_raw_command(vec, credentials);
let bytes: Vec<u8> = query.byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Inserts a value into the keyspace.
///
/// # Arguments
///
/// * `&self` - The keyspace instance.
/// * `value` - The value to insert. Must implement `Serialize` and `MontycatSchema`.
/// * `expire_sec` - Optional expiration time in seconds.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let value = YourType { /* fields */ };
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.insert_value(value, Some(3600)).await;
/// let parsed = MontycatResponse::<YourType>::parse_response(res);
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn insert_value<T>(
&self,
custom_key: Option<String>,
value: T,
expire_sec: Option<usize>,
) -> Result<Option<Vec<u8>>, MontycatClientError>
where
T: Serialize + RuntimeSchema + Send + 'static,
{
let mut key: Option<String> = None;
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let mut schema: Option<String> = None;
let value_to_send: String = process_value(value)?;
let type_name_retrieved: &str = type_name::<T>();
if let Some(custom_type_name) = is_custom_type(type_name_retrieved) {
schema = Some(custom_type_name.to_owned());
};
if let Some(custom_key_str) = &custom_key {
key = Some(convert_custom_key(custom_key_str));
}
let command: String = if key.is_none() {
"insert_value".to_string()
} else {
"insert_custom_key_value".to_string()
};
let new_store_request: StoreRequestClient = StoreRequestClient {
schema,
username: engine.username.clone(),
password: engine.password.clone(),
keyspace: name.to_owned(),
store,
persistent,
distributed,
value: value_to_send,
command,
expire: expire_sec.map(|sec| sec as u64).unwrap_or(0),
key,
..Default::default()
};
let bytes: Vec<u8> = Req::new_store_command(new_store_request).byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Inserts a custom key into the keyspace.
///
/// # Arguments
///
/// * `custom_key` - The custom key to be inserted into the keyspace.
/// * `expire_sec` - Optional expiration time in seconds.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.insert_custom_key(Some("my_custom_key".into()), Some(3600)).await;
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn insert_custom_key(
&self,
custom_key: String,
expire_sec: Option<usize>,
) -> Result<Option<Vec<u8>>, MontycatClientError> {
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let key: String = convert_custom_key(&custom_key);
let command: String = "insert_custom_key".to_string();
let new_store_request: StoreRequestClient = StoreRequestClient {
username: engine.username.clone(),
password: engine.password.clone(),
keyspace: name.to_owned(),
store,
persistent,
distributed,
value: String::new(),
command,
expire: expire_sec.map(|sec| sec as u64).unwrap_or(0),
key: Some(key),
..Default::default()
};
let bytes: Vec<u8> = Req::new_store_command(new_store_request).byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Inserts a simple value (without schema) into the keyspace.
///
/// # Arguments
///
/// * `value` - The value to insert. Must implement `Serialize`.
/// * `expire_sec` - Optional expiration time in seconds.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let value = vec!["simple_value1", "simple_value2"];
///
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.insert_value_no_schema(value, Some(3600)).await;
///
/// let parsed = MontycatResponse::<Vec<String>>::parse_response(res);
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn insert_value_no_schema<T>(
&self,
custom_key: Option<String>,
value: T,
expire_sec: Option<usize>,
) -> Result<Option<Vec<u8>>, MontycatClientError>
where
T: Serialize + Send + 'static,
{
let mut key: Option<String> = None;
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let value_to_send: String = process_json_value(&value)?;
if let Some(custom_key_str) = &custom_key {
key = Some(convert_custom_key(custom_key_str));
}
let command: String = if key.is_none() {
"insert_value".to_string()
} else {
"insert_custom_key_value".to_string()
};
let new_store_request: StoreRequestClient = StoreRequestClient {
username: engine.username.clone(),
password: engine.password.clone(),
keyspace: name.to_owned(),
store,
persistent,
distributed,
value: value_to_send,
command,
expire: expire_sec.map(|sec| sec as u64).unwrap_or(0),
key,
..Default::default()
};
let bytes: Vec<u8> = Req::new_store_command(new_store_request).byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Retrieves keys from the keyspace with optional limit and volume filters.
///
/// # Arguments
///
/// * `volumes` - Optional vector of volume names to filter the keys.
/// * `latest_volume` - Optional boolean to indicate if only the latest volume should be considered.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let res = keyspace.get_keys(Some(vec!["123456789".into()]), None).await;
/// let parsed = MontycatResponse::<Vec<String>>::parse_response(res);
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn get_keys(
&self,
volumes: Option<Vec<String>>,
latest_volume: Option<bool>,
) -> Result<Option<Vec<u8>>, MontycatClientError> {
let has_volumes = volumes.as_ref().is_some_and(|v| !v.is_empty());
let has_latest_volume = latest_volume.unwrap_or(false);
if !has_volumes && !has_latest_volume {
return Err(MontycatClientError::ClientGenericError(
"Please provide volumes/latest volume.".into(),
));
}
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let command: String = "get_keys".to_string();
let new_store_request: StoreRequestClient = StoreRequestClient {
username: engine.username.clone(),
password: engine.password.clone(),
keyspace: name.to_owned(),
store,
persistent,
distributed,
command,
volumes: volumes.unwrap_or_default(),
latest_volume: latest_volume.unwrap_or_default(),
..Default::default()
};
let bytes: Vec<u8> = Req::new_store_command(new_store_request).byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Updates a value in the keyspace.
///
/// # Arguments
///
/// * `key` - Optional key of the value to update.
/// * `custom_key` - Optional custom key of the value to update.
/// * `value` - The new value to set. Must implement `Serialize`.
/// * `expire_sec` - Optional expiration time in seconds.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let updates = serde_json::json!({ "field1": "new_value" });
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.update_value(Some("key".into()), None, updates, Some(3600)).await;
/// let parsed = MontycatResponse::<String>::parse_response(res);
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn update_value<T>(
&self,
key: Option<String>,
custom_key: Option<String>,
value: T,
expire_sec: Option<usize>,
) -> Result<Option<Vec<u8>>, MontycatClientError>
where
T: Serialize + Send + 'static,
{
if key.is_none() && custom_key.is_none() || (key.is_some() && custom_key.is_some()) {
return Err(MontycatClientError::ClientNoValidInputProvided);
}
let key: String = key
.or(custom_key)
.ok_or(MontycatClientError::ClientNoValidInputProvided)?;
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let command: String = "update_value".to_string();
let value_to_send: String = process_json_value(&value)?;
let new_store_request: StoreRequestClient = StoreRequestClient {
key: Some(key),
username: engine.username.clone(),
password: engine.password.clone(),
keyspace: name.to_owned(),
store,
persistent,
distributed,
value: value_to_send,
command,
expire: expire_sec.map(|sec| sec as u64).unwrap_or(0),
..Default::default()
};
let bytes: Vec<u8> = Req::new_store_command(new_store_request).byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Inserts multiple values into the keyspace in bulk.
///
/// # Arguments
///
/// * `bulk_values` - A vector of values to insert. Each value must implement `Serialize` and `RuntimeSchema`.
/// * `expire_sec` - Optional expiration time in seconds for the inserted values.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let values = vec![YourType { /* fields */ }, YourType { /* fields */ }];
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.insert_bulk(values, Some(3600)).await;
/// let parsed = MontycatResponse::<Vec<String>>::parse_response(res);
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn insert_bulk<T>(
&self,
bulk_values: Vec<T>,
expire_sec: Option<usize>,
) -> Result<Option<Vec<u8>>, MontycatClientError>
where
T: Serialize + RuntimeSchema + Send + 'static,
{
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let command: String = "insert_value".to_string();
let (value_to_send, schema) = process_bulk_values(bulk_values).await?;
let new_store_request: StoreRequestClient = StoreRequestClient {
schema,
username: engine.username.clone(),
password: engine.password.clone(),
keyspace: name.to_owned(),
store,
persistent,
distributed,
value: value_to_send,
command,
expire: expire_sec.map(|sec| sec as u64).unwrap_or(0),
..Default::default()
};
let bytes: Vec<u8> = Req::new_store_command(new_store_request).byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Inserts multiple simple values (without schema) into the keyspace in bulk.
///
/// # Arguments
///
/// * `bulk_values` - A vector of values to insert. Each value must implement `Serialize`.
/// * `expire_sec` - Optional expiration time in seconds for the inserted values.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let values = vec!["simple_value1", "simple_value2"];
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.insert_bulk_no_schema(values, Some(3600)).await;
/// let parsed = MontycatResponse::<Vec<String>>::parse_response(res);
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn insert_bulk_no_schema<T>(
&self,
bulk_values: Vec<T>,
expire_sec: Option<usize>,
) -> Result<Option<Vec<u8>>, MontycatClientError>
where
T: Serialize + Send + 'static,
{
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let persistent: bool = self.get_persistent();
let distributed: bool = self.get_distributed();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let command: String = "insert_value".to_string();
let value_to_send: String = process_json_value(&bulk_values)?;
let new_store_request: StoreRequestClient = StoreRequestClient {
username: engine.username.clone(),
password: engine.password.clone(),
keyspace: name.to_owned(),
store,
persistent,
distributed,
value: value_to_send,
command,
expire: expire_sec.map(|sec| sec as u64).unwrap_or(0),
..Default::default()
};
let bytes: Vec<u8> = Req::new_store_command(new_store_request).byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Initiates snapshots for the keyspace.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.do_snapshots_for_keyspace().await;
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn do_snapshots_for_keyspace(&self) -> Result<Option<Vec<u8>>, MontycatClientError> {
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let vec: Vec<String> = vec![
"do-snapshots-for-keyspace".into(),
"store".into(),
store,
"keyspace".into(),
name.to_owned(),
];
let credentials: Vec<String> = engine.get_credentials();
let query: Req = Req::new_raw_command(vec, credentials);
let bytes: Vec<u8> = query.byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Cleans snapshots for the keyspace.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.clean_snapshots_for_keyspace().await;
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn clean_snapshots_for_keyspace(
&self,
) -> Result<Option<Vec<u8>>, MontycatClientError> {
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let vec: Vec<String> = vec![
"clean-snapshots-for-keyspace".into(),
"store".into(),
store,
"keyspace".into(),
name.to_owned(),
];
let credentials: Vec<String> = engine.get_credentials();
let query: Req = Req::new_raw_command(vec, credentials);
let bytes: Vec<u8> = query.byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
/// Stops snapshots for the keyspace.
///
/// # Returns
///
/// * `Result<Option<Vec<u8>>, MontycatClientError>` - The response from the server or an error.
///
/// # Examples
///
/// ```rust, ignore
/// let res: Result<Option<Vec<u8>>, MontycatClientError> = keyspace.stop_snapshots_for_keyspace().await;
/// ```
///
/// # Errors
///
/// * `MontycatClientError::ClientStoreNotSet` - If the store is not set in the engine.
/// * `MontycatClientError::ClientEngineError` - If there is an error with the engine.
/// * `MontycatClientError::ClientValueParsingError` - If there is an error parsing the response.
///
pub async fn stop_snapshots_for_keyspace(
&self,
) -> Result<Option<Vec<u8>>, MontycatClientError> {
let engine: Engine = self.get_engine();
let name: &str = self.get_name();
let store: String = engine
.store
.clone()
.ok_or(MontycatClientError::ClientStoreNotSet)?;
let use_tls: bool = engine.use_tls;
let vec: Vec<String> = vec![
"stop-snapshots-for-keyspace".into(),
"store".into(),
store,
"keyspace".into(),
name.to_owned(),
];
let credentials: Vec<String> = engine.get_credentials();
let query: Req = Req::new_raw_command(vec, credentials);
let bytes: Vec<u8> = query.byte_down()?;
let response: Option<Vec<u8>> = send_data(
&engine.host,
engine.port,
bytes.as_slice(),
None,
None,
use_tls,
)
.await?;
Ok(response)
}
}