block-sys

Latest version License Documentation CI

Raw Rust bindings to Apple's C language extension of blocks.

This crate is part of the objc2 project, see that for related crates.

Runtime Support

This library is basically just a raw interface to the aptly specified Blocks ABI. However, different runtime implementations exist and act in slightly different ways (and have several different helper functions), the most important aspect being that the libraries are named differently, so the linking must take that into account.

The user can choose the desired runtime by using the relevant cargo feature flags, see the following sections. Note that if the objc-sys crate is present in the module tree, this should have the same feature flag enabled as that.

Apple's libclosure

This is naturally the most sophisticated runtime, and it has quite a lot more features than the specification mandates. This is used by default on Apple platforms when no feature flags are specified.

The minimum required operating system versions are as follows: - macOS: 10.6 - iOS: 3.2 - tvOS: Unknown - watchOS: Unknown

Though in practice Rust itself requires higher versions than this.

LLVM compiler-rt's libBlocksRuntime

This is the default runtime on all non-Apple platforms when no feature flags are specified.

This is effectively just a copy of Apple's older (around macOS 10.6) runtime, and is now used in [Swift's libdispatch] and [Swift's Foundation] as well.

This can be easily used on many Linux systems with the libblocksruntime-dev package.

Using this runtime probably won't work together with objc-sys crate.

GNUStep's libobjc2

GNUStep is a bit odd, because it bundles blocks support into its Objective-C runtime. This means we have to link to libobjc, and this is done by depending on the objc-sys crate. A bit unorthodox, yes, but it works.

Sources: - Block.h - Block_private.h

Microsoft's WinObjC

Essentially just a fork based on GNUStep's libobjc2 version 1.8.

ObjFW (WIP)

TODO.

C Compiler configuration

To our knowledge, currently only clang supports the Language Specification for Blocks. To assist in compiling C (or Objective-C) sources using these features, this crate's build script expose the DEP_BLOCK_CC_ARGS environment variable to downstream build scripts.

Example usage in your build.rs (using the cc crate) would be as follows:

```rust , ignore fn main() { let mut builder = cc::Build::new(); builder.compiler("clang"); builder.file("myscriptusing_blocks.c");

for flag in std::env::var("DEP_BLOCK_CC_ARGS").unwrap().split(' ') {
    builder.flag(flag);
}

builder.compile("libmy_script_using_blocks.a");

} ```