dynamic_provider/
query.rs

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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
use core::{convert::Infallible, mem};

use crate::{
    tag::{MarkerTag, Mut, Ref, TagFor, TagId, Value},
    Lt,
};

struct AlreadyFulfilled;
struct ShouldRecordAttempts;

/// The generic arg to [`QueryGeneric`] that unsizes to [`dyn ErasedQueryState`][ErasedQueryState].
///
/// This is `repr(C)` so that `&mut QueryState<T, Arg, F>` is a valid `&mut QueryState<T, Arg, Empty>`.
#[repr(C)]
struct QueryState<T, Arg, F> {
    value: QueryValue<T, Arg>,
    on_provide_attempt: F,
}

/// Internal state of a query.
#[derive(Default)]
enum QueryValue<T, Arg> {
    /// Invalid state so we can move `Arg` out of `&mut Self`.
    #[default]
    Invalid,
    /// Fulfilled query.
    Value(T),
    /// Unfulfilled query with whatever argument the tag requires.
    Arg(Arg),
}

/// Just a `repr(C)` zero-sized type to stand in place of `F` in [`TypedQuery`].
#[repr(C)]
struct Empty {}

/// Result of successful [`Query::downcast()`] call.
#[repr(transparent)]
struct TypedQuery<T, Arg> {
    inner: QueryGeneric<QueryState<T, Arg, Empty>>,
}

impl<T, Arg> TypedQuery<T, Arg> {
    fn fulfill(&mut self, value: T) {
        if let QueryValue::Arg { .. } = self.inner.state.value {
            self.inner.state.value = QueryValue::Value(value);
            self.inner.tag_id = TagId::of::<MarkerTag<AlreadyFulfilled>>();
        }
    }

    fn fulfill_with(&mut self, f: impl FnOnce(Arg) -> T) {
        self.try_fulfill_with::<Infallible>(|arg| Ok(f(arg)));
    }

    fn try_fulfill_with<R>(&mut self, f: impl FnOnce(Arg) -> Result<T, (Arg, R)>) -> Option<R> {
        if !matches!(self.inner.state.value, QueryValue::Arg { .. }) {
            return None;
        }

        let QueryValue::Arg(arg) = mem::take(&mut self.inner.state.value) else {
            return None;
        };

        match f(arg) {
            Ok(value) => {
                self.inner.state.value = QueryValue::Value(value);
                self.inner.tag_id = TagId::of::<MarkerTag<AlreadyFulfilled>>();
                None
            }
            Err((arg, out)) => {
                self.inner.state.value = QueryValue::Arg(arg);
                Some(out)
            }
        }
    }
}

/// ## Safety
/// It's assumed an implementor is `QueryState<Tag::Value<'x>, Tag::ArgValue<'x>>` for some `Arg: TagFor<L>`
/// and can be downcast back to the concrete type if `Tag` is known.
pub unsafe trait ErasedQueryState<L: Lt> {
    fn record_attempt(&mut self, tag_id: TagId);
}

unsafe impl<L, T, Arg, F> ErasedQueryState<L> for QueryState<T, Arg, F>
where
    L: Lt,
    F: FnMut(TagId),
{
    fn record_attempt(&mut self, tag_id: TagId) {
        (self.on_provide_attempt)(tag_id);
    }
}
/// Generic type meant for unsizing to [Query].
#[repr(C)]
pub struct QueryGeneric<Q: ?Sized> {
    /// Identifies the tag type with which `state` was created.
    /// When the query has been fulfilled, this will be set to `TagId::of::<MarkerTag<AlreadyFulfilled>>()` to indicate no future
    /// downcasts need be attempted.
    tag_id: TagId,
    /// Either a `QueryState` or a `dyn ErasedQueryState` holding the query's internal state
    /// (whether fulfilled or unfulfilled).
    state: Q,
}

impl<T, Arg, F> QueryGeneric<QueryState<T, Arg, F>> {
    fn new<Tag, L>(arg: Arg, on_provide_attempt: F) -> Self
    where
        Tag: TagFor<L, Value = T, ArgValue = Arg>,
        L: Lt,
    {
        Self {
            tag_id: TagId::of::<Tag>(),
            state: QueryState {
                value: QueryValue::Arg(arg),
                on_provide_attempt,
            },
        }
    }
}

/// A type-erased query ready to pass to [`Provide::provide()`][fn@crate::Provide::provide].
///
/// Providers may use this type to supply tagged values.
#[repr(transparent)]
pub struct Query<'data, L: Lt = ()> {
    q: QueryGeneric<dyn ErasedQueryState<L> + 'data>,
}

impl<'data, L: Lt> Query<'data, L> {
    /// Creates a `Query` expecting a value marked with `Tag` and passes it to the given function.
    ///
    /// Returns a pair of:
    /// 1. The value of type `R` returned by the given function.
    /// 1. `Some(_)` if the query was fulfilled, otherwise `None`
    pub fn new_with<Tag, R>(
        block: impl FnOnce(&mut Query<'data, L>) -> R,
        arg: Tag::ArgValue,
    ) -> (R, Option<Tag::Value>)
    where
        Tag: TagFor<L, ArgValue: 'data, Value: 'data>,
    {
        let mut query = QueryGeneric::new::<Tag, L>(arg, |_| {});
        let out = block(Query::new_mut(&mut query as _));

        let value = match query.state.value {
            QueryValue::Value(value) => Some(value),
            _ => None,
        };

        (out, value)
    }

    /// Creates a `Query` that does not expect any value, passes it to `block`,
    /// and calls `on_provide_attempt()` for every available [`TagId`].
    ///
    /// Returns the value of type `R` returned by `block`.
    pub fn capture_tag_ids<R>(
        block: impl FnOnce(&mut Query<'data, L>) -> R,
        on_provide_attempt: impl FnMut(TagId) + 'data,
    ) -> R
where {
        let mut query =
            QueryGeneric::new::<MarkerTag<ShouldRecordAttempts>, L>((), on_provide_attempt);
        block(Query::new_mut(&mut query as _))
    }

    fn new_mut<'this>(
        data: &'this mut QueryGeneric<dyn ErasedQueryState<L> + 'data>,
    ) -> &'this mut Self {
        unsafe { &mut *(data as *mut _ as *mut Self) }
    }

    fn downcast<Tag: TagFor<L>>(&mut self) -> Option<&mut TypedQuery<Tag::Value, Tag::ArgValue>> {
        let tag_id = TagId::of::<Tag>();

        if self.q.tag_id == TagId::of::<MarkerTag<ShouldRecordAttempts>>() {
            self.q.state.record_attempt(tag_id);
            return None;
        }

        if self.q.tag_id == tag_id {
            // SAFETY: `Tag` is the same type used to create this query, so the underlying type should be
            // TypedQuery<Tag::Value, Tag::ArgValue>
            let query =
                unsafe { &mut *(self as *mut Self as *mut TypedQuery<Tag::Value, Tag::ArgValue>) };

            return Some(query);
        }

        None
    }

    /// Returns `true` if the query has been fulfilled and no values will be accepted in the future.
    pub fn is_fulfilled(&self) -> bool {
        self.q.tag_id == TagId::of::<MarkerTag<AlreadyFulfilled>>()
    }

    /// Returns `true` if this query would accept a value tagged with `Tag`.
    ///
    /// **Note**: this will return `false` if a value tagged with `Tag` _was_ expected and has been
    /// fulfilled, as it will not accept additional values.
    pub fn expects<Tag: TagFor<L>>(&self) -> bool {
        self.q.tag_id == TagId::of::<Tag>()
    }

    /// Returns the [`TagId`] expected by this query.
    ///
    /// If this query has already been fulfilled, the returned ID is unspecified.
    pub fn expected_tag_id(&self) -> TagId {
        self.q.tag_id
    }

    /// Attempts to fulfill the query with a value marked with `Tag`.
    pub fn put<Tag: TagFor<L>>(&mut self, value: Tag::Value) -> &mut Self {
        if let Some(state) = self.downcast::<Tag>() {
            state.fulfill(value)
        }

        self
    }

    /// Attempts to fulfill the query with a function returning a value marked with `Tag`.
    ///
    /// The function will not be called if the query does not accept `Tag`.
    pub fn put_with<Tag: TagFor<L>>(
        &mut self,
        f: impl FnOnce(Tag::ArgValue) -> Tag::Value,
    ) -> &mut Self {
        if let Some(state) = self.downcast::<Tag>() {
            state.fulfill_with(f);
        }

        self
    }

    /// Behaves similarly to [`Self::put_with()`], except that the query will **not** be fulfilled
    /// if `predicate` returns `false`.
    ///
    /// The function will not be called if the query does not accept `Tag`.
    pub fn put_where<Tag: TagFor<L>>(
        &mut self,
        predicate: impl FnOnce(&mut Tag::ArgValue) -> bool,
        f: impl FnOnce(Tag::ArgValue) -> Tag::Value,
    ) -> &mut Self {
        self.try_put::<Tag>(|mut arg| {
            if predicate(&mut arg) {
                Ok(f(arg))
            } else {
                Err(arg)
            }
        })
    }

    /// Behaves similary to [`Self::put_with()`] when the function returns `Ok(_)`.
    /// When the function returns `Err(arg)`, the query will **not** be fulfilled.
    pub fn try_put<Tag: TagFor<L>>(
        &mut self,
        f: impl FnOnce(Tag::ArgValue) -> Result<Tag::Value, Tag::ArgValue>,
    ) -> &mut Self {
        if let Some(state) = self.downcast::<Tag>() {
            state.try_fulfill_with(|arg| f(arg).map_err(|e| (e, ())));
        }

        self
    }

    /// Attempts to fulfill the query with a `T` marked with [`Value<T>`].
    pub fn put_value<T: 'static>(&mut self, value: T) -> &mut Self {
        self.put::<Value<T>>(value)
    }

    /// Attempts to fulfill the query with a function returning a `T` marked with [`Value<T>`].
    pub fn put_value_with<T: 'static>(&mut self, value: impl FnOnce() -> T) -> &mut Self {
        self.put::<Value<T>>(value())
    }

    /// Packs a context value of type `C` along with this query.
    ///
    /// The context will be consumed only when fulfilling the query.
    /// If the query is not fulfilled, the context will be returned by [`QueryUsing::finish()`]
    ///
    /// ## Example
    ///
    /// ```
    /// use dynamic_provider::{Lt, Provide, Query};
    ///
    /// #[derive(Debug)]
    /// struct MyProvider {
    ///     x: i32,
    ///     y: String,
    ///     z: Vec<u8>,
    /// }
    ///
    /// impl<'x> Provide<Lt!['x]> for MyProvider {
    ///     fn provide(self, query: &mut Query<'_, Lt!['x]>) -> Option<Self> {
    ///         query
    ///             .using(self)
    ///             .put_value(|this| this.x)
    ///             .put_value(|this| this.y)
    ///             .put_value(|this| this.z)
    ///             .finish()
    ///     }
    /// }
    ///
    /// let my_provider = MyProvider {
    ///     x: 0,
    ///     y: "Foo".into(),
    ///     z: vec![1, 2, 3],
    /// };
    ///
    /// assert_eq!(my_provider.request_value::<String>().unwrap(), "Foo");
    /// ```
    pub fn using<C>(&mut self, context: C) -> QueryUsing<C, L> {
        // TODO: figure out why I need to wrap this in a function to avoid "lifetime may not live
        // long enough"
        fn inner<'q, L: Lt, C>(
            this: &'q mut QueryGeneric<dyn ErasedQueryState<L> + '_>,
            context: C,
        ) -> QueryUsing<'q, C, L> {
            QueryUsing {
                context: Some(context),
                query: Query::new_mut(this as _),
            }
        }

        inner(&mut self.q, context)
    }
}

impl<'x, L: Lt> Query<'_, Lt!['x, ..L]> {
    /// Attempts to fulfill the query with a `&'x T` marked with [`Ref<Value<T>>`].
    pub fn put_ref<T: ?Sized + 'static>(&mut self, value: &'x T) -> &mut Self {
        self.put::<Ref<Value<T>>>(value)
    }

    /// Attempts to fulfill the query with a `&'x mut T` marked with [`Mut<Value<T>>`].
    pub fn put_mut<T: ?Sized + 'static>(&mut self, value: &'x mut T) -> &mut Self {
        self.put::<Mut<Value<T>>>(value)
    }
}

/// Packs a context value of type `C` alongside the query that will be passed to a function
/// fulfilling the query.
///
/// See [`Query::using()`].
#[must_use]
pub struct QueryUsing<'q, C, L: Lt> {
    query: &'q mut Query<'q, L>,
    context: Option<C>,
}

impl<C, L: Lt> QueryUsing<'_, C, L> {
    /// Releases the context value, if still available.
    ///
    /// Returns `Some(_)` if the query was not fulfilled, so the context was never used.
    /// Returns `None` if the query was fulfilled.
    pub fn finish(self) -> Option<C> {
        self.context
    }

    /// Returns `true` if the query has been fulfilled and no values will be accepted in the future.
    pub fn is_fulfilled(&self) -> bool {
        self.query.is_fulfilled()
    }

    /// Returns `true` if this query would accept a value tagged with `Tag`.
    ///
    /// **Note**: this will return `false` if a value tagged with `Tag` _was_ expected and has been
    /// fulfilled, as it will not accept additional values.
    pub fn expects<Tag: TagFor<L>>(&self) -> bool {
        self.query.expects::<Tag>()
    }

    /// Returns the [`TagId`] expected by this query.
    ///
    /// If this query has already been fulfilled, the returned ID is unspecified.
    pub fn expected_tag_id(&self) -> TagId {
        self.query.expected_tag_id()
    }

    /// If the query is expecting `Tag`, call the given function with the [`TypedQuery`] and context.
    /// Returns `Some(R)` value if the query expected `Tag`, otherwise `None`.
    fn downcast_with<Tag: TagFor<L>, R>(
        &mut self,
        f: impl FnOnce(&mut TypedQuery<Tag::Value, Tag::ArgValue>, C) -> R,
    ) -> Option<R> {
        self.context.as_ref()?;

        Some(f(self.query.downcast::<Tag>()?, self.context.take()?))
    }

    /// Attempts to fulfill the query using a function accepting `C` and returning a value marked by
    /// `Tag`.
    ///
    /// If `Tag` is not expected, the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    pub fn put<Tag: TagFor<L>>(mut self, f: impl FnOnce(C) -> Tag::Value) -> Self {
        self.downcast_with::<Tag, _>(|state, cx| state.fulfill(f(cx)));

        self
    }

    /// Attempts to fulfill the query using a function accepting `Tag::ArgValue` and `C` and
    /// returning a value marked by `Tag`.
    ///
    /// If `Tag` is not expected, the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    pub fn put_with_arg<Tag: TagFor<L>>(
        mut self,
        f: impl FnOnce(Tag::ArgValue, C) -> Tag::Value,
    ) -> Self {
        self.downcast_with::<Tag, _>(|state, cx| state.fulfill_with(|arg| f(arg, cx)));

        self
    }

    /// Behaves like [`Self::put_with_arg()`], except that the query is **not** fulfilled if `predicate` returns `false`.
    ///
    /// If `Tag` is not expected or `predicate` returns false,
    /// the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    pub fn put_where<Tag: TagFor<L>>(
        self,
        predicate: impl FnOnce(&mut Tag::ArgValue, &mut C) -> bool,
        f: impl FnOnce(Tag::ArgValue, C) -> Tag::Value,
    ) -> Self {
        self.try_put_with_arg::<Tag>(|mut arg, mut cx| {
            if predicate(&mut arg, &mut cx) {
                Ok(f(arg, cx))
            } else {
                Err((arg, cx))
            }
        })
    }

    /// Behaves like [`Self::put()`] when the given function returns `Ok(_)`.
    /// When the function returns `Err(context)`, the query is **not** fulfilled and the context will be usable again.
    pub fn try_put<Tag: TagFor<L>>(self, f: impl FnOnce(C) -> Result<Tag::Value, C>) -> Self {
        self.try_put_with_arg::<Tag>(|arg, cx| f(cx).map_err(|cx| (arg, cx)))
    }

    /// Behaves like [`Self::put_with_arg()`] when the given function returns `Ok(_)`.
    /// When the function returns `Err((arg, context))`, the query is **not** fulfilled and the context will be usable again.
    pub fn try_put_with_arg<Tag: TagFor<L>>(
        mut self,
        f: impl FnOnce(Tag::ArgValue, C) -> Result<Tag::Value, (Tag::ArgValue, C)>,
    ) -> Self {
        self.context = self
            .downcast_with::<Tag, _>(|state, cx| state.try_fulfill_with(|arg| f(arg, cx)))
            .flatten();

        self
    }

    /// Attempts to fulfill the query using a function accepting `C` and returning a `T` marked by
    /// [`Value<T>`].
    ///
    /// If the value is not expected, the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    pub fn put_value<T: 'static>(self, f: impl FnOnce(C) -> T) -> Self {
        self.put::<Value<T>>(f)
    }

    /// Temporarily add another value to the context for the duration of the call to `block`.
    /// After `block` is finished the new context will be dropped if it hasn't been used.
    fn add_and_drop_context<C2>(
        mut self,
        new_context: C2,
        block: impl for<'q2> FnOnce(QueryUsing<'q2, (C, C2), L>) -> QueryUsing<'q2, (C, C2), L>,
    ) -> Self {
        self.context = self
            .context
            .and_then(|cx| block(self.query.using((cx, new_context))).finish())
            .map(|(cx, _)| cx);
        self
    }
}

impl<'x, C, L: Lt> QueryUsing<'_, C, Lt!['x, ..L]> {
    /// Attempts to fulfill the query using a function accepting `C` and returning a `&'x T` marked by
    /// [`Ref<Value<T>>`].
    ///
    /// If the reference is not expected, the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    pub fn put_ref<T: 'static + ?Sized>(self, f: impl FnOnce(C) -> &'x T) -> Self {
        self.put::<Ref<Value<T>>>(f)
    }

    /// Attempts to fulfill the query using a function accepting `C` and returning a `&'x mut T` marked by
    /// [`Mut<Value<T>>`].
    ///
    /// If the reference is not expected, the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    pub fn put_mut<T: 'static + ?Sized>(self, f: impl FnOnce(C) -> &'x mut T) -> Self {
        self.put::<Mut<Value<T>>>(f)
    }

    /// Attempts to fulfill the query using a function accepting `C` and returning a `&'x T`.
    /// This will supply the `&'x T` marked by [`Ref<Value<T>>`]
    /// as well as the `T` marked by [`Value<T>`]
    /// using `T`'s [`Clone`] implementation.
    ///
    /// Behaves similarly to [`Self::put_ownable()`] but is available when the `alloc` feature is disabled.
    ///
    /// If neither the reference nor the owned value are expected,
    /// the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    pub fn put_cloneable<T>(self, f: impl FnOnce(C) -> &'x T) -> Self
    where
        T: 'static + Clone,
    {
        self.add_and_drop_context(f, |q| {
            q.put_ref(|(cx, f)| f(cx))
                .put_value(|(cx, f)| f(cx).clone())
        })
    }

    /// Attempts to fulfill the query using a function accepting `C` and returning a `&'x T`.
    /// This will supply the `&'x T` marked by [`Ref<Value<T>>`]
    /// as well as the [`T::Owned`][alloc::borrow::ToOwned::Owned] marked by [`Value<T::Owned>`][Value]
    /// using `T's` [`ToOwned`][alloc::borrow::ToOwned] implementation.
    ///
    /// If neither the reference nor the owned value are expected,
    /// the function will not be called and the context will not be used.
    /// Does nothing if the query has already been fulfilled.
    #[cfg(any(feature = "alloc", doc))]
    pub fn put_ownable<T>(self, f: impl FnOnce(C) -> &'x T) -> Self
    where
        T: 'static + ?Sized + alloc::borrow::ToOwned,
    {
        self.add_and_drop_context(f, |q| {
            q.put_ref(|(cx, f)| f(cx))
                .put_value(|(cx, f)| f(cx).to_owned())
        })
    }
}