Sha256: 3c7b30c6953a69fe7c010828bed0088358df7115b90ef81dbf91d21ff934b73e
Contents?: true
Size: 1.56 KB
Versions: 16
Compression:
Stored size: 1.56 KB
Contents
/* -*- coding: utf-8; 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
16 entries across 16 versions & 1 rubygems