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
use std::ffi::CString;

use crate::core::DefineConstant;
use crate::def::{ConstantNameError, NotDefinedError};
use crate::error::Error;
use crate::ffi::InterpreterExtractError;
use crate::sys;
use crate::value::Value;
use crate::Artichoke;

impl DefineConstant for Artichoke {
    type Value = Value;

    type Error = Error;

    fn define_global_constant(&mut self, constant: &str, value: Self::Value) -> Result<(), Self::Error> {
        let name = if let Ok(name) = CString::new(constant) {
            name
        } else {
            return Err(ConstantNameError::from(String::from(constant)).into());
        };
        unsafe {
            self.with_ffi_boundary(|mrb| sys::mrb_define_global_const(mrb, name.as_ptr(), value.inner()))?;
        }
        Ok(())
    }

    fn define_class_constant<T>(&mut self, constant: &str, value: Self::Value) -> Result<(), Self::Error>
    where
        T: 'static,
    {
        let name = if let Ok(name) = CString::new(constant) {
            name
        } else {
            return Err(ConstantNameError::from(String::from(constant)).into());
        };
        let state = self.state.as_deref_mut().ok_or_else(InterpreterExtractError::new)?;
        let spec = state
            .classes
            .get::<T>()
            .ok_or_else(|| NotDefinedError::class_constant(String::from(constant)))?;
        let rclass = spec.rclass();

        let rclass = unsafe { self.with_ffi_boundary(|mrb| rclass.resolve(mrb))? };
        if let Some(mut rclass) = rclass {
            unsafe {
                self.with_ffi_boundary(|mrb| {
                    sys::mrb_define_const(mrb, rclass.as_mut(), name.as_ptr(), value.inner());
                })?;
            }
            Ok(())
        } else {
            Err(NotDefinedError::class_constant(String::from(constant)).into())
        }
    }

    fn define_module_constant<T>(&mut self, constant: &str, value: Self::Value) -> Result<(), Self::Error>
    where
        T: 'static,
    {
        let name = if let Ok(name) = CString::new(constant) {
            name
        } else {
            return Err(ConstantNameError::from(String::from(constant)).into());
        };
        let state = self.state.as_deref_mut().ok_or_else(InterpreterExtractError::new)?;
        let spec = state
            .modules
            .get::<T>()
            .ok_or_else(|| NotDefinedError::module_constant(String::from(constant)))?;
        let rclass = spec.rclass();

        let rclass = unsafe { self.with_ffi_boundary(|mrb| rclass.resolve(mrb))? };
        if let Some(mut rclass) = rclass {
            unsafe {
                self.with_ffi_boundary(|mrb| {
                    sys::mrb_define_const(mrb, rclass.as_mut(), name.as_ptr(), value.inner());
                })?;
            }
            Ok(())
        } else {
            Err(NotDefinedError::module_constant(String::from(constant)).into())
        }
    }
}