#arc #integration #ffi #command-line #command-line-tool #rustobjectivec

nightly aloe-core

Aloe-Core is a Rust library to facilitate advanced Rust-Objective-C interoperability, focusing on command-line applications, system utilities, and memory-safe handling of Objective-C objects. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.1 Apr 2, 2025
0.1.0 Apr 2, 2025

#19 in #command-line-utility


Used in 89 crates (via aloe-threads)

GPL-3.0 license

795KB
7K SLoC

Aloe-Core

Aloe-Core is a Rust crate designed as a bridge to facilitate seamless interaction between Rust and Objective-C environments, with a strong focus on command line applications. This crate offers a robust set of utilities for dealing with Objective-C objects, blocks, and memory management, allowing Rust programs to effectively manage Objective-C references with the benefit of Rust’s safety guarantees.

Key Features

  • Command-line Parsing: Provides a straightforward interface to manage and interpret command-line arguments within console applications through ArgumentList and ConsoleApplication structs.
  • Objective-C Interoperability: Safely interact with Objective-C objects and classes with Rust idioms, supporting memory-managed interactions via ObjCClass and ObjCLifetimeManagedClass.
  • System Utilities: Integrate filesystem checks and system command execution efficiently in POSIX environments.

Installation

Add the following to your Cargo.toml:

[dependencies]
aloe-core = "0.1.0"

Example Usage

Create a simple command-line application:

use aloe_core::ConsoleApplication;

fn main(argc: i32, argv: *mut &[u8]) {
    let mut app = ConsoleApplication::default();
    app.add_help_command("--help|-h", "Usage: app [options]", true);
    app.add_version_command("--version|-v", "App version 0.1.0");
    app.add_command(...);
    app.find_and_run_command(argc, argv);
}

Safety Considerations

This crate assumes Automatic Reference Counting (ARC) is enabled. Users must ensure that Objective-C objects are properly managed to prevent memory leaks. The integration with Objective-C includes considerations for safe memory handling in mixed-language applications.

License

Aloe-Core is licensed under the GPL-3.0 license. See LICENSE for more details.


This README was generated by an AI model and may not be 100% accurate, but it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~12–22MB
~351K SLoC