Sha256: 484f780526f5835e2ceb0ae50d71b37fd5507533df3fc5e2fcd9015b4d3a54fb

Contents?: true

Size: 1.35 KB

Versions: 9

Compression:

Stored size: 1.35 KB

Contents

#include <stdbool.h>
#include <stdint.h>
#include <limits.h>
#include <ruby.h>
#include "rbffi.h"
#include "AbstractMemory.h"
#include "Pointer.h"
#include "AutoPointer.h"

typedef struct AutoPointer {
    AbstractMemory memory;
    VALUE parent;
} AutoPointer;

static void autoptr_mark(AutoPointer* ptr);
static VALUE autoptr_allocate(VALUE klass);
static VALUE autoptr_set_parent(VALUE self, VALUE parent);

VALUE rbffi_AutoPointerClass = Qnil;

static VALUE
autoptr_allocate(VALUE klass)
{
    AutoPointer* p;
    VALUE obj = Data_Make_Struct(klass, AutoPointer, autoptr_mark, -1, p);
    p->parent = Qnil;
    p->memory.access = MEM_RD | MEM_WR;

    return obj;
}

static VALUE
autoptr_set_parent(VALUE self, VALUE parent)
{
    AutoPointer* p;
    AbstractMemory* ptr = rbffi_AbstractMemory_Cast(parent, rbffi_PointerClass);

    Data_Get_Struct(self, AutoPointer, p);
    p->memory = *ptr;
    p->parent = parent;

    return self;
}

static void
autoptr_mark(AutoPointer* ptr)
{
    rb_gc_mark(ptr->parent);
}

void
rbffi_AutoPointer_Init(VALUE moduleFFI)
{
    rbffi_AutoPointerClass = rb_define_class_under(moduleFFI, "AutoPointer", rbffi_PointerClass);
    rb_global_variable(&rbffi_AutoPointerClass);
    
    rb_define_alloc_func(rbffi_AutoPointerClass, autoptr_allocate);
    rb_define_protected_method(rbffi_AutoPointerClass, "parent=", autoptr_set_parent, 1);
}

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
ffi-0.6.4 ext/ffi_c/AutoPointer.c
resque-pool-0.3.0 vendor/bundle/ruby/1.8/gems/ffi-0.6.3/ext/ffi_c/AutoPointer.c
resque-pool-0.3.0.beta.2 vendor/bundle/ruby/1.8/gems/ffi-0.6.3/ext/ffi_c/AutoPointer.c
ffi-0.6.3-x86-mingw32 ext/ffi_c/AutoPointer.c
ffi-0.6.3-x86-mswin32 ext/ffi_c/AutoPointer.c
ffi-0.6.3 ext/ffi_c/AutoPointer.c
ffi-0.6.2 ext/ffi_c/AutoPointer.c
ffi-0.6.1 ext/ffi_c/AutoPointer.c
ffi-0.6.0 ext/ffi_c/AutoPointer.c