Sha256: b99e0e33044c7fa1246b4ea23cae10a38bdf567acb4bcda0e36be12a64cfd602
Contents?: true
Size: 1.54 KB
Versions: 12
Compression:
Stored size: 1.54 KB
Contents
/* -*- c-file-style: "ruby" -*- */ /* Copyright (C) 2011 Haruka Yoshihara <yoshihara@clear-code.com> 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "rb-grn.h" VALUE rb_cGrnPosting; VALUE rb_grn_posting_new (grn_posting *posting, grn_id term_id) { VALUE parameters; parameters = rb_hash_new(); #define SET_PARAMETER(key, value) \ rb_hash_aset(parameters, ID2SYM(rb_intern((key))), INT2NUM((value))) SET_PARAMETER("record_id", posting->rid); SET_PARAMETER("section_id", posting->sid); SET_PARAMETER("term_id", term_id); SET_PARAMETER("position", posting->pos); SET_PARAMETER("term_frequency", posting->tf); SET_PARAMETER("weight", posting->weight); SET_PARAMETER("n_rest_postings", posting->rest); #undef SET_PARAMETER return rb_funcall(rb_cGrnPosting, rb_intern("new"), 1, parameters); } void rb_grn_init_posting (VALUE mGrn) { rb_cGrnPosting = rb_const_get(mGrn, rb_intern("Posting")); }
Version data entries
12 entries across 12 versions & 1 rubygems