Fix log messages
[idzebra-moved-to-github.git] / index / zebraapi.c
1 /* $Id: zebraapi.c,v 1.69 2002-08-29 08:47:08 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
3    Index Data Aps
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Zebra; see the file LICENSE.zebra.  If not, write to the
19 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.
21 */
22
23
24
25 #include <assert.h>
26 #include <stdio.h>
27 #ifdef WIN32
28 #include <io.h>
29 #include <process.h>
30 #include <direct.h>
31 #else
32 #include <unistd.h>
33 #endif
34
35 #include <yaz/diagbib1.h>
36 #include "index.h"
37 #include <charmap.h>
38
39 static Res zebra_open_res (ZebraHandle zh);
40 static void zebra_close_res (ZebraHandle zh);
41
42 static void zebra_chdir (ZebraService zh)
43 {
44     const char *dir = res_get (zh->global_res, "chdir");
45     if (!dir)
46         return;
47     logf (LOG_DEBUG, "chdir %s", dir);
48 #ifdef WIN32
49     _chdir(dir);
50 #else
51     chdir (dir);
52 #endif
53 }
54
55 static void zebra_flush_reg (ZebraHandle zh)
56 {
57     zebraExplain_flush (zh->reg->zei, zh);
58     
59     extract_flushWriteKeys (zh);
60     zebra_index_merge (zh);
61 }
62
63 static struct zebra_register *zebra_register_open (ZebraService zs, 
64                                                    const char *name,
65                                                    int rw, int useshadow,
66                                                    Res res,
67                                                    const char *reg_path);
68 static void zebra_register_close (ZebraService zs, struct zebra_register *reg);
69
70 ZebraHandle zebra_open (ZebraService zs)
71 {
72     ZebraHandle zh;
73     const char *default_encoding;
74
75     if (!zs)
76         return 0;
77
78     zh = (ZebraHandle) xmalloc (sizeof(*zh));
79     yaz_log (LOG_DEBUG, "zebra_open zs=%p returns %p", zs, zh);
80
81     zh->service = zs;
82     zh->reg = 0;          /* no register attached yet */
83     zh->sets = 0;
84     zh->destroyed = 0;
85     zh->errCode = 0;
86     zh->errString = 0;
87     zh->res = 0;
88
89     zh->reg_name = xstrdup ("");
90     zh->path_reg = 0;
91     zh->num_basenames = 0;
92     zh->basenames = 0;
93
94     zh->trans_no = 0;
95
96     zh->lock_normal = 0;
97     zh->lock_shadow = 0;
98
99     zh->admin_databaseName = 0;
100
101     zh->shadow_enable = 1;
102
103     default_encoding = res_get_def(zs->global_res, "encoding", "ISO-8859-1");
104     zh->record_encoding = xstrdup (default_encoding);
105
106     zh->iconv_to_utf8 =
107         yaz_iconv_open ("UTF-8", default_encoding);
108     if (zh->iconv_to_utf8 == 0)
109         yaz_log (LOG_WARN, "iconv: %s to UTF-8 unsupported",
110            default_encoding);
111     zh->iconv_from_utf8 =
112         yaz_iconv_open (default_encoding, "UTF-8");
113     if (zh->iconv_to_utf8 == 0)
114         yaz_log (LOG_WARN, "iconv: UTF-8 to %s unsupported",
115            default_encoding);
116
117     zebra_mutex_cond_lock (&zs->session_lock);
118
119     zh->next = zs->sessions;
120     zs->sessions = zh;
121
122     zebra_mutex_cond_unlock (&zs->session_lock);
123
124     return zh;
125 }
126
127 ZebraService zebra_start (const char *configName)
128 {
129     Res res;
130
131     yaz_log (LOG_LOG, "zebra_start %s", configName);
132
133     if ((res = res_open (configName, 0)))
134     {
135         ZebraService zh = xmalloc (sizeof(*zh));
136
137         yaz_log (LOG_DEBUG, "Read resources `%s'", configName);
138         
139         zh->global_res = res;
140         zh->configName = xstrdup(configName);
141         zh->sessions = 0;
142         
143         zebra_chdir (zh);
144         
145         zebra_mutex_cond_init (&zh->session_lock);
146         if (!res_get (zh->global_res, "passwd"))
147             zh->passwd_db = NULL;
148         else
149         {
150             zh->passwd_db = passwd_db_open ();
151             if (!zh->passwd_db)
152                 logf (LOG_WARN|LOG_ERRNO, "passwd_db_open failed");
153             else
154                 passwd_db_file (zh->passwd_db,
155                                 res_get (zh->global_res, "passwd"));
156         }
157         zh->path_root = res_get (zh->global_res, "root");
158         return zh;
159     }
160     return 0;
161 }
162
163 static
164 struct zebra_register *zebra_register_open (ZebraService zs, const char *name,
165                                             int rw, int useshadow, Res res,
166                                             const char *reg_path)
167 {
168     struct zebra_register *reg;
169     int record_compression = REC_COMPRESS_NONE;
170     char *recordCompression = 0;
171
172     reg = xmalloc (sizeof(*reg));
173
174     assert (name);
175     reg->name = xstrdup (name);
176
177     reg->seqno = 0;
178     reg->last_val = 0;
179
180     assert (res);
181
182     yaz_log (LOG_DEBUG, "zebra_register_open rw = %d useshadow=%d p=%p",
183              rw, useshadow, reg);
184
185     reg->dh = data1_createx (DATA1_FLAG_XML);
186     if (!reg->dh)
187         return 0;
188     reg->bfs = bfs_create (res_get (res, "register"), reg_path);
189     if (!reg->bfs)
190     {
191         data1_destroy(reg->dh);
192         return 0;
193     }
194     if (useshadow)
195         bf_cache (reg->bfs, res_get (res, "shadow"));
196     data1_set_tabpath (reg->dh, res_get(res, "profilePath"));
197     data1_set_tabroot (reg->dh, reg_path);
198     reg->recTypes = recTypes_init (reg->dh);
199     recTypes_default_handlers (reg->recTypes);
200
201     reg->zebra_maps = zebra_maps_open (res, reg_path);
202     reg->rank_classes = NULL;
203
204     reg->key_buf = 0;
205
206     reg->keys.buf_max = 0;
207     reg->keys.buf = 0;
208
209     reg->records = 0;
210     reg->dict = 0;
211     reg->sortIdx = 0;
212     reg->isams = 0;
213     reg->matchDict = 0;
214     reg->isam = 0;
215     reg->isamc = 0;
216     reg->isamd = 0;
217     reg->isamb = 0;
218     reg->zei = 0;
219     reg->matchDict = 0;
220     
221     zebraRankInstall (reg, rank1_class);
222
223     recordCompression = res_get_def (res, "recordCompression", "none");
224     if (!strcmp (recordCompression, "none"))
225         record_compression = REC_COMPRESS_NONE;
226     if (!strcmp (recordCompression, "bzip2"))
227         record_compression = REC_COMPRESS_BZIP2;
228
229     if (!(reg->records = rec_open (reg->bfs, rw, record_compression)))
230     {
231         logf (LOG_WARN, "rec_open");
232         return 0;
233     }
234     if (rw)
235     {
236         reg->matchDict = dict_open (reg->bfs, GMATCH_DICT, 20, 1, 0);
237     }
238     if (!(reg->dict = dict_open (reg->bfs, FNAME_DICT, 40, rw, 0)))
239     {
240         logf (LOG_WARN, "dict_open");
241         return 0;
242     }
243     if (!(reg->sortIdx = sortIdx_open (reg->bfs, rw)))
244     {
245         logf (LOG_WARN, "sortIdx_open");
246         return 0;
247     }
248     if (res_get_match (res, "isam", "s", ISAM_DEFAULT))
249     {
250         struct ISAMS_M_s isams_m;
251         if (!(reg->isams = isams_open (reg->bfs, FNAME_ISAMS, rw,
252                                       key_isams_m(res, &isams_m))))
253         {
254             logf (LOG_WARN, "isams_open");
255             return 0;
256         }
257     }
258     if (res_get_match (res, "isam", "i", ISAM_DEFAULT))
259     {
260         if (!(reg->isam = is_open (reg->bfs, FNAME_ISAM, key_compare, rw,
261                                   sizeof (struct it_key), res)))
262         {
263             logf (LOG_WARN, "is_open");
264             return 0;
265         }
266     }
267     if (res_get_match (res, "isam", "c", ISAM_DEFAULT))
268     {
269         struct ISAMC_M_s isamc_m;
270         if (!(reg->isamc = isc_open (reg->bfs, FNAME_ISAMC,
271                                     rw, key_isamc_m(res, &isamc_m))))
272         {
273             logf (LOG_WARN, "isc_open");
274             return 0;
275         }
276     }
277     if (res_get_match (res, "isam", "d", ISAM_DEFAULT))
278     {
279         struct ISAMD_M_s isamd_m;
280         
281         if (!(reg->isamd = isamd_open (reg->bfs, FNAME_ISAMD,
282                                       rw, key_isamd_m(res, &isamd_m))))
283         {
284             logf (LOG_WARN, "isamd_open");
285             return 0;
286         }
287     }
288     if (res_get_match (res, "isam", "b", ISAM_DEFAULT))
289     {
290         struct ISAMC_M_s isamc_m;
291         
292         if (!(reg->isamb = isamb_open (reg->bfs, "isamb",
293                                        rw, key_isamc_m(res, &isamc_m), 0)))
294         {
295             logf (LOG_WARN, "isamb_open");
296             return 0;
297         }
298     }
299     if (res_get_match (res, "isam", "bc", ISAM_DEFAULT))
300     {
301         struct ISAMC_M_s isamc_m;
302         
303         if (!(reg->isamb = isamb_open (reg->bfs, "isamb",
304                                        rw, key_isamc_m(res, &isamc_m), 1)))
305         {
306             logf (LOG_WARN, "isamb_open");
307             return 0;
308         }
309     }
310     if (res_get_match (res, "isam", "null", ISAM_DEFAULT))
311     {
312         struct ISAMC_M_s isamc_m;
313         
314         if (!(reg->isamb = isamb_open (reg->bfs, "isamb",
315                                        rw, key_isamc_m(res, &isamc_m), -1)))
316         {
317             logf (LOG_WARN, "isamb_open");
318             return 0;
319         }
320     }
321     reg->zei = zebraExplain_open (reg->records, reg->dh,
322                                   res, rw, reg,
323                                   explain_extract);
324     if (!reg->zei)
325     {
326         logf (LOG_WARN, "Cannot obtain EXPLAIN information");
327         return 0;
328     }
329     reg->active = 2;
330     yaz_log (LOG_DEBUG, "zebra_register_open ok p=%p", reg);
331     return reg;
332 }
333
334 void zebra_admin_shutdown (ZebraHandle zh)
335 {
336     zebra_mutex_cond_lock (&zh->service->session_lock);
337     zh->service->stop_flag = 1;
338     zebra_mutex_cond_unlock (&zh->service->session_lock);
339 }
340
341 void zebra_admin_start (ZebraHandle zh)
342 {
343     ZebraService zs = zh->service;
344     zh->errCode = 0;
345     zebra_mutex_cond_lock (&zs->session_lock);
346     zebra_mutex_cond_unlock (&zs->session_lock);
347 }
348
349 static void zebra_register_close (ZebraService zs, struct zebra_register *reg)
350 {
351     yaz_log(LOG_DEBUG, "zebra_register_close p=%p", reg);
352     reg->stop_flag = 0;
353     zebra_chdir (zs);
354     if (reg->records)
355     {
356         zebraExplain_close (reg->zei);
357         dict_close (reg->dict);
358         if (reg->matchDict)
359             dict_close (reg->matchDict);
360         sortIdx_close (reg->sortIdx);
361         if (reg->isams)
362             isams_close (reg->isams);
363         if (reg->isam)
364             is_close (reg->isam);
365         if (reg->isamc)
366             isc_close (reg->isamc);
367         if (reg->isamd)
368             isamd_close (reg->isamd);
369         if (reg->isamb)
370             isamb_close (reg->isamb);
371         rec_close (&reg->records);
372     }
373
374     recTypes_destroy (reg->recTypes);
375     zebra_maps_close (reg->zebra_maps);
376     zebraRankDestroy (reg);
377     bfs_destroy (reg->bfs);
378     data1_destroy (reg->dh);
379
380     xfree (reg->key_buf);
381     xfree (reg->name);
382     xfree (reg);
383     yaz_log(LOG_DEBUG, "zebra_register_close 2");
384 }
385
386 void zebra_stop(ZebraService zs)
387 {
388     if (!zs)
389         return ;
390     yaz_log (LOG_LOG, "zebra_stop");
391
392     zebra_mutex_cond_lock (&zs->session_lock);
393     while (zs->sessions)
394     {
395         zebra_close (zs->sessions);
396     }
397         
398     zebra_mutex_cond_unlock (&zs->session_lock);
399
400     zebra_mutex_cond_destroy (&zs->session_lock);
401
402     if (zs->passwd_db)
403         passwd_db_close (zs->passwd_db);
404
405     res_close (zs->global_res);
406     xfree (zs->configName);
407     xfree (zs->path_root);
408     xfree (zs);
409 }
410
411 void zebra_close (ZebraHandle zh)
412 {
413     ZebraService zs;
414     struct zebra_session **sp;
415
416     if (!zh)
417         return;
418
419     zs = zh->service;
420     yaz_log (LOG_DEBUG, "zebra_close zh=%p", zh);
421     if (!zh)
422         return ;
423     resultSetDestroy (zh, -1, 0, 0);
424
425
426     if (zh->reg)
427         zebra_register_close (zh->service, zh->reg);
428     zebra_close_res (zh);
429
430     xfree (zh->record_encoding);
431
432     if (zh->iconv_to_utf8 != 0)
433         yaz_iconv_close (zh->iconv_to_utf8);
434     if (zh->iconv_from_utf8 != 0)
435         yaz_iconv_close (zh->iconv_from_utf8);
436
437     xfree (zh->admin_databaseName);
438     zebra_mutex_cond_lock (&zs->session_lock);
439     zebra_lock_destroy (zh->lock_normal);
440     zebra_lock_destroy (zh->lock_shadow);
441     sp = &zs->sessions;
442     while (1)
443     {
444         assert (*sp);
445         if (*sp == zh)
446         {
447             *sp = (*sp)->next;
448             break;
449         }
450         sp = &(*sp)->next;
451     }
452 //    if (!zs->sessions && zs->stop_flag)
453 //      zebra_register_deactivate(zs);
454     zebra_mutex_cond_unlock (&zs->session_lock);
455     xfree (zh->reg_name);
456     xfree (zh);
457 }
458
459 struct map_baseinfo {
460     ZebraHandle zh;
461     NMEM mem;
462     int num_bases;
463     char **basenames;
464     int new_num_bases;
465     char **new_basenames;
466     int new_num_max;
467 };
468
469 static Res zebra_open_res (ZebraHandle zh)
470 {
471     Res res = 0;
472     char fname[512];
473     if (zh->path_reg)
474     {
475         sprintf (fname, "%.200s/zebra.cfg", zh->path_reg);
476         res = res_open (fname, zh->service->global_res);
477         if (!res)
478             res = zh->service->global_res;
479     }
480     else if (*zh->reg_name == 0)
481     {
482         res = zh->service->global_res;
483     }
484     else
485     {
486         yaz_log (LOG_WARN, "no register root specified");
487         return 0;  /* no path for register - fail! */
488     }
489     return res;
490 }
491
492 static void zebra_close_res (ZebraHandle zh)
493 {
494     if (zh->res != zh->service->global_res)
495         res_close (zh->res);
496     zh->res = 0;
497 }
498
499 static int zebra_select_register (ZebraHandle zh, const char *new_reg)
500 {
501     if (zh->res && strcmp (zh->reg_name, new_reg) == 0)
502         return 0;
503     if (!zh->res)
504     {
505         assert (zh->reg == 0);
506         assert (*zh->reg_name == 0);
507     }
508     else
509     {
510         if (zh->reg)
511         {
512             resultSetInvalidate (zh);
513             zebra_register_close (zh->service, zh->reg);
514             zh->reg = 0;
515         }
516         zebra_close_res(zh);
517     }
518     xfree (zh->reg_name);
519     zh->reg_name = xstrdup (new_reg);
520
521     xfree (zh->path_reg);
522     zh->path_reg = 0;
523     if (zh->service->path_root)
524     {
525         zh->path_reg = xmalloc (strlen(zh->service->path_root) + 
526                                 strlen(zh->reg_name) + 3);
527         strcpy (zh->path_reg, zh->service->path_root);
528         if (*zh->reg_name)
529         {
530             strcat (zh->path_reg, "/");
531             strcat (zh->path_reg, zh->reg_name);
532         }
533     }
534     zh->res = zebra_open_res (zh);
535     
536     if (zh->lock_normal)
537         zebra_lock_destroy (zh->lock_normal);
538     zh->lock_normal = 0;
539
540     if (zh->lock_shadow)
541         zebra_lock_destroy (zh->lock_shadow);
542     zh->lock_shadow = 0;
543
544     if (zh->res)
545     {
546         char fname[512];
547         const char *lock_area  =res_get (zh->res, "lockDir");
548         
549         if (!lock_area && zh->path_reg)
550             res_put (zh->res, "lockDir", zh->path_reg);
551         sprintf (fname, "norm.%s.LCK", zh->reg_name);
552         zh->lock_normal =
553             zebra_lock_create (res_get(zh->res, "lockDir"), fname, 0);
554         
555         sprintf (fname, "shadow.%s.LCK", zh->reg_name);
556         zh->lock_shadow =
557             zebra_lock_create (res_get(zh->res, "lockDir"), fname, 0);
558
559     }
560     return 1;
561 }
562
563 void map_basenames_func (void *vp, const char *name, const char *value)
564 {
565     struct map_baseinfo *p = (struct map_baseinfo *) vp;
566     int i, no;
567     char fromdb[128], todb[8][128];
568     
569     no =
570         sscanf (value, "%127s %127s %127s %127s %127s %127s %127s %127s %127s",
571                 fromdb, todb[0], todb[1], todb[2], todb[3], todb[4],
572                 todb[5], todb[6], todb[7]);
573     if (no < 2)
574         return ;
575     no--;
576     for (i = 0; i<p->num_bases; i++)
577         if (p->basenames[i] && !strcmp (p->basenames[i], fromdb))
578         {
579             p->basenames[i] = 0;
580             for (i = 0; i < no; i++)
581             {
582                 if (p->new_num_bases == p->new_num_max)
583                     return;
584                 p->new_basenames[(p->new_num_bases)++] = 
585                     nmem_strdup (p->mem, todb[i]);
586             }
587             return;
588         }
589 }
590
591 void map_basenames (ZebraHandle zh, ODR stream,
592                     int *num_bases, char ***basenames)
593 {
594     struct map_baseinfo info;
595     struct map_baseinfo *p = &info;
596     int i;
597
598     info.zh = zh;
599     info.num_bases = *num_bases;
600     info.basenames = *basenames;
601     info.new_num_max = 128;
602     info.new_num_bases = 0;
603     info.new_basenames = (char **)
604         odr_malloc (stream, sizeof(*info.new_basenames) * info.new_num_max);
605     info.mem = stream->mem;
606
607     res_trav (zh->service->global_res, "mapdb", &info, map_basenames_func);
608     
609     for (i = 0; i<p->num_bases; i++)
610         if (p->basenames[i] && p->new_num_bases < p->new_num_max)
611         {
612             p->new_basenames[(p->new_num_bases)++] = 
613                 nmem_strdup (p->mem, p->basenames[i]);
614         }
615     *num_bases = info.new_num_bases;
616     *basenames = info.new_basenames;
617     for (i = 0; i<*num_bases; i++)
618         logf (LOG_LOG, "base %s", (*basenames)[i]);
619 }
620
621 int zebra_select_database (ZebraHandle zh, const char *basename)
622 {
623     return zebra_select_databases (zh, 1, &basename);
624 }
625
626 int zebra_select_databases (ZebraHandle zh, int num_bases,
627                             const char **basenames)
628 {
629     int i;
630     const char *cp;
631     int len = 0;
632     char *new_reg = 0;
633     
634     if (num_bases < 1)
635     {
636         zh->errCode = 23;
637         return -1;
638     }
639     for (i = 0; i < zh->num_basenames; i++)
640         xfree (zh->basenames[i]);
641     xfree (zh->basenames);
642     
643     zh->num_basenames = num_bases;
644     zh->basenames = xmalloc (zh->num_basenames * sizeof(*zh->basenames));
645     for (i = 0; i < zh->num_basenames; i++)
646         zh->basenames[i] = xstrdup (basenames[i]);
647
648     cp = strrchr(basenames[0], '/');
649     if (cp)
650     {
651         len = cp - basenames[0];
652         new_reg = xmalloc (len + 1);
653         memcpy (new_reg, basenames[0], len);
654         new_reg[len] = '\0';
655     }
656     else
657         new_reg = xstrdup ("");
658     for (i = 1; i<num_bases; i++)
659     {
660         const char *cp1;
661
662         cp1 = strrchr (basenames[i], '/');
663         if (cp)
664         {
665             if (!cp1)
666             {
667                 zh->errCode = 23;
668                 return -1;
669             }
670             if (len != cp1 - basenames[i] ||
671                 memcmp (basenames[i], new_reg, len))
672             {
673                 zh->errCode = 23;
674                 return -1;
675             }
676         }
677         else
678         {
679             if (cp1)
680             {
681                 zh->errCode = 23;
682                 return -1;
683             }
684         }
685     }
686     zebra_select_register (zh, new_reg);
687     xfree (new_reg);
688     if (!zh->res)
689     {
690         zh->errCode = 109;
691         return -1;
692     }
693     if (!zh->lock_normal || !zh->lock_shadow)
694     {
695         zh->errCode = 2;
696         return -1;
697     }
698     return 0;
699 }
700
701 void zebra_search_rpn (ZebraHandle zh, ODR decode, ODR stream,
702                        Z_RPNQuery *query, const char *setname, int *hits)
703 {
704     zh->hits = 0;
705     *hits = 0;
706
707     if (zebra_begin_read (zh))
708         return;
709     resultSetAddRPN (zh, decode, stream, query, 
710                      zh->num_basenames, zh->basenames, setname);
711
712     zebra_end_read (zh);
713
714     *hits = zh->hits;
715 }
716
717 void zebra_records_retrieve (ZebraHandle zh, ODR stream,
718                              const char *setname, Z_RecordComposition *comp,
719                              oid_value input_format, int num_recs,
720                              ZebraRetrievalRecord *recs)
721 {
722     ZebraPosSet poset;
723     int i, *pos_array;
724
725     if (!zh->res)
726     {
727         zh->errCode = 30;
728         zh->errString = odr_strdup (stream, setname);
729         return;
730     }
731     
732     zh->errCode = 0;
733
734     if (zebra_begin_read (zh))
735         return;
736
737     pos_array = (int *) xmalloc (num_recs * sizeof(*pos_array));
738     for (i = 0; i<num_recs; i++)
739         pos_array[i] = recs[i].position;
740     poset = zebraPosSetCreate (zh, setname, num_recs, pos_array);
741     if (!poset)
742     {
743         logf (LOG_DEBUG, "zebraPosSetCreate error");
744         zh->errCode = 30;
745         zh->errString = nmem_strdup (stream->mem, setname);
746     }
747     else
748     {
749         for (i = 0; i<num_recs; i++)
750         {
751             if (poset[i].term)
752             {
753                 recs[i].errCode = 0;
754                 recs[i].format = VAL_SUTRS;
755                 recs[i].len = strlen(poset[i].term);
756                 recs[i].buf = poset[i].term;
757                 recs[i].base = poset[i].db;
758             }
759             else if (poset[i].sysno)
760             {
761                 recs[i].errCode =
762                     zebra_record_fetch (zh, poset[i].sysno, poset[i].score,
763                                         stream, input_format, comp,
764                                         &recs[i].format, &recs[i].buf,
765                                         &recs[i].len,
766                                         &recs[i].base);
767                 recs[i].errString = NULL;
768             }
769             else
770             {
771                 char num_str[20];
772
773                 sprintf (num_str, "%d", pos_array[i]);  
774                 zh->errCode = 13;
775                 zh->errString = odr_strdup (stream, num_str);
776                 break;
777             }
778         }
779         zebraPosSetDestroy (zh, poset, num_recs);
780     }
781     zebra_end_read (zh);
782     xfree (pos_array);
783 }
784
785 void zebra_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
786                  oid_value attributeset,
787                  int *position, int *num_entries, ZebraScanEntry **entries,
788                  int *is_partial)
789 {
790     if (zebra_begin_read (zh))
791     {
792         *entries = 0;
793         *num_entries = 0;
794         return;
795     }
796     rpn_scan (zh, stream, zapt, attributeset,
797               zh->num_basenames, zh->basenames, position,
798               num_entries, entries, is_partial);
799     zebra_end_read (zh);
800 }
801
802 void zebra_sort (ZebraHandle zh, ODR stream,
803                  int num_input_setnames, const char **input_setnames,
804                  const char *output_setname, Z_SortKeySpecList *sort_sequence,
805                  int *sort_status)
806 {
807     if (zebra_begin_read (zh))
808         return;
809     resultSetSort (zh, stream->mem, num_input_setnames, input_setnames,
810                    output_setname, sort_sequence, sort_status);
811     zebra_end_read(zh);
812 }
813
814 int zebra_deleleResultSet(ZebraHandle zh, int function,
815                           int num_setnames, char **setnames,
816                           int *statuses)
817 {
818     int i, status;
819     if (zebra_begin_read(zh))
820         return Z_DeleteStatus_systemProblemAtTarget;
821     switch (function)
822     {
823     case Z_DeleteRequest_list:
824         resultSetDestroy (zh, num_setnames, setnames, statuses);
825         break;
826     case Z_DeleteRequest_all:
827         resultSetDestroy (zh, -1, 0, statuses);
828         break;
829     }
830     zebra_end_read (zh);
831     status = Z_DeleteStatus_success;
832     for (i = 0; i<num_setnames; i++)
833         if (statuses[i] == Z_DeleteStatus_resultSetDidNotExist)
834             status = statuses[i];
835     return status;
836 }
837
838 int zebra_errCode (ZebraHandle zh)
839 {
840     return zh->errCode;
841 }
842
843 const char *zebra_errString (ZebraHandle zh)
844 {
845     return diagbib1_str (zh->errCode);
846 }
847
848 char *zebra_errAdd (ZebraHandle zh)
849 {
850     return zh->errString;
851 }
852
853 int zebra_auth (ZebraHandle zh, const char *user, const char *pass)
854 {
855     ZebraService zs = zh->service;
856     if (!zs->passwd_db || !passwd_db_auth (zs->passwd_db, user, pass))
857     {
858         logf(LOG_APP,"AUTHOK:%s", user?user:"ANONYMOUS");
859         return 0;
860     }
861
862     logf(LOG_APP,"AUTHFAIL:%s", user?user:"ANONYMOUS");
863     return 1;
864 }
865
866 void zebra_admin_import_begin (ZebraHandle zh, const char *database)
867 {
868     zebra_begin_trans (zh);
869     xfree (zh->admin_databaseName);
870     zh->admin_databaseName = xstrdup(database);
871 }
872
873 void zebra_admin_import_end (ZebraHandle zh)
874 {
875     zebra_end_trans (zh);
876 }
877
878 void zebra_admin_import_segment (ZebraHandle zh, Z_Segment *segment)
879 {
880     int sysno;
881     int i;
882     for (i = 0; i<segment->num_segmentRecords; i++)
883     {
884         Z_NamePlusRecord *npr = segment->segmentRecords[i];
885         const char *databaseName = npr->databaseName;
886
887         if (!databaseName)
888             databaseName = zh->admin_databaseName;
889         printf ("--------------%d--------------------\n", i);
890         if (npr->which == Z_NamePlusRecord_intermediateFragment)
891         {
892             Z_FragmentSyntax *fragment = npr->u.intermediateFragment;
893             if (fragment->which == Z_FragmentSyntax_notExternallyTagged)
894             {
895                 Odr_oct *oct = fragment->u.notExternallyTagged;
896                 printf ("%.*s", (oct->len > 100 ? 100 : oct->len) ,
897                         oct->buf);
898                 
899                 sysno = 0;
900                 extract_rec_in_mem (zh, "grs.sgml",
901                                     oct->buf, oct->len,
902                                     databaseName,
903                                     0 /* delete_flag */,
904                                     0 /* test_mode */,
905                                     &sysno /* sysno */,
906                                     1 /* store_keys */,
907                                     1 /* store_data */,
908                                     0 /* match criteria */);
909             }
910         }
911     }
912 }
913
914 void zebra_admin_create (ZebraHandle zh, const char *database)
915 {
916     ZebraService zs;
917
918     zebra_begin_trans (zh);
919
920     zs = zh->service;
921     /* announce database */
922     if (zebraExplain_newDatabase (zh->reg->zei, database, 0 
923                                   /* explainDatabase */))
924     {
925         zh->errCode = 224;
926         zh->errString = "Database already exist";
927     }
928     zebra_end_trans (zh);
929 }
930
931 int zebra_string_norm (ZebraHandle zh, unsigned reg_id,
932                        const char *input_str, int input_len,
933                        char *output_str, int output_len)
934 {
935     WRBUF wrbuf;
936     if (!zh->reg->zebra_maps)
937         return -1;
938     wrbuf = zebra_replace(zh->reg->zebra_maps, reg_id, "",
939                           input_str, input_len);
940     if (!wrbuf)
941         return -2;
942     if (wrbuf_len(wrbuf) >= output_len)
943         return -3;
944     if (wrbuf_len(wrbuf))
945         memcpy (output_str, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
946     output_str[wrbuf_len(wrbuf)] = '\0';
947     return wrbuf_len(wrbuf);
948 }
949
950
951 void zebra_set_state (ZebraHandle zh, int val, int seqno)
952 {
953     char state_fname[256];
954     char *fname;
955     long p = getpid();
956     FILE *f;
957
958     sprintf (state_fname, "state.%s.LCK", zh->reg_name);
959     fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
960     f = fopen (fname, "w");
961
962     yaz_log (LOG_LOG, "%c %d %ld", val, seqno, p);
963     fprintf (f, "%c %d %ld\n", val, seqno, p);
964     fclose (f);
965     xfree (fname);
966 }
967
968 void zebra_get_state (ZebraHandle zh, char *val, int *seqno)
969 {
970     char state_fname[256];
971     char *fname;
972     FILE *f;
973
974     sprintf (state_fname, "state.%s.LCK", zh->reg_name);
975     fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
976     f = fopen (fname, "r");
977     *val = 'o';
978     *seqno = 0;
979
980     if (f)
981     {
982         fscanf (f, "%c %d", val, seqno);
983         fclose (f);
984     }
985     xfree (fname);
986 }
987
988 int zebra_begin_read (ZebraHandle zh)
989 {
990     int dirty = 0;
991     char val;
992     int seqno;
993
994     assert (zh->res);
995
996     (zh->trans_no)++;
997
998     if (zh->trans_no != 1)
999     {
1000         zebra_flush_reg (zh);
1001         return 0;
1002     }
1003 #if HAVE_SYS_TIMES_H
1004     times (&zh->tms1);
1005 #endif
1006     if (!zh->res)
1007     {
1008         (zh->trans_no)--;
1009         zh->errCode = 109;
1010         return -1;
1011     }
1012     if (!zh->lock_normal || !zh->lock_shadow)
1013     {
1014         (zh->trans_no)--;
1015         zh->errCode = 2;
1016         return -1;
1017     }
1018     zebra_get_state (zh, &val, &seqno);
1019     if (val == 'd')
1020         val = 'o';
1021
1022     if (!zh->reg)
1023         dirty = 1;
1024     else if (seqno != zh->reg->seqno)
1025     {
1026         yaz_log (LOG_LOG, "reopen seqno cur/old %d/%d",
1027                  seqno, zh->reg->seqno);
1028         dirty = 1;
1029     }
1030     else if (zh->reg->last_val != val)
1031     {
1032         yaz_log (LOG_LOG, "reopen last cur/old %d/%d",
1033                  val, zh->reg->last_val);
1034         dirty = 1;
1035     }
1036     if (!dirty)
1037         return 0;
1038
1039     if (val == 'c')
1040         zebra_lock_r (zh->lock_shadow);
1041     else
1042         zebra_lock_r (zh->lock_normal);
1043     
1044     if (zh->reg)
1045         zebra_register_close (zh->service, zh->reg);
1046     zh->reg = zebra_register_open (zh->service, zh->reg_name,
1047                                    0, val == 'c' ? 1 : 0,
1048                                    zh->res, zh->path_reg);
1049     if (!zh->reg)
1050     {
1051         zh->errCode = 109;
1052         return -1;
1053     }
1054     zh->reg->last_val = val;
1055     zh->reg->seqno = seqno;
1056
1057     return 0;
1058 }
1059
1060 void zebra_end_read (ZebraHandle zh)
1061 {
1062     (zh->trans_no)--;
1063
1064     if (zh->trans_no != 0)
1065         return;
1066
1067 #if HAVE_SYS_TIMES_H
1068     times (&zh->tms2);
1069     logf (LOG_LOG, "user/system: %ld/%ld",
1070                     (long) (zh->tms2.tms_utime - zh->tms1.tms_utime),
1071                     (long) (zh->tms2.tms_stime - zh->tms1.tms_stime));
1072
1073 #endif
1074
1075     zebra_unlock (zh->lock_normal);
1076     zebra_unlock (zh->lock_shadow);
1077 }
1078
1079 void zebra_begin_trans (ZebraHandle zh)
1080 {
1081     int pass;
1082     int seqno = 0;
1083     char val = '?';
1084     const char *rval = 0;
1085
1086     assert (zh->res);
1087
1088     (zh->trans_no++);
1089     if (zh->trans_no != 1)
1090     {
1091         return;
1092     }
1093     
1094     yaz_log (LOG_LOG, "zebra_begin_trans");
1095
1096     zh->records_inserted = 0;
1097     zh->records_updated = 0;
1098     zh->records_deleted = 0;
1099     zh->records_processed = 0;
1100
1101 #if HAVE_SYS_TIMES_H
1102     times (&zh->tms1);
1103 #endif
1104     
1105     /* lock */
1106     if (zh->shadow_enable)
1107         rval = res_get (zh->res, "shadow");
1108
1109     for (pass = 0; pass < 2; pass++)
1110     {
1111         if (rval)
1112         {
1113             zebra_lock_r (zh->lock_normal);
1114             zebra_lock_w (zh->lock_shadow);
1115         }
1116         else
1117         {
1118             zebra_lock_w (zh->lock_normal);
1119             zebra_lock_w (zh->lock_shadow);
1120         }
1121         
1122         zebra_get_state (zh, &val, &seqno);
1123         if (val == 'c')
1124         {
1125             yaz_log (LOG_LOG, "previous transaction didn't finish commit");
1126             zebra_unlock (zh->lock_shadow);
1127             zebra_unlock (zh->lock_normal);
1128             zebra_commit (zh);
1129             continue;
1130         }
1131         else if (val == 'd')
1132         {
1133             if (rval)
1134             {
1135                 BFiles bfs = bfs_create (res_get (zh->res, "shadow"),
1136                                          zh->path_reg);
1137                 yaz_log (LOG_LOG, "previous transaction didn't reach commit");
1138                 bf_commitClean (bfs, rval);
1139                 bfs_destroy (bfs);
1140             }
1141             else
1142             {
1143                 yaz_log (LOG_WARN, "your previous transaction didn't finish");
1144             }
1145         }
1146         break;
1147     }
1148     if (pass == 2)
1149     {
1150         yaz_log (LOG_FATAL, "zebra_begin_trans couldn't finish commit");
1151         abort();
1152         return;
1153     }
1154     zebra_set_state (zh, 'd', seqno);
1155
1156     zh->reg = zebra_register_open (zh->service, zh->reg_name,
1157                                    1, rval ? 1 : 0, zh->res,
1158                                    zh->path_reg);
1159
1160     zh->reg->seqno = seqno;
1161 }
1162
1163 void zebra_end_trans (ZebraHandle zh)
1164 {
1165     char val;
1166     int seqno;
1167     const char *rval;
1168
1169     zh->trans_no--;
1170     if (zh->trans_no != 0)
1171         return;
1172
1173     yaz_log (LOG_LOG, "zebra_end_trans");
1174     rval = res_get (zh->res, "shadow");
1175
1176     zebraExplain_runNumberIncrement (zh->reg->zei, 1);
1177
1178     zebra_flush_reg (zh);
1179
1180     zebra_register_close (zh->service, zh->reg);
1181     zh->reg = 0;
1182
1183     
1184     yaz_log (LOG_LOG, "Records: %7d i/u/d %d/%d/%d", 
1185              zh->records_processed, zh->records_inserted,
1186              zh->records_updated, zh->records_deleted);
1187
1188     zebra_get_state (zh, &val, &seqno);
1189     if (val != 'd')
1190     {
1191         BFiles bfs = bfs_create (rval, zh->path_reg);
1192         yaz_log (LOG_LOG, "deleting shadow stuff val=%c", val);
1193         bf_commitClean (bfs, rval);
1194         bfs_destroy (bfs);
1195     }
1196     if (!rval)
1197         seqno++;
1198     zebra_set_state (zh, 'o', seqno);
1199
1200     zebra_unlock (zh->lock_shadow);
1201     zebra_unlock (zh->lock_normal);
1202
1203 #if HAVE_SYS_TIMES_H
1204     times (&zh->tms2);
1205     logf (LOG_LOG, "user/system: %ld/%ld",
1206                     (long) (zh->tms2.tms_utime - zh->tms1.tms_utime),
1207                     (long) (zh->tms2.tms_stime - zh->tms1.tms_stime));
1208
1209 #endif
1210 }
1211
1212 void zebra_repository_update (ZebraHandle zh)
1213 {
1214     zebra_begin_trans (zh);
1215     logf (LOG_LOG, "updating %s", zh->rGroup.path);
1216     repositoryUpdate (zh);    
1217     zebra_end_trans (zh);
1218 }
1219
1220 void zebra_repository_delete (ZebraHandle zh)
1221 {
1222     logf (LOG_LOG, "deleting %s", zh->rGroup.path);
1223     repositoryDelete (zh);
1224 }
1225
1226 void zebra_repository_show (ZebraHandle zh)
1227 {
1228     repositoryShow (zh);
1229 }
1230
1231 int zebra_commit (ZebraHandle zh)
1232 {
1233     int seqno;
1234     char val;
1235     const char *rval;
1236     BFiles bfs;
1237
1238     if (!zh->res)
1239     {
1240         zh->errCode = 109;
1241         return -1;
1242     }
1243     rval = res_get (zh->res, "shadow");    
1244     if (!rval)
1245     {
1246         logf (LOG_WARN, "Cannot perform commit");
1247         logf (LOG_WARN, "No shadow area defined");
1248         return 0;
1249     }
1250
1251     zebra_lock_w (zh->lock_normal);
1252     zebra_lock_r (zh->lock_shadow);
1253
1254     bfs = bfs_create (res_get (zh->res, "register"), zh->path_reg);
1255
1256     zebra_get_state (zh, &val, &seqno);
1257
1258     if (rval && *rval)
1259         bf_cache (bfs, rval);
1260     if (bf_commitExists (bfs))
1261     {
1262         zebra_set_state (zh, 'c', seqno);
1263
1264         logf (LOG_LOG, "commit start");
1265         bf_commitExec (bfs);
1266 #ifndef WIN32
1267         sync ();
1268 #endif
1269         logf (LOG_LOG, "commit clean");
1270         bf_commitClean (bfs, rval);
1271         seqno++;
1272         zebra_set_state (zh, 'o', seqno);
1273     }
1274     else
1275     {
1276         logf (LOG_LOG, "nothing to commit");
1277     }
1278     bfs_destroy (bfs);
1279
1280     zebra_unlock (zh->lock_shadow);
1281     zebra_unlock (zh->lock_normal);
1282     return 0;
1283 }
1284
1285 int zebra_init (ZebraHandle zh)
1286 {
1287     const char *rval;
1288     BFiles bfs = 0;
1289
1290     if (!zh->res)
1291     {
1292         zh->errCode = 109;
1293         return -1;
1294     }
1295     rval = res_get (zh->res, "shadow");
1296
1297     bfs = bfs_create (res_get (zh->service->global_res, "register"),
1298                       zh->path_reg);
1299     if (rval && *rval)
1300         bf_cache (bfs, rval);
1301     
1302     bf_reset (bfs);
1303     bfs_destroy (bfs);
1304     zebra_set_state (zh, 'o', 0);
1305     return 0;
1306 }
1307
1308 int zebra_compact (ZebraHandle zh)
1309 {
1310     BFiles bfs;
1311     if (!zh->res)
1312     {
1313         zh->errCode = 109;
1314         return -1;
1315     }
1316     bfs = bfs_create (res_get (zh->res, "register"), zh->path_reg);
1317     inv_compact (bfs);
1318     bfs_destroy (bfs);
1319     return 0;
1320 }
1321
1322 int zebra_record_insert (ZebraHandle zh, const char *buf, int len)
1323 {
1324     int sysno = 0;
1325     zebra_begin_trans (zh);
1326     extract_rec_in_mem (zh, "grs.sgml",
1327                         buf, len,
1328                         "Default",  /* database */
1329                         0 /* delete_flag */,
1330                         0 /* test_mode */,
1331                         &sysno /* sysno */,
1332                         1 /* store_keys */,
1333                         1 /* store_data */,
1334                         0 /* match criteria */);
1335     zebra_end_trans (zh);
1336     return sysno;
1337 }
1338
1339 void zebra_set_group (ZebraHandle zh, struct recordGroup *rg)
1340 {
1341     memcpy (&zh->rGroup, rg, sizeof(*rg));
1342 }
1343
1344 void zebra_result (ZebraHandle zh, int *code, char **addinfo)
1345 {
1346     *code = zh->errCode;
1347     *addinfo = zh->errString;
1348 }
1349
1350 void zebra_shadow_enable (ZebraHandle zh, int value)
1351 {
1352     zh->shadow_enable = value;
1353 }
1354
1355 int zebra_record_encoding (ZebraHandle zh, const char *encoding)
1356 {
1357     xfree (zh->record_encoding);
1358     zh->record_encoding = xstrdup (encoding);
1359     return 0;
1360 }