Giter Site home page Giter Site logo

artichoke / cactusref Goto Github PK

View Code? Open in Web Editor NEW
142.0 5.0 4.0 2.33 MB

๐ŸŒต Cycle-Aware Reference Counting in Rust

Home Page: https://crates.io/crates/cactusref

License: MIT License

Rust 97.88% Ruby 2.12%
artichoke garbage-collection garbage-collector reference-counting memory-management rust rust-crate

cactusref's Introduction

Artichoke Ruby

GitHub Actions Discord Twitter
Crate API API trunk

Artichoke Ruby logo

Artichoke is a Ruby implementation written in Rust and Ruby. Artichoke intends to be MRI-compatible and targets recent MRI Ruby. Artichoke provides a Ruby runtime implemented in Rust and Ruby.

Try Artichoke

Artichoke Ruby WebAssembly playground
Artichoke Ruby Wasm Playground

You can try Artichoke in your browser. The Artichoke Playground runs a WebAssembly build of Artichoke.

Install Artichoke

Prebuilt nightly binaries

Download a prebuilt binary from artichoke/nightly. Binaries are available for Linux, Linux/musl, macOS, and Windows.

These daily binaries track the latest trunk branch of Artichoke.

Binaries are also distributed through ruby-build. To install with rbenv:

$ rbenv install artichoke-dev

Cargo

You can install a pre-release build of Artichoke using cargo, Rust's package manager, by running:

$ cargo install --git https://github.com/artichoke/artichoke --branch trunk --locked artichoke

To install via cargo install or to checkout and build locally, you'll need Rust and clang. BUILD.md has more detail on how to set up the compiler toolchain.

Docker

Artichoke is available on Docker Hub.

You can launch a REPL by running:

docker run -it docker.io/artichokeruby/artichoke airb

Usage

Artichoke ships with two binaries: airb and artichoke.

airb

airb is the Artichoke implementation of irb and is an interactive Ruby shell and REPL.

airb is a readline-enabled shell, although it does not persist history.

artichoke

artichoke is the ruby binary frontend to Artichoke.

artichoke supports executing programs via files, stdin, or inline with one or more -e flags.

Artichoke can require, require_relative, and load files from the local file system, but otherwise does not yet support local file system access. A temporary workaround is to inject data into the interpreter with the --with-fixture flag, which reads file contents into a $fixture global.

$ artichoke --help
Artichoke is a Ruby made with Rust.

Usage: artichoke [OPTIONS] [programfile] [arguments]...

Arguments:
  [programfile]
  [arguments]...

Options:
      --copyright               print the copyright
  -e <commands>                 one line of script. Several -e's allowed. Omit [programfile]
      --with-fixture <fixture>  file whose contents will be read into the `$fixture` global
  -h, --help                    Print help
  -V, --version                 Print version

Design and Goals

Artichoke is designed to enable experimentation. The top goals of the project are:

Contributing

Artichoke aspires to be an MRI Ruby-compatible implementation of the Ruby programming language. There is lots to do.

If Artichoke does not run Ruby source code in the same way that MRI does, it is a bug and we would appreciate if you filed an issue so we can fix it.

If you would like to contribute code ๐Ÿ‘ฉโ€๐Ÿ’ป๐Ÿ‘จโ€๐Ÿ’ป, find an issue that looks interesting and leave a comment that you're beginning to investigate. If there is no issue, please file one before beginning to work on a PR. Good first issues are labeled E-easy.

Discussion

If you'd like to engage in a discussion outside of GitHub, you can join Artichoke's public Discord server.

License

artichoke is licensed with the MIT License (c) Ryan Lopopolo.

Some portions of Artichoke are derived from third party sources. The READMEs in each workspace crate discuss which third party licenses are applicable to the sources and derived works in Artichoke.

cactusref's People

Contributors

artichoke-ci avatar dependabot[bot] avatar lopopolo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cactusref's Issues

Add Docs on Unsafety to Crate Root and README

The Rc implementation of Adoptable includes some docs on the safety implications of using these APIs incorrectly. This documentation should exist prominently in the crate root and the README

/// # Safety
///
/// Modifying the object graph by removing links after calling `adopt`
/// requires updating the bookkeeping with [`unadopt`](Adoptable::unadopt).
/// Failure to properly remove links from the object graph may cause `Drop`
/// to detect a cycle is not externally reachable, reulting in prematurely
/// deallocating the entire cycle and turning all reachable [`Rc`]s into
/// dangling pointers. `CactusRef` makes a best-effort attempt to abort the
/// program if an access to a dead `Rc` occurs.

`Rc::adopt` requires both `T`s to be the same

Say I'm making a structure that contains something else - this does not work:

impl Container{
	fn new(contained: Rc<Contained>) -> Rc<Self> {
		let new = Rc::new(Self { contained });
		unsafe { Rc::adopt(&new, &new.contained) };
		new
	}
}

That's because Rc::adopt requires both Ts to be the same. Is this intended? I looked at the linked list example, and it looks like it's calling adopt like Rc::adopt(&parent, &child) for every Rc<Node<T>> that contains an Rc<Node<T>>, and that only works because Node<T> is itself.

Update to 2021 edition

This library hasn't been updated in almost a year, so it's still on the 2018 edition. 2021 is stable now, so it should be safe to use now.

Add .editorconfig

An .editorconfig is a cross-editor and cross-ide format configuration mechanism which and enforce Artichoke code formatting conventions.

Specify:

  • utf-8 charset
  • strip trailing whitespace except diff and markdown
  • eol = lf
  • spacing

for file types:

  • rs
  • md
  • sh
  • h, c, cc, cpp
  • Makefile, .make
  • diff
  • json
  • js
  • ts
  • css
  • html
  • svg
  • xml
  • yml, yaml
  • erb
  • rb
  • json
  • toml
  • Dockerfile

Add tests to assert cycles are fully dropped

Using a custom inner T that increments / decrements an AtomicU64 on new / drop.

To make sure these are useful under LeakSanitizer too โ€“ #102 โ€“ let's shove a String field with something like "abc".repeat(100) into the T as well.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.