RPM: store libs in %{_libdir}
[idzebra-moved-to-github.git] / index / rpnscan.c
1 /* This file is part of the Zebra server.
2    Copyright (C) 1994-2011 Index Data
3
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 */
19
20 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23 #include <stdio.h>
24 #include <assert.h>
25 #ifdef WIN32
26 #include <io.h>
27 #endif
28 #if HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
31 #include <ctype.h>
32
33 #include <yaz/diagbib1.h>
34 #include "index.h"
35 #include <zebra_xpath.h>
36 #include <yaz/wrbuf.h>
37 #include <attrfind.h>
38 #include <charmap.h>
39 #include <rset.h>
40 #include <yaz/oid_db.h>
41
42 #define RPN_MAX_ORDS 32
43
44 /* convert APT SCAN term to internal cmap */
45 static ZEBRA_RES trans_scan_term(ZebraHandle zh, Z_AttributesPlusTerm *zapt,
46                                  char *termz, zebra_map_t zm)
47 {
48     char term_utf8[IT_MAX_WORD];
49
50     if (zapt_term_to_utf8(zh, zapt, term_utf8) == ZEBRA_FAIL)
51         return ZEBRA_FAIL;    /* error */
52     else if (zebra_maps_is_icu(zm))
53     {
54         const char *res_buf;
55         size_t res_len;
56         zebra_map_tokenize_start(zm, term_utf8, strlen(term_utf8));
57         
58         if (zebra_map_tokenize_next(zm, &res_buf, &res_len, 0, 0))
59         {
60             memcpy(termz, res_buf, res_len);
61             termz[res_len] = '\0';
62         }
63         else
64             termz[0] = '\0';
65     }
66     else
67     {
68         const char **map;
69         const char *cp = (const char *) term_utf8;
70         const char *cp_end = cp + strlen(cp);
71         const char *src;
72         int i = 0;
73         const char *space_map = NULL;
74         int len;
75             
76         while ((len = (cp_end - cp)) > 0)
77         {
78             map = zebra_maps_input(zm, &cp, len, 0);
79             if (**map == *CHR_SPACE)
80                 space_map = *map;
81             else
82             {
83                 if (i && space_map)
84                     for (src = space_map; *src; src++)
85                         termz[i++] = *src;
86                 space_map = NULL;
87                 for (src = *map; *src; src++)
88                     termz[i++] = *src;
89             }
90         }
91         termz[i] = '\0';
92     }
93     return ZEBRA_OK;
94 }
95
96 static void get_first_snippet_from_rset(ZebraHandle zh, 
97                                         RSET rset, zebra_snippets *snippets, 
98                                         zint *sysno)
99 {
100     struct it_key key;
101     RSFD rfd;
102     TERMID termid;
103     size_t sysno_mem_index = 0;
104
105     if (zh->m_staticrank)
106         sysno_mem_index = 1;
107
108     yaz_log(YLOG_DEBUG, "get_first_snippet_from_rset");
109
110     rfd = rset_open(rset, RSETF_READ);
111     *sysno = 0;
112     while (rset_read(rfd, &key, &termid))
113     {
114         if (key.mem[sysno_mem_index] != *sysno)
115         {
116             if (*sysno)
117                 break;
118             *sysno = key.mem[sysno_mem_index];
119         }
120         if (termid)
121         {
122             struct ord_list *ol;
123             for (ol = termid->ol; ol; ol = ol->next)
124             {
125                 zebra_snippets_append(snippets, key.mem[key.len-1], 0,
126                                       ol->ord, termid->name);
127             }
128         }
129     }
130     rset_close(rfd);
131 }
132
133 struct scan2_info_entry {
134     WRBUF term;
135     char prefix[20];
136     ISAM_P isam_p;
137     int pos_to_save;
138     int ord;
139 };
140
141 static int scan_handle2(char *name, const char *info, int pos, void *client)
142 {
143     int len_prefix;
144     struct scan2_info_entry *scan_info = (struct scan2_info_entry *) client;
145
146     if (scan_info->pos_to_save != pos)
147         return 0;
148
149     len_prefix = strlen(scan_info->prefix);
150     if (memcmp(name, scan_info->prefix, len_prefix))
151         return 1;
152     wrbuf_rewind(scan_info->term);
153     wrbuf_puts(scan_info->term, name+len_prefix);
154
155     assert(*info == sizeof(ISAM_P));
156     memcpy(&scan_info->isam_p, info+1, sizeof(ISAM_P));
157     return 0;
158 }
159
160
161 static int scan_save_set(ZebraHandle zh, ODR stream, NMEM nmem,
162                          struct rset_key_control *kc,
163                          Z_AttributesPlusTerm *zapt,
164                          RSET limit_set,
165                          const char *term, 
166                          const char *index_type,
167                          struct scan2_info_entry *ar, int ord_no,
168                          ZebraScanEntry *glist, int pos)
169 {
170     int i;
171     RSET rset = 0;
172     zint approx_limit = zh->approx_limit;
173     AttrType global_hits_limit_attr;
174     int l;
175     attr_init_APT(&global_hits_limit_attr, zapt, 12);
176             
177     l = attr_find(&global_hits_limit_attr, NULL);
178     if (l != -1)
179         approx_limit = l;
180     
181     for (i = 0; i < ord_no; i++)
182     {
183         if (ar[i].isam_p && strcmp(wrbuf_cstr(ar[i].term), term) == 0)
184         {
185             if (strcmp(term, FIRST_IN_FIELD_STR))
186             {
187                 struct ord_list *ol = ord_list_create(nmem);
188                 RSET rset_t;
189                 
190                 ol = ord_list_append(nmem, ol, ar[i].ord);
191                 
192                 assert(ol);
193                 rset_t = rset_trunc(
194                     zh, &ar[i].isam_p, 1,
195                     wrbuf_buf(ar[i].term), wrbuf_len(ar[i].term),
196                     NULL, 1, zapt->term->which, nmem, 
197                     kc, kc->scope, ol, index_type, 
198                     0 /* hits_limit_value */,
199                     0 /* term_ref_id_str */);
200                 if (!rset)
201                     rset = rset_t;
202                 else
203                 {
204                     RSET rsets[2];
205                     
206                     rsets[0] = rset;
207                     rsets[1] = rset_t;
208                     rset = rset_create_or(nmem, kc, kc->scope, 0 /* termid */,
209                                           2, rsets);
210                 }
211             }
212             ar[i].isam_p = 0;
213         }
214     }
215     if (rset)
216     {
217         zint count;
218         /* merge with limit_set if given */
219         if (limit_set)
220         {
221             RSET rsets[2];
222             rsets[0] = rset;
223             rsets[1] = rset_dup(limit_set);
224             
225             rset = rset_create_and(nmem, kc, kc->scope, 2, rsets);
226         }
227         /* count it */
228         zebra_count_set(zh, rset, &count, approx_limit);
229
230         if (pos != -1)
231         {
232             zint sysno;
233             zebra_snippets *hit_snippets = zebra_snippets_create();
234
235             glist[pos].term = 0;
236             glist[pos].display_term = 0;
237             
238             get_first_snippet_from_rset(zh, rset, hit_snippets, &sysno);
239             if (sysno)
240             {
241                 zebra_snippets *rec_snippets = zebra_snippets_create();
242                 int code = zebra_get_rec_snippets(zh, sysno, rec_snippets);
243                 if (code == 0)
244                 {
245                     const struct zebra_snippet_word *w = 
246                         zebra_snippets_lookup(rec_snippets, hit_snippets);
247                     if (w)
248                     {
249                         glist[pos].display_term = odr_strdup(stream, w->term);
250                     }
251                     else
252                     {
253                         yaz_log(YLOG_WARN, "zebra_snippets_lookup failed for pos=%d", pos);
254                     }
255                 }
256                 zebra_snippets_destroy(rec_snippets);
257             }
258             if (zebra_term_untrans_iconv(zh, stream->mem, index_type,
259                                          &glist[pos].term, term))
260             {
261                 /* failed.. use display_term instead (which could be 0) */
262                 glist[pos].term = glist[pos].display_term;
263             }
264
265             if (!glist[pos].term)
266             {
267                 yaz_log(YLOG_WARN, "Could not generate scan term for pos=%d",
268                         pos);
269                 glist[pos].term = "None";
270             }
271             glist[pos].occurrences = count;
272             zebra_snippets_destroy(hit_snippets);
273         }
274         rset_delete(rset);
275         if (count > 0)
276             return 1;
277         else
278             return 0;
279     }
280     return 0;
281 }
282
283 static ZEBRA_RES rpn_scan_norm(ZebraHandle zh, ODR stream, NMEM nmem,
284                                struct rset_key_control *kc,
285                                Z_AttributesPlusTerm *zapt,
286                                int *position, int *num_entries, 
287                                ZebraScanEntry **list,
288                                int *is_partial, RSET limit_set,
289                                const char *index_type,
290                                int ord_no, int *ords)
291 {
292     struct scan2_info_entry *ar = nmem_malloc(nmem, sizeof(*ar) * ord_no);
293     struct rpn_char_map_info rcmi;
294     zebra_map_t zm = zebra_map_get_or_add(zh->reg->zebra_maps, index_type);
295     int i, dif;
296     int after_pos;
297     int pos = 0;
298
299     ZebraScanEntry *glist = (ZebraScanEntry *)
300         odr_malloc(stream, *num_entries * sizeof(*glist));
301
302     *is_partial = 0;
303     if (*position > *num_entries+1)
304     {
305         *is_partial = 1;
306         *position = 1;
307         *num_entries = 0;
308         return ZEBRA_OK;
309     }
310     rpn_char_map_prepare(zh->reg, zm, &rcmi);
311
312     for (i = 0; i < ord_no; i++)
313         ar[i].term = wrbuf_alloc();
314
315     for (i = 0; i < ord_no; i++)
316     {
317         char termz[IT_MAX_WORD+20];
318         int prefix_len = 0;
319         
320         prefix_len = key_SU_encode(ords[i], termz);
321         termz[prefix_len] = 0;
322         strcpy(ar[i].prefix, termz);
323         
324         if (trans_scan_term(zh, zapt, termz+prefix_len, zm) == 
325             ZEBRA_FAIL)
326         {
327             for (i = 0; i < ord_no; i++)
328                 wrbuf_destroy(ar[i].term);
329             return ZEBRA_FAIL;
330         }
331         wrbuf_rewind(ar[i].term);
332         wrbuf_puts(ar[i].term, termz + prefix_len);
333         ar[i].isam_p = 0;
334         ar[i].ord = ords[i];
335     }
336     /** deal with terms before position .. */
337     /* the glist index starts at zero (unlike scan positions */
338     for (pos = *position-2; pos >= 0; )
339     {
340         const char *hi = 0;
341
342         /* scan on all maximum terms */
343         for (i = 0; i < ord_no; i++)
344         {
345             if (ar[i].isam_p == 0)
346             {
347                 char termz[IT_MAX_WORD+20];
348                 int before = 1;
349                 int after = 0;
350
351                 ar[i].pos_to_save = -1;
352
353                 strcpy(termz, ar[i].prefix);
354                 strcat(termz, wrbuf_cstr(ar[i].term));
355                 dict_scan(zh->reg->dict, termz, &before, &after,
356                           ar+i, scan_handle2);
357             }
358         }
359         /* get maximum after scan */
360         for (i = 0; i < ord_no; i++)
361         {
362             if (ar[i].isam_p 
363                 && (hi == 0 || strcmp(wrbuf_cstr(ar[i].term), hi) > 0))
364                 hi = wrbuf_cstr(ar[i].term);
365         }
366         if (!hi)
367             break;
368         if (scan_save_set(zh, stream, nmem, kc, zapt, limit_set, hi,
369                           index_type, ar, ord_no, glist,
370                           (pos >= 0 && pos < *num_entries) ? pos : -1))
371             --pos;
372     }
373     /* see if we got all terms before.. */
374     dif = 1 + pos;
375     if (dif > 0)
376     {
377         /* did not get all terms; adjust the real position and reduce
378            number of entries */
379         glist = glist + dif;
380         *num_entries -= dif;
381         *position -= dif;
382         *is_partial = 1;
383     }
384     for (i = 0; i < ord_no; i++)
385     {
386         char termz[IT_MAX_WORD+20];
387         int prefix_len = 0;
388         
389         prefix_len = key_SU_encode(ords[i], termz);
390         termz[prefix_len] = 0;
391         strcpy(ar[i].prefix, termz);
392         
393         if (trans_scan_term(zh, zapt, termz+prefix_len, zm) == 
394             ZEBRA_FAIL)
395             return ZEBRA_FAIL;
396         wrbuf_rewind(ar[i].term);
397         wrbuf_puts(ar[i].term, termz + prefix_len);
398         ar[i].isam_p = 0;
399         ar[i].ord = ords[i];
400     }
401
402     after_pos = 1;  /* immediate term first.. */
403     for (pos = *position-1; pos < *num_entries; )
404     {
405         const char *lo = 0;
406
407         /* scan on all minimum terms */
408         for (i = 0; i < ord_no; i++)
409         {
410             if (ar[i].isam_p == 0)
411             {
412                 char termz[IT_MAX_WORD+20];
413                 int before = 0;
414                 int after = after_pos;
415
416                 ar[i].pos_to_save = 1;
417
418                 strcpy(termz, ar[i].prefix);
419                 strcat(termz, wrbuf_cstr(ar[i].term));
420                 dict_scan(zh->reg->dict, termz, &before, &after,
421                           ar+i, scan_handle2);
422             }
423         }
424         after_pos = 2;  /* next round we grab following term */
425
426         /* get minimum after scan */
427         for (i = 0; i < ord_no; i++)
428         {
429             if (ar[i].isam_p 
430                 && (lo == 0 || strcmp(wrbuf_cstr(ar[i].term), lo) < 0))
431                 lo = wrbuf_cstr(ar[i].term);
432         }
433         if (!lo)
434             break;
435         if (scan_save_set(zh, stream, nmem, kc, zapt, limit_set, lo,
436                           index_type, ar, ord_no, glist,
437                           (pos >= 0 && pos < *num_entries) ? pos : -1))
438             pos++;
439
440     }
441     if (pos != *num_entries)
442     {
443         if (pos >= 0)
444             *num_entries = pos;
445         else
446             *num_entries = 0;
447         *is_partial = 1;
448     }
449
450     *list = glist;
451
452     for (i = 0; i < ord_no; i++)
453         wrbuf_destroy(ar[i].term);
454
455     return ZEBRA_OK;
456 }
457
458 struct scan1_info_entry {
459     char *term;
460     ISAM_P isam_p;
461 };
462
463 struct scan_info {
464     struct scan1_info_entry *list;
465     ODR odr;
466     int before, after;
467     char prefix[20];
468 };
469
470 ZEBRA_RES rpn_scan(ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
471                    const Odr_oid *attributeset,
472                    int num_bases, char **basenames,
473                    int *position, int *num_entries, ZebraScanEntry **list,
474                    int *is_partial, const char *set_name)
475 {
476     int base_no;
477     int ords[RPN_MAX_ORDS], ord_no = 0;
478
479     const char *index_type;
480     char *search_type = NULL;
481     char rank_type[128];
482     int complete_flag;
483     int sort_flag;
484     NMEM nmem;
485     ZEBRA_RES res;
486     struct rset_key_control *kc = 0;
487     RSET limit_set = 0;
488
489     *list = 0;
490     *is_partial = 0;
491
492     if (!attributeset)
493         attributeset = yaz_oid_attset_bib_1;
494
495     if (!set_name)
496     {
497         /* see if there is a @attr 8=set */
498         AttrType termset;
499         int termset_value_numeric;
500         const char *termset_value_string = 0;
501         attr_init_APT(&termset, zapt, 8);
502         termset_value_numeric =
503             attr_find_ex(&termset, NULL, &termset_value_string);
504         if (termset_value_numeric != -1)
505         {
506             if (termset_value_numeric != -2)
507             {
508                 char resname[32];
509                 sprintf(resname, "%d", termset_value_numeric);
510                 set_name = odr_strdup(stream, resname); 
511             }
512             else
513                 set_name = odr_strdup(stream, termset_value_string);
514         }
515     }
516
517     if (set_name)
518     {
519         limit_set = resultSetRef(zh, set_name);
520         
521         if (!limit_set)
522         {
523             zebra_setError(zh, 
524                            YAZ_BIB1_SPECIFIED_RESULT_SET_DOES_NOT_EXIST,
525                            set_name);
526             return ZEBRA_FAIL;
527         }
528     }
529
530     yaz_log(YLOG_DEBUG, "position = %d, num = %d",
531             *position, *num_entries);
532         
533     if (zebra_maps_attr(zh->reg->zebra_maps, zapt, &index_type, &search_type,
534                         rank_type, &complete_flag, &sort_flag))
535     {
536         *num_entries = 0;
537         zebra_setError(zh, YAZ_BIB1_UNSUPP_ATTRIBUTE_TYPE, 0);
538         return ZEBRA_FAIL;
539     }
540     if (num_bases > RPN_MAX_ORDS)
541     {
542         zebra_setError(zh, YAZ_BIB1_TOO_MANY_DATABASES_SPECIFIED, 0);
543         return ZEBRA_FAIL;
544     }
545     for (base_no = 0; base_no < num_bases; base_no++)
546     {
547         int ord;
548
549         if (zebraExplain_curDatabase(zh->reg->zei, basenames[base_no]))
550         {
551             zebra_setError(zh, YAZ_BIB1_DATABASE_UNAVAILABLE,
552                            basenames[base_no]);
553             *num_entries = 0;
554             return ZEBRA_FAIL;
555         }
556         if (zebra_apt_get_ord(zh, zapt, index_type, 0, attributeset, &ord) 
557             != ZEBRA_OK)
558             continue;
559         ords[ord_no++] = ord;
560     }
561     if (ord_no == 0)
562     {
563         *num_entries = 0; /* zebra_apt_get_ord should set error reason */
564         return ZEBRA_FAIL;
565     }
566     if (*num_entries < 1)
567     {
568         *num_entries = 0;
569         return ZEBRA_OK;
570     }
571     nmem = nmem_create();
572     kc = zebra_key_control_create(zh);
573
574     res = rpn_scan_norm(zh, stream, nmem, kc, zapt, position, num_entries,
575                         list, is_partial, limit_set,
576                         index_type, ord_no, ords);
577     nmem_destroy(nmem);
578     (*kc->dec)(kc);
579     return res;
580 }
581
582 /*
583  * Local variables:
584  * c-basic-offset: 4
585  * c-file-style: "Stroustrup"
586  * indent-tabs-mode: nil
587  * End:
588  * vim: shiftwidth=4 tabstop=8 expandtab
589  */
590