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
use_prelude!();
pub mod builder;
use std::{env, sync::RwLock};
use crossbeam_utils::atomic::AtomicCell;
#[doc(inline)]
pub use ffi_sdk::CLogLevel as LogLevel;
use ffi_sdk::{BoxedDitto, FsComponent};
use uuid::Uuid;
use self::builder::DittoBuilder;
use crate::{
auth::{DittoAuthenticator, ValidityListener},
disk_usage::DiskUsage,
error::{DittoError, ErrorKind, LicenseError},
identity::SharedIdentity,
transport::{
presence::Presence, presence_observer::PeersObserver, TransportConfig, TransportSync,
},
utils::prelude::*,
};
pub(crate) type DittoHandleWrapper = Arc<BoxedDitto>;
pub(crate) type WeakDittoHandleWrapper = std::sync::Weak<BoxedDitto>;
#[extension(pub(crate) trait TryUpgrade)]
impl WeakDittoHandleWrapper {
fn try_upgrade(&self) -> Result<DittoHandleWrapper, ErrorKind> {
self.upgrade().ok_or(ErrorKind::ReleasedDittoInstance)
}
}
pub struct Ditto {
fields: Arc<DittoFields>,
}
impl std::ops::Deref for Ditto {
type Target = DittoFields;
#[inline]
fn deref(&'_ self) -> &'_ DittoFields {
&*self.fields
}
}
pub struct DittoFields {
pub(crate) ditto: DittoHandleWrapper,
ditto_root: Arc<dyn DittoRoot>,
identity: SharedIdentity,
auth: Option<DittoAuthenticator>,
#[allow(dead_code)]
validity_listener: Option<Arc<ValidityListener>>,
store: Store,
activated: AtomicCell<bool>,
site_id: SiteId,
transports: Arc<RwLock<TransportSync>>,
presence: Arc<Presence>,
disk_usage: DiskUsage,
}
impl Drop for Ditto {
fn drop(&mut self) {
self.stop_sync();
unsafe {
ffi_sdk::ditto_stop_tcp_server(&self.ditto);
}
unsafe {
ffi_sdk::ditto_shutdown(&self.ditto);
}
}
}
impl Ditto {
pub fn close(self) {
}
pub fn start_sync(&self) -> Result<(), DittoError> {
if self.activated.load().not() && self.identity.requires_offline_only_license_token() {
return Err(ErrorKind::NotActivated.into());
}
match self.transports.write() {
Ok(mut transports) => {
transports.start_sync();
Ok(())
}
Err(e) => {
let rust_error = format!("{:?}", e);
Err(DittoError::new(ErrorKind::Internal, rust_error))
}
}
}
pub fn stop_sync(&self) {
if let Ok(mut transports) = self.transports.write() {
transports.stop_sync()
}
}
pub fn set_transport_config(&self, config: TransportConfig) {
if let Ok(mut transports) = self.transports.write() {
transports.set_transport_config(config);
}
}
pub fn current_transport_config(&self) -> Result<TransportConfig, DittoError> {
match self.transports.read() {
Ok(t) => Ok(t.current_config().clone()),
Err(e) => {
let msg = format!("transport config cannot be read {:?}", e);
Err(DittoError::new(ErrorKind::Internal, msg))
}
}
}
#[cfg(test)]
pub fn effective_transport_config(&self) -> Result<TransportConfig, DittoError> {
match self.transports.read() {
Ok(t) => Ok(t.effective_config().clone()),
Err(e) => {
let msg = format!("transport config cannot be read {:?}", e);
Err(DittoError::new(ErrorKind::Internal, msg))
}
}
}
}
impl Ditto {
pub fn with_sdk_version<R>(ret: impl FnOnce(&'_ str) -> R) -> R {
ret(unsafe { ffi_sdk::ditto_get_sdk_version().to_str() })
}
}
impl Ditto {
pub fn set_logging_enabled(enabled: bool) {
unsafe { ffi_sdk::ditto_logger_enabled(enabled) }
}
pub fn get_logging_enabled() -> bool {
unsafe { ffi_sdk::ditto_logger_enabled_get() }
}
pub fn get_emoji_log_level_headings_enabled() -> bool {
unsafe { ffi_sdk::ditto_logger_emoji_headings_enabled_get() }
}
pub fn set_emoji_log_level_headings_enabled(enabled: bool) {
unsafe {
ffi_sdk::ditto_logger_emoji_headings_enabled(enabled);
}
}
pub fn get_minimum_log_level() -> LogLevel {
unsafe { ffi_sdk::ditto_logger_minimum_log_level_get() }
}
pub fn set_minimum_log_level(log_level: LogLevel) {
unsafe {
ffi_sdk::ditto_logger_minimum_log_level(log_level);
}
}
}
impl Ditto {
pub fn set_offline_only_license_token(&self, license_token: &str) -> Result<(), DittoError> {
if self.identity.requires_offline_only_license_token() {
use ::safer_ffi::prelude::{AsOut, ManuallyDropMut};
use ffi_sdk::LicenseVerificationResult;
let c_license: char_p::Box = char_p::new(license_token);
let mut err_msg = None;
let out_err_msg = err_msg.manually_drop_mut().as_out();
let res = unsafe { ffi_sdk::verify_license(c_license.as_ref(), Some(out_err_msg)) };
if res == LicenseVerificationResult::LicenseOk {
self.activated.store(true);
return Ok(());
}
self.activated.store(false);
let err_msg = err_msg.unwrap();
::log::error!("{}", err_msg);
match res {
LicenseVerificationResult::LicenseExpired => {
Err(DittoError::license(LicenseError::LicenseTokenExpired {
message: err_msg.as_ref().to_string(),
}))
}
LicenseVerificationResult::VerificationFailed => Err(DittoError::license(
LicenseError::LicenseTokenVerificationFailed {
message: err_msg.as_ref().to_string(),
},
)),
LicenseVerificationResult::UnsupportedFutureVersion => Err(DittoError::license(
LicenseError::LicenseTokenUnsupportedFutureVersion {
message: err_msg.as_ref().to_string(),
},
)),
_ => panic!("Unexpected license verification result {:?}", res),
}
} else {
Err(DittoError::new(
ErrorKind::Internal,
"Offline license tokens should only be used for Manual, SharedKey or \
OfflinePlayground identities",
))
}
}
pub fn set_license_from_env(&self, var_name: &str) -> Result<(), DittoError> {
match env::var(var_name) {
Ok(token) => self.set_offline_only_license_token(&token),
Err(env::VarError::NotPresent) => {
let msg = format!("No license token found for env var {}", &var_name);
Err(DittoError::from_str(ErrorKind::Config, msg))
}
Err(e) => Err(DittoError::new(ErrorKind::Config, e)),
}
}
pub fn store(&self) -> &Store {
&self.store
}
pub fn site_id(&self) -> u64 {
self.site_id
}
pub fn persistence_directory(&self) -> &Path {
self.ditto_root.data_path()
}
pub fn application_id(&self) -> AppId {
self.identity.app_id()
}
pub fn set_device_name(&self, name: &str) {
let c_device_name: char_p::Box = char_p::new(name.to_owned());
unsafe {
ffi_sdk::ditto_set_device_name(&self.ditto, c_device_name.as_ref());
}
}
pub fn transport_diagnostics(&self) -> TransportDiagnostics {
todo!();
}
#[deprecated(note = "Use `presence().observe()` instead")]
pub fn observe_peers<H>(&self, handler: H) -> PeersObserver
where
H: Fn(crate::transport::v2::V2Presence) + Send + Sync + 'static,
{
self.presence.add_observer(handler)
}
pub fn presence(&self) -> &Arc<Presence> {
&self.presence
}
pub fn disk_usage(&self) -> &DiskUsage {
&self.disk_usage
}
pub fn root_dir(&self) -> &Path {
self.ditto_root.root_path()
}
pub fn data_dir(&self) -> &Path {
self.ditto_root.data_path()
}
#[cfg(test)]
pub fn root(&self) -> Arc<dyn DittoRoot> {
self.ditto_root.retain()
}
pub fn authenticator(&self) -> Option<DittoAuthenticator> {
self.auth.clone()
}
pub fn is_activated(&self) -> bool {
self.activated.load()
}
}
impl Ditto {
pub fn builder() -> DittoBuilder {
DittoBuilder::new()
}
pub fn new(app_id: AppId) -> Ditto {
Ditto::builder()
.with_root(Arc::new(
PersistentRoot::from_current_exe().expect("Invalid Ditto Root"),
))
.with_identity(|ditto_root| identity::OfflinePlayground::new(ditto_root, app_id))
.expect("Invalid Ditto Identity")
.with_minimum_log_level(LogLevel::Info)
.build()
.expect("Failed to build Ditto Instance")
}
pub(crate) fn new_with_fields(fields: Arc<DittoFields>) -> Ditto {
Ditto { fields }
}
}
impl Ditto {
pub fn run_garbage_collection(&self) {
unsafe {
ffi_sdk::ditto_run_garbage_collection(&self.ditto);
}
}
pub fn disable_sync_with_v2(&self) -> Result<(), DittoError> {
unsafe {
let res = ffi_sdk::ditto_disable_sync_with_v2(&self.ditto);
if res != 0 {
return Err(DittoError::from_ffi(ErrorKind::Internal));
}
Ok(())
}
}
}
pub struct TransportDiagnostics;
pub type SiteId = u64;
#[derive(Clone, Debug)]
pub struct AppId(pub(crate) String);
impl AppId {
pub fn generate() -> Self {
let uuid = uuid::Uuid::new_v4();
AppId::from_uuid(uuid)
}
pub fn from_uuid(uuid: Uuid) -> Self {
let id_str = format!("{:x}", &uuid);
AppId(id_str)
}
pub fn from_env(var: &str) -> Result<Self, DittoError> {
let id_str = env::var(var).map_err(|err| DittoError::new(ErrorKind::Config, err))?;
Ok(AppId(id_str))
}
pub fn as_str(&self) -> &str {
&self.0
}
pub fn to_c_string(&self) -> char_p::Box {
char_p::new(self.0.as_str())
}
pub fn default_auth_url(&self) -> String {
format!("https://{}.cloud.ditto.live", self.0)
}
pub fn default_sync_url(&self) -> String {
format!("wss://{}.cloud.ditto.live", self.0)
}
}
use std::{fmt, fmt::Display, str::FromStr};
impl Display for AppId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl FromStr for AppId {
type Err = DittoError;
fn from_str(s: &str) -> Result<AppId, DittoError> {
Ok(AppId(s.to_string()))
}
}
#[cfg(test)]
#[path = "tests.rs"]
mod tests;