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
//! Interface of a native module.
//!
//! A native module is any library that exposes a symbol of the type [NativeModuleInterface].
use crate::collections::{ConstSpan, NonNullConst, Result};
use crate::module::{Error, Interface, InterfaceDescriptor, ModuleHandle, ModuleInfo};
use crate::sys::api::{GetFunctionFn, HasFunctionFn};
use crate::{CBase, TypeWrapper};
use std::ptr::NonNull;

/// Opaque structure representing a native module.
#[repr(C)]
pub struct NativeModule {
    _dummy: [u8; 0],
}

pub type LoadFn = TypeWrapper<
    unsafe extern "C-unwind" fn(
        handle: ModuleHandle,
        base_module: Option<NonNull<CBase>>,
        has_function_fn: HasFunctionFn,
        get_function_fn: GetFunctionFn,
    ) -> Result<Option<NonNull<NativeModule>>, Error>,
>;

pub type UnloadFn = TypeWrapper<
    unsafe extern "C-unwind" fn(module: Option<NonNull<NativeModule>>) -> Result<i8, Error>,
>;

pub type InitializeFn = TypeWrapper<
    unsafe extern "C-unwind" fn(module: Option<NonNull<NativeModule>>) -> Result<i8, Error>,
>;

pub type TerminateFn = TypeWrapper<
    unsafe extern "C-unwind" fn(module: Option<NonNull<NativeModule>>) -> Result<i8, Error>,
>;

pub type GetInterfaceFn = TypeWrapper<
    unsafe extern "C-unwind" fn(
        module: Option<NonNull<NativeModule>>,
        interface: NonNullConst<InterfaceDescriptor>,
    ) -> Result<Interface, Error>,
>;

pub type GetModuleInfoFn = TypeWrapper<
    unsafe extern "C-unwind" fn(
        module: Option<NonNull<NativeModule>>,
    ) -> Result<NonNullConst<ModuleInfo>, Error>,
>;

pub type GetLoadDependenciesFn =
    TypeWrapper<unsafe extern "C-unwind" fn() -> ConstSpan<InterfaceDescriptor>>;

pub type GetRuntimeDependenciesFn = TypeWrapper<
    unsafe extern "C-unwind" fn(
        module: Option<NonNull<NativeModule>>,
    ) -> Result<ConstSpan<InterfaceDescriptor>, Error>,
>;

pub type GetExportableInterfacesFn = TypeWrapper<
    unsafe extern "C-unwind" fn(
        module: Option<NonNull<NativeModule>>,
    ) -> Result<ConstSpan<InterfaceDescriptor>, Error>,
>;

/// Interface of a native module.
#[repr(C)]
#[derive(Debug, Copy, Clone, Ord, PartialOrd, Eq, PartialEq)]
pub struct NativeModuleInterface {
    pub load_fn: LoadFn,
    pub unload_fn: UnloadFn,
    pub initialize_fn: InitializeFn,
    pub terminate_fn: TerminateFn,
    pub get_interface_fn: GetInterfaceFn,
    pub get_module_info_fn: GetModuleInfoFn,
    pub get_load_dependencies_fn: GetLoadDependenciesFn,
    pub get_runtime_dependencies_fn: GetRuntimeDependenciesFn,
    pub get_exportable_interfaces_fn: GetExportableInterfacesFn,
}

unsafe impl Send for NativeModuleInterface {}
unsafe impl Sync for NativeModuleInterface {}

/// Helper trait for using a native module.
pub trait NativeModuleBinding {
    /// Loads the module.
    ///
    /// # Failure
    ///
    /// The function can fail if some module invariant is not met.
    ///
    /// # Return
    ///
    /// Handle on success, error otherwise.
    ///
    /// # Safety
    ///
    /// The function crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn load(
        &mut self,
        handle: ModuleHandle,
        base_module: Option<NonNull<CBase>>,
        has_function_fn: HasFunctionFn,
        get_function_fn: GetFunctionFn,
    ) -> Result<Option<NonNull<NativeModule>>, Error>;

    /// Unloads the module.
    ///
    /// # Failure
    ///
    /// The function can fail if some module invariant is not met or `module` is invalid.
    ///
    /// # Return
    ///
    /// Error on failure.
    ///
    /// # Safety
    ///
    /// The function crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn unload(&mut self, module: Option<NonNull<NativeModule>>) -> Result<i8, Error>;

    /// Initializes the module.
    ///
    /// # Failure
    ///
    /// The function can fail if some module invariant is not met or `module` is invalid.
    ///
    /// # Return
    ///
    /// Error on failure.
    ///
    /// # Safety
    ///
    /// The function crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn initialize(&mut self, module: Option<NonNull<NativeModule>>) -> Result<i8, Error>;

    /// Terminates the module.
    ///
    /// # Failure
    ///
    /// The function can fail if some module invariant is not met or `module` is invalid.
    ///
    /// # Return
    ///
    /// Error on failure.
    ///
    /// # Safety
    ///
    /// The function crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn terminate(&mut self, module: Option<NonNull<NativeModule>>) -> Result<i8, Error>;

    /// Fetches an interface from the module.
    ///
    /// # Failure
    ///
    /// The function fails if `module` is invalid.
    ///
    /// # Return
    ///
    /// Interface on success, error otherwise.
    ///
    /// # Safety
    ///
    /// The function is not thread-safe and crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn get_interface(
        &self,
        module: Option<NonNull<NativeModule>>,
        interface: NonNullConst<InterfaceDescriptor>,
    ) -> Result<Interface, Error>;

    /// Fetches the module info of the module.
    ///
    /// # Failure
    ///
    /// The function fails if `module` is invalid.
    ///
    /// # Return
    ///
    /// Module info on success, error otherwise.
    ///
    /// # Safety
    ///
    /// The function is not thread-safe and crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn get_module_info(
        &self,
        module: Option<NonNull<NativeModule>>,
    ) -> Result<NonNullConst<ModuleInfo>, Error>;

    /// Fetches the load dependencies of the module.
    ///
    /// # Return
    ///
    /// Load dependencies.
    ///
    /// # Safety
    ///
    /// The function crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn get_load_dependencies(&self) -> ConstSpan<InterfaceDescriptor>;

    /// Fetches the runtime dependencies of the module.
    ///
    /// # Failure
    ///
    /// The function fails if `module` is invalid.
    ///
    /// # Return
    ///
    /// Runtime dependencies on success, error otherwise.
    ///
    /// # Safety
    ///
    /// The function is not thread-safe and crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn get_runtime_dependencies(
        &self,
        module: Option<NonNull<NativeModule>>,
    ) -> Result<ConstSpan<InterfaceDescriptor>, Error>;

    /// Fetches the exportable interfaces of the module.
    ///
    /// # Failure
    ///
    /// The function fails if `module` is invalid.
    ///
    /// # Return
    ///
    /// Exportable interfaces on success, error otherwise.
    ///
    /// # Safety
    ///
    /// The function is not thread-safe and crosses the ffi boundary.
    /// Direct usage of a [NativeModuleBinding] may break some invariants
    /// of the module api, if not handled with care.
    unsafe fn get_exportable_interfaces(
        &self,
        module: Option<NonNull<NativeModule>>,
    ) -> Result<ConstSpan<InterfaceDescriptor>, Error>;
}

impl NativeModuleBinding for NativeModuleInterface {
    #[inline]
    unsafe fn load(
        &mut self,
        handle: ModuleHandle,
        base_module: Option<NonNull<CBase>>,
        has_function_fn: HasFunctionFn,
        get_function_fn: GetFunctionFn,
    ) -> Result<Option<NonNull<NativeModule>>, Error> {
        (self.load_fn)(handle, base_module, has_function_fn, get_function_fn)
    }

    #[inline]
    unsafe fn unload(&mut self, module: Option<NonNull<NativeModule>>) -> Result<i8, Error> {
        (self.unload_fn)(module)
    }

    #[inline]
    unsafe fn initialize(&mut self, module: Option<NonNull<NativeModule>>) -> Result<i8, Error> {
        (self.initialize_fn)(module)
    }

    #[inline]
    unsafe fn terminate(&mut self, module: Option<NonNull<NativeModule>>) -> Result<i8, Error> {
        (self.terminate_fn)(module)
    }

    #[inline]
    unsafe fn get_interface(
        &self,
        module: Option<NonNull<NativeModule>>,
        interface: NonNullConst<InterfaceDescriptor>,
    ) -> Result<Interface, Error> {
        (self.get_interface_fn)(module, interface)
    }

    #[inline]
    unsafe fn get_module_info(
        &self,
        module: Option<NonNull<NativeModule>>,
    ) -> Result<NonNullConst<ModuleInfo>, Error> {
        (self.get_module_info_fn)(module)
    }

    #[inline]
    unsafe fn get_load_dependencies(&self) -> ConstSpan<InterfaceDescriptor> {
        (self.get_load_dependencies_fn)()
    }

    #[inline]
    unsafe fn get_runtime_dependencies(
        &self,
        module: Option<NonNull<NativeModule>>,
    ) -> Result<ConstSpan<InterfaceDescriptor>, Error> {
        (self.get_runtime_dependencies_fn)(module)
    }

    #[inline]
    unsafe fn get_exportable_interfaces(
        &self,
        module: Option<NonNull<NativeModule>>,
    ) -> Result<ConstSpan<InterfaceDescriptor>, Error> {
        (self.get_exportable_interfaces_fn)(module)
    }
}