Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
99 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 "../ctx_impl.h" | ||
|
|
||
| #ifdef GRN_WITH_MRUBY | ||
| #include <mruby.h> | ||
| #include <mruby/class.h> | ||
| #include <mruby/variable.h> | ||
| #include <mruby/data.h> | ||
|
|
||
| #include "../db.h" | ||
| #include "mrb_bulk.h" | ||
|
|
||
| static struct mrb_data_type mrb_grn_bulk_type = { | ||
| "Groonga::Bulk", | ||
| NULL | ||
| }; | ||
|
|
||
| static mrb_value | ||
| mrb_grn_bulk_initialize(mrb_state *mrb, mrb_value self) | ||
| { | ||
| mrb_value mrb_bulk_ptr; | ||
|
|
||
| mrb_get_args(mrb, "o", &mrb_bulk_ptr); | ||
| DATA_TYPE(self) = &mrb_grn_bulk_type; | ||
| DATA_PTR(self) = mrb_cptr(mrb_bulk_ptr); | ||
| return self; | ||
| } | ||
|
|
||
| void | ||
| grn_mrb_bulk_init(grn_ctx *ctx) | ||
| { | ||
| grn_mrb_data *data = &(ctx->impl->mrb); | ||
| mrb_state *mrb = data->state; | ||
| struct RClass *module = data->module; | ||
| struct RClass *klass; | ||
|
|
||
| klass = mrb_define_class_under(mrb, module, "Bulk", mrb->object_class); | ||
| MRB_SET_INSTANCE_TT(klass, MRB_TT_DATA); | ||
| mrb_define_method(mrb, klass, "initialize", | ||
| mrb_grn_bulk_initialize, MRB_ARGS_REQ(1)); | ||
| } | ||
| #endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| /* -*- 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_BULK_H | ||
| #define GRN_MRB_BULK_H | ||
|
|
||
| #include "../ctx.h" | ||
| #include "../db.h" | ||
|
|
||
| #ifdef __cplusplus | ||
| extern "C" { | ||
| #endif | ||
|
|
||
| void grn_mrb_bulk_init(grn_ctx *ctx); | ||
|
|
||
| #ifdef __cplusplus | ||
| } | ||
| #endif | ||
|
|
||
| #endif /* GRN_MRB_BULK_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters