-/* $Id: dirs.c,v 1.20 2004-08-04 08:35:23 adam Exp $
- Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
+/* $Id: dirs.c,v 1.19.2.1 2005-05-09 19:57:38 adam Exp $
+ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
Index Data Aps
This file is part of the Zebra server.
return p;
}
-struct dirs_info *dirs_fopen (Dict dict, const char *path)
+struct dirs_info *dirs_fopen (Dict dict, const char *path, int rw)
{
struct dirs_info *p;
struct dirs_entry *entry;
p = (struct dirs_info *) xmalloc (sizeof(*p));
p->dict = dict;
+ p->rw = rw;
*p->prefix = '\0';
p->entries = (struct dirs_entry *) xmalloc (sizeof(*p->entries));
p->no_read = 0;
dict_delete (p->dict, path);
}
-void dirs_add (struct dirs_info *p, const char *src, SYSNO sysno, time_t mtime)
+void dirs_add (struct dirs_info *p, const char *src, int sysno, time_t mtime)
{
char path[DIRS_MAX_PATH];
char info[16];
-/* $Id: index.h,v 1.110 2004-08-04 08:35:23 adam Exp $
- Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
+/* $Id: index.h,v 1.109.2.1 2005-05-09 19:57:38 adam Exp $
+ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003
Index Data Aps
This file is part of the Zebra server.
02111-1307, USA.
*/
+
+
#ifndef INDEX_H
#define INDEX_H
#include <isams.h>
#include <isam.h>
#include <isamc.h>
+#include <isamd.h>
#include <isamb.h>
#define ISAM_DEFAULT "c"
#include <data1.h>
#define SU_SCHEME 1
#define IT_MAX_WORD 256
+#define IT_KEY_HAVE_SEQNO 1
+#define IT_KEY_HAVE_FIELD 0
-#define IT_KEY_NEW 1
-
-#if IT_KEY_NEW
-
-#endif
+typedef int SYSNO;
-#if IT_KEY_NEW
-#define IT_KEY_LEVEL_MAX 4
-struct it_key {
- int len;
- zint mem[IT_KEY_LEVEL_MAX];
-};
-#else
struct it_key {
int sysno;
int seqno;
};
-#endif
enum dirsKind { dirs_dir, dirs_file };
void getFnameTmp (Res res, char *fname, int no);
struct dirs_info *dirs_open (Dict dict, const char *rep, int rw);
-struct dirs_info *dirs_fopen (Dict dict, const char *path);
+struct dirs_info *dirs_fopen (Dict dict, const char *path, int rw);
struct dirs_entry *dirs_read (struct dirs_info *p);
struct dirs_entry *dirs_last (struct dirs_info *p);
void dirs_mkdir (struct dirs_info *p, const char *src, time_t mtime);
void dirs_rmdir (struct dirs_info *p, const char *src);
-void dirs_add (struct dirs_info *p, const char *src, SYSNO sysno, time_t mtime);
+void dirs_add (struct dirs_info *p, const char *src, int sysno, time_t mtime);
void dirs_del (struct dirs_info *p, const char *src);
void dirs_free (struct dirs_info **pp);
int key_open (ZebraHandle zh, int mem);
int key_close (ZebraHandle zh);
int key_compare (const void *p1, const void *p2);
-void key_init(struct it_key *k);
char *key_print_it (const void *p, char *buf);
int key_get_seq (const void *p);
int key_compare_it (const void *p1, const void *p2);
void key_input (ZebraHandle zh, int nkeys, int cache, Res res);
ISAMS_M *key_isams_m (Res res, ISAMS_M *me);
ISAMC_M *key_isamc_m (Res res, ISAMC_M *me);
+ISAMD_M *key_isamd_m (Res res, ISAMD_M *me);
int merge_sort (char **buf, int from, int to);
int key_SU_code (int ch, char *out);
int prevseq;
int prevcmd;
int keylen; /* tells if we have an unwritten key in buf, and how long*/
-#if IT_KEY_NEW
- void *encode_handle;
-#endif
char buf[ENCODE_BUFLEN];
};
int buf_used;
int buf_max;
char *buf;
-#if IT_KEY_NEW
- void *codec_handle;
-#else
- int prevSeqNo;
char prevAttrSet;
short prevAttrUse;
-#endif
+ int prevSeqNo;
};
+#if 1
struct sortKeys {
int buf_used;
int buf_max;
char *buf;
};
+#else
+struct sortKey {
+ char *string;
+ int length;
+ int attrSet;
+ int attrUse;
+ struct sortKey *next;
+};
+#endif
struct zebra_register {
char *name;
ISAMS isams;
ISAM isam;
ISAMC isamc;
+ ISAMD isamd;
ISAMB isamb;
Dict dict;
Dict matchDict;
* int rssize; // number of records in result set (estimate?)
*/
void (*end)(struct zebra_register *reg, void *set_handle);
- int (*calc)(void *set_handle, zint sysno);
+ int (*calc)(void *set_handle, int sysno);
void (*add)(void *set_handle, int seqno, int term_index);
};
extern struct rank_control *rankzv_class;
extern struct rank_control *rankliv_class;
-int zebra_record_fetch (ZebraHandle zh, SYSNO sysno, int score, ODR stream,
+int zebra_record_fetch (ZebraHandle zh, int sysno, int score, ODR stream,
oid_value input_format, Z_RecordComposition *comp,
oid_value *output_format, char **rec_bufp,
int *rec_lenp, char **basenamep);
int delete_flag,
int test_mode,
const char *recordType,
- SYSNO *sysno,
+ int *sysno,
const char *match_criteria,
const char *fname,
int force_update,
void zebra_livcode_transform(ZebraHandle zh, Z_RPNQuery *query);
-void *iscz1_start ();
-void iscz1_reset (void *vp);
-void iscz1_stop (void *p);
-void iscz1_decode (void *vp, char **dst, const char **src);
-void iscz1_encode (void *vp, char **dst, const char **src);
+void *iscz1_code_start (int mode);
+void iscz1_code_reset (void *vp);
+void iscz1_code_stop (int mode, void *p);
+void iscz1_code_item (int mode, void *vp, char **dst, char **src);
+
+
YAZ_END_CDECL