// Copyright 2013 The Servo Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms.
#![allow(non_snake_case)]
//! This crate provides wrappers around the underlying CoreFoundation //! types and functions that are available on Apple's operating systems. //! //! It also provides a framework for other crates to use when wrapping //! other frameworks that use the CoreFoundation framework.
/// Declare a Rust type that wraps an underlying CoreFoundation type. /// /// This will provide an implementation of `Drop` using [`CFRelease`]. /// The type must have an implementation of the [`TCFType`] trait, usually /// provided using the [`impl_TCFType`] macro. /// /// ``` /// #[macro_use] extern crate core_foundation; /// // Make sure that the `TCFType` trait is in scope. /// use core_foundation::base::{CFTypeID, TCFType}; /// /// extern "C" { /// // We need a function that returns the `CFTypeID`. /// pub fn ShrubberyGetTypeID() -> CFTypeID; /// } /// /// pub struct __Shrubbery {} /// // The ref type must be a pointer to the underlying struct. /// pub type ShrubberyRef = *const __Shrubbery; /// /// declare_TCFType!(Shrubbery, ShrubberyRef); /// impl_TCFType!(Shrubbery, ShrubberyRef, ShrubberyGetTypeID); /// # fn main() {} /// ``` /// /// [`CFRelease`]: https://developer.apple.com/documentation/corefoundation/1521153-cfrelease /// [`TCFType`]: base/trait.TCFType.html /// [`impl_TCFType`]: macro.impl_TCFType.html #[macro_export]
macro_rules! declare_TCFType {
(
$(#[$doc:meta])*
$ty:ident, $raw:ident
) => {
$(#[$doc])* pubstruct $ty($raw);
impl Drop for $ty { fn drop(&mutself) { unsafe { $crate::base::CFRelease(self.as_CFTypeRef()) }
}
}
}
}
/// Provide an implementation of the [`TCFType`] trait for the Rust /// wrapper type around an underlying CoreFoundation type. /// /// See [`declare_TCFType`] for details. /// /// [`declare_TCFType`]: macro.declare_TCFType.html /// [`TCFType`]: base/trait.TCFType.html #[macro_export]
macro_rules! impl_TCFType {
($ty:ident, $ty_ref:ident, $ty_id:ident) => {
impl_TCFType!($ty<>, $ty_ref, $ty_id); unsafeimpl $crate::ConcreteCFType for $ty { }
};
#[inline] unsafefn wrap_under_get_rule(reference: $ty_ref) -> Self {
assert!(!reference.is_null(), "Attempted to create a NULL object."); let reference = $crate::base::CFRetain(reference as *const ::std::os::raw::c_void) as $ty_ref;
$crate::base::TCFType::wrap_under_create_rule(reference)
}
#[inline] fn as_CFTypeRef(&self) -> $crate::base::CFTypeRef { self.as_concrete_TypeRef() as $crate::base::CFTypeRef
}
#[inline] unsafefn wrap_under_create_rule(reference: $ty_ref) -> Self {
assert!(!reference.is_null(), "Attempted to create a NULL object."); // we need one PhantomData for each type parameter so call ourselves // again with @Phantom $p to produce that
$ty(reference $(, impl_TCFType!(@Phantom $p))*)
}
/// Implement `std::fmt::Debug` for the given type. /// /// This will invoke the implementation of `Debug` for [`CFType`] /// which invokes [`CFCopyDescription`]. /// /// The type must have an implementation of the [`TCFType`] trait, usually /// provided using the [`impl_TCFType`] macro. /// /// [`CFType`]: base/struct.CFType.html#impl-Debug /// [`CFCopyDescription`]: https://developer.apple.com/documentation/corefoundation/1521252-cfcopydescription?language=objc /// [`TCFType`]: base/trait.TCFType.html /// [`impl_TCFType`]: macro.impl_TCFType.html #[macro_export]
macro_rules! impl_CFTypeDescription {
($ty:ident) => { // it's fine to use an empty <> list
impl_CFTypeDescription!($ty<>);
};
($ty:ident<$($p:ident $(: $bound:path)*),*>) => { impl<$($p $(: $bound)*),*> ::std::fmt::Debug for $ty<$($p),*> { fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { self.as_CFType().fmt(f)
}
}
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.