An open API service indexing awesome lists of open source software.

https://github.com/red-data-tools/extpp

C++ Ruby extension API
https://github.com/red-data-tools/extpp

Last synced: 4 months ago
JSON representation

C++ Ruby extension API

Awesome Lists containing this project

README

          

# README

## Name

Ext++

## Description

Ext++ is a Ruby extension that provides C++ API for writing Ruby extension.

You can write your Ruby extension easier than Ruby's C API. Because
Ext++'s C++ API reduces duplicated code needed for Ruby's C API.

You can use all Ruby's C API without any adapter layer. Because you
can use C API directory from C++.

## Install

```console
% gem install extpp
```

## How to use

Here is an example to create `Hello` class.

Create `hello.cpp`:

```c++
#include

RB_BEGIN_DECLS

void
Init_hello(void)
{
rb::Class klass("Hello");
klass.define_method("initialize", [](VALUE rb_self, int argc, VALUE *argv) {
VALUE rb_name;
rb_scan_args(argc, argv, "1", &rb_name);
rb::Object self(rb_self);
self.ivar_set("@name", rb_name);
return Qnil;
});
klass.define_method("greet", [](VALUE rb_self) {
rb::Object self(rb_self);
rb::Object prefix(rb_str_new_cstr("Hello "));
auto message = prefix.send("+", {self.ivar_get("@name")});
return static_cast(message);
});
}

RB_END_DECLS
```

This code equals to the following Ruby code:

```ruby
class Hello
def initialize(name)
@name = name
end

def greet
"Hello " + @name
end
end
```

Create `extconf.rb`:

```ruby
require "extpp"

create_makefile("hello")
```

Create `Makefile`:

```console
% ruby extconf.rb
```

Build this extension:

```console
% make
```

Now, you can use this extension:

```console
% ruby -r ./hello -e 'p Hello.new("me").greet'
"Hello me"
```

## License

Copyright (C) 2017-2021 Sutou Kouhei

The 2-Clause BSD License. See [LICENSE.txt](LICENSE.txt) for details.