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
use core::{
    future::Future,
    marker::PhantomData,
    pin::{pin, Pin},
    ptr,
    task::{Context, Poll, RawWaker, RawWakerVTable, Waker},
};

use futures::FutureExt;
use pin_project::pin_project;

use crate::{higher_ranked_trait, higher_ranked_type, hkt::Marker};

// higher_ranked_trait! {
//     pub type class Effective['lt, E] for<'a> {
//         type Bound = &'a (&'lt (), T, E);
//
//         type T: { Adapters<'a, Effect = E, T = T> + Sized + 'a }
//         where {
//             'lt: 'a,
//             T: 'a,
//             E: Effect,
//         };
//
//         type HigherRanked: {} where {
//             E: Effect,
//         };
//     }
// }

// fn do_thing<E: Effect>() -> ObjSafe<'static, i32, E> {
//     E::ready(42).with(|x| {
//         other::<E>(x).map(|x| x + 1).into()
//     }).into()
// }
//
// fn other<E: Effect>(x: &i32) -> ObjSafe<'_, &i32, E> {
//     E::ready(x).into()
// }

// pub mod Effective {
//    
// }
//
pub trait Adapters<'lt>: Into<<Self::Effect as Effect>::ObjSafe<'lt, Self::T>> + 'lt {
    type Effect: Effect;
    type T: 'lt;

    type Map<'a, T: 'a, F: 'a + FnOnce(Self::T) -> T>: Adapters<'a, Effect = Self::Effect, T = T>
    where
        'lt: 'a;

    fn map<'a, R: 'a, F: 'a>(self, f: F) -> Self::Map<'a, R, F>
    where
        F: FnOnce(Self::T) -> R,
        'lt: 'a;
}

/// Trait for effects.
pub trait Effect: Sized + Send + Sync + 'static {
    type ObjSafe<'a, T: 'a>: Adapters<'a, Effect = Self, T = T>;

    type Ready<'a, T: 'a>: Adapters<'a, Effect = Self, T = T>;

    fn ready<'a, T: 'a>(x: T) -> Self::Ready<'a, T>;

    type With<'a, T: 'a, R: 'a, F: 'a + FnOnce(&mut T) -> R>: Adapters<'a, Effect = Self, T = R>;

    fn with<'a, T: 'a, R: 'a, F: 'a>(x: T, f: F) -> Self::With<'a, T, R::T, F>
        where
            R: Adapters<'a, Effect = Self>,
            F: FnOnce(&mut T) -> R;
}

pub type ObjSafe<'a, T, E> = <E as Effect>::ObjSafe<'a, T>;

pub enum Blocking {}

impl Effect for Blocking {
    type ObjSafe<'a, T: 'a> = Value<T>;

    type Ready<'a, T: 'a> = Value<T>;

    fn ready<'a, T: 'a>(x: T) -> Self::Ready<'a, T> {
        Value(x)
    }

    type With<'a, T: 'a, R: 'a, F: 'a + FnOnce(&mut T) -> R> = Value<R>;

    fn with<'a, T: 'a, R: 'a, F: 'a>(x: T, f: F) -> Self::With<'a, T, R::T, F>
        where
            R: Adapters<'a, Effect = Self>,
            F: FnOnce(&mut T) -> R {
        let mut ctx = x;
        Value(f(&mut ctx))
    }
}

pub struct Value<T>(pub T);

impl<'b, U: 'b> Adapters<'b> for Value<U> {
    type Effect = Blocking;

    type T = U;

    type Map<'a, T: 'a, F: 'a + FnOnce(Self::T) -> T> = Value<T> where 'b: 'a;

    fn map<'a, R: 'a, F: 'a>(self, f: F) -> Self::Map<'a, R, F>
    where
        F: FnOnce(Self::T) -> R,
        'b: 'a,
    {
        Value(f(self.0))
    }
}

/*
pub enum Async {}

impl Effect for Async {
    type ObjSafe<'a, T: 'a> = BoxedFuture<'a, T>;

    type Ready<'a, T: 'a> = AsyncValue<T>;

    fn ready<'a, T: 'a>(x: T) -> Self::Ready<'a, T> {
        AsyncValue(x)
    }
}

pub struct AsyncValue<T>(pub T);

pub struct BoxedFuture<'a, T: 'a>(pub Pin<Box<dyn Future<Output = T> + 'a>>);

impl<'b, U: 'b> Adapters<'b> for AsyncValue<U> {
    type Effect = Async;

    type T = U;

    type Map<'a, T: 'a, F: 'a + FnOnce(Self::T) -> T> = AsyncValue<T> where 'b: 'a;

    fn map<'a, R: 'a, F: 'a>(self, f: F) -> Self::Map<'a, R, F>
    where
        F: FnOnce(Self::T) -> R,
        'b: 'a,
    {
        AsyncValue(f(self.0))
    }
}

impl<'b, U: 'b> Adapters<'b> for BoxedFuture<'b, U> {
    type Effect = Async;

    type T = U;

    type Map<'a, T: 'a, F: 'a + FnOnce(Self::T) -> T> = AsyncMap<Self, F> where 'b: 'a;

    fn map<'a, R: 'a, F: 'a>(self, f: F) -> Self::Map<'a, R, F>
    where
        F: FnOnce(Self::T) -> R,
        'b: 'a,
    {
        AsyncMap {
            map: futures::FutureExt::map(self, f)
        }
    }
}

#[pin_project]
pub struct AsyncMap<Fut, F> {
    #[pin]
    map: futures::future::Map<Fut, F>,
}

impl<'b, U: 'b, Fut0: 'b, F0: 'b> Adapters<'b> for AsyncMap<Fut0, F0>
where
    Fut0: Future,
    F0: FnOnce(Fut0::Output) -> U,
{
    type Effect = Async;

    type T = U;

    type Map<'a, T: 'a, F: 'a + FnOnce(Self::T) -> T> = AsyncMap<Self, F> where 'b: 'a;

    fn map<'a, R: 'a, F: 'a>(self, f: F) -> Self::Map<'a, R, F>
    where
        F: FnOnce(Self::T) -> R,
        'b: 'a,
    {
        AsyncMap {
            map: futures::FutureExt::map(self, f)
        }
    }
}

impl<T, Fut, F> Future for AsyncMap<Fut, F>
where
    Fut: Future,
    F: FnOnce(Fut::Output) -> T,
{
    type Output = T;

    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let this = self.project();
        this.map.poll(cx)
    }
}

impl<'a, T> Future for BoxedFuture<'a, T> {
    type Output = T;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        self.0.poll_unpin(cx)
    }
}

impl<'a, T, Fut: 'a, F: 'a> From<AsyncMap<Fut, F>> for BoxedFuture<'a, T>
where
    Fut: Future,
    F: FnOnce(Fut::Output) -> T,
{
    fn from(value: AsyncMap<Fut, F>) -> Self {
        BoxedFuture(Box::pin(value.map))
    }
}

impl<'a, T: 'a> From<AsyncValue<T>> for BoxedFuture<'a, T> {
    fn from(value: AsyncValue<T>) -> Self {
        BoxedFuture(Box::pin(futures::future::ready(value.0)))
    }
}
*/

/*
pub trait ReadyValue: core::future::Future {
    fn value(self) -> Self::Output;
}

impl<T: Send> ReadyValue for core::future::Ready<T> {
    fn value(self) -> Self::Output {
        Spin::block_on(self)
    }
}

pub trait BlockOn: 'static {
    fn block_on<F>(future: F) -> F::Output
    where
        F: core::future::Future + Send,
        <F as core::future::Future>::Output: Send;
}

/// [`BlockOn`] implementer that just spins on the future.
///
/// This is useful for futures that are alwayd ready.
pub enum Spin {}

impl BlockOn for Spin {
    #[inline(always)]
    fn block_on<F>(future: F) -> F::Output
    where
        F: core::future::Future + Send,
    {
        let waker = noop();
        let mut context = Context::from_waker(&waker);

        let mut future = pin!(future);
        loop {
            if let Poll::Ready(value) = future.as_mut().poll(&mut context) {
                return value;
            }
        }
    }
}

#[inline]
pub fn noop() -> Waker {
    const VTABLE: &RawWakerVTable = &RawWakerVTable::new(
        // Cloning just returns a new no-op raw waker
        |_| RAW,
        // `wake` does nothing
        |_| {},
        // `wake_by_ref` does nothing
        |_| {},
        // Dropping does nothing as we don't allocate anything
        |_| {},
    );
    const RAW: RawWaker = RawWaker::new(ptr::null(), VTABLE);
    unsafe { Waker::from_raw(RAW) }
}

// pub struct Ready<Output> {
//     pub value: Option<Output>,
// }
//
// impl<Output> Ready<Output> {
//     pub fn into_inner(self) -> Output {
//         self.value.expect("`into_inner` called after completion")
//     }
// }
//
// impl<Output> Unpin for Ready<Output> {}
//
// impl<Output> core::future::Future for Ready<Output> {
//     type Output = Output;
//
//     fn poll(mut self: core::pin::Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Self::Output> {
//         Poll::Ready(self.value.take().expect("`Ready` polled after completion"))
//     }
// }

higher_ranked_type! {
    impl SendFuture {
        impl['a, Output] type T['a, Output] for core::future::Ready<Output> =
            core::future::Ready<Output>
        where {
            Output: Send
        };

        impl['a, Output] type HigherRanked['a, Output] for core::future::Ready<Output> =
            core::future::Ready<Output>
        where {
            Output: Send
        };
    }
}

impl<B: BlockOn> Effect for Blocking<B> {
    type Future<T: Send> = core::future::Ready<T>;

    #[inline(always)]
    fn wrap<'a, F>(future: F) -> SendFuture::T<'a, F::Output, Self::Future<F::Output>>
    where
        F: core::future::Future + Send + 'a,
        <F as core::future::Future>::Output: Send,
    {
        core::future::ready(B::block_on(future))
    }

    #[inline(always)]
    fn ready<'a, T: Send>(value: T) -> SendFuture::T<'a, T, Self::Future<T>> {
        core::future::ready(value)
    }

    #[inline(always)]
    fn map<'a, T, U, F>(
        future: SendFuture::T<'a, T, Self::Future<T>>,
        func: F,
    ) -> SendFuture::T<'a, U, Self::Future<U>>
    where
        T: Send,
        U: Send,
        F: FnOnce(T) -> U + Send + 'a,
    {
        let value = B::block_on(future);
        core::future::ready(func(value))
    }
}

mod sealed {
    pub enum BoxedFuture<'lt, Output> {
        Box(core::pin::Pin<Box<dyn core::future::Future<Output = Output> + Send + 'lt>>),
        Ready(core::future::Ready<Output>),
    }

    impl<'lt, Output> core::future::Future for BoxedFuture<'lt, Output> {
        type Output = Output;

        fn poll(
            mut self: core::pin::Pin<&mut Self>,
            cx: &mut core::task::Context<'_>,
        ) -> core::task::Poll<Self::Output> {
            match &mut *self {
                BoxedFuture::Box(future) => future.as_mut().poll(cx),
                BoxedFuture::Ready(future) => core::pin::Pin::new(future).poll(cx),
            }
        }
    }
}

#[cfg(feature = "alloc")]
pub struct BoxedFutureHrt<Output>(Marker<Output>);

#[cfg(feature = "alloc")]
higher_ranked_type! {
    impl SendFuture {
        impl['a, Output] type T['a, Output] for BoxedFutureHrt<Output> =
            sealed::BoxedFuture<'a, Output>
        where {
            Output: Send
        };

        impl['a, Output] type HigherRanked['a, Output] for sealed::BoxedFuture<'a, Output> =
            BoxedFutureHrt<Output>
        where {
            Output: Send
        };
    }
}

#[cfg(feature = "alloc")]
pub enum Async {}

#[cfg(feature = "alloc")]
impl Effect for Async {
    type Future<T: Send> = BoxedFutureHrt<T>;

    fn wrap<'a, F>(future: F) -> SendFuture::T<'a, F::Output, Self::Future<F::Output>>
    where
        F: core::future::Future + Send + 'a,
        <F as core::future::Future>::Output: Send,
    {
        sealed::BoxedFuture::Box(Box::pin(future))
    }

    fn ready<'a, T: Send>(value: T) -> SendFuture::T<'a, T, Self::Future<T>> {
        sealed::BoxedFuture::Ready(core::future::ready(value))
    }

    fn map<'a, T, U, F>(
        future: SendFuture::T<'a, T, Self::Future<T>>,
        func: F,
    ) -> SendFuture::T<'a, U, Self::Future<U>>
    where
        T: Send,
        U: Send,
        F: FnOnce(T) -> U + Send + 'a,
    {
        match future {
            sealed::BoxedFuture::Box(future) => Self::wrap(async { func(future.await) }),
            sealed::BoxedFuture::Ready(future) => {
                let value = Spin::block_on(future);
                Self::ready(func(value))
            }
        }
    }

    fn wrap_boxed<'a, F>(
        future: core::pin::Pin<Box<F>>,
    ) -> SendFuture::T<'a, F::Output, Self::Future<F::Output>>
    where
        F: core::future::Future + Send + 'a,
        <F as core::future::Future>::Output: Send,
    {
        sealed::BoxedFuture::Box(future)
    }
}
*/