wasmi_c_api/types/
extern.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
use crate::{
    wasm_functype_t,
    wasm_globaltype_t,
    wasm_memorytype_t,
    wasm_tabletype_t,
    CFuncType,
    CGlobalType,
    CMemoryType,
    CTableType,
};
use wasmi::ExternType;

/// A Wasm extern type.
///
/// Wraps [`ExternType`].
#[repr(C)]
#[derive(Clone)]
pub struct wasm_externtype_t {
    pub(crate) which: CExternType,
}

wasmi_c_api_macros::declare_ty!(wasm_externtype_t);

#[derive(Clone)]
pub(crate) enum CExternType {
    Func(CFuncType),
    Global(CGlobalType),
    Memory(CMemoryType),
    Table(CTableType),
}

impl CExternType {
    pub(crate) fn new(ty: ExternType) -> CExternType {
        match ty {
            ExternType::Func(f) => CExternType::Func(CFuncType::new(f)),
            ExternType::Global(f) => CExternType::Global(CGlobalType::new(f)),
            ExternType::Table(f) => CExternType::Table(CTableType::new(f)),
            ExternType::Memory(f) => CExternType::Memory(CMemoryType::new(f)),
        }
    }
}

/// The kind of a [`wasm_externtype_t`].
#[repr(u8)]
#[derive(Copy, Clone)]
pub enum wasm_externkind_t {
    WASM_EXTERN_FUNC = 0,
    WASM_EXTERN_GLOBAL = 1,
    WASM_EXTERN_TABLE = 2,
    WASM_EXTERN_MEMORY = 3,
}

impl wasm_externtype_t {
    pub(crate) fn from_extern_type(ty: ExternType) -> wasm_externtype_t {
        wasm_externtype_t {
            which: CExternType::new(ty),
        }
    }

    pub(crate) fn from_cextern_type(ty: CExternType) -> wasm_externtype_t {
        wasm_externtype_t { which: ty }
    }
}

/// Returns the [`wasm_externkind_t`] of the [`wasm_externtype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_kind(et: &wasm_externtype_t) -> wasm_externkind_t {
    match &et.which {
        CExternType::Func(_) => wasm_externkind_t::WASM_EXTERN_FUNC,
        CExternType::Global(_) => wasm_externkind_t::WASM_EXTERN_GLOBAL,
        CExternType::Table(_) => wasm_externkind_t::WASM_EXTERN_TABLE,
        CExternType::Memory(_) => wasm_externkind_t::WASM_EXTERN_MEMORY,
    }
}

/// Returns a mutable reference to the [`wasm_externtype_t`] as [`wasm_functype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_functype(
    et: &mut wasm_externtype_t,
) -> Option<&mut wasm_functype_t> {
    wasm_functype_t::try_from_mut(et)
}

/// Returns a shared reference to the [`wasm_externtype_t`] as [`wasm_functype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_functype_const(
    et: &wasm_externtype_t,
) -> Option<&wasm_functype_t> {
    wasm_functype_t::try_from(et)
}

/// Returns a mutable reference to the [`wasm_externtype_t`] as [`wasm_globaltype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_globaltype(
    et: &mut wasm_externtype_t,
) -> Option<&mut wasm_globaltype_t> {
    wasm_globaltype_t::try_from_mut(et)
}

/// Returns a shared reference to the [`wasm_externtype_t`] as [`wasm_globaltype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_globaltype_const(
    et: &wasm_externtype_t,
) -> Option<&wasm_globaltype_t> {
    wasm_globaltype_t::try_from(et)
}

/// Returns a mutable reference to the [`wasm_externtype_t`] as [`wasm_tabletype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_tabletype(
    et: &mut wasm_externtype_t,
) -> Option<&mut wasm_tabletype_t> {
    wasm_tabletype_t::try_from_mut(et)
}

/// Returns a shared reference to the [`wasm_externtype_t`] as [`wasm_tabletype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_tabletype_const(
    et: &wasm_externtype_t,
) -> Option<&wasm_tabletype_t> {
    wasm_tabletype_t::try_from(et)
}

/// Returns a mutable reference to the [`wasm_externtype_t`] as [`wasm_memorytype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_memorytype(
    et: &mut wasm_externtype_t,
) -> Option<&mut wasm_memorytype_t> {
    wasm_memorytype_t::try_from_mut(et)
}

/// Returns a shared reference to the [`wasm_externtype_t`] as [`wasm_memorytype_t`].
#[no_mangle]
pub extern "C" fn wasm_externtype_as_memorytype_const(
    et: &wasm_externtype_t,
) -> Option<&wasm_memorytype_t> {
    wasm_memorytype_t::try_from(et)
}