File: r_qparser.c

package info (click to toggle)
ruby-ferret 0.11.8.4%2Bdebian-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,368 kB
  • sloc: ansic: 69,786; ruby: 8,131; makefile: 5
file content (635 lines) | stat: -rw-r--r-- 22,047 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
#include "symbol.h"
#include "ferret.h"
#include "search.h"

static VALUE cQueryParser;
VALUE cQueryParseException;

extern VALUE sym_analyzer;
static VALUE sym_wild_card_downcase;
static VALUE sym_fields;
static VALUE sym_all_fields;
static VALUE sym_tkz_fields;
static VALUE sym_default_field;
static VALUE sym_validate_fields;
static VALUE sym_or_default;
static VALUE sym_default_slop;
static VALUE sym_handle_parse_errors;
static VALUE sym_clean_string;
static VALUE sym_max_clauses;
static VALUE sym_use_keywords;
static VALUE sym_use_typed_range_query;

extern VALUE frb_get_analyzer(Analyzer *a);
extern VALUE frb_get_q(Query *q);
extern Analyzer *frb_get_cwrapped_analyzer(VALUE ranalyzer);

/****************************************************************************
 *
 * QueryParser Methods
 *
 ****************************************************************************/

static void
frb_qp_free(void *p)
{
    object_del(p);
    qp_destroy((QParser *)p);
}

static void
frb_qp_mark(void *p)
{
    frb_gc_mark(((QParser *)p)->analyzer);
}

static HashSet *
frb_get_fields(VALUE rfields)
{
    VALUE rval;
    HashSet *fields;
    char *s, *p, *str;

    if (rfields == Qnil) return NULL;

    fields = hs_new_ptr(NULL);
    if (TYPE(rfields) == T_ARRAY) {
        int i;
        for (i = 0; i < RARRAY_LEN(rfields); i++) {
            rval = rb_obj_as_string(RARRAY_PTR(rfields)[i]);
            hs_add(fields, (char *)rintern(rval));
        }
    } else {
        rval = rb_obj_as_string(rfields);
        if (strcmp("*", rs2s(rval)) == 0) {
            hs_destroy(fields);
            fields = NULL;
        } else {
            s = str = rstrdup(rval);
            while ((p = strchr(s, '|')) != '\0') {
                *p = '\0';
                hs_add(fields, (char *)intern(s));
                s = p + 1;
            }
            hs_add(fields, (char *)intern(s));
            free(str);
        }
    }
    return fields;
}

static void
hs_safe_merge(HashSet *merger, HashSet *mergee)
{
    HashSetEntry *hse;
    for (hse = mergee->first; hse; hse = hse->next) {
        hs_add(merger, (char *)hse->elem);
    }
}

/* 
 *  call-seq:
 *     QueryParser.new(options = {}) -> QueryParser
 *
 *  Create a new QueryParser. The QueryParser is used to convert string
 *  queries into Query objects. The options are;
 *
 *  === Options
 *
 *  :default_field::         Default: "*" (all fields). The default field to
 *                           search when no field is specified in the search
 *                           string. It can also be an array of fields.
 *  :analyzer::              Default: StandardAnalyzer. Analyzer used by the
 *                           query parser to parse query terms
 *  :wild_card_downcase::    Default: true. Specifies whether wild-card queries
 *                           and range queries should be downcased or not since
 *                           they are not passed through the parser
 *  :fields::                Default: []. Lets the query parser know what
 *                           fields are available for searching, particularly
 *                           when the "*" is specified as the search field
 *  :tokenized_fields::      Default: :fields. Lets the query parser know which
 *                           fields are tokenized so it knows which fields to
 *                           run the analyzer over.
 *  :validate_fields::       Default: false. Set to true if you want an
 *                           exception to be raised if there is an attempt to
 *                           search a non-existent field
 *  :or_default::            Default: true. Use "OR" as the default boolean
 *                           operator
 *  :default_slop::          Default: 0. Default slop to use in PhraseQuery
 *  :handle_parse_errors::   Default: true. QueryParser will quietly handle all
 *                           parsing errors internally. If you'd like to handle
 *                           them yourself, set this parameter to false.
 *  :clean_string::          Default: true. QueryParser will do a quick
 *                           once-over the query string make sure that quotes
 *                           and brackets match up and special characters are
 *                           escaped
 *  :max_clauses::           Default: 512. the maximum number of clauses
 *                           allowed in boolean queries and the maximum number
 *                           of terms allowed in multi, prefix, wild-card or
 *                           fuzzy queries when those queries are generated by
 *                           rewriting other queries
 *  :use_keywords::          Default: true. By default AND, OR, NOT and REQ are
 *                           keywords used by the query parser. Sometimes this
 *                           is undesirable. For example, if your application
 *                           allows searching for US states by their
 *                           abbreviation, then OR will be a common query
 *                           string. By setting :use_keywords to false, OR will
 *                           no longer be a keyword allowing searches for the
 *                           state of Oregon. You will still be able to use
 *                           boolean queries by using the + and - characters.
 *  :use_typed_range_query:: Default: false. Use TypedRangeQuery instead of
 *                           the standard RangeQuery when parsing
 *                           range queries. This is useful if you have number
 *                           fields which you want to perform range queries
 *                           on. You won't need to pad or normalize the data
 *                           in the field in anyway to get correct results.
 *                           However, performance will be a lot slower for
 *                           large indexes, hence the default.
 *                           Note: the default is set to true in the Index
 *                           class.
 */                   
static VALUE
frb_qp_init(int argc, VALUE *argv, VALUE self)
{
    VALUE roptions = Qnil;
    VALUE rval;
    Analyzer *analyzer = NULL;
    bool has_options = false;

    HashSet *all_fields = NULL;
    HashSet *tkz_fields = NULL;
    HashSet *def_fields = NULL;
    QParser *qp;

    if (rb_scan_args(argc, argv, "01", &roptions) > 0) {
        if (TYPE(roptions) == T_HASH) {
            has_options = true;
            if (Qnil != (rval = rb_hash_aref(roptions, sym_default_field))) {
                def_fields = frb_get_fields(rval);
            }
            if (Qnil != (rval = rb_hash_aref(roptions, sym_analyzer))) {
                analyzer = frb_get_cwrapped_analyzer(rval);
            }
            if (Qnil != (rval = rb_hash_aref(roptions, sym_all_fields))) {
                all_fields = frb_get_fields(rval);
            }
            if (Qnil != (rval = rb_hash_aref(roptions, sym_fields))) {
                all_fields = frb_get_fields(rval);
            }
            if (Qnil != (rval = rb_hash_aref(roptions, sym_tkz_fields))) {
                tkz_fields = frb_get_fields(rval);
            }
        } else {
            def_fields = frb_get_fields(roptions);
            roptions = Qnil;
        }
    }
    if (all_fields == NULL) {
        all_fields = hs_new_ptr(NULL);
    }

    if (!analyzer) {
        analyzer = mb_standard_analyzer_new(true);
    }

    qp = qp_new(analyzer);
    hs_destroy(qp->all_fields);
    hs_destroy(qp->def_fields);
    //hs_destroy(qp->tokenized_fields);

    if (def_fields) hs_safe_merge(all_fields, def_fields);
    if (tkz_fields) hs_safe_merge(all_fields, tkz_fields);
    qp->all_fields = all_fields;
    qp->def_fields = def_fields ? def_fields : all_fields;
    qp->tokenized_fields = tkz_fields ? tkz_fields : all_fields;
    qp->fields_top->fields = def_fields;

    qp->allow_any_fields = true;
    qp->clean_str = true;
    qp->handle_parse_errors = true;
    /* handle options */
    if (roptions != Qnil) {
        if (Qnil != (rval = rb_hash_aref(roptions, sym_handle_parse_errors))) {
            qp->handle_parse_errors = RTEST(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_validate_fields))) {
            qp->allow_any_fields = !RTEST(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_wild_card_downcase))) {
            qp->wild_lower = RTEST(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_or_default))) {
            qp->or_default = RTEST(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_default_slop))) {
            qp->def_slop = FIX2INT(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_clean_string))) {
            qp->clean_str = RTEST(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_max_clauses))) {
            qp->max_clauses = FIX2INT(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_use_keywords))) {
            qp->use_keywords = RTEST(rval);
        }
        if (Qnil != (rval = rb_hash_aref(roptions, sym_use_typed_range_query))){
            qp->use_typed_range_query = RTEST(rval);
        }
    }
    Frt_Wrap_Struct(self, frb_qp_mark, frb_qp_free, qp);
    object_add(qp, self);
    return self;
}

#define GET_QP QParser *qp = (QParser *)DATA_PTR(self)
/*
 *  call-seq:
 *     query_parser.parse(query_string) -> Query
 *
 *  Parse a query string returning a Query object if parsing was successful.
 *  Will raise a QueryParseException if unsuccessful. 
 */
static VALUE
frb_qp_parse(VALUE self, VALUE rstr)
{
    const char *msg = NULL;
    volatile VALUE rq;
    GET_QP;
    rstr = rb_obj_as_string(rstr);
    TRY
        rq = frb_get_q(qp_parse(qp, rs2s(rstr)));
        break;
    default:
        msg = xcontext.msg;
        HANDLED();
    XENDTRY

    if (msg) {
        rb_raise(cQueryParseException, "%s", msg);
    }

    return rq;
}

/*
 *  call-seq:
 *     query_parser.fields -> Array of Symbols
 *
 *  Returns the list of all fields that the QueryParser knows about.
 */
static VALUE
frb_qp_get_fields(VALUE self)
{
    GET_QP;
    HashSet *fields = qp->all_fields;
    HashSetEntry *hse;
    VALUE rfields = rb_ary_new();

    for (hse = fields->first; hse; hse = hse->next) {
        rb_ary_push(rfields, ID2SYM(rb_intern((char *)hse->elem)));
    } 

    return rfields;
}

/*
 *  call-seq:
 *     query_parser.fields = fields -> self
 *
 *  Set the list of fields. These fields are expanded for searches on "*".
 */
static VALUE
frb_qp_set_fields(VALUE self, VALUE rfields)
{
    GET_QP;
    HashSet *fields = frb_get_fields(rfields);

    /* if def_fields == all_fields then we need to replace both */
    if (qp->def_fields == qp->all_fields) qp->def_fields = NULL;
    if (qp->tokenized_fields == qp->all_fields) qp->tokenized_fields = NULL;

    if (fields == NULL) {
        fields = hs_new_ptr(NULL);
    }

    /* make sure all the fields in tokenized fields are contained in
     * all_fields */
    if (qp->tokenized_fields) hs_safe_merge(fields, qp->tokenized_fields);

    /* delete old fields set */
    assert(qp->all_fields->free_elem_i == dummy_free);
    hs_destroy(qp->all_fields);

    /* add the new fields set and add to def_fields if necessary */
    qp->all_fields = fields;
    if (qp->def_fields == NULL) {
        qp->def_fields = fields;
        qp->fields_top->fields = fields;
    }
    if (qp->tokenized_fields == NULL) qp->tokenized_fields = fields;

    return self;
}

/*
 *  call-seq:
 *     query_parser.tokenized_fields -> Array of Symbols
 *
 *  Returns the list of all tokenized_fields that the QueryParser knows about.
 */
static VALUE
frb_qp_get_tkz_fields(VALUE self)
{
    GET_QP;
    HashSet *fields = qp->tokenized_fields;
    if (fields) {
        VALUE rfields = rb_ary_new();
        HashSetEntry *hse;

        for (hse = fields->first; hse; hse = hse->next) {
            rb_ary_push(rfields, ID2SYM(rb_intern((char *)hse->elem)));
        } 

        return rfields;
    }
    else {
        return Qnil;
    }
}

/*
 *  call-seq:
 *     query_parser.tokenized_fields = fields -> self
 *
 *  Set the list of tokenized_fields. These tokenized_fields are tokenized in
 *  the queries. If this is set to Qnil then all fields will be tokenized. 
 */
static VALUE
frb_qp_set_tkz_fields(VALUE self, VALUE rfields)
{
    GET_QP;
    if (qp->tokenized_fields != qp->all_fields) {
        hs_destroy(qp->tokenized_fields);
    }
    qp->tokenized_fields = frb_get_fields(rfields);
    return self;
}

/****************************************************************************
 *
 * Init function
 *
 ****************************************************************************/

/* rdoc hack
extern VALUE mFerret = rb_define_module("Ferret");
extern VALUE cQueryParser = rb_define_module_under(mFerret, "QueryParser");
*/

/*
 *  Document-class: Ferret::QueryParser::QueryParseException
 *
 *  == Summary
 *
 *  Exception raised when there is an error parsing the query string passed to
 *  QueryParser.
 */
void
Init_QueryParseException(void)
{
    cQueryParseException = rb_define_class_under(cQueryParser,
                                                 "QueryParseException",
                                                 rb_eStandardError);
}

/*
 *  Document-class: Ferret::QueryParser
 *
 *  == Summary
 *
 *  The QueryParser is used to transform user submitted query strings into
 *  QueryObjects. Ferret using its own Query Language known from now on as
 *  Ferret Query Language or FQL.
 *
 *  == Ferret Query Language
 * 
 *  === Preamble
 * 
 *  The following characters are special characters in FQL;
 * 
 *    :, (, ), [, ], {, }, !, +, ", ~, ^, -, |, <, >, =, *, ?, \
 * 
 *  If you want to use one of these characters in one of your terms you need
 *  to escape it with a \ character. \ escapes itself. The exception to this
 *  rule is within Phrases which a strings surrounded by double quotes (and
 *  will be explained further bellow in the section on PhraseQueries). In
 *  Phrases, only ", | and <> have special meaning and need to be escaped if
 *  you want the literal value. <> is escaped \<\>.
 * 
 *  In the following examples I have only written the query string. This would
 *  be parse like;
 * 
 *    query = query_parser.parse("pet:(dog AND cat)")
 *    puts query    # => "+pet:dog +pet:cat"
 * 
 *  === TermQuery
 * 
 *  A term query is the most basic query of all and is what most of the other
 *  queries are built upon. The term consists of a single word. eg;
 * 
 *    'term'
 * 
 *  Note that the analyzer will be run on the term and if it splits the term
 *  in two then it will be turned into a phrase query. For example, with the
 *  plain Ferret::Analysis::Analyzer, the following;
 * 
 *    'dave12balmain'
 * 
 *  is equivalent to;
 * 
 *    '"dave balmain"'
 * 
 *  Which we will explain now...
 * 
 *  === PhraseQuery
 *  
 *  A phrase query is a string of terms surrounded by double quotes. For
 *  example you could write;
 * 
 *    '"quick brown fox"'
 * 
 *  But if a "fast" fox is just as good as a quick one you could use the |
 *  character to specify alternate terms.
 * 
 *    '"quick|speedy|fast brown fox"'
 * 
 *  What if we don't care what colour the fox is. We can use the <> to specify
 *  a place setter. eg;
 * 
 *    '"quick|speedy|fast <> fox"' 
 * 
 *  This will match any word in between quick and fox. Alternatively we could
 *  set the "slop" for the phrase which allows a certain variation in the
 *  match of the phrase. The slop for a phrase is an integer indicating how
 *  many positions you are allowed to move the terms to get a match. Read more
 *  about the slop factor in Ferret::Search::PhraseQuery. To set the slop
 *  factor for a phrase you can type;
 * 
 *    '"big house"~2' 
 * 
 *  This would match "big house", "big red house", "big red brick house" and
 *  even "house big". That's right, you don't need to have th terms in order
 *  if you allow some slop in your phrases. (See Ferret::Search::Spans if you
 *  need a phrase type query with ordered terms.)
 *  
 *  These basic queries will be run on the default field which is set when you
 *  create the query_parser. But what if you want to search a different field.
 *  You'll be needing a ...
 * 
 *  === FieldQuery
 * 
 *  A field query is any field prefixed by <fieldname>:. For example, to
 *  search for all instances of the term "ski" in field "sport", you'd write;
 * 
 *    'sport:ski'
 *  Or we can apply a field to phrase;
 * 
 *    'sport:"skiing is fun"'
 * 
 *  Now we have a few types of queries, we'll be needing to glue them together
 *  with a ...
 * 
 *  === BooleanQuery
 * 
 *  There are a couple of ways of writing boolean queries. Firstly you can
 *  specify which terms are required, optional or required not to exist (not).
 *  
 *  * '+' or "REQ" can be used to indicate a required query. "REQ" must be
 *    surrounded by white space.
 *  * '-', '!' or "NOT" are used to indicate query that is required to be
 *    false. "NOT" must be surrounded by white space.
 *  * all other queries are optional if the above symbols are used.
 * 
 *  Some examples;
 * 
 *    '+sport:ski -sport:snowboard sport:toboggan'
 *    '+ingredient:chocolate +ingredient:strawberries -ingredient:wheat'
 * 
 *  You may also use the boolean operators "AND", "&&", "OR" and "||". eg;
 * 
 *    'sport:ski AND NOT sport:snowboard OR sport:toboggan'
 *    'ingredient:chocolate AND ingredient:strawberries AND NOT ingredient:wheat'
 * 
 *  You can set the default operator when you create the query parse.
 *  
 *  === RangeQuery
 * 
 *  A range query finds all documents with terms between the two query terms.
 *  This can be very useful in particular for dates. eg;
 * 
 *    'date:[20050725 20050905]' # all dates >= 20050725 and <= 20050905
 *    'date:[20050725 20050905}' # all dates >= 20050725 and <  20050905
 *    'date:{20050725 20050905]' # all dates >  20050725 and <= 20050905
 *    'date:{20050725 20050905}' # all dates >  20050725 and <  20050905
 * 
 *  You can also do open ended queries like this;
 * 
 *    'date:[20050725>' # all dates >= 20050725
 *    'date:{20050725>' # all dates >  20050725
 *    'date:<20050905]' # all dates <= 20050905
 *    'date:<20050905}' # all dates <  20050905
 * 
 *  Or like this;
 * 
 *    'date: >= 20050725'
 *    'date: >  20050725'
 *    'date: <= 20050905'
 *    'date: <  20050905'
 * 
 *  If you prefer the above style you could use a boolean query but like this;
 * 
 *    'date:( >= 20050725 AND <= 20050905)'
 * 
 *  But rangequery only solution shown first will be faster.
 *  
 *  === WildQuery
 * 
 *  A wild query is a query using the pattern matching characters * and ?. *
 *  matches 0 or more characters while ? matches a single character. This type
 *  of query can be really useful for matching hierarchical categories for
 *  example. Let's say we had this structure;
 * 
 *    /sport/skiing
 *    /sport/cycling
 *    /coding1/ruby
 *    /coding1/c
 *    /coding2/python
 *    /coding2/perl
 *  
 *  If you wanted all categories with programming languages you could use the
 *  query;
 * 
 *    'category:/coding?/?*'
 * 
 *  Note that this query can be quite expensive if not used carefully. In the
 *  example above there would be no problem but you should be careful not use
 *  the wild characters at the beginning of the query as it'll have to iterate
 *  through every term in that field. Having said that, some fields like the
 *  category field above will only have a small number of distinct fields so
 *  this could be okay.
 * 
 *  === FuzzyQuery
 * 
 *  This is like the sloppy phrase query above, except you are now adding slop
 *  to a term. Basically it measures the Levenshtein distance between two
 *  terms and if the value is below the slop threshold the term is a match.
 *  This time though the slop must be a float between 0 and 1.0, 1.0 being a
 *  perfect match and 0 being far from a match. The default is set to 0.5 so
 *  you don't need to give a slop value if you don't want to. You can set the
 *  default in the Ferret::Search::FuzzyQuery class. Here are a couple of
 *  examples;
 * 
 *    'content:ferret~'
 *    'content:Ostralya~0.4'
 * 
 *  Note that this query can be quite expensive. If you'd like to use this
 *  query, you may want to set a minimum prefix length in the FuzzyQuery
 *  class. This can substantially reduce the number of terms that the query
 *  will iterate over.
 *  
 */
void
Init_QueryParser(void)
{
    /* hash keys */
    sym_wild_card_downcase = ID2SYM(rb_intern("wild_card_downcase"));
    sym_fields = ID2SYM(rb_intern("fields"));
    sym_all_fields = ID2SYM(rb_intern("all_fields"));
    sym_tkz_fields = ID2SYM(rb_intern("tokenized_fields"));
    sym_default_field = ID2SYM(rb_intern("default_field"));
    sym_validate_fields = ID2SYM(rb_intern("validate_fields"));
    sym_or_default = ID2SYM(rb_intern("or_default"));
    sym_default_slop = ID2SYM(rb_intern("default_slop"));
    sym_handle_parse_errors = ID2SYM(rb_intern("handle_parse_errors"));
    sym_clean_string = ID2SYM(rb_intern("clean_string"));
    sym_max_clauses = ID2SYM(rb_intern("max_clauses"));
    sym_use_keywords = ID2SYM(rb_intern("use_keywords"));
    sym_use_typed_range_query = ID2SYM(rb_intern("use_typed_range_query"));

    /* QueryParser */
    cQueryParser = rb_define_class_under(mFerret, "QueryParser", rb_cObject);
    rb_define_alloc_func(cQueryParser, frb_data_alloc);

    rb_define_method(cQueryParser, "initialize", frb_qp_init, -1);
    rb_define_method(cQueryParser, "parse", frb_qp_parse, 1);
    rb_define_method(cQueryParser, "fields", frb_qp_get_fields, 0);
    rb_define_method(cQueryParser, "fields=", frb_qp_set_fields, 1);
    rb_define_method(cQueryParser, "tokenized_fields",
                     frb_qp_get_tkz_fields, 0);
    rb_define_method(cQueryParser, "tokenized_fields=",
                     frb_qp_set_tkz_fields, 1);

    Init_QueryParseException();
}