Navigation Menu

Skip to content

Commit

Permalink
mrb: bind index column
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 8, 2014
1 parent 8a81705 commit 9b90547
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/ctx_impl_mrb.c
Expand Up @@ -26,6 +26,7 @@
#include "mrb/mrb_column.h"
#include "mrb/mrb_fixed_size_column.h"
#include "mrb/mrb_variable_size_column.h"
#include "mrb/mrb_index_column.h"
#include "mrb/mrb_expr.h"
#include "mrb/mrb_accessor.h"
#include "mrb/mrb_index_info.h"
Expand All @@ -46,6 +47,7 @@ grn_ctx_impl_mrb_init_bindings(grn_ctx *ctx)
grn_mrb_column_init(ctx);
grn_mrb_fixed_size_column_init(ctx);
grn_mrb_variable_size_column_init(ctx);
grn_mrb_index_column_init(ctx);
grn_mrb_expr_init(ctx);
grn_mrb_accessor_init(ctx);
grn_mrb_index_info_init(ctx);
Expand Down
3 changes: 3 additions & 0 deletions lib/mrb/mrb_converter.c
Expand Up @@ -46,6 +46,9 @@ grn_mrb_class_from_grn_obj(mrb_state *mrb, grn_obj *object)
case GRN_COLUMN_VAR_SIZE :
klass = mrb_class_get_under(mrb, data->module, "VariableSizeColumn");
break;
case GRN_COLUMN_INDEX :
klass = mrb_class_get_under(mrb, data->module, "IndexColumn");
break;
case GRN_PROC :
klass = mrb_class_get_under(mrb, data->module, "Procedure");
break;
Expand Down
59 changes: 59 additions & 0 deletions lib/mrb/mrb_index_column.c
@@ -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 "../ctx_impl.h"

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

#include "mrb_index_column.h"

static struct mrb_data_type mrb_grn_index_column_type = {
"Groonga::IndexColumn",
NULL
};

static mrb_value
mrb_grn_index_column_initialize(mrb_state *mrb, mrb_value self)
{
mrb_value mrb_index_column_ptr;

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

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

column_class = mrb_class_get_under(mrb, module, "Column");
klass = mrb_define_class_under(mrb, module, "IndexColumn", column_class);
MRB_SET_INSTANCE_TT(klass, MRB_TT_DATA);
mrb_define_method(mrb, klass, "initialize",
mrb_grn_index_column_initialize, MRB_ARGS_REQ(1));
}
#endif
34 changes: 34 additions & 0 deletions lib/mrb/mrb_index_column.h
@@ -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_INDEX_COLUMN_H
#define GRN_MRB_INDEX_COLUMN_H

#include "../ctx.h"

#ifdef __cplusplus
extern "C" {
#endif

void grn_mrb_index_column_init(grn_ctx *ctx);

#ifdef __cplusplus
}
#endif

#endif /* GRN_MRB_INDEX_COLUMN_H */
2 changes: 2 additions & 0 deletions lib/mrb/sources.am
Expand Up @@ -13,6 +13,8 @@ libgrnmrb_la_SOURCES = \
mrb_expr.h \
mrb_fixed_size_column.c \
mrb_fixed_size_column.h \
mrb_index_column.c \
mrb_index_column.h \
mrb_index_info.c \
mrb_index_info.h \
mrb_obj.c \
Expand Down

0 comments on commit 9b90547

Please sign in to comment.