[Groonga-commit] groonga/groonga at 9b90547 [master] mrb: bind index column

Back to archive index

Kouhei Sutou null+****@clear*****
Sun Jun 8 18:19:21 JST 2014


Kouhei Sutou	2014-06-08 18:19:21 +0900 (Sun, 08 Jun 2014)

  New Revision: 9b90547f098d1cedf9f3c29a21b2170fdaebfe91
  https://github.com/groonga/groonga/commit/9b90547f098d1cedf9f3c29a21b2170fdaebfe91

  Message:
    mrb: bind index column

  Added files:
    lib/mrb/mrb_index_column.c
    lib/mrb/mrb_index_column.h
  Modified files:
    lib/ctx_impl_mrb.c
    lib/mrb/mrb_converter.c
    lib/mrb/sources.am

  Modified: lib/ctx_impl_mrb.c (+2 -0)
===================================================================
--- lib/ctx_impl_mrb.c    2014-06-08 18:03:33 +0900 (7011c79)
+++ lib/ctx_impl_mrb.c    2014-06-08 18:19:21 +0900 (a5a0cc4)
@@ -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"
@@ -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);

  Modified: lib/mrb/mrb_converter.c (+3 -0)
===================================================================
--- lib/mrb/mrb_converter.c    2014-06-08 18:03:33 +0900 (2812836)
+++ lib/mrb/mrb_converter.c    2014-06-08 18:19:21 +0900 (65035f0)
@@ -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;

  Added: lib/mrb/mrb_index_column.c (+59 -0) 100644
===================================================================
--- /dev/null
+++ lib/mrb/mrb_index_column.c    2014-06-08 18:19:21 +0900 (7bdf752)
@@ -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

  Added: lib/mrb/mrb_index_column.h (+34 -0) 100644
===================================================================
--- /dev/null
+++ lib/mrb/mrb_index_column.h    2014-06-08 18:19:21 +0900 (10e0589)
@@ -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 */

  Modified: lib/mrb/sources.am (+2 -0)
===================================================================
--- lib/mrb/sources.am    2014-06-08 18:03:33 +0900 (bfb3d2c)
+++ lib/mrb/sources.am    2014-06-08 18:19:21 +0900 (7943506)
@@ -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				\
-------------- next part --------------
HTML����������������������������...
Télécharger 



More information about the Groonga-commit mailing list
Back to archive index