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
use crate::context::Context;
use crate::value::Value;
use async_trait::async_trait;

/// Script Builtin trait you can provide your system methods for script
#[async_trait]
pub trait Builtin: Send {
    async fn run(&mut self, name: &str, ctx: &mut Context<'_>) -> Value;
    #[allow(unused_variables)]
    fn load(&mut self, name: &str) -> Option<Value> {
        None
    }
    fn print(&mut self, v: Value);
    fn new_line(&mut self);
    async fn wait(&mut self);
}

#[async_trait]
impl<'a, B: Builtin> Builtin for &'a mut B {
    #[inline]
    async fn run(&mut self, name: &str, ctx: &mut Context<'_>) -> Value {
        (**self).run(name, ctx).await
    }
    fn load(&mut self, name: &str) -> Option<Value> {
        (**self).load(name)
    }
    #[inline]
    fn print(&mut self, v: Value) {
        (**self).print(v);
    }
    #[inline]
    fn new_line(&mut self) {
        (**self).new_line();
    }
    #[inline]
    async fn wait(&mut self) {
        (**self).wait().await;
    }
}

pub struct RecordBuiltin(String);

impl RecordBuiltin {
    #[inline]
    pub fn new() -> Self {
        Self(String::with_capacity(8196))
    }

    #[inline]
    pub fn text(&self) -> &str {
        &self.0
    }
}

#[async_trait]
impl Builtin for RecordBuiltin {
    #[inline]
    async fn run(&mut self, name: &str, _ctx: &mut Context<'_>) -> Value {
        self.0.push_str(name);
        Value::Int(0)
    }
    fn load(&mut self, name: &str) -> Option<Value> {
        use std::fmt::Write;
        write!(self.0, "${}", name).unwrap();
        None
    }
    #[inline]
    fn print(&mut self, v: Value) {
        use std::fmt::Write;
        write!(self.0, "{}", v).unwrap();
    }
    #[inline]
    fn new_line(&mut self) {
        self.0.push('@');
    }
    #[inline]
    async fn wait(&mut self) {
        self.0.push('#');
    }
}