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
// -*- mode:rust; coding:utf-8-unix; -*-

//! aelicit.rs

//  Copyright 2016 hanepjiv
//  @author hanepjiv <hanepjiv@gmail.com>
//  @copyright The MIT License (MIT) / Apache License Version 2.0
//  @since 2016/08/18
//  @date 2018/08/03

//! # Examples
//!
//! ```
//! #[macro_use] extern crate elicit;
//!
//! aelicit_define!(aelicit_my_trait, MyTrait);
//! use self::aelicit_my_trait::Aelicit
//!     as MyTraitAelicit;
//! use self::aelicit_my_trait::WeakAelicit
//!     as MyTraitWeakAelicit;
//! use self::aelicit_my_trait::EnableAelicitFromSelf
//!     as MyTraitEnableAelicitFromSelf;
//! use self::aelicit_my_trait::EnableAelicitFromSelfField
//!     as MyTraitEnableAelicitFromSelfField;
//!
//! pub trait MyTrait: ::std::fmt::Debug + MyTraitEnableAelicitFromSelf {
//!     fn my_function(&self) -> i32;
//! }
//!
//! #[derive( Debug, )]
//! struct MyStruct {
//!     _eafsf:        MyTraitEnableAelicitFromSelfField,
//!     my_field:     i32,
//! }
//! impl MyTraitEnableAelicitFromSelf for MyStruct {
//!     enable_aelicit_from_self_delegate!(MyTrait,
//!                                        MyTraitAelicit,
//!                                        _eafsf);
//! }
//! impl MyTrait for MyStruct {
//!     fn my_function(&self) -> i32 { self.my_field }
//! }
//!
//! #[derive( Debug, )]
//! struct MyStructUnuseEnableAelicitFromSelf {
//!     my_field:     i32,
//! }
//! impl MyTraitEnableAelicitFromSelf for MyStructUnuseEnableAelicitFromSelf {
//!     enable_aelicit_from_self_delegate!(MyTrait,
//!                                        MyTraitAelicit);
//! }
//! impl MyTrait for MyStructUnuseEnableAelicitFromSelf {
//!     fn my_function(&self) -> i32 { self.my_field }
//! }
//!
//! fn main() {
//!     let my0 = MyTraitAelicit::new(MyStruct{
//!         _eafsf: MyTraitEnableAelicitFromSelfField::default(),
//!         my_field: 0i32,
//!     });
//!     let my1 = MyTraitAelicit::new(MyStructUnuseEnableAelicitFromSelf{
//!         my_field: 1i32,
//!     });
//! }
//! ```

// ////////////////////////////////////////////////////////////////////////////
// ============================================================================
/// aelicit_define!
#[macro_export]
macro_rules! aelicit_define {
    ($modname:ident, $base:ident) => {
        // ////////////////////////////////////////////////////////////////////
        // ====================================================================
        #[allow(unreachable_pub)]
        pub mod $modname {
            //! $modname
            // ////////////////////////////////////////////////////////////////
            // ================================================================
            use super::$base;
            // ================================================================
            use std::any::Any;
            use std::convert::From;
            use std::fmt::Debug;
            use std::result::Result as StdResult;
            use std::sync::{
                Arc, LockResult, RwLock, RwLockReadGuard, RwLockWriteGuard,
                TryLockError, TryLockResult, Weak,
            };
            use $crate::Error;
            // ////////////////////////////////////////////////////////////////
            // ================================================================
            /// struct Aelicit
            #[derive(Debug, Clone)]
            pub struct Aelicit(Arc<RwLock<Box<dyn $base>>>);
            // ////////////////////////////////////////////////////////////////
            // ================================================================
            /// struct WeakAelicit
            #[derive(Debug, Clone)]
            pub struct WeakAelicit(Weak<RwLock<Box<dyn $base>>>);
            // ================================================================
            impl WeakAelicit {
                // ============================================================
                /// fn upgrade
                pub fn upgrade(&self) -> Option<Aelicit> {
                    self.0.upgrade().map(Aelicit)
                }
            }
            // ================================================================
            impl From<Aelicit> for WeakAelicit {
                fn from(x: Aelicit) -> WeakAelicit {
                    x.weak()
                }
            }
            // ////////////////////////////////////////////////////////////////
            // ================================================================
            /// trait EnableAelicitFromSelf
            pub trait EnableAelicitFromSelf: Debug {
                // ============================================================
                /// aelicit_from_self
                fn aelicit(&self) -> Option<Aelicit>;
                // ------------------------------------------------------------
                /// _weak_assign
                fn _weak_assign(&mut self, weak: Weak<RwLock<Box<dyn $base>>>);
            }
            // ////////////////////////////////////////////////////////////////
            // ================================================================
            /// struct EnableAelicitFromSelfField
            #[derive(Debug, Clone, Default)]
            pub struct EnableAelicitFromSelfField {
                /// Weak
                _weak: Option<Weak<RwLock<Box<dyn $base>>>>,
            }
            // ================================================================
            impl EnableAelicitFromSelf for EnableAelicitFromSelfField {
                // ============================================================
                /// aelicit
                fn aelicit(&self) -> Option<Aelicit> {
                    match self._weak {
                        Some(ref x) => x.upgrade().map(Aelicit),
                        None => None,
                    }
                }
                // ------------------------------------------------------------
                /// _weak_assign
                fn _weak_assign(
                    &mut self,
                    weak: Weak<RwLock<Box<dyn $base>>>,
                ) {
                    self._weak = Some(weak)
                }
            }
            // ////////////////////////////////////////////////////////////////
            // ================================================================
            impl Aelicit {
                // ============================================================
                /// new
                pub fn new<T>(val: T) -> Self
                where
                    T: Any + $base,
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    let arc =
                        Arc::new(RwLock::new(Box::new(val) as Box<dyn $base>));
                    arc.write()
                        .expect("Aelicit::new")
                        ._weak_assign(Arc::downgrade(&arc));
                    Aelicit(arc)
                }
                // ============================================================
                /// weak
                pub fn weak(&self) -> WeakAelicit {
                    WeakAelicit(Arc::downgrade(&self.0))
                }
                // ============================================================
                /// read
                pub fn read(
                    &self,
                ) -> LockResult<RwLockReadGuard<Box<dyn $base>>>
                where
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    self.0.read()
                }
                // ============================================================
                /// try_read
                pub fn try_read(
                    &self,
                ) -> TryLockResult<RwLockReadGuard<Box<dyn $base>>>
                where
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    self.0.try_read()
                }
                // ============================================================
                /// write
                pub fn write(
                    &self,
                ) -> LockResult<RwLockWriteGuard<Box<dyn $base>>> {
                    self.0.write()
                }
                // ============================================================
                /// try_write
                pub fn try_write(
                    &self,
                ) -> TryLockResult<RwLockWriteGuard<Box<dyn $base>>>
                where
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    self.0.try_write()
                }
                // ============================================================
                /// with
                pub fn with<T, E>(
                    &self,
                    f: impl FnOnce(&dyn $base) -> StdResult<T, E>,
                ) -> StdResult<T, E>
                where
                    E: From<Error>,
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    match self.read() {
                        Err(_e) => {
                            //debug!("::elicit::Aelicit::with: {}", e);
                            Err(E::from(Error::PoisonedRead))
                        }
                        Ok(x) => f(x.as_ref()),
                    }
                }
                // ============================================================
                /// try_with
                pub fn try_with<T, E>(
                    &self,
                    f: impl FnOnce(&dyn $base) -> StdResult<T, E>,
                ) -> StdResult<T, E>
                where
                    E: From<Error>,
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    match self.try_read() {
                        Err(e) => {
                            //debug!("::elicit::Aelicit::try_with: {}", e);
                            match e {
                                TryLockError::Poisoned(_) => {
                                    Err(E::from(Error::PoisonedRead))
                                }
                                TryLockError::WouldBlock => {
                                    Err(E::from(Error::WouldBlock))
                                }
                            }
                        }
                        Ok(x) => f(x.as_ref()),
                    }
                }
                // ============================================================
                /// with_mut
                pub fn with_mut<T, E>(
                    &self,
                    f: impl FnOnce(&mut dyn $base) -> StdResult<T, E>,
                ) -> StdResult<T, E>
                where
                    E: From<Error>,
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    match self.write() {
                        Err(_e) => {
                            //debug!("::elicit::Aelicit::with_mut: {}", e);
                            Err(E::from(Error::PoisonedWrite))
                        }
                        Ok(mut x) => f(&mut *(x.as_mut())),
                    }
                }
                // ============================================================
                /// try_with_mut
                pub fn try_with_mut<T, E>(
                    &self,
                    f: impl FnOnce(&mut dyn $base) -> StdResult<T, E>,
                ) -> StdResult<T, E>
                where
                    E: From<Error>,
                    dyn $base: Debug + EnableAelicitFromSelf,
                {
                    match self.try_write() {
                        Err(e) => {
                            //debug!("::elicit::Aelicit::try_with_mut: {}", e);
                            match e {
                                TryLockError::Poisoned(_) => {
                                    Err(E::from(Error::PoisonedWrite))
                                }
                                TryLockError::WouldBlock => {
                                    Err(E::from(Error::WouldBlock))
                                }
                            }
                        }
                        Ok(mut x) => f(&mut *(x.as_mut())),
                    }
                }
            }
        }
    };
}
// ============================================================================
/// enable_aelicit_from_self_delegate
#[macro_export]
macro_rules! enable_aelicit_from_self_delegate {
    // ========================================================================
    ($base:ident, $aelicit:ident) => {  // empty
        // --------------------------------------------------------------------
        fn aelicit(&self) -> Option<$aelicit> {
            None
        }
        // --------------------------------------------------------------------
        fn _weak_assign(&mut self,
                        _: ::std::sync::Weak<
                        ::std::sync::RwLock<Box<dyn $base>>>){
        }
    };
    // ========================================================================
    ($base:ident, $aelicit:ident, $field:ident)  => {  // delegate to field
        // --------------------------------------------------------------------
        fn aelicit(&self) -> Option<$aelicit> {
            self.$field.aelicit()
        }
        // --------------------------------------------------------------------
        fn _weak_assign(&mut self,
                        w: ::std::sync::Weak<
                        ::std::sync::RwLock<Box<dyn $base>>>){
            self.$field._weak_assign(w)
        }
    };
}
// ////////////////////////////////////////////////////////////////////////////
// ============================================================================
#[cfg(test)]
#[allow(unreachable_pub)]
mod tests {
    // ////////////////////////////////////////////////////////////////////////
    // use  ===================================================================
    use super::super::Error;
    // type  ==================================================================
    type Result<T> = ::std::result::Result<T, Error>;
    // ////////////////////////////////////////////////////////////////////////
    // ========================================================================
    aelicit_define!(aelicit_t0, T0);
    pub(crate) use self::aelicit_t0::Aelicit as Aelicit_T0;
    pub(crate) use self::aelicit_t0::EnableAelicitFromSelf as EAFS_T0;
    pub(crate) use self::aelicit_t0::EnableAelicitFromSelfField as EAFS_Field_T0;
    //pub(crate) use self::aelicit_t0::WeakAelicit as WeakAelicit_T0;
    // ////////////////////////////////////////////////////////////////////////
    // ========================================================================
    /// trait T0
    pub trait T0: ::std::fmt::Debug + EAFS_T0 {
        /// get
        fn get(&self) -> i32;
        /// set
        fn set(&mut self, i: i32) -> ();
    }
    // ////////////////////////////////////////////////////////////////////////
    // ========================================================================
    /// struct S0
    #[derive(Debug)]
    pub(crate) struct S0 {
        /// EnableAelicitFromSelf
        _eafsf: EAFS_Field_T0,
        /// field
        field: i32,
    }
    // ========================================================================
    impl EAFS_T0 for S0 {
        enable_aelicit_from_self_delegate!(T0, Aelicit_T0, _eafsf);
    }
    // ========================================================================
    impl S0 {
        // ====================================================================
        /// new
        pub(crate) fn new(i: i32) -> Self {
            S0 {
                _eafsf: EAFS_Field_T0::default(),
                field: i,
            }
        }
    }
    // ========================================================================
    impl T0 for S0 {
        fn get(&self) -> i32 {
            self.field
        }
        fn set(&mut self, i: i32) {
            self.field = i;
        }
    }
    // ////////////////////////////////////////////////////////////////////////
    // ========================================================================
    /// struct S1
    #[derive(Debug)]
    pub(crate) struct S1 {
        /// field
        field: i32,
    }
    // ========================================================================
    impl EAFS_T0 for S1 {
        enable_aelicit_from_self_delegate!(T0, Aelicit_T0);
    }
    // ========================================================================
    impl S1 {
        // ====================================================================
        /// new
        pub(crate) fn new(i: i32) -> Self {
            S1 { field: i }
        }
    }
    // ========================================================================
    impl T0 for S1 {
        fn get(&self) -> i32 {
            self.field
        }
        fn set(&mut self, i: i32) {
            self.field = i;
        }
    }
    // ////////////////////////////////////////////////////////////////////////
    // ========================================================================
    #[test]
    fn aelicit_with() {
        //info!("::elicit::aelicit::tests::aelicit_with()");
        let vs =
            vec![Aelicit_T0::new(S0::new(0)), Aelicit_T0::new(S1::new(0))];
        for v in vs.iter() {
            assert!(
                v.with(|x: &dyn T0| -> Result<i32> { Ok(x.get()) }).unwrap()
                    == 0,
                "Aelicit::with"
            );
            assert!(
                v.with_mut(|x: &mut dyn T0| -> Result<i32> {
                    x.set(10);
                    Ok(x.get())
                }).unwrap()
                    == 10,
                "Aelicit::with_mut"
            );
        }
        for v in vs.iter() {
            assert!(
                v.try_with(|x: &dyn T0| -> Result<i32> { Ok(x.get()) })
                    .unwrap()
                    == 10,
                "Aelicit::try_with"
            );
            assert!(
                v.try_with_mut(|x: &mut dyn T0| -> Result<i32> {
                    x.set(20);
                    Ok(x.get())
                }).unwrap()
                    == 20,
                "Aelicit::try_with_mut"
            );
        }
    }
}