janus-plugin 0.13.0

Library for creating plugins for Janus, the WebRTC gateway.
Documentation
/// Wrapper types and helpers for working with the Janus FFI layer.

use glib_sys as glib;
use libc;
use serde::ser::{self, Serialize, Serializer};
use std::ffi::CStr;
use std::ops::Deref;
use std::os::raw::c_char;

/// A C-style string which was allocated using glibc. Derefs to a `CStr`.
#[derive(Debug)]
pub struct GLibString {
    ptr: *const CStr,
}

impl GLibString {
    /// Creates a `GLibString` from a glibc-allocated pointer to a C-style string.
    pub unsafe fn from_chars(chars: *const c_char) -> Option<Self> {
        chars.as_ref().map(|c| Self { ptr: CStr::from_ptr(c) })
    }
}

impl Deref for GLibString {
    type Target = CStr;

    fn deref(&self) -> &CStr {
        unsafe { &*self.ptr }
    }
}

impl Drop for GLibString {
    fn drop(&mut self) {
        unsafe { glib::g_free(self.ptr as *mut _) }
    }
}

impl Serialize for GLibString {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer {
        match self.to_str() {
            Ok(s) => serializer.serialize_str(s),
            Err(e) => Err(ser::Error::custom(e))
        }
    }
}

unsafe impl Send for GLibString {}
unsafe impl Sync for GLibString {}

/// A C-style string which was allocated using libc. Derefs to a `CStr`.
#[derive(Debug)]
pub struct LibcString {
    ptr: *const CStr,
}

impl LibcString {
    /// Creates a `LibcString` from a libc-allocated pointer to a C-style string.
    pub unsafe fn from_chars(chars: *const c_char) -> Option<Self> {
        chars.as_ref().map(|c| Self { ptr: CStr::from_ptr(c) })
    }
}

impl Deref for LibcString {
    type Target = CStr;

    fn deref(&self) -> &CStr {
        unsafe { &*self.ptr }
    }
}

impl Drop for LibcString {
    fn drop(&mut self) {
        unsafe { libc::free(self.ptr as *mut _) }
    }
}

impl Serialize for LibcString {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer {
        match self.to_str() {
            Ok(s) => serializer.serialize_str(s),
            Err(e) => Err(ser::Error::custom(e))
        }
    }
}

unsafe impl Send for LibcString {}
unsafe impl Sync for LibcString {}