GitXplorerGitXplorer
f

ruby-c-extensions-explained

public
93 stars
2 forks
5 issues

Commits

List of commits on branch main.
Verified
30a5870d415072d794f1e49d0e1f717db1f865aa

Merge pull request #39 from flavorjones/flavorjones-dep-rcd-180

fflavorjones committed 12 days ago
Verified
e880b934df9feed40a895c719d4e591ba170f41c

dep(precompiled): update rake-compiler-dock to v1.8.0

fflavorjones committed 12 days ago
Verified
b7201b08166ac2cbf0116141b1f8a8ea035762a0

Merge pull request #37 from flavorjones/flavorjones-ci-bump-test-image-tag

fflavorjones committed 18 days ago
Verified
60db2cba6cca7735be156185de51dc7377e617cb

ci(precompiled): bump test image tag from 3.4-rc to 3.4

fflavorjones committed 20 days ago
Verified
4a40f78b069d24464c046f86fa1d62e47e0de198

Merge pull request #36 from flavorjones/flavorjones-dep-rcd-170

fflavorjones committed 24 days ago
Verified
0762216276c5998eb4d3cfb21eb862e6d79713fa

precompiled: dep: bump rake-compiler-dock to v1.7.0

fflavorjones committed 24 days ago

README

The README file for this repository.

Ruby C Extensions, Explained

Background

Hello there! Welcome to Ruby C Extensions, Explained.

This repository, and the example ruby gems in it, were originally written as companion materials for some conference talks being given in 2021 by Mike Dalessio (@flavorjones).

(Video)

This talk focuses mostly on the mechanics of the gems in this repository.

RubyConf 2021 talk 2021-11-08

(Video)

This talk covers additional material, including how to test extensions, how to think about Trust in the context of precompilation, and why Nokogiri chose to start precompiling.

How To Use This Repository

Each of the gems in this repository demonstrate a different strategy for integrating with (or packaging) third-party libraries. A brief explanation of the strategies is below, and the code for each gem is in a distinct subdirectory, along with a README that contains a more complete explanation.

Each gem builds on the previous one if you tackle them in this order:

These are actual, working gems! And they've all been pushed to rubygems.org:

  • gem install rcee_isolated
  • gem install rcee_system
  • gem install rcee_packaged_source
  • gem install rcee_packaged_tarball
  • gem install rcee_precompiled

Or they can all be installed as dependencies of the meta-gem rcee:

  • gem install rcee

Also note that these gems are tested. In particular, the precompiled native gems have a rather complex setup to build, install, and test across platforms using rake-compiler-dock and Github Actions. See the Actions running at https://github.com/flavorjones/ruby-c-extensions-explained/actions

Strategies

A few commonly-followed approaches have emerged in the Ruby ecosystem. Broadly categorized, the strategies are:

Strategy 0, "isolated"

A self-contained C extension (no third-party libraries).

See subdirectory /isolated.

Real-world examples:

Strategy 1, "system"

Find and use an third-party library already installed on the target system.

See subdirectory /system.

Real-world examples:

Strategy 2a, "packaged_source"

Package the source code for the third-party library, and compile it into the C extension during installation.

See subdirectory /packaged_source.

Real-world examples:

Strategy 2b, "packaged_tarball"

Package the tarball distribution for the third-party library, use its configuration toolchain and build a library that the C extension can link against.

See subdirectory /packaged_tarball.

Real-world examples:

Strategy 3, "precompiled"

Precompile the library and C extension ahead-of-time for a subset of platforms; fall back to packaged_tarball strategy for other platforms.

See subdirectory /precompiled

Real-world examples:

Strategy Combinations

These strategies can also be combined!

"system", fallback to "packaged"

Real-world examples:

"precompiled", fall back to "packaged", leave option for "system"

Real-world examples:

FAQ

I'll try to answer questions asked during conference Q&A here.

How do you test cross-compiling gems on Github Actions?

Nokogiri uses the rake-compiler-dock OCI images directly to build the gem; and then uses the upload-artifact/download-artifact actions to install that gem on the target system.

See https://github.com/sparklemotion/nokogiri/blob/main/.github/workflows/gem-install.yml for the concrete implementation!

What's the significance of the flowers you're using as a background image for your RubyKaigi slides?

I tweeted a brief teaser video in which I explained the joke!

When I edited my RubyKaigi talk about C extensions, some bits had to be cut for time. Here's a fun teaser that I put together from some of those bits. [video link] pic.twitter.com/wZjSepHNpq

— mike dalessio (@flavorjones) September 9, 2021

In short, my friend Mark once sent me flowers for my birthday along with a card that read:

Fetching nokogiri-1.8.0.gem (100%)
Building native extensions. This could take a while...

Mark is funny. This was the inspiration for the talk's title.