Skip to content

Commit

Permalink
mrb: bind GRN_TABLE_PAT_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Dec 28, 2014
1 parent 2c1ffb2 commit 5d2f47e
Show file tree
Hide file tree
Showing 7 changed files with 177 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/ctx_impl_mrb.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
#include "mrb/mrb_bulk.h"
#include "mrb/mrb_obj.h"
#include "mrb/mrb_database.h"
#include "mrb/mrb_table.h"
#include "mrb/mrb_patricia_trie.h"
#include "mrb/mrb_column.h"
#include "mrb/mrb_fixed_size_column.h"
#include "mrb/mrb_variable_size_column.h"
Expand Down Expand Up @@ -99,6 +101,8 @@ grn_ctx_impl_mrb_init_bindings(grn_ctx *ctx)
grn_mrb_bulk_init(ctx);
grn_mrb_obj_init(ctx);
grn_mrb_database_init(ctx);
grn_mrb_table_init(ctx);
grn_mrb_patricia_trie_init(ctx);
grn_mrb_column_init(ctx);
grn_mrb_fixed_size_column_init(ctx);
grn_mrb_variable_size_column_init(ctx);
Expand Down
3 changes: 3 additions & 0 deletions lib/mrb/mrb_converter.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ grn_mrb_class_from_grn_obj(mrb_state *mrb, grn_obj *object)
case GRN_PROC :
klass = mrb_class_get_under(mrb, data->module, "Procedure");
break;
case GRN_TABLE_PAT_KEY :
klass = mrb_class_get_under(mrb, data->module, "PatriciaTrie");
break;
case GRN_VOID :
klass = mrb_class_get_under(mrb, data->module, "Void");
break;
Expand Down
59 changes: 59 additions & 0 deletions lib/mrb/mrb_patricia_trie.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2014 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "../grn_ctx_impl.h"

#ifdef GRN_WITH_MRUBY
#include <mruby.h>
#include <mruby/class.h>
#include <mruby/data.h>

#include "mrb_patricia_trie.h"

static struct mrb_data_type mrb_grn_patricia_trie_type = {
"Groonga::PatriciaTrie",
NULL
};

static mrb_value
mrb_grn_patricia_trie_initialize(mrb_state *mrb, mrb_value self)
{
mrb_value mrb_patricia_trie_ptr;

mrb_get_args(mrb, "o", &mrb_patricia_trie_ptr);
DATA_TYPE(self) = &mrb_grn_patricia_trie_type;
DATA_PTR(self) = mrb_cptr(mrb_patricia_trie_ptr);
return self;
}

void
grn_mrb_patricia_trie_init(grn_ctx *ctx)
{
grn_mrb_data *data = &(ctx->impl->mrb);
mrb_state *mrb = data->state;
struct RClass *module = data->module;
struct RClass *table_class;
struct RClass *klass;

table_class = mrb_class_get_under(mrb, module, "Table");
klass = mrb_define_class_under(mrb, module, "PatriciaTrie", table_class);
MRB_SET_INSTANCE_TT(klass, MRB_TT_DATA);
mrb_define_method(mrb, klass, "initialize",
mrb_grn_patricia_trie_initialize, MRB_ARGS_REQ(1));
}
#endif
34 changes: 34 additions & 0 deletions lib/mrb/mrb_patricia_trie.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2014 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef GRN_MRB_PATRICIA_TRIE_H
#define GRN_MRB_PATRICIA_TRIE_H

#include "../grn_ctx.h"

#ifdef __cplusplus
extern "C" {
#endif

void grn_mrb_patricia_trie_init(grn_ctx *ctx);

#ifdef __cplusplus
}
#endif

#endif /* GRN_MRB_PATRICIA_TRIE_H */
39 changes: 39 additions & 0 deletions lib/mrb/mrb_table.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2014 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "../grn_ctx_impl.h"

#ifdef GRN_WITH_MRUBY
#include <mruby.h>
#include <mruby/class.h>

#include "mrb_table.h"

void
grn_mrb_table_init(grn_ctx *ctx)
{
grn_mrb_data *data = &(ctx->impl->mrb);
mrb_state *mrb = data->state;
struct RClass *module = data->module;
struct RClass *object_class = data->object_class;
struct RClass *klass;

klass = mrb_define_class_under(mrb, module, "Table", object_class);
MRB_SET_INSTANCE_TT(klass, MRB_TT_DATA);
}
#endif
34 changes: 34 additions & 0 deletions lib/mrb/mrb_table.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/* -*- c-basic-offset: 2 -*- */
/*
Copyright(C) 2014 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef GRN_MRB_TABLE_H
#define GRN_MRB_TABLE_H

#include "../grn_ctx.h"

#ifdef __cplusplus
extern "C" {
#endif

void grn_mrb_table_init(grn_ctx *ctx);

#ifdef __cplusplus
}
#endif

#endif /* GRN_MRB_TABLE_H */
4 changes: 4 additions & 0 deletions lib/mrb/sources.am
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ libgrnmrb_la_SOURCES = \
mrb_obj.h \
mrb_operator.c \
mrb_operator.h \
mrb_patricia_trie.c \
mrb_patricia_trie.h \
mrb_procedure.c \
mrb_procedure.h \
mrb_table.c \
mrb_table.h \
mrb_table_cursor.c \
mrb_table_cursor.h \
mrb_variable_size_column.c \
Expand Down

0 comments on commit 5d2f47e

Please sign in to comment.