2015-07-25 09:16:16 -04:00
|
|
|
#include <ruby.h>
|
|
|
|
|
2015-09-09 12:36:01 -04:00
|
|
|
#include <tox/tox.h>
|
|
|
|
|
2015-07-25 09:16:16 -04:00
|
|
|
void Init_tox();
|
|
|
|
|
2015-09-11 16:22:28 -04:00
|
|
|
typedef struct cTox_ {
|
|
|
|
Tox *tox;
|
|
|
|
} cTox_;
|
|
|
|
|
2015-09-09 12:36:01 -04:00
|
|
|
static VALUE cTox;
|
2015-09-11 16:22:28 -04:00
|
|
|
static VALUE cTox_alloc(VALUE klass);
|
|
|
|
static void cTox_free(void *ptr);
|
|
|
|
static VALUE cTox_initialize(VALUE self, VALUE options);
|
2015-09-09 12:36:01 -04:00
|
|
|
|
2015-09-11 16:24:53 -04:00
|
|
|
typedef struct Tox_Options cTox_cOptions_;
|
|
|
|
|
2015-09-09 12:36:01 -04:00
|
|
|
static VALUE cTox_cOptions;
|
|
|
|
static VALUE cTox_cOptions_alloc(VALUE klass);
|
|
|
|
static void cTox_cOptions_free(void *ptr);
|
2015-09-09 15:00:18 -04:00
|
|
|
static VALUE cTox_cOptions_initialize(VALUE self);
|
2015-09-09 12:36:01 -04:00
|
|
|
|
2015-07-25 09:16:16 -04:00
|
|
|
void Init_tox()
|
|
|
|
{
|
2015-09-09 12:36:01 -04:00
|
|
|
cTox = rb_define_class("Tox", rb_cObject);
|
2015-09-11 16:22:28 -04:00
|
|
|
rb_define_alloc_func(cTox, cTox_alloc);
|
|
|
|
rb_define_method(cTox, "initialize", cTox_initialize, 1);
|
2015-09-09 12:36:01 -04:00
|
|
|
|
|
|
|
cTox_cOptions = rb_define_class_under(cTox, "Options", rb_cObject);
|
|
|
|
rb_define_alloc_func(cTox_cOptions, cTox_cOptions_alloc);
|
2015-09-09 15:00:18 -04:00
|
|
|
rb_define_method(cTox_cOptions, "initialize", cTox_cOptions_initialize, 0);
|
2015-09-09 12:36:01 -04:00
|
|
|
}
|
|
|
|
|
2015-09-11 16:22:28 -04:00
|
|
|
/******************************************************************************
|
|
|
|
* Tox
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
VALUE cTox_alloc(const VALUE klass)
|
|
|
|
{
|
|
|
|
cTox_ *tox;
|
|
|
|
|
|
|
|
tox = ALLOC(cTox_);
|
|
|
|
|
|
|
|
return Data_Wrap_Struct(klass, NULL, cTox_free, tox);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cTox_free(void *const ptr)
|
|
|
|
{
|
|
|
|
free(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE cTox_initialize(const VALUE self, const VALUE options)
|
|
|
|
{
|
|
|
|
cTox_ *tox;
|
2015-09-11 16:24:53 -04:00
|
|
|
cTox_cOptions_ *tox_options;
|
2015-09-11 16:22:28 -04:00
|
|
|
|
2015-09-11 17:29:46 -04:00
|
|
|
// check if `options` is instance of `Tox::Options`
|
|
|
|
if (Qfalse == rb_funcall(options, rb_intern("is_a?"), 1, cTox_cOptions))
|
|
|
|
rb_raise(rb_eTypeError, "argument 1 should be Tox::Options");
|
2015-09-11 16:22:28 -04:00
|
|
|
|
|
|
|
Data_Get_Struct(self, cTox_, tox);
|
2015-09-11 16:24:53 -04:00
|
|
|
Data_Get_Struct(options, cTox_cOptions_, tox_options);
|
2015-09-11 16:22:28 -04:00
|
|
|
|
|
|
|
tox->tox = tox_new(tox_options, NULL);
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Tox::Options
|
|
|
|
******************************************************************************/
|
|
|
|
|
2015-09-09 12:36:01 -04:00
|
|
|
VALUE cTox_cOptions_alloc(const VALUE klass)
|
|
|
|
{
|
2015-09-11 16:24:53 -04:00
|
|
|
cTox_cOptions_ *tox_options;
|
2015-09-09 12:36:01 -04:00
|
|
|
|
2015-09-11 16:24:53 -04:00
|
|
|
tox_options = ALLOC(cTox_cOptions_);
|
2015-09-09 12:36:01 -04:00
|
|
|
|
|
|
|
return Data_Wrap_Struct(klass, NULL, cTox_cOptions_free, tox_options);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cTox_cOptions_free(void *const ptr)
|
|
|
|
{
|
|
|
|
free(ptr);
|
2015-07-25 09:16:16 -04:00
|
|
|
}
|
2015-09-09 15:00:18 -04:00
|
|
|
|
|
|
|
VALUE cTox_cOptions_initialize(const VALUE self)
|
|
|
|
{
|
2015-09-11 16:24:53 -04:00
|
|
|
cTox_cOptions_ *tox_options;
|
2015-09-09 15:00:18 -04:00
|
|
|
|
2015-09-11 16:24:53 -04:00
|
|
|
Data_Get_Struct(self, cTox_cOptions_, tox_options);
|
2015-09-09 15:00:18 -04:00
|
|
|
|
2015-09-11 16:24:53 -04:00
|
|
|
memset(tox_options, 0, sizeof(cTox_cOptions_));
|
2015-09-09 15:00:18 -04:00
|
|
|
tox_options_default(tox_options);
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|