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
extern crate scraper;
use scraper::{Selector};
// use futures_core::future::Future;
// use futures::future::FutureExt;
// use futures::future::Shared;
use std::future::Future;
use std::pin::Pin;
use futures::future::{BoxFuture};

// use pin_utils::{unsafe_pinned, unsafe_unpinned};

// #[derive(Clone)]
pub enum ResponseLogic
{
    Parallel(Vec<Scrape>),
    Serial(Vec<Scrape>)
}

// #[derive(Debug)]
pub struct StartUrl
{
    pub url: Option<String>,
    pub method: Option<String>,
    pub response_logic: Option<ResponseLogic>
}



pub trait Store: Send + Sync + 'static {
    /// Invoke the endpoint within the given context
    fn call<'a>(&'a self, data: Vec<String>) -> BoxFuture<'a, ()>;
}

pub type DynStore = dyn Store;

impl<F: Send + Sync + 'static, Fut> Store for F
where
    F: Fn(Vec<String>) -> Fut,
    Fut: Future + Send + 'static,
{
    fn call<'a>(&'a self, data: Vec<String>) -> BoxFuture<'a, ()> {
        let fut = (self)(data);
        Box::pin(async move { fut.await; })
    }
}


impl StartUrl
{
    pub fn new() -> StartUrl{
        StartUrl {
            url: None,
            method: None,
            response_logic: None
        }
    }
    pub fn url<S: Into<String>>(mut self, url: S) -> Self {
        self.url = Some(url.into());
        self
    }
    pub fn method<S: Into<String>>(mut self, method: S) -> Self {
        self.method = Some(method.into());
        self
    }
    pub fn response_logic(mut self, response_logic: ResponseLogic) -> Self {
        self.response_logic = Some(response_logic);
        self
    }
    // pub fn to_owned(&self) -> Self {
    //     *self
    // }
}

// #[derive(Clone)]
pub struct Scrape
{
    pub executables: Vec<Box<Ops>>,
    // text: Text
}

// use std::fmt;
// impl fmt::Debug for dyn Predicate {
//     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
//         write!(f, "Predicate")
//     }
// }


// #[derive(Clone)]
pub enum Ops
{
    // Pred(Selector),
    UrlSelector(Selector),
    UrlExtractor(ElementUrlExtractor),
    DataSelector(Selector),
    DataExtractor(ElementDataExtractor),
    ResponseLogic(ResponseLogic),
    Store(Box<DynStore>)
}


// struct S<F>
// where
//     F: std::future::Future,
// {
//     foo: fn(u8) -> F,
// }

pub enum ElementUrlExtractor {
    Attr(String)
}

pub enum ElementDataExtractor {
    Text
}

impl Scrape
{
    // unsafe_unpinned!(executables: C);

    pub fn new() -> Scrape {
        Scrape {
            executables: vec![]
        }
    }
    // pub fn find<S: Into<String>>(mut self, predicate: S) -> Self {
    //     self.executables.push(Box::new(Ops::Pred(Selector::parse(&predicate.into()).unwrap())));
    //     self
    // }
    pub fn find_elements_with_data<S: Into<String>>(mut self, predicate: S) -> Self {
        self.executables.push(Box::new(Ops::DataSelector(Selector::parse(&predicate.into()).unwrap())));
        self
    }
    pub fn extract_data_from_elements(mut self, extractor: ElementDataExtractor) -> Self {
        self.executables.push(Box::new(Ops::DataExtractor(extractor)));
        self
    }

    pub fn find_elements_with_urls<S: Into<String>>(mut self, predicate: S) -> Self {
        self.executables.push(Box::new(Ops::UrlSelector(Selector::parse(&predicate.into()).unwrap())));
        self
    }
    pub fn extract_urls_from_elements(mut self, extractor: ElementUrlExtractor) -> Self {
        self.executables.push(Box::new(Ops::UrlExtractor(extractor)));
        self
    }
    pub fn response_logic(mut self, resp_logic: ResponseLogic) -> Self {
        self.executables.push(Box::new(Ops::ResponseLogic(resp_logic)));
        self
    }

    pub fn store(
        mut self, 
        c: impl Store
    ) -> Self
    {
        self.executables.push(Box::new(Ops::Store(Box::new(c))));
        self
    }
}