bevy_reflect/func/args/
list.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
use crate::{
    func::{
        args::{Arg, ArgValue, FromArg},
        ArgError,
    },
    PartialReflect, Reflect, TypePath,
};
use alloc::collections::VecDeque;

/// A list of arguments that can be passed to a [`DynamicFunction`] or [`DynamicFunctionMut`].
///
/// # Example
///
/// ```
/// # use bevy_reflect::func::{ArgValue, ArgList};
/// let foo = 123;
/// let bar = 456;
/// let mut baz = 789;
/// let args = ArgList::new()
///   // Push an owned argument
///   .push_owned(foo)
///   // Push an owned and boxed argument
///   .push_boxed(Box::new(foo))
///   // Push a reference argument
///   .push_ref(&bar)
///   // Push a mutable reference argument
///   .push_mut(&mut baz)
///   // Push a manually constructed argument
///   .push_arg(ArgValue::Ref(&3.14));
/// ```
///
/// [arguments]: Arg
/// [`DynamicFunction`]: crate::func::DynamicFunction
/// [`DynamicFunctionMut`]: crate::func::DynamicFunctionMut
#[derive(Default, Debug)]
pub struct ArgList<'a> {
    list: VecDeque<Arg<'a>>,
    /// A flag that indicates if the list needs to be re-indexed.
    ///
    /// This flag should be set when an argument is removed from the beginning of the list,
    /// so that any future push operations will re-index the arguments.
    needs_reindex: bool,
}

impl<'a> ArgList<'a> {
    /// Create a new empty list of arguments.
    pub fn new() -> Self {
        Self {
            list: VecDeque::new(),
            needs_reindex: false,
        }
    }

    /// Push an [`ArgValue`] onto the list.
    ///
    /// If an argument was previously removed from the beginning of the list,
    /// this method will also re-index the list.
    pub fn push_arg(mut self, arg: ArgValue<'a>) -> Self {
        if self.needs_reindex {
            for (index, arg) in self.list.iter_mut().enumerate() {
                arg.set_index(index);
            }
            self.needs_reindex = false;
        }

        let index = self.list.len();
        self.list.push_back(Arg::new(index, arg));
        self
    }

    /// Push an [`ArgValue::Ref`] onto the list with the given reference.
    ///
    /// If an argument was previously removed from the beginning of the list,
    /// this method will also re-index the list.
    pub fn push_ref(self, arg: &'a dyn PartialReflect) -> Self {
        self.push_arg(ArgValue::Ref(arg))
    }

    /// Push an [`ArgValue::Mut`] onto the list with the given mutable reference.
    ///
    /// If an argument was previously removed from the beginning of the list,
    /// this method will also re-index the list.
    pub fn push_mut(self, arg: &'a mut dyn PartialReflect) -> Self {
        self.push_arg(ArgValue::Mut(arg))
    }

    /// Push an [`ArgValue::Owned`] onto the list with the given owned value.
    ///
    /// If an argument was previously removed from the beginning of the list,
    /// this method will also re-index the list.
    pub fn push_owned(self, arg: impl PartialReflect) -> Self {
        self.push_arg(ArgValue::Owned(Box::new(arg)))
    }

    /// Push an [`ArgValue::Owned`] onto the list with the given boxed value.
    ///
    /// If an argument was previously removed from the beginning of the list,
    /// this method will also re-index the list.
    pub fn push_boxed(self, arg: Box<dyn PartialReflect>) -> Self {
        self.push_arg(ArgValue::Owned(arg))
    }

    /// Remove the first argument in the list and return it.
    ///
    /// It's generally preferred to use [`Self::take`] instead of this method
    /// as it provides a more ergonomic way to immediately downcast the argument.
    pub fn take_arg(&mut self) -> Result<Arg<'a>, ArgError> {
        self.needs_reindex = true;
        self.list.pop_front().ok_or(ArgError::EmptyArgList)
    }

    /// Remove the first argument in the list and return `Ok(T::This)`.
    ///
    /// If the list is empty or the [`FromArg::from_arg`] call fails, returns an error.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let a = 1u32;
    /// let b = 2u32;
    /// let mut c = 3u32;
    /// let mut args = ArgList::new().push_owned(a).push_ref(&b).push_mut(&mut c);
    ///
    /// let a = args.take::<u32>().unwrap();
    /// assert_eq!(a, 1);
    ///
    /// let b = args.take::<&u32>().unwrap();
    /// assert_eq!(*b, 2);
    ///
    /// let c = args.take::<&mut u32>().unwrap();
    /// assert_eq!(*c, 3);
    /// ```
    pub fn take<T: FromArg>(&mut self) -> Result<T::This<'a>, ArgError> {
        self.take_arg()?.take::<T>()
    }

    /// Remove the first argument in the list and return `Ok(T)` if the argument is [`ArgValue::Owned`].
    ///
    /// If the list is empty or the argument is not owned, returns an error.
    ///
    /// It's generally preferred to use [`Self::take`] instead of this method.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let value = 123u32;
    /// let mut args = ArgList::new().push_owned(value);
    /// let value = args.take_owned::<u32>().unwrap();
    /// assert_eq!(value, 123);
    /// ```
    pub fn take_owned<T: Reflect + TypePath>(&mut self) -> Result<T, ArgError> {
        self.take_arg()?.take_owned()
    }

    /// Remove the first argument in the list and return `Ok(&T)` if the argument is [`ArgValue::Ref`].
    ///
    /// If the list is empty or the argument is not a reference, returns an error.
    ///
    /// It's generally preferred to use [`Self::take`] instead of this method.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let value = 123u32;
    /// let mut args = ArgList::new().push_ref(&value);
    /// let value = args.take_ref::<u32>().unwrap();
    /// assert_eq!(*value, 123);
    /// ```
    pub fn take_ref<T: Reflect + TypePath>(&mut self) -> Result<&'a T, ArgError> {
        self.take_arg()?.take_ref()
    }

    /// Remove the first argument in the list and return `Ok(&mut T)` if the argument is [`ArgValue::Mut`].
    ///
    /// If the list is empty or the argument is not a mutable reference, returns an error.
    ///
    /// It's generally preferred to use [`Self::take`] instead of this method.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let mut value = 123u32;
    /// let mut args = ArgList::new().push_mut(&mut value);
    /// let value = args.take_mut::<u32>().unwrap();
    /// assert_eq!(*value, 123);
    /// ```
    pub fn take_mut<T: Reflect + TypePath>(&mut self) -> Result<&'a mut T, ArgError> {
        self.take_arg()?.take_mut()
    }

    /// Remove the last argument in the list and return it.
    ///
    /// It's generally preferred to use [`Self::pop`] instead of this method
    /// as it provides a more ergonomic way to immediately downcast the argument.
    pub fn pop_arg(&mut self) -> Result<Arg<'a>, ArgError> {
        self.list.pop_back().ok_or(ArgError::EmptyArgList)
    }

    /// Remove the last argument in the list and return `Ok(T::This)`.
    ///
    /// If the list is empty or the [`FromArg::from_arg`] call fails, returns an error.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let a = 1u32;
    /// let b = 2u32;
    /// let mut c = 3u32;
    /// let mut args = ArgList::new().push_owned(a).push_ref(&b).push_mut(&mut c);
    ///
    /// let c = args.pop::<&mut u32>().unwrap();
    /// assert_eq!(*c, 3);
    ///
    /// let b = args.pop::<&u32>().unwrap();
    /// assert_eq!(*b, 2);
    ///
    /// let a = args.pop::<u32>().unwrap();
    /// assert_eq!(a, 1);
    /// ```
    pub fn pop<T: FromArg>(&mut self) -> Result<T::This<'a>, ArgError> {
        self.pop_arg()?.take::<T>()
    }

    /// Remove the last argument in the list and return `Ok(T)` if the argument is [`ArgValue::Owned`].
    ///
    /// If the list is empty or the argument is not owned, returns an error.
    ///
    /// It's generally preferred to use [`Self::pop`] instead of this method.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let value = 123u32;
    /// let mut args = ArgList::new().push_owned(value);
    /// let value = args.pop_owned::<u32>().unwrap();
    /// assert_eq!(value, 123);
    /// ```
    pub fn pop_owned<T: Reflect + TypePath>(&mut self) -> Result<T, ArgError> {
        self.pop_arg()?.take_owned()
    }

    /// Remove the last argument in the list and return `Ok(&T)` if the argument is [`ArgValue::Ref`].
    ///
    /// If the list is empty or the argument is not a reference, returns an error.
    ///
    /// It's generally preferred to use [`Self::pop`] instead of this method.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let value = 123u32;
    /// let mut args = ArgList::new().push_ref(&value);
    /// let value = args.pop_ref::<u32>().unwrap();
    /// assert_eq!(*value, 123);
    /// ```
    pub fn pop_ref<T: Reflect + TypePath>(&mut self) -> Result<&'a T, ArgError> {
        self.pop_arg()?.take_ref()
    }

    /// Remove the last argument in the list and return `Ok(&mut T)` if the argument is [`ArgValue::Mut`].
    ///
    /// If the list is empty or the argument is not a mutable reference, returns an error.
    ///
    /// It's generally preferred to use [`Self::pop`] instead of this method.
    ///
    /// # Example
    ///
    /// ```
    /// # use bevy_reflect::func::ArgList;
    /// let mut value = 123u32;
    /// let mut args = ArgList::new().push_mut(&mut value);
    /// let value = args.pop_mut::<u32>().unwrap();
    /// assert_eq!(*value, 123);
    /// ```
    pub fn pop_mut<T: Reflect + TypePath>(&mut self) -> Result<&'a mut T, ArgError> {
        self.pop_arg()?.take_mut()
    }

    /// Returns the number of arguments in the list.
    pub fn len(&self) -> usize {
        self.list.len()
    }

    /// Returns `true` if the list of arguments is empty.
    pub fn is_empty(&self) -> bool {
        self.list.is_empty()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn should_push_arguments_in_order() {
        let args = ArgList::new()
            .push_owned(123)
            .push_owned(456)
            .push_owned(789);

        assert_eq!(args.len(), 3);
        assert_eq!(args.list[0].index(), 0);
        assert_eq!(args.list[1].index(), 1);
        assert_eq!(args.list[2].index(), 2);
    }

    #[test]
    fn should_push_arg_with_correct_ownership() {
        let a = String::from("a");
        let b = String::from("b");
        let mut c = String::from("c");
        let d = String::from("d");
        let e = String::from("e");
        let f = String::from("f");
        let mut g = String::from("g");

        let args = ArgList::new()
            .push_arg(ArgValue::Owned(Box::new(a)))
            .push_arg(ArgValue::Ref(&b))
            .push_arg(ArgValue::Mut(&mut c))
            .push_owned(d)
            .push_boxed(Box::new(e))
            .push_ref(&f)
            .push_mut(&mut g);

        assert!(matches!(args.list[0].value(), &ArgValue::Owned(_)));
        assert!(matches!(args.list[1].value(), &ArgValue::Ref(_)));
        assert!(matches!(args.list[2].value(), &ArgValue::Mut(_)));
        assert!(matches!(args.list[3].value(), &ArgValue::Owned(_)));
        assert!(matches!(args.list[4].value(), &ArgValue::Owned(_)));
        assert!(matches!(args.list[5].value(), &ArgValue::Ref(_)));
        assert!(matches!(args.list[6].value(), &ArgValue::Mut(_)));
    }

    #[test]
    fn should_take_args_in_order() {
        let a = String::from("a");
        let b = 123_i32;
        let c = 456_usize;
        let mut d = 5.78_f32;

        let mut args = ArgList::new()
            .push_owned(a)
            .push_ref(&b)
            .push_ref(&c)
            .push_mut(&mut d);

        assert_eq!(args.len(), 4);
        assert_eq!(args.take_owned::<String>().unwrap(), String::from("a"));
        assert_eq!(args.take::<&i32>().unwrap(), &123);
        assert_eq!(args.take_ref::<usize>().unwrap(), &456);
        assert_eq!(args.take_mut::<f32>().unwrap(), &mut 5.78);
        assert_eq!(args.len(), 0);
    }

    #[test]
    fn should_pop_args_in_reverse_order() {
        let a = String::from("a");
        let b = 123_i32;
        let c = 456_usize;
        let mut d = 5.78_f32;

        let mut args = ArgList::new()
            .push_owned(a)
            .push_ref(&b)
            .push_ref(&c)
            .push_mut(&mut d);

        assert_eq!(args.len(), 4);
        assert_eq!(args.pop_mut::<f32>().unwrap(), &mut 5.78);
        assert_eq!(args.pop_ref::<usize>().unwrap(), &456);
        assert_eq!(args.pop::<&i32>().unwrap(), &123);
        assert_eq!(args.pop_owned::<String>().unwrap(), String::from("a"));
        assert_eq!(args.len(), 0);
    }

    #[test]
    fn should_reindex_on_push_after_take() {
        let mut args = ArgList::new()
            .push_owned(123)
            .push_owned(456)
            .push_owned(789);

        assert!(!args.needs_reindex);

        args.take_arg().unwrap();
        assert!(args.needs_reindex);
        assert!(args.list[0].value().reflect_partial_eq(&456).unwrap());
        assert_eq!(args.list[0].index(), 1);
        assert!(args.list[1].value().reflect_partial_eq(&789).unwrap());
        assert_eq!(args.list[1].index(), 2);

        let args = args.push_owned(123);
        assert!(!args.needs_reindex);
        assert!(args.list[0].value().reflect_partial_eq(&456).unwrap());
        assert_eq!(args.list[0].index(), 0);
        assert!(args.list[1].value().reflect_partial_eq(&789).unwrap());
        assert_eq!(args.list[1].index(), 1);
        assert!(args.list[2].value().reflect_partial_eq(&123).unwrap());
        assert_eq!(args.list[2].index(), 2);
    }
}