[Groonga-commit] groonga/groonga at 9326bce [master] mrb: add Groonga::Cache.current

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Jul 16 17:43:18 JST 2015


Kouhei Sutou	2015-07-16 17:43:18 +0900 (Thu, 16 Jul 2015)

  New Revision: 9326bce0672aa047bc5be6dc353e7ccd09446c4a
  https://github.com/groonga/groonga/commit/9326bce0672aa047bc5be6dc353e7ccd09446c4a

  Message:
    mrb: add Groonga::Cache.current

  Modified files:
    lib/mrb/mrb_cache.c

  Modified: lib/mrb/mrb_cache.c (+16 -0)
===================================================================
--- lib/mrb/mrb_cache.c    2015-07-16 17:43:08 +0900 (d674850)
+++ lib/mrb/mrb_cache.c    2015-07-16 17:43:18 +0900 (76873f2)
@@ -33,6 +33,19 @@ static struct mrb_data_type mrb_grn_cache_type = {
 };
 
 static mrb_value
+mrb_grn_cache_class_current(mrb_state *mrb, mrb_value klass)
+{
+  grn_ctx *ctx = (grn_ctx *)mrb->ud;
+  grn_cache *cache;
+  mrb_value mrb_cache;
+
+  cache = grn_cache_current_get(ctx);
+  mrb_cache = mrb_funcall(mrb, klass, "new", 1, mrb_cptr_value(mrb, cache));
+
+  return mrb_cache;
+}
+
+static mrb_value
 mrb_grn_cache_initialize(mrb_state *mrb, mrb_value self)
 {
   mrb_value mrb_cache_ptr;
@@ -109,6 +122,9 @@ grn_mrb_cache_init(grn_ctx *ctx)
   klass = mrb_define_class_under(mrb, module, "Cache", mrb->object_class);
   MRB_SET_INSTANCE_TT(klass, MRB_TT_DATA);
 
+  mrb_define_class_method(mrb, klass, "current",
+                          mrb_grn_cache_class_current, MRB_ARGS_NONE());
+
   mrb_define_method(mrb, klass, "initialize",
                     mrb_grn_cache_initialize, MRB_ARGS_REQ(1));
 
-------------- next part --------------
HTML����������������������������...
下載 



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