Implemented drop database
[idzebra-moved-to-github.git] / index / zebraapi.c
1 /* $Id: zebraapi.c,v 1.109 2003-06-30 19:37:12 adam Exp $
2    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003
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 <yaz/pquery.h>
37 #include <yaz/sortspec.h>
38 #include "index.h"
39 #include <charmap.h>
40 #include "zebraapi.h"
41
42 /* simple asserts to validate the most essential input args */
43 #define ASSERTZH assert(zh && zh->service)
44 #define ASSERTZHRES assert(zh && zh->service && zh->res)
45 #define ASSERTZS assert(zs)
46
47 /* A simple log macro */
48 /* don't break with older yazen that lack log_app2 */
49 #ifdef LOG_APP2
50 #define LOG_API LOG_APP2
51 #else
52 #define LOG_API LOG_DEBUG
53 #endif
54
55 static Res zebra_open_res (ZebraHandle zh);
56 static void zebra_close_res (ZebraHandle zh);
57
58
59 static void zebra_chdir (ZebraService zs)
60 {
61     const char *dir ;
62     ASSERTZS;
63     yaz_log(LOG_API,"zebra_chdir");
64     dir = res_get (zs->global_res, "chdir");
65     if (!dir)
66         return;
67     logf (LOG_DEBUG, "chdir %s", dir);
68 #ifdef WIN32
69     _chdir(dir);
70 #else
71     chdir (dir);
72 #endif
73 }
74
75 static void zebra_flush_reg (ZebraHandle zh)
76 {
77     ASSERTZH;
78     yaz_log(LOG_API,"zebra_flush_reg");
79     zh->errCode=0;
80     zebraExplain_flush (zh->reg->zei, zh);
81     
82     extract_flushWriteKeys (zh);
83     zebra_index_merge (zh);
84 }
85
86 static struct zebra_register *zebra_register_open (ZebraService zs, 
87                                                    const char *name,
88                                                    int rw, int useshadow,
89                                                    Res res,
90                                                    const char *reg_path);
91 static void zebra_register_close (ZebraService zs, struct zebra_register *reg);
92
93 ZebraHandle zebra_open (ZebraService zs)
94 {
95     ZebraHandle zh;
96     const char *default_encoding;
97     ASSERTZS;
98     yaz_log(LOG_API,"zebra_open");
99
100     if (!zs)
101         return 0;
102
103     zh = (ZebraHandle) xmalloc (sizeof(*zh));
104     yaz_log (LOG_DEBUG, "zebra_open zs=%p returns %p", zs, zh);
105
106     zh->service = zs;
107     zh->reg = 0;          /* no register attached yet */
108     zh->sets = 0;
109     zh->destroyed = 0;
110     zh->errCode = 0;
111     zh->errString = 0;
112     zh->res = 0; 
113
114     zh->reg_name = xstrdup ("");
115     zh->path_reg = 0;
116     zh->num_basenames = 0;
117     zh->basenames = 0;
118
119     zh->trans_no = 0;
120     zh->trans_w_no = 0;
121
122     zh->lock_normal = 0;
123     zh->lock_shadow = 0;
124
125     zh->admin_databaseName = 0;
126
127     zh->shadow_enable = 1;
128
129     default_encoding = res_get_def(zs->global_res, "encoding", "ISO-8859-1");
130     zh->record_encoding = xstrdup (default_encoding);
131
132     zh->iconv_to_utf8 =
133         yaz_iconv_open ("UTF-8", default_encoding);
134     if (zh->iconv_to_utf8 == 0)
135         yaz_log (LOG_WARN, "iconv: %s to UTF-8 unsupported",
136            default_encoding);
137     zh->iconv_from_utf8 =
138         yaz_iconv_open (default_encoding, "UTF-8");
139     if (zh->iconv_to_utf8 == 0)
140         yaz_log (LOG_WARN, "iconv: UTF-8 to %s unsupported",
141            default_encoding);
142
143     zebra_mutex_cond_lock (&zs->session_lock);
144
145     zh->next = zs->sessions;
146     zs->sessions = zh;
147
148     zebra_mutex_cond_unlock (&zs->session_lock);
149
150     return zh;
151 }
152
153 ZebraService zebra_start (const char *configName)
154 {
155     Res res;
156
157     yaz_log(LOG_API|LOG_LOG,"zebra_start %s",configName);
158
159     if ((res = res_open (configName, 0)))
160     {
161         ZebraService zh = xmalloc (sizeof(*zh));
162
163         yaz_log (LOG_DEBUG, "Read resources `%s'", configName);
164         
165         zh->global_res = res;
166         zh->configName = xstrdup(configName);
167         zh->sessions = 0;
168         
169         zebra_chdir (zh);
170         
171         zebra_mutex_cond_init (&zh->session_lock);
172         if (!res_get (zh->global_res, "passwd"))
173             zh->passwd_db = NULL;
174         else
175         {
176             zh->passwd_db = passwd_db_open ();
177             if (!zh->passwd_db)
178                 logf (LOG_WARN|LOG_ERRNO, "passwd_db_open failed");
179             else
180                 passwd_db_file (zh->passwd_db,
181                                 res_get (zh->global_res, "passwd"));
182         }
183         zh->path_root = res_get (zh->global_res, "root");
184         return zh;
185     }
186     return 0;
187 }
188
189 static
190 struct zebra_register *zebra_register_open (ZebraService zs, const char *name,
191                                             int rw, int useshadow, Res res,
192                                             const char *reg_path)
193 {
194     struct zebra_register *reg;
195     int record_compression = REC_COMPRESS_NONE;
196     char *recordCompression = 0;
197
198     ASSERTZS;
199     
200     reg = xmalloc (sizeof(*reg));
201
202     assert (name);
203     reg->name = xstrdup (name);
204
205     reg->seqno = 0;
206     reg->last_val = 0;
207
208     assert (res);
209
210     yaz_log (LOG_LOG|LOG_API, "zebra_register_open rw = %d useshadow=%d p=%p,n=%s,rp=%s",
211              rw, useshadow, reg, name, reg_path ? reg_path : "(none)");
212     
213     reg->dh = data1_createx (DATA1_FLAG_XML);
214     if (!reg->dh)
215         return 0;
216     reg->bfs = bfs_create (res_get (res, "register"), reg_path);
217     if (!reg->bfs)
218     {
219         data1_destroy(reg->dh);
220         return 0;
221     }
222     if (useshadow)
223         bf_cache (reg->bfs, res_get (res, "shadow"));
224     data1_set_tabpath (reg->dh, res_get_def(res, "profilePath",
225                                             DEFAULT_PROFILE_PATH));
226     data1_set_tabroot (reg->dh, reg_path);
227     reg->recTypes = recTypes_init (reg->dh);
228     recTypes_default_handlers (reg->recTypes);
229
230     reg->zebra_maps = zebra_maps_open (res, reg_path);
231     reg->rank_classes = NULL;
232
233     reg->key_buf = 0;
234
235     reg->keys.buf_max = 0;
236     reg->keys.buf = 0;
237     reg->sortKeys.buf = 0;
238     reg->sortKeys.buf_max = 0;
239
240     reg->records = 0;
241     reg->dict = 0;
242     reg->sortIdx = 0;
243     reg->isams = 0;
244     reg->matchDict = 0;
245     reg->isam = 0;
246     reg->isamc = 0;
247     reg->isamd = 0;
248     reg->isamb = 0;
249     reg->zei = 0;
250     reg->matchDict = 0;
251     reg->key_file_no = 0;
252     
253     zebraRankInstall (reg, rank1_class);
254     zebraRankInstall (reg, rankzv_class);
255     zebraRankInstall (reg, rankliv_class);
256
257     recordCompression = res_get_def (res, "recordCompression", "none");
258     if (!strcmp (recordCompression, "none"))
259         record_compression = REC_COMPRESS_NONE;
260     if (!strcmp (recordCompression, "bzip2"))
261         record_compression = REC_COMPRESS_BZIP2;
262
263     if (!(reg->records = rec_open (reg->bfs, rw, record_compression)))
264     {
265         logf (LOG_WARN, "rec_open");
266         return 0;
267     }
268     if (rw)
269     {
270         reg->matchDict = dict_open (reg->bfs, GMATCH_DICT, 20, 1, 0);
271     }
272     if (!(reg->dict = dict_open (reg->bfs, FNAME_DICT, 40, rw, 0)))
273     {
274         logf (LOG_WARN, "dict_open");
275         return 0;
276     }
277     if (!(reg->sortIdx = sortIdx_open (reg->bfs, rw)))
278     {
279         logf (LOG_WARN, "sortIdx_open");
280         return 0;
281     }
282     if (res_get_match (res, "isam", "s", ISAM_DEFAULT))
283     {
284         struct ISAMS_M_s isams_m;
285         if (!(reg->isams = isams_open (reg->bfs, FNAME_ISAMS, rw,
286                                       key_isams_m(res, &isams_m))))
287         {
288             logf (LOG_WARN, "isams_open");
289             return 0;
290         }
291     }
292     if (res_get_match (res, "isam", "i", ISAM_DEFAULT))
293     {
294         if (!(reg->isam = is_open (reg->bfs, FNAME_ISAM, key_compare, rw,
295                                   sizeof (struct it_key), res)))
296         {
297             logf (LOG_WARN, "is_open");
298             return 0;
299         }
300     }
301     if (res_get_match (res, "isam", "c", ISAM_DEFAULT))
302     {
303         struct ISAMC_M_s isamc_m;
304         if (!(reg->isamc = isc_open (reg->bfs, FNAME_ISAMC,
305                                     rw, key_isamc_m(res, &isamc_m))))
306         {
307             logf (LOG_WARN, "isc_open");
308             return 0;
309         }
310     }
311     if (res_get_match (res, "isam", "d", ISAM_DEFAULT))
312     {
313         struct ISAMD_M_s isamd_m;
314         
315         if (!(reg->isamd = isamd_open (reg->bfs, FNAME_ISAMD,
316                                       rw, key_isamd_m(res, &isamd_m))))
317         {
318             logf (LOG_WARN, "isamd_open");
319             return 0;
320         }
321     }
322     if (res_get_match (res, "isam", "b", ISAM_DEFAULT))
323     {
324         struct ISAMC_M_s isamc_m;
325         
326         if (!(reg->isamb = isamb_open (reg->bfs, "isamb",
327                                        rw, key_isamc_m(res, &isamc_m), 0)))
328         {
329             logf (LOG_WARN, "isamb_open");
330             return 0;
331         }
332     }
333     if (res_get_match (res, "isam", "bc", ISAM_DEFAULT))
334     {
335         struct ISAMC_M_s isamc_m;
336         
337         if (!(reg->isamb = isamb_open (reg->bfs, "isamb",
338                                        rw, key_isamc_m(res, &isamc_m), 1)))
339         {
340             logf (LOG_WARN, "isamb_open");
341             return 0;
342         }
343     }
344     if (res_get_match (res, "isam", "null", ISAM_DEFAULT))
345     {
346         struct ISAMC_M_s isamc_m;
347         
348         if (!(reg->isamb = isamb_open (reg->bfs, "isamb",
349                                        rw, key_isamc_m(res, &isamc_m), -1)))
350         {
351             logf (LOG_WARN, "isamb_open");
352             return 0;
353         }
354     }
355     reg->zei = zebraExplain_open (reg->records, reg->dh,
356                                   res, rw, reg,
357                                   explain_extract);
358     if (!reg->zei)
359     {
360         logf (LOG_WARN, "Cannot obtain EXPLAIN information");
361         return 0;
362     }
363     reg->active = 2;
364     yaz_log (LOG_DEBUG, "zebra_register_open ok p=%p", reg);
365     return reg;
366 }
367
368 int zebra_admin_shutdown (ZebraHandle zh)
369 {
370     ASSERTZH;
371     yaz_log(LOG_API,"zebra_admin_shutdown");
372     zh->errCode=0;
373
374     zebra_mutex_cond_lock (&zh->service->session_lock);
375     zh->service->stop_flag = 1;
376     zebra_mutex_cond_unlock (&zh->service->session_lock);
377     return 0;
378 }
379
380 int zebra_admin_start (ZebraHandle zh)
381 {
382     ZebraService zs;
383     ASSERTZH;
384     yaz_log(LOG_API,"zebra_admin_start");
385     zh->errCode=0;
386     zs = zh->service;
387     zebra_mutex_cond_lock (&zs->session_lock);
388     zebra_mutex_cond_unlock (&zs->session_lock);
389     return 0;
390 }
391
392 static void zebra_register_close (ZebraService zs, struct zebra_register *reg)
393 {
394     ASSERTZS;
395     yaz_log(LOG_LOG|LOG_API, "zebra_register_close p=%p", reg);
396     reg->stop_flag = 0;
397     zebra_chdir (zs);
398     if (reg->records)
399     {
400         zebraExplain_close (reg->zei);
401         dict_close (reg->dict);
402         if (reg->matchDict)
403             dict_close (reg->matchDict);
404         sortIdx_close (reg->sortIdx);
405         if (reg->isams)
406             isams_close (reg->isams);
407         if (reg->isam)
408             is_close (reg->isam);
409         if (reg->isamc)
410             isc_close (reg->isamc);
411         if (reg->isamd)
412             isamd_close (reg->isamd);
413         if (reg->isamb)
414             isamb_close (reg->isamb);
415         rec_close (&reg->records);
416     }
417
418     recTypes_destroy (reg->recTypes);
419     zebra_maps_close (reg->zebra_maps);
420     zebraRankDestroy (reg);
421     bfs_destroy (reg->bfs);
422     data1_destroy (reg->dh);
423
424     xfree (reg->sortKeys.buf);
425     xfree (reg->keys.buf);
426
427     xfree (reg->key_buf);
428     xfree (reg->name);
429     xfree (reg);
430 }
431
432 int zebra_stop(ZebraService zs)
433 {
434     if (!zs)
435         return 0;
436     yaz_log (LOG_LOG|LOG_API, "zebra_stop");
437
438     while (zs->sessions)
439     {
440         zebra_close (zs->sessions);
441     }
442         
443     zebra_mutex_cond_destroy (&zs->session_lock);
444
445     if (zs->passwd_db)
446         passwd_db_close (zs->passwd_db);
447
448     res_close (zs->global_res);
449     xfree (zs->configName);
450     xfree (zs->path_root);
451     xfree (zs);
452     return 0;
453 }
454
455 int zebra_close (ZebraHandle zh)
456 {
457     ZebraService zs;
458     struct zebra_session **sp;
459     int i;
460
461     yaz_log(LOG_API,"zebra_close");
462     if (!zh)
463         return 0;
464     ASSERTZH;
465     zh->errCode=0;
466     
467     zs = zh->service;
468     yaz_log (LOG_DEBUG, "zebra_close zh=%p", zh);
469     resultSetDestroy (zh, -1, 0, 0);
470
471     if (zh->reg)
472         zebra_register_close (zh->service, zh->reg);
473     zebra_close_res (zh);
474
475     xfree (zh->record_encoding);
476
477     for (i = 0; i < zh->num_basenames; i++)
478         xfree (zh->basenames[i]);
479     xfree (zh->basenames);
480
481     if (zh->iconv_to_utf8 != 0)
482         yaz_iconv_close (zh->iconv_to_utf8);
483     if (zh->iconv_from_utf8 != 0)
484         yaz_iconv_close (zh->iconv_from_utf8);
485
486     xfree (zh->admin_databaseName);
487     zebra_mutex_cond_lock (&zs->session_lock);
488     zebra_lock_destroy (zh->lock_normal);
489     zebra_lock_destroy (zh->lock_shadow);
490     sp = &zs->sessions;
491     while (1)
492     {
493         assert (*sp);
494         if (*sp == zh)
495         {
496             *sp = (*sp)->next;
497             break;
498         }
499         sp = &(*sp)->next;
500     }
501     zebra_mutex_cond_unlock (&zs->session_lock);
502     xfree (zh->reg_name);
503     zh->service=0; /* more likely to trigger an assert */
504     xfree (zh);
505     return 0;
506 }
507
508 struct map_baseinfo {
509     ZebraHandle zh;
510     NMEM mem;
511     int num_bases;
512     char **basenames;
513     int new_num_bases;
514     char **new_basenames;
515     int new_num_max;
516 };
517
518 static Res zebra_open_res (ZebraHandle zh)
519 {
520     Res res = 0;
521     char fname[512];
522     ASSERTZH;
523     zh->errCode=0;
524
525     if (zh->path_reg)
526     {
527         sprintf (fname, "%.200s/zebra.cfg", zh->path_reg);
528         res = res_open (fname, zh->service->global_res);
529         if (!res)
530             res = zh->service->global_res;
531     }
532     else if (*zh->reg_name == 0)
533     {
534         res = zh->service->global_res;
535     }
536     else
537     {
538         yaz_log (LOG_WARN, "no register root specified");
539         return 0;  /* no path for register - fail! */
540     }
541     return res;
542 }
543
544 static void zebra_close_res (ZebraHandle zh)
545 {
546     ASSERTZH;
547     zh->errCode=0;
548     if (zh->res != zh->service->global_res)
549         res_close (zh->res);
550     zh->res = 0;
551 }
552
553 static int zebra_select_register (ZebraHandle zh, const char *new_reg)
554 {
555     ASSERTZH;
556     zh->errCode=0;
557     if (zh->res && strcmp (zh->reg_name, new_reg) == 0)
558         return 0;
559     if (!zh->res)
560     {
561         assert (zh->reg == 0);
562         assert (*zh->reg_name == 0);
563     }
564     else
565     {
566         if (zh->reg)
567         {
568             resultSetInvalidate (zh);
569             zebra_register_close (zh->service, zh->reg);
570             zh->reg = 0;
571         }
572         zebra_close_res(zh);
573     }
574     xfree (zh->reg_name);
575     zh->reg_name = xstrdup (new_reg);
576
577     xfree (zh->path_reg);
578     zh->path_reg = 0;
579     if (zh->service->path_root)
580     {
581         zh->path_reg = xmalloc (strlen(zh->service->path_root) + 
582                                 strlen(zh->reg_name) + 3);
583         strcpy (zh->path_reg, zh->service->path_root);
584         if (*zh->reg_name)
585         {
586             strcat (zh->path_reg, "/");
587             strcat (zh->path_reg, zh->reg_name);
588         }
589     }
590     zh->res = zebra_open_res (zh);
591     
592     if (zh->lock_normal)
593         zebra_lock_destroy (zh->lock_normal);
594     zh->lock_normal = 0;
595
596     if (zh->lock_shadow)
597         zebra_lock_destroy (zh->lock_shadow);
598     zh->lock_shadow = 0;
599
600     if (zh->res)
601     {
602         char fname[512];
603         const char *lock_area  =res_get (zh->res, "lockDir");
604         
605         if (!lock_area && zh->path_reg)
606             res_put (zh->res, "lockDir", zh->path_reg);
607         sprintf (fname, "norm.%s.LCK", zh->reg_name);
608         zh->lock_normal =
609             zebra_lock_create (res_get(zh->res, "lockDir"), fname, 0);
610         
611         sprintf (fname, "shadow.%s.LCK", zh->reg_name);
612         zh->lock_shadow =
613             zebra_lock_create (res_get(zh->res, "lockDir"), fname, 0);
614
615     }
616     return 1;
617 }
618
619 void map_basenames_func (void *vp, const char *name, const char *value)
620 {
621     struct map_baseinfo *p = (struct map_baseinfo *) vp;
622     int i, no;
623     char fromdb[128], todb[8][128];
624     
625     no =
626         sscanf (value, "%127s %127s %127s %127s %127s %127s %127s %127s %127s",
627                 fromdb, todb[0], todb[1], todb[2], todb[3], todb[4],
628                 todb[5], todb[6], todb[7]);
629     if (no < 2)
630         return ;
631     no--;
632     for (i = 0; i<p->num_bases; i++)
633         if (p->basenames[i] && !STRCASECMP (p->basenames[i], fromdb))
634         {
635             p->basenames[i] = 0;
636             for (i = 0; i < no; i++)
637             {
638                 if (p->new_num_bases == p->new_num_max)
639                     return;
640                 p->new_basenames[(p->new_num_bases)++] = 
641                     nmem_strdup (p->mem, todb[i]);
642             }
643             return;
644         }
645 }
646
647 void map_basenames (ZebraHandle zh, ODR stream,
648                     int *num_bases, char ***basenames)
649 {
650     struct map_baseinfo info;
651     struct map_baseinfo *p = &info;
652     int i;
653     ASSERTZH;
654     yaz_log(LOG_API,"map_basenames ");
655     zh->errCode=0;
656
657     info.zh = zh;
658     info.num_bases = *num_bases;
659     info.basenames = *basenames;
660     info.new_num_max = 128;
661     info.new_num_bases = 0;
662     info.new_basenames = (char **)
663         odr_malloc (stream, sizeof(*info.new_basenames) * info.new_num_max);
664     info.mem = stream->mem;
665
666     res_trav (zh->service->global_res, "mapdb", &info, map_basenames_func);
667     
668     for (i = 0; i<p->num_bases; i++)
669         if (p->basenames[i] && p->new_num_bases < p->new_num_max)
670         {
671             p->new_basenames[(p->new_num_bases)++] = 
672                 nmem_strdup (p->mem, p->basenames[i]);
673         }
674     *num_bases = info.new_num_bases;
675     *basenames = info.new_basenames;
676     for (i = 0; i<*num_bases; i++)
677         logf (LOG_LOG, "base %s", (*basenames)[i]);
678 }
679
680 int zebra_select_database (ZebraHandle zh, const char *basename)
681 {
682     ASSERTZH;
683     yaz_log(LOG_API,"zebra_select_database %s",basename);
684     zh->errCode=0;
685     return zebra_select_databases (zh, 1, &basename);
686 }
687
688 int zebra_select_databases (ZebraHandle zh, int num_bases,
689                             const char **basenames)
690 {
691     int i;
692     const char *cp;
693     int len = 0;
694     char *new_reg = 0;
695     ASSERTZH;
696     yaz_log(LOG_API,"zebra_select_databases n=%d [0]=%s",
697                     num_bases,basenames[0]);
698     zh->errCode=0;
699     
700     if (num_bases < 1)
701     {
702         zh->errCode = 23;
703         return -1;
704     }
705     for (i = 0; i < zh->num_basenames; i++)
706         xfree (zh->basenames[i]);
707     xfree (zh->basenames);
708     
709     zh->num_basenames = num_bases;
710     zh->basenames = xmalloc (zh->num_basenames * sizeof(*zh->basenames));
711     for (i = 0; i < zh->num_basenames; i++)
712         zh->basenames[i] = xstrdup (basenames[i]);
713
714     cp = strrchr(basenames[0], '/');
715     if (cp)
716     {
717         len = cp - basenames[0];
718         new_reg = xmalloc (len + 1);
719         memcpy (new_reg, basenames[0], len);
720         new_reg[len] = '\0';
721     }
722     else
723         new_reg = xstrdup ("");
724     for (i = 1; i<num_bases; i++)
725     {
726         const char *cp1;
727
728         cp1 = strrchr (basenames[i], '/');
729         if (cp)
730         {
731             if (!cp1)
732             {
733                 zh->errCode = 23;
734                 return -1;
735             }
736             if (len != cp1 - basenames[i] ||
737                 memcmp (basenames[i], new_reg, len))
738             {
739                 zh->errCode = 23;
740                 return -1;
741             }
742         }
743         else
744         {
745             if (cp1)
746             {
747                 zh->errCode = 23;
748                 return -1;
749             }
750         }
751     }
752     zebra_select_register (zh, new_reg);
753     xfree (new_reg);
754     if (!zh->res)
755     {
756         zh->errCode = 109;
757         return -1;
758     }
759     if (!zh->lock_normal || !zh->lock_shadow)
760     {
761         zh->errCode = 2;
762         return -1;
763     }
764     return 0;
765 }
766
767 int zebra_search_RPN (ZebraHandle zh, ODR o,
768                        Z_RPNQuery *query, const char *setname, int *hits)
769 {
770     ASSERTZH;
771     yaz_log(LOG_API,"zebra_search_rpn");
772     zh->errCode=0;
773     zh->hits = 0;
774     *hits = 0;
775
776     if (zebra_begin_read (zh))
777         return 1;
778
779     zebra_livcode_transform(zh, query);
780
781     resultSetAddRPN (zh, odr_extract_mem(o), query, 
782                      zh->num_basenames, zh->basenames, setname);
783
784     zebra_end_read (zh);
785
786     *hits = zh->hits;
787     return 0;
788 }
789
790 int zebra_records_retrieve (ZebraHandle zh, ODR stream,
791                              const char *setname, Z_RecordComposition *comp,
792                              oid_value input_format, int num_recs,
793                              ZebraRetrievalRecord *recs)
794 {
795     ZebraPosSet poset;
796     int i, *pos_array;
797     ASSERTZH;
798     yaz_log(LOG_API,"zebra_records_retrieve n=%d",num_recs);
799     zh->errCode=0;
800
801     if (!zh->res)
802     {
803         zh->errCode = 30;
804         zh->errString = odr_strdup (stream, setname);
805         return 1;
806     }
807     
808     zh->errCode = 0;
809
810     if (zebra_begin_read (zh))
811         return 1;
812
813     pos_array = (int *) xmalloc (num_recs * sizeof(*pos_array));
814     for (i = 0; i<num_recs; i++)
815         pos_array[i] = recs[i].position;
816     poset = zebraPosSetCreate (zh, setname, num_recs, pos_array);
817     if (!poset)
818     {
819         logf (LOG_DEBUG, "zebraPosSetCreate error");
820         zh->errCode = 30;
821         zh->errString = nmem_strdup (stream->mem, setname);
822     }
823     else
824     {
825         for (i = 0; i<num_recs; i++)
826         {
827             if (poset[i].term)
828             {
829                 recs[i].errCode = 0;
830                 recs[i].format = VAL_SUTRS;
831                 recs[i].len = strlen(poset[i].term);
832                 recs[i].buf = poset[i].term;
833                 recs[i].base = poset[i].db;
834             }
835             else if (poset[i].sysno)
836             {
837                 recs[i].errCode =
838                     zebra_record_fetch (zh, poset[i].sysno, poset[i].score,
839                                         stream, input_format, comp,
840                                         &recs[i].format, &recs[i].buf,
841                                         &recs[i].len,
842                                         &recs[i].base);
843                 recs[i].errString = NULL;
844             }
845             else
846             {
847                 char num_str[20];
848
849                 sprintf (num_str, "%d", pos_array[i]);  
850                 zh->errCode = 13;
851                 zh->errString = odr_strdup (stream, num_str);
852                 break;
853             }
854         }
855         zebraPosSetDestroy (zh, poset, num_recs);
856     }
857     zebra_end_read (zh);
858     xfree (pos_array);
859     return 0;
860 }
861
862 int zebra_scan (ZebraHandle zh, ODR stream, Z_AttributesPlusTerm *zapt,
863                  oid_value attributeset,
864                  int *position, int *num_entries, ZebraScanEntry **entries,
865                  int *is_partial)
866 {
867     ASSERTZH;
868     yaz_log(LOG_API,"zebra_scan");
869     zh->errCode=0;
870     if (zebra_begin_read (zh))
871     {
872         *entries = 0;
873         *num_entries = 0;
874         return 1;
875     }
876     rpn_scan (zh, stream, zapt, attributeset,
877               zh->num_basenames, zh->basenames, position,
878               num_entries, entries, is_partial, 0, 0);
879     zebra_end_read (zh);
880     return 0;
881 }
882
883 int zebra_sort (ZebraHandle zh, ODR stream,
884                  int num_input_setnames, const char **input_setnames,
885                  const char *output_setname, Z_SortKeySpecList *sort_sequence,
886                  int *sort_status)
887 {
888     ASSERTZH;
889     yaz_log(LOG_API,"zebra_sort");
890     zh->errCode=0;
891     if (zebra_begin_read (zh))
892         return 1;
893     resultSetSort (zh, stream->mem, num_input_setnames, input_setnames,
894                    output_setname, sort_sequence, sort_status);
895     zebra_end_read(zh);
896     return 0;
897 }
898
899 int zebra_deleleResultSet(ZebraHandle zh, int function,
900                           int num_setnames, char **setnames,
901                           int *statuses)
902 {
903     int i, status;
904     ASSERTZH;
905     yaz_log(LOG_API,"zebra_deleleResultSet n=%d",num_setnames);
906     zh->errCode=0;
907     if (zebra_begin_read(zh))
908         return Z_DeleteStatus_systemProblemAtTarget;
909     switch (function)
910     {
911     case Z_DeleteRequest_list:
912         resultSetDestroy (zh, num_setnames, setnames, statuses);
913         break;
914     case Z_DeleteRequest_all:
915         resultSetDestroy (zh, -1, 0, statuses);
916         break;
917     }
918     zebra_end_read (zh);
919     status = Z_DeleteStatus_success;
920     for (i = 0; i<num_setnames; i++)
921         if (statuses[i] == Z_DeleteStatus_resultSetDidNotExist)
922             status = statuses[i];
923     return status;
924 }
925
926 int zebra_errCode (ZebraHandle zh)
927 {
928     if (zh)
929     {
930         yaz_log(LOG_API,"zebra_errCode: %d",zh->errCode);
931         return zh->errCode;
932     }
933     yaz_log(LOG_API,"zebra_errCode: o");
934     return 0; 
935 }
936
937 const char *zebra_errString (ZebraHandle zh)
938 {
939     const char *e="";
940     if (zh)
941         e= diagbib1_str (zh->errCode);
942     yaz_log(LOG_API,"zebra_errString: %s",e);
943     return e;
944 }
945
946 char *zebra_errAdd (ZebraHandle zh)
947 {
948     char *a="";
949     if (zh)
950         a= zh->errString;
951     yaz_log(LOG_API,"zebra_errAdd: %s",a);
952     return a;
953 }
954
955 void zebra_clearError(ZebraHandle zh)
956 {
957     if (zh)
958     {
959         zh->errCode=0;
960         zh->errString="";
961     }
962 }
963
964 int zebra_auth (ZebraHandle zh, const char *user, const char *pass)
965 {
966     ZebraService zs;
967     ASSERTZH;
968     yaz_log(LOG_API,"zebra_auth u=%s p=%s",user,pass);
969     zh->errCode=0;
970     zs= zh->service;
971     if (!zs->passwd_db || !passwd_db_auth (zs->passwd_db, user, pass))
972     {
973         logf(LOG_APP,"AUTHOK:%s", user?user:"ANONYMOUS");
974         return 0;
975     }
976
977     logf(LOG_APP,"AUTHFAIL:%s", user?user:"ANONYMOUS");
978     return 1;
979 }
980
981 int zebra_admin_import_begin (ZebraHandle zh, const char *database,
982                                const char *record_type)
983 {
984     ASSERTZH;
985     yaz_log(LOG_API,"zebra_admin_import_begin db=%s rt=%s", 
986                      database, record_type);
987     zh->errCode=0;
988     if (zebra_select_database(zh, database))
989         return 1;
990     zebra_begin_trans (zh, 1);
991     xfree (zh->admin_databaseName);
992     zh->admin_databaseName = xstrdup(database);
993     return 0;
994 }
995
996 int zebra_admin_import_end (ZebraHandle zh)
997 {
998     ASSERTZH;
999     yaz_log(LOG_API,"zebra_admin_import_end");
1000     zh->errCode=0;
1001     zebra_end_trans (zh);
1002     return 0;
1003 }
1004
1005 int zebra_admin_import_segment (ZebraHandle zh, Z_Segment *segment)
1006 {
1007     int sysno;
1008     int i;
1009     ASSERTZH;
1010     yaz_log(LOG_API,"zebra_admin_import_segment");
1011     zh->errCode=0;
1012     for (i = 0; i<segment->num_segmentRecords; i++)
1013     {
1014         Z_NamePlusRecord *npr = segment->segmentRecords[i];
1015         const char *databaseName = npr->databaseName;
1016
1017         if (!databaseName)
1018             databaseName = zh->admin_databaseName;
1019         printf ("--------------%d--------------------\n", i);
1020         if (npr->which == Z_NamePlusRecord_intermediateFragment)
1021         {
1022             Z_FragmentSyntax *fragment = npr->u.intermediateFragment;
1023             if (fragment->which == Z_FragmentSyntax_notExternallyTagged)
1024             {
1025                 Odr_oct *oct = fragment->u.notExternallyTagged;
1026                 printf ("%.*s", (oct->len > 100 ? 100 : oct->len) ,
1027                         oct->buf);
1028                 
1029                 sysno = 0;
1030                 extract_rec_in_mem (zh, "grs.sgml",
1031                                     oct->buf, oct->len,
1032                                     databaseName,
1033                                     0 /* delete_flag */,
1034                                     0 /* test_mode */,
1035                                     &sysno /* sysno */,
1036                                     1 /* store_keys */,
1037                                     1 /* store_data */,
1038                                     0 /* match criteria */);
1039             }
1040         }
1041     }
1042     return 0;
1043 }
1044
1045 int zebra_admin_exchange_record (ZebraHandle zh,
1046                                  const char *database,
1047                                  const char *rec_buf,
1048                                  size_t rec_len,
1049                                  const char *recid_buf, size_t recid_len,
1050                                  int action)
1051 {
1052     int sysno = 0;
1053     char *rinfo = 0;
1054     char recid_z[256];
1055     ASSERTZH;
1056     yaz_log(LOG_API,"zebra_admin_exchange_record db=%s ac=%d",
1057                     database, action);
1058     zh->errCode=0;
1059
1060     if (!recid_buf || recid_len <= 0 || recid_len >= sizeof(recid_z))
1061         return -1;
1062     memcpy (recid_z, recid_buf, recid_len);
1063     recid_z[recid_len] = 0;
1064
1065     zebra_begin_trans(zh,1);
1066
1067     rinfo = dict_lookup (zh->reg->matchDict, recid_z);
1068     if (rinfo)
1069     {
1070         if (action == 1)  /* fail if insert */
1071         {
1072              zebra_end_trans(zh);
1073              return -1;
1074         }
1075
1076         memcpy (&sysno, rinfo+1, sizeof(sysno));
1077     }
1078     else
1079     {
1080         if (action == 2 || action == 3) /* fail if delete or update */
1081         {
1082             zebra_end_trans(zh);
1083             return -1;
1084         }
1085     }
1086     extract_rec_in_mem (zh, "grs.sgml", rec_buf, rec_len, database,
1087                         action == 3 ? 1 : 0 /* delete flag */,
1088                         0, &sysno, 1, 1, 0);
1089     if (action == 1)
1090     {
1091         dict_insert (zh->reg->matchDict, recid_z, sizeof(sysno), &sysno);
1092     }
1093     else if (action == 3)
1094     {
1095         dict_delete (zh->reg->matchDict, recid_z);
1096     }
1097     zebra_end_trans(zh);
1098     return 0;
1099 }
1100
1101 int delete_w_handle(const char *info, void *handle)
1102 {
1103     ZebraHandle zh = (ZebraHandle) handle;
1104     ISAMC_P pos;
1105
1106     if (*info == sizeof(pos))
1107     {
1108         memcpy (&pos, info+1, sizeof(pos));
1109         isamb_unlink(zh->reg->isamb, pos);
1110     }
1111     return 0;
1112 }
1113
1114 static int delete_SU_handle(void *handle, int ord)
1115 {
1116     ZebraHandle zh = (ZebraHandle) handle;
1117     char ord_buf[20];
1118     int ord_len;
1119
1120     ord_len = key_SU_encode (ord, ord_buf);
1121     ord_buf[ord_len] = '\0';
1122
1123     assert (zh->reg->isamb);
1124     dict_delete_subtree(zh->reg->dict, ord_buf,
1125                         zh, delete_w_handle);
1126     return 0;
1127 }
1128
1129 int zebra_drop_database  (ZebraHandle zh, const char *database)
1130 {
1131     ASSERTZH;
1132     yaz_log(LOG_API,"zebra_drop_database");
1133     zh->errCode = 0;
1134
1135     if (zebra_select_database (zh, database))
1136         return -1;
1137     if (zebra_begin_trans (zh, 1))
1138         return -1;
1139     if (zh->reg->isamb)
1140     {
1141         zebraExplain_curDatabase (zh->reg->zei, database);
1142         
1143         zebraExplain_trav_ord(zh->reg->zei, zh, delete_SU_handle);
1144         zebraExplain_removeDatabase(zh->reg->zei, zh);
1145     }
1146     zebra_end_trans (zh);
1147     return 0;
1148 }
1149
1150 int zebra_create_database (ZebraHandle zh, const char *database)
1151 {
1152     ASSERTZH;
1153     yaz_log(LOG_API,"zebra_create_database");
1154     zh->errCode=0;
1155
1156     if (zebra_select_database (zh, database))
1157         return -1;
1158     if (zebra_begin_trans (zh, 1))
1159         return -1;
1160
1161     /* announce database */
1162     if (zebraExplain_newDatabase (zh->reg->zei, database, 0 
1163                                   /* explainDatabase */))
1164     {
1165         zebra_end_trans (zh);
1166         zh->errCode = 224;
1167         zh->errString = "database already exist";
1168         return -1;
1169     }
1170     zebra_end_trans (zh);
1171     return 0;
1172 }
1173
1174 int zebra_string_norm (ZebraHandle zh, unsigned reg_id,
1175                        const char *input_str, int input_len,
1176                        char *output_str, int output_len)
1177 {
1178     WRBUF wrbuf;
1179     ASSERTZH;
1180     yaz_log(LOG_API,"zebra_string_norm ");
1181     zh->errCode=0;
1182     if (!zh->reg->zebra_maps)
1183         return -1;
1184     wrbuf = zebra_replace(zh->reg->zebra_maps, reg_id, "",
1185                           input_str, input_len);
1186     if (!wrbuf)
1187         return -2;
1188     if (wrbuf_len(wrbuf) >= output_len)
1189         return -3;
1190     if (wrbuf_len(wrbuf))
1191         memcpy (output_str, wrbuf_buf(wrbuf), wrbuf_len(wrbuf));
1192     output_str[wrbuf_len(wrbuf)] = '\0';
1193     return wrbuf_len(wrbuf);
1194 }
1195
1196
1197 int zebra_set_state (ZebraHandle zh, int val, int seqno)
1198 {
1199     char state_fname[256];
1200     char *fname;
1201     long p = getpid();
1202     FILE *f;
1203     ASSERTZH;
1204     yaz_log(LOG_API,"zebra_set_state v=%d seq=%d", val, seqno);
1205     zh->errCode=0;
1206
1207     sprintf (state_fname, "state.%s.LCK", zh->reg_name);
1208     fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
1209     f = fopen (fname, "w");
1210
1211     yaz_log (LOG_DEBUG, "%c %d %ld", val, seqno, p);
1212     fprintf (f, "%c %d %ld\n", val, seqno, p);
1213     fclose (f);
1214     xfree (fname);
1215     return 0;
1216 }
1217
1218 int zebra_get_state (ZebraHandle zh, char *val, int *seqno)
1219 {
1220     char state_fname[256];
1221     char *fname;
1222     FILE *f;
1223
1224     ASSERTZH;
1225     yaz_log(LOG_API,"zebra_get_state ");
1226     zh->errCode=0;
1227     sprintf (state_fname, "state.%s.LCK", zh->reg_name);
1228     fname = zebra_mk_fname (res_get(zh->res, "lockDir"), state_fname);
1229     f = fopen (fname, "r");
1230     *val = 'o';
1231     *seqno = 0;
1232
1233     if (f)
1234     {
1235         fscanf (f, "%c %d", val, seqno);
1236         fclose (f);
1237     }
1238     xfree (fname);
1239     return 0;
1240 }
1241
1242 int zebra_begin_read (ZebraHandle zh)
1243 {
1244     return zebra_begin_trans(zh, 0);
1245 }
1246
1247 int zebra_end_read (ZebraHandle zh)
1248 {
1249     return zebra_end_trans(zh);
1250 }
1251
1252 int zebra_begin_trans (ZebraHandle zh, int rw)
1253 {
1254     yaz_log(LOG_LOG, "zebra_begin_trans rw=%d trans=%d", rw, zh->trans_no);
1255     if (!zh->res)
1256     {
1257         zh->errCode = 2;
1258         zh->errString = "zebra_begin_trans: no database selected";
1259         return -1;
1260     }
1261     ASSERTZHRES;
1262     yaz_log(LOG_API,"zebra_begin_trans rw=%d",rw);
1263     assert (zh->res);
1264     if (rw)
1265     {
1266         int pass;
1267         int seqno = 0;
1268         char val = '?';
1269         const char *rval = 0;
1270         
1271         (zh->trans_no++);
1272         if (zh->trans_w_no)
1273             return 0;
1274         if (zh->trans_no != 1)
1275         {
1276             zh->errCode = 2;
1277             zh->errString = "zebra_begin_trans: write trans not allowed within read trans";
1278             return -1;
1279         }
1280         if (zh->reg)
1281         {
1282             resultSetInvalidate (zh);
1283             zebra_register_close (zh->service, zh->reg);
1284         }
1285         zh->trans_w_no = zh->trans_no;
1286
1287         zh->errCode=0;
1288         
1289         zh->records_inserted = 0;
1290         zh->records_updated = 0;
1291         zh->records_deleted = 0;
1292         zh->records_processed = 0;
1293         
1294 #if HAVE_SYS_TIMES_H
1295         times (&zh->tms1);
1296 #endif
1297         /* lock */
1298         if (zh->shadow_enable)
1299             rval = res_get (zh->res, "shadow");
1300         
1301         for (pass = 0; pass < 2; pass++)
1302         {
1303             if (rval)
1304             {
1305                 zebra_lock_r (zh->lock_normal);
1306                 zebra_lock_w (zh->lock_shadow);
1307             }
1308             else
1309             {
1310                 zebra_lock_w (zh->lock_normal);
1311                 zebra_lock_w (zh->lock_shadow);
1312             }
1313             
1314             zebra_get_state (zh, &val, &seqno);
1315             if (val == 'c')
1316             {
1317                 yaz_log (LOG_LOG, "previous transaction didn't finish commit");
1318                 zebra_unlock (zh->lock_shadow);
1319                 zebra_unlock (zh->lock_normal);
1320                 zebra_commit (zh);
1321                 continue;
1322             }
1323             else if (val == 'd')
1324             {
1325                 if (rval)
1326                 {
1327                     BFiles bfs = bfs_create (res_get (zh->res, "shadow"),
1328                                              zh->path_reg);
1329                     yaz_log (LOG_LOG, "previous transaction didn't reach commit");
1330                     bf_commitClean (bfs, rval);
1331                     bfs_destroy (bfs);
1332             }
1333                 else
1334                 {
1335                     yaz_log (LOG_WARN, "your previous transaction didn't finish");
1336                 }
1337             }
1338             break;
1339         }
1340         if (pass == 2)
1341         {
1342             yaz_log (LOG_FATAL, "zebra_begin_trans couldn't finish commit");
1343             abort();
1344             return -1;
1345         }
1346         zebra_set_state (zh, 'd', seqno);
1347         
1348         zh->reg = zebra_register_open (zh->service, zh->reg_name,
1349                                        1, rval ? 1 : 0, zh->res,
1350                                        zh->path_reg);
1351         if (zh->reg)
1352             zh->reg->seqno = seqno;
1353         else
1354         {
1355             zebra_set_state (zh, 'o', seqno);
1356             
1357             zebra_unlock (zh->lock_shadow);
1358             zebra_unlock (zh->lock_normal);
1359
1360             zh->trans_no--;
1361             zh->trans_w_no = 0;
1362
1363             zh->errCode = 2;
1364             zh->errString = "zebra_begin_trans: cannot open register";
1365             yaz_log(LOG_FATAL, zh->errString);
1366             return -1;
1367         }
1368     }
1369     else
1370     {
1371         int dirty = 0;
1372         char val;
1373         int seqno;
1374         
1375         (zh->trans_no)++;
1376         
1377         if (zh->trans_no != 1)
1378         {
1379             zebra_flush_reg (zh);
1380             return 0;
1381         }
1382         zh->errCode=0;
1383 #if HAVE_SYS_TIMES_H
1384         times (&zh->tms1);
1385 #endif
1386         if (!zh->res)
1387         {
1388             (zh->trans_no)--;
1389             zh->errCode = 109;
1390             return -1;
1391         }
1392         if (!zh->lock_normal || !zh->lock_shadow)
1393         {
1394             (zh->trans_no)--;
1395             zh->errCode = 2;
1396             return -1;
1397         }
1398         zebra_get_state (zh, &val, &seqno);
1399         if (val == 'd')
1400             val = 'o';
1401         
1402         if (!zh->reg)
1403             dirty = 1;
1404         else if (seqno != zh->reg->seqno)
1405         {
1406             yaz_log (LOG_LOG, "reopen seqno cur/old %d/%d",
1407                      seqno, zh->reg->seqno);
1408             dirty = 1;
1409         }
1410         else if (zh->reg->last_val != val)
1411         {
1412             yaz_log (LOG_LOG, "reopen last cur/old %d/%d",
1413                      val, zh->reg->last_val);
1414             dirty = 1;
1415         }
1416         if (!dirty)
1417             return 0;
1418         
1419         if (val == 'c')
1420             zebra_lock_r (zh->lock_shadow);
1421         else
1422             zebra_lock_r (zh->lock_normal);
1423         
1424         if (zh->reg)
1425             zebra_register_close (zh->service, zh->reg);
1426         zh->reg = zebra_register_open (zh->service, zh->reg_name,
1427                                        0, val == 'c' ? 1 : 0,
1428                                        zh->res, zh->path_reg);
1429         if (!zh->reg)
1430         {
1431             zebra_unlock (zh->lock_normal);
1432             zebra_unlock (zh->lock_shadow);
1433             zh->trans_no--;
1434             zh->errCode = 109;
1435             return -1;
1436         }
1437         zh->reg->last_val = val;
1438         zh->reg->seqno = seqno;
1439     }
1440     return 0;
1441 }
1442
1443 int zebra_end_trans (ZebraHandle zh)
1444 {
1445     ZebraTransactionStatus dummy;
1446     yaz_log(LOG_API,"zebra_end_trans");
1447     return zebra_end_transaction(zh, &dummy);
1448 }
1449
1450 int zebra_end_transaction (ZebraHandle zh, ZebraTransactionStatus *status)
1451 {
1452     char val;
1453     int seqno;
1454     const char *rval;
1455
1456     ASSERTZH;
1457     yaz_log(LOG_API,"zebra_end_transaction");
1458
1459     status->processed = 0;
1460     status->inserted  = 0;
1461     status->updated   = 0;
1462     status->deleted   = 0;
1463     status->utime     = 0;
1464     status->stime     = 0;
1465
1466     if (!zh->res || !zh->reg)
1467     {
1468         zh->errCode = 2;
1469         zh->errString = "zebra_end_trans: no open transaction";
1470         return -1;
1471     }
1472     if (zh->trans_no != zh->trans_w_no)
1473     {
1474         zh->trans_no--;
1475         if (zh->trans_no != 0)
1476             return 0;
1477
1478         /* release read lock */
1479
1480         zebra_unlock (zh->lock_normal);
1481         zebra_unlock (zh->lock_shadow);
1482     }
1483     else
1484     {   /* release write lock */
1485         zh->trans_no--;
1486         zh->trans_w_no = 0;
1487         
1488         yaz_log (LOG_LOG, "zebra_end_trans");
1489         rval = res_get (zh->res, "shadow");
1490         
1491         zebraExplain_runNumberIncrement (zh->reg->zei, 1);
1492         
1493         zebra_flush_reg (zh);
1494         
1495         resultSetInvalidate (zh);
1496
1497         zebra_register_close (zh->service, zh->reg);
1498         zh->reg = 0;
1499         
1500         yaz_log (LOG_LOG, "Records: %7d i/u/d %d/%d/%d", 
1501                  zh->records_processed, zh->records_inserted,
1502                  zh->records_updated, zh->records_deleted);
1503         
1504         status->processed = zh->records_processed;
1505         status->inserted = zh->records_inserted;
1506         status->updated = zh->records_updated;
1507         status->deleted = zh->records_deleted;
1508         
1509         zebra_get_state (zh, &val, &seqno);
1510         if (val != 'd')
1511         {
1512             BFiles bfs = bfs_create (rval, zh->path_reg);
1513             yaz_log (LOG_LOG, "deleting shadow stuff val=%c", val);
1514             bf_commitClean (bfs, rval);
1515             bfs_destroy (bfs);
1516         }
1517         if (!rval)
1518             seqno++;
1519         zebra_set_state (zh, 'o', seqno);
1520         
1521         zebra_unlock (zh->lock_shadow);
1522         zebra_unlock (zh->lock_normal);
1523         
1524     }
1525 #if HAVE_SYS_TIMES_H
1526     times (&zh->tms2);
1527     logf (LOG_LOG, "user/system: %ld/%ld",
1528           (long) (zh->tms2.tms_utime - zh->tms1.tms_utime),
1529           (long) (zh->tms2.tms_stime - zh->tms1.tms_stime));
1530     
1531     status->utime = (long) (zh->tms2.tms_utime - zh->tms1.tms_utime);
1532     status->stime = (long) (zh->tms2.tms_stime - zh->tms1.tms_stime);
1533 #endif
1534     return 0;
1535 }
1536
1537 int zebra_repository_update (ZebraHandle zh)
1538 {
1539     ASSERTZH;
1540     zh->errCode=0;
1541     logf (LOG_LOG|LOG_API, "updating %s", zh->rGroup.path);
1542     repositoryUpdate (zh);    
1543     return zh->errCode;
1544 }
1545
1546 int zebra_repository_delete (ZebraHandle zh)
1547 {
1548     ASSERTZH;
1549     zh->errCode=0;
1550     logf (LOG_LOG|LOG_API, "deleting %s", zh->rGroup.path);
1551     repositoryDelete (zh);
1552     return zh->errCode;
1553 }
1554
1555 int zebra_repository_show (ZebraHandle zh)
1556 {
1557     ASSERTZH;
1558     yaz_log(LOG_API,"zebra_repository_show");
1559     zh->errCode=0;
1560     repositoryShow (zh);
1561     return zh->errCode;
1562 }
1563
1564 static int zebra_commit_ex (ZebraHandle zh, int clean_only)
1565 {
1566     int seqno;
1567     char val;
1568     const char *rval;
1569     BFiles bfs;
1570     ASSERTZH;
1571     zh->errCode=0;
1572
1573     if (!zh->res)
1574     {
1575         zh->errCode = 109;
1576         return -1;
1577     }
1578     rval = res_get (zh->res, "shadow");    
1579     if (!rval)
1580     {
1581         logf (LOG_WARN, "Cannot perform commit");
1582         logf (LOG_WARN, "No shadow area defined");
1583         return 0;
1584     }
1585
1586     zebra_lock_w (zh->lock_normal);
1587     zebra_lock_r (zh->lock_shadow);
1588
1589     bfs = bfs_create (res_get (zh->res, "register"), zh->path_reg);
1590
1591     zebra_get_state (zh, &val, &seqno);
1592
1593     if (rval && *rval)
1594         bf_cache (bfs, rval);
1595     if (bf_commitExists (bfs))
1596     {
1597         if (clean_only)
1598             zebra_set_state (zh, 'd', seqno);
1599         else
1600         {
1601             zebra_set_state (zh, 'c', seqno);
1602             
1603             logf (LOG_LOG, "commit start");
1604             bf_commitExec (bfs);
1605 #ifndef WIN32
1606             sync ();
1607 #endif
1608         }
1609         logf (LOG_LOG, "commit clean");
1610         bf_commitClean (bfs, rval);
1611         seqno++;
1612         zebra_set_state (zh, 'o', seqno);
1613     }
1614     else
1615     {
1616         logf (LOG_LOG, "nothing to commit");
1617     }
1618     bfs_destroy (bfs);
1619
1620     zebra_unlock (zh->lock_shadow);
1621     zebra_unlock (zh->lock_normal);
1622     return 0;
1623 }
1624
1625 int zebra_clean (ZebraHandle zh)
1626 {
1627     yaz_log(LOG_API,"zebra_clean");
1628     return zebra_commit_ex(zh, 1);
1629 }
1630
1631 int zebra_commit (ZebraHandle zh)
1632 {
1633     yaz_log(LOG_API,"zebra_commit");
1634     return zebra_commit_ex(zh, 0);
1635 }
1636
1637 int zebra_init (ZebraHandle zh)
1638 {
1639     const char *rval;
1640     BFiles bfs = 0;
1641     ASSERTZH;
1642     yaz_log(LOG_API,"zebra_init");
1643     zh->errCode=0;
1644
1645     if (!zh->res)
1646     {
1647         zh->errCode = 109;
1648         return -1;
1649     }
1650     rval = res_get (zh->res, "shadow");
1651
1652     bfs = bfs_create (res_get (zh->service->global_res, "register"),
1653                       zh->path_reg);
1654     if (rval && *rval)
1655         bf_cache (bfs, rval);
1656     
1657     bf_reset (bfs);
1658     bfs_destroy (bfs);
1659     zebra_set_state (zh, 'o', 0);
1660     return 0;
1661 }
1662
1663 int zebra_compact (ZebraHandle zh)
1664 {
1665     BFiles bfs;
1666     ASSERTZH;
1667     yaz_log(LOG_API,"zebra_compact");
1668     zh->errCode=0;
1669     if (!zh->res)
1670     {
1671         zh->errCode = 109;
1672         return -1;
1673     }
1674     bfs = bfs_create (res_get (zh->res, "register"), zh->path_reg);
1675     inv_compact (bfs);
1676     bfs_destroy (bfs);
1677     return 0;
1678 }
1679
1680 int zebra_record_insert (ZebraHandle zh, const char *buf, int len, int *sysno)
1681 {
1682     int sysn=0;
1683     ASSERTZH;
1684     yaz_log(LOG_API,"zebra_record_insert");
1685     if (sysno)
1686         *sysno=0;
1687     zh->errCode=0;
1688     if (zebra_begin_trans (zh, 1))
1689         return -1;
1690     extract_rec_in_mem (zh, "grs.sgml",
1691                         buf, len,
1692                         "Default",  /* database */
1693                         0 /* delete_flag */,
1694                         0 /* test_mode */,
1695                         &sysn /* sysno */,
1696                         1 /* store_keys */,
1697                         1 /* store_data */,
1698                         0 /* match criteria */);
1699     if (zebra_end_trans (zh))
1700         return -1;
1701     if (sysno)
1702         *sysno=sysn;
1703     return 0;
1704 }
1705
1706 int zebra_set_group (ZebraHandle zh, struct recordGroup *rg)
1707 {
1708     ASSERTZH;
1709     yaz_log(LOG_API,"zebra_set_group");
1710     zh->errCode=0;
1711     memcpy (&zh->rGroup, rg, sizeof(*rg));
1712     return 0;
1713 }
1714
1715 int zebra_result (ZebraHandle zh, int *code, char **addinfo)
1716 {
1717     ASSERTZH;
1718     yaz_log(LOG_API,"zebra_result");
1719     *code = zh->errCode;
1720     *addinfo = zh->errString;
1721     return 0;
1722 }
1723
1724 int zebra_shadow_enable (ZebraHandle zh, int value)
1725 {
1726     ASSERTZH;
1727     yaz_log(LOG_API,"zebra_shadow_enable");
1728     zh->errCode=0;
1729     zh->shadow_enable = value;
1730     return 0;
1731 }
1732
1733 int zebra_record_encoding (ZebraHandle zh, const char *encoding)
1734 {
1735     ASSERTZH;
1736     yaz_log(LOG_API,"zebra_record_encoding");
1737     zh->errCode=0;
1738     xfree (zh->record_encoding);
1739
1740     /*
1741      * Fixme!
1742      * Something about charset aliases. Oleg???
1743      */
1744
1745     if (zh->iconv_to_utf8 != 0)
1746         yaz_iconv_close(zh->iconv_to_utf8);
1747     if (zh->iconv_from_utf8 != 0)
1748         yaz_iconv_close(zh->iconv_from_utf8);
1749     
1750     zh->record_encoding = xstrdup (encoding);
1751     
1752     logf(LOG_DEBUG, "Reset record encoding: %s", encoding);
1753     
1754     zh->iconv_to_utf8 =
1755         yaz_iconv_open ("UTF-8", encoding);
1756     if (zh->iconv_to_utf8 == 0)
1757         yaz_log (LOG_WARN, "iconv: %s to UTF-8 unsupported", encoding);
1758     zh->iconv_from_utf8 =
1759         yaz_iconv_open (encoding, "UTF-8");
1760     if (zh->iconv_to_utf8 == 0)
1761         yaz_log (LOG_WARN, "iconv: UTF-8 to %s unsupported", encoding);
1762
1763     return 0;
1764 }
1765
1766 int zebra_set_resource(ZebraHandle zh, const char *name, const char *value)
1767 {
1768     ASSERTZH;
1769     yaz_log(LOG_API,"zebra_set_resource %s:%s",name,value);
1770     zh->errCode=0;
1771     res_put(zh->res, name, value);
1772     return 0;
1773 }
1774
1775 const char *zebra_get_resource(ZebraHandle zh,
1776                                const char *name, const char *defaultvalue)
1777 {
1778     const char *v;
1779     ASSERTZH;
1780     v= res_get_def( zh->res, name, (char *)defaultvalue);
1781     zh->errCode=0;
1782     yaz_log(LOG_API,"zebra_get_resource %s:%s",name,v);
1783     return v;
1784 }
1785
1786 /* moved from zebra_api_ext.c by pop */
1787 /* FIXME: Should this really be public??? -Heikki */
1788
1789 int zebra_trans_no (ZebraHandle zh)
1790 {
1791     ASSERTZH;
1792     yaz_log(LOG_API,"zebra_trans_no");
1793     return zh->trans_no;
1794 }
1795
1796 int zebra_get_shadow_enable (ZebraHandle zh)
1797 {
1798     yaz_log(LOG_API,"zebra_get_shadow_enable");
1799     return (zh->shadow_enable);
1800 }
1801
1802 int zebra_set_shadow_enable (ZebraHandle zh, int value)
1803 {
1804     yaz_log(LOG_API,"zebra_set_shadow_enable %d",value);
1805     zh->shadow_enable = value;
1806     return 0;
1807 }
1808
1809 int init_recordGroup (struct recordGroup *rg)
1810 {
1811     assert(rg);
1812     yaz_log(LOG_API,"init_recordGroup");
1813     rg->groupName = NULL;
1814     rg->databaseName = NULL;
1815     rg->path = NULL;
1816     rg->recordId = NULL;
1817     rg->recordType = NULL;
1818     rg->flagStoreData = -1;
1819     rg->flagStoreKeys = -1; 
1820     rg->flagRw = 1;
1821     rg->databaseNamePath = 0;
1822     rg->explainDatabase = 0; 
1823     rg->fileVerboseLimit = 100000; 
1824     rg->followLinks = -1;
1825     return 0;
1826
1827
1828
1829 /* This is from extract.c... it seems useful, when extract_rec_in mem is 
1830    called... and in general... Should be moved to somewhere else */
1831 void res_get_recordGroup (ZebraHandle zh,
1832                           struct recordGroup *rGroup,
1833                           const char *ext)
1834 {
1835     char gprefix[128];
1836     char ext_res[128]; 
1837     
1838     yaz_log(LOG_API,"res_get_recordGroup e=%s",ext);
1839     if (!rGroup->groupName || !*rGroup->groupName)
1840         *gprefix = '\0';
1841     else 
1842         sprintf (gprefix, "%s.", rGroup->groupName);
1843     
1844     /* determine file type - depending on extension */
1845     if (!rGroup->recordType) {
1846         sprintf (ext_res, "%srecordType.%s", gprefix, ext);
1847         if (!(rGroup->recordType = res_get (zh->res, ext_res))) {
1848             sprintf (ext_res, "%srecordType", gprefix);
1849             rGroup->recordType = res_get (zh->res, ext_res);
1850         }
1851     }
1852     /* determine match criteria */
1853     if (!rGroup->recordId) { 
1854         sprintf (ext_res, "%srecordId.%s", gprefix, ext);
1855         if (!(rGroup->recordId = res_get (zh->res, ext_res))) {
1856             sprintf (ext_res, "%srecordId", gprefix);
1857             rGroup->recordId = res_get (zh->res, ext_res);
1858         }
1859     } 
1860     
1861     /* determine database name */
1862     if (!rGroup->databaseName) {
1863         sprintf (ext_res, "%sdatabase.%s", gprefix, ext);
1864         if (!(rGroup->databaseName = res_get (zh->res, ext_res))) { 
1865             sprintf (ext_res, "%sdatabase", gprefix);
1866             rGroup->databaseName = res_get (zh->res, ext_res);
1867         }
1868     }
1869     if (!rGroup->databaseName)
1870         rGroup->databaseName = "Default";
1871     
1872     /* determine if explain database */
1873     sprintf (ext_res, "%sexplainDatabase", gprefix);
1874     rGroup->explainDatabase =
1875         atoi (res_get_def (zh->res, ext_res, "0"));
1876     
1877     /* storeData */
1878     if (rGroup->flagStoreData == -1)
1879     {
1880         const char *sval;
1881         sprintf (ext_res, "%sstoreData.%s", gprefix, ext);
1882         if (!(sval = res_get (zh->res, ext_res)))
1883         {
1884             sprintf (ext_res, "%sstoreData", gprefix);
1885             sval = res_get (zh->res, ext_res);
1886         }
1887         if (sval)
1888             rGroup->flagStoreData = atoi (sval);
1889     }
1890     if (rGroup->flagStoreData == -1) 
1891         rGroup->flagStoreData = 0;
1892     
1893     /* storeKeys */
1894     if (rGroup->flagStoreKeys == -1)
1895     {
1896         const char *sval;
1897         
1898         sprintf (ext_res, "%sstoreKeys.%s", gprefix, ext);
1899         sval = res_get (zh->res, ext_res);
1900         if (!sval)
1901         {
1902             sprintf (ext_res, "%sstoreKeys", gprefix);
1903             sval = res_get (zh->res, ext_res);
1904         }
1905         if (!sval)
1906             sval = res_get (zh->res, "storeKeys");
1907         if (sval)
1908             rGroup->flagStoreKeys = atoi (sval);
1909     }
1910     if (rGroup->flagStoreKeys == -1)
1911         rGroup->flagStoreKeys = 0;
1912
1913
1914
1915 /* almost the same as zebra_records_retrieve ... but how did it work? 
1916    I mean for multiple records ??? CHECK ??? */
1917 void api_records_retrieve (ZebraHandle zh, ODR stream,
1918                            const char *setname, Z_RecordComposition *comp,
1919                            oid_value input_format, int num_recs,
1920                            ZebraRetrievalRecord *recs)
1921 {
1922     ZebraPosSet poset;
1923     int i, *pos_array;
1924     yaz_log(LOG_API,"api_records_retrieve s=%s n=%d",setname,num_recs);
1925
1926     if (!zh->res)
1927     {
1928         zh->errCode = 30;
1929         zh->errString = odr_strdup (stream, setname);
1930         return;
1931     }
1932     
1933     zh->errCode = 0; 
1934
1935     if (zebra_begin_read (zh))
1936         return;
1937
1938     pos_array = (int *) xmalloc (num_recs * sizeof(*pos_array));
1939     for (i = 0; i<num_recs; i++)
1940         pos_array[i] = recs[i].position;
1941     poset = zebraPosSetCreate (zh, setname, num_recs, pos_array);
1942     if (!poset)
1943     {
1944         logf (LOG_DEBUG, "zebraPosSetCreate error");
1945         zh->errCode = 30;
1946         zh->errString = nmem_strdup (stream->mem, setname);
1947     }
1948     else
1949     {
1950         for (i = 0; i<num_recs; i++)
1951         {
1952             if (poset[i].term)
1953             {
1954                 recs[i].errCode = 0;
1955                 recs[i].format = VAL_SUTRS;
1956                 recs[i].len = strlen(poset[i].term);
1957                 recs[i].buf = poset[i].term;
1958                 recs[i].base = poset[i].db;
1959                 recs[i].sysno = 0;
1960             
1961             }
1962             else if (poset[i].sysno)
1963             {
1964               /* changed here ??? CHECK ??? */
1965               char *b;
1966                 recs[i].errCode =
1967                     zebra_record_fetch (zh, poset[i].sysno, poset[i].score,
1968                                         stream, input_format, comp,
1969                                         &recs[i].format, 
1970                                         &b,
1971                                         &recs[i].len,
1972                                         &recs[i].base);
1973                 recs[i].buf = (char *) odr_malloc(stream,recs[i].len);
1974                 memcpy(recs[i].buf, b, recs[i].len);
1975                 recs[i].errString = 0; /* Hmmm !!! we should get this */ 
1976                 recs[i].sysno = poset[i].sysno;
1977                 recs[i].score = poset[i].score;
1978             }
1979             else
1980             {
1981                 char num_str[20];
1982
1983                 sprintf (num_str, "%d", pos_array[i]);  
1984                 zh->errCode = 13;
1985                 zh->errString = odr_strdup (stream, num_str);
1986                 break;
1987             }
1988
1989         }
1990         zebraPosSetDestroy (zh, poset, num_recs);
1991     }
1992     zebra_end_read (zh);
1993     xfree (pos_array);
1994 }
1995
1996
1997 /* ---------------------------------------------------------------------------
1998   Record insert(=update), delete 
1999
2000   If sysno is provided, then it's used to identify the reocord.
2001   If not, and match_criteria is provided, then sysno is guessed
2002   If not, and a record is provided, then sysno is got from there
2003 NOTE: Now returns 0 at success and updates sysno, which is an int*
2004   20-jun-2003 Heikki
2005 */
2006
2007 int zebra_insert_record (ZebraHandle zh, 
2008                          struct recordGroup *rGroup,
2009                          const char *recordType,
2010                          int *sysno, const char *match, const char *fname,
2011                          const char *buf, int buf_size,
2012                          int force_update) /* This one is ignored */
2013  
2014 {
2015     int res;
2016     yaz_log(LOG_API,"zebra_insert_record sysno=%d", *sysno);
2017
2018     if (buf_size < 1) buf_size = strlen(buf);
2019
2020     zebra_begin_trans(zh, 1);
2021     res=bufferExtractRecord (zh, buf, buf_size, rGroup, 
2022                              0, /* delete_flag  */
2023                              0, /* test_mode */
2024                              recordType,
2025                              sysno,   
2026                              match, fname,
2027                              force_update, 
2028                              0); /* allow_update */
2029     zebra_end_trans(zh); 
2030     if (res < 0) return (res);
2031     return res; 
2032 }
2033
2034 int zebra_update_record (ZebraHandle zh, 
2035                          struct recordGroup *rGroup,
2036                          const char *recordType,
2037                          int* sysno, const char *match, const char *fname,
2038                          const char *buf, int buf_size,
2039                          int force_update)
2040 {
2041     int res;
2042
2043     yaz_log(LOG_API,"zebra_update_record sysno=%d", *sysno);
2044
2045     if (buf_size < 1) buf_size = strlen(buf);
2046
2047     zebra_begin_trans(zh, 1);
2048     res=bufferExtractRecord (zh, buf, buf_size, rGroup, 
2049                              0, /* delete_flag */
2050                              0, /* test_mode */
2051                              recordType,
2052                              sysno,   
2053                              match, fname,
2054                              force_update, 
2055                              1); /* allow_update */
2056     zebra_end_trans(zh); 
2057     return res; 
2058 }
2059
2060 int zebra_delete_record (ZebraHandle zh, 
2061                          struct recordGroup *rGroup, 
2062                          const char *recordType,
2063                          int *sysno, const char *match, const char *fname,
2064                          const char *buf, int buf_size,
2065                          int force_update) 
2066 {
2067     int res;
2068     yaz_log(LOG_API,"zebra_delete_record sysno=%d", *sysno);
2069
2070     if (buf_size < 1) buf_size = strlen(buf);
2071
2072     zebra_begin_trans(zh, 1);
2073     res=bufferExtractRecord (zh, buf, buf_size, rGroup, 
2074                              1, /* delete_flag */
2075                              0, /* test_mode */
2076                              recordType,
2077                              sysno,
2078                              match,fname,
2079                              force_update,
2080                              1); /* allow_update */
2081     zebra_end_trans(zh);
2082     return res;   
2083 }
2084
2085 /* ---------------------------------------------------------------------------
2086   Searching 
2087 */
2088
2089 int zebra_search_PQF (ZebraHandle zh, const char *pqf_query,
2090                       const char *setname, int *numhits)
2091 {
2092     int hits = 0;
2093     int res=-1;
2094     Z_RPNQuery *query;
2095     ODR odr = odr_createmem(ODR_ENCODE);
2096
2097     yaz_log(LOG_API,"zebra_search_PQF s=%s q=%s",setname, pqf_query);
2098     
2099     query = p_query_rpn (odr, PROTO_Z3950, pqf_query);
2100     
2101     if (!query)
2102         yaz_log (LOG_WARN, "bad query %s\n", pqf_query);
2103     else
2104         res=zebra_search_RPN (zh, odr, query, setname, &hits);
2105     
2106     odr_destroy(odr);
2107
2108     if (numhits)
2109         *numhits=hits;
2110
2111     return res;
2112 }
2113
2114 /* ---------------------------------------------------------------------------
2115   Sort - a simplified interface, with optional read locks.
2116   FIXME - This is a horrible name, will conflict with half the applications
2117 */
2118 int zebra_sort_2 (ZebraHandle zh, 
2119                   ODR stream,
2120                   const char *sort_spec,
2121                   const char *output_setname,
2122                   const char **input_setnames) 
2123 {
2124     int num_input_setnames = 0;
2125     int sort_status = 0;
2126     Z_SortKeySpecList *sort_sequence = yaz_sort_spec (stream, sort_spec);
2127     yaz_log(LOG_API,"sort (FIXME) ");
2128     if (!sort_sequence)
2129     {
2130         logf(LOG_WARN,"invalid sort specs '%s'", sort_spec);
2131         zh->errCode = 207;
2132         return -1;
2133     }
2134     
2135     /* we can do this, since the perl typemap code for char** will 
2136        put a NULL at the end of list */
2137     while (input_setnames[num_input_setnames]) num_input_setnames++;
2138
2139     if (zebra_begin_read (zh))
2140         return -1;
2141     
2142     resultSetSort (zh, stream->mem, num_input_setnames, input_setnames,
2143                    output_setname, sort_sequence, &sort_status);
2144     
2145     zebra_end_read(zh);
2146     return sort_status;
2147 }