Struct dlopen::wrapper::OptionalContainer [] [src]

pub struct OptionalContainer<Api, Optional> where
    Api: WrapperApi,
    Optional: WrapperApi
{ /* fields omitted */ }

Container for a library handle and both obligatory and optional APIs inside one structure.

A common problem with dynamic link libraries is that they often have different versions and some of those versions have broader API than others. This structure allows you to use two APIs at the same time - one obligatory and one optional. If symbols of the optional API are found in the library, the optional API gets loaded. Otherwise the optional() method will return None.

Example

#[macro_use]
extern crate dlopen_derive;
extern crate dlopen;
use dlopen::wrapper::{OptionalContainer, WrapperApi};

#[derive(WrapperApi)]
struct Obligatory<'a> {
    do_something: extern "C" fn(),
    global_count: &'a mut u32,
}

#[derive(WrapperApi)]
struct Optional{
    add_one: unsafe extern "C" fn (arg: i32) -> i32,
    c_string: * const u8
}

fn main () {
    let mut container: OptionalContainer<Obligatory, Optional> = unsafe {
        OptionalContainer::load("libexample.dylib")
    }.unwrap();
    container.do_something();
    *container.global_count_mut() += 1;

    match container.optional(){
        &Some(ref opt) => {
            let _result = unsafe { opt.add_one(5) };
            println!("First byte of C string is {}", unsafe{*opt.c_string});
        },
        &None => println!("The optional API was not loaded!")
    }
}

Note: For more complex cases (multiple versions of API) you can use WrapperMultiApi.

Methods

impl<Api, Optional> OptionalContainer<Api, Optional> where
    Api: WrapperApi,
    Optional: WrapperApi
[src]

[src]

Opens the library using provided file name or path and loads all symbols (including optional if it is possible).

[src]

Gives access to the optional API - constant version.

[src]

Gives access to the optional API - constant version.

Trait Implementations

impl<Api, Optional> Deref for OptionalContainer<Api, Optional> where
    Api: WrapperApi,
    Optional: WrapperApi
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<Api, Optional> DerefMut for OptionalContainer<Api, Optional> where
    Api: WrapperApi,
    Optional: WrapperApi
[src]

[src]

Mutably dereferences the value.