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
use std::future::Future;
use aqueue_trait::async_trait;
use std::cell::RefCell;
use async_oneshot::{Receiver,Sender,oneshot};
use super::QueueItem;
use crate::AResult;


pub struct AQueueItem<A,T,S>{
    arg:RefCell<Option<A>>,
    call:RefCell<Option<Box<dyn FnOnce(A)->T+ Send+Sync>>>,
    result_sender:RefCell<Option<Sender<AResult<S>>>>
}

unsafe impl<A,T,S> Send for AQueueItem<A,T,S>{}
unsafe impl<A,T,S> Sync for AQueueItem<A,T,S>{}



#[async_trait]
impl<A,T,S> QueueItem for AQueueItem<A,T,S>
    where T:Future<Output = AResult<S>> + Send+ Sync, A: Send+Sync{

    #[inline]
    async fn run(&self) -> AResult<()> {
        let call = self.call.replace(None);

        if let Some(call) = call {
            let arg= self.arg.replace(None).unwrap();
            let res=  (call)(arg).await;
            if let Some(x)= self.result_sender.replace(None){
                if x.send(res).is_err() {
                    Err("close".into())
                }
                else{
                    Ok(())
                }
            }
            else{
                Err("not call oneshot is none".into())
            }
        }
        else {
            Err("not call fn is none".into())
        }
    }

}

impl <A,T,S> AQueueItem<A,T,S>
    where T:Future<Output = AResult<S>> + Send+ Sync+'static,
          S:'static, A: Send+Sync+'static {
    #[inline]
    pub fn new(call:impl FnOnce(A)->T+ Send+Sync+'static,arg:A)
        ->(Receiver<AResult<S>>,Box<dyn QueueItem+Send+Sync>){
        let (tx,rx)=oneshot();
        (rx, Box::new(AQueueItem{
            arg:RefCell::new(Some(arg)),
            call:RefCell::new(Some(Box::new(call))),
            result_sender:RefCell::new(Some(tx))
        }))
    }

}