2 * Copyright (C) 1994-1995, Index Data I/S
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.21 1996-10-29 14:00:03 adam
8 * Page size given by DICT_DEFAULT_PAGESIZE in dict.h.
10 * Revision 1.20 1996/03/20 09:35:16 adam
11 * Function dict_lookup_grep got extra parameter, init_pos, which marks
12 * from which position in pattern approximate pattern matching should occur.
14 * Revision 1.19 1996/02/02 13:43:50 adam
15 * The public functions simply use char instead of Dict_char to represent
16 * search strings. Dict_char is used internally only.
18 * Revision 1.18 1996/02/01 20:39:52 adam
19 * Bug fix: insert didn't work on 8-bit characters due to unsigned char
20 * compares in dict_strcmp (strcmp) and signed Dict_char. Dict_char is
23 * Revision 1.17 1995/12/06 17:48:30 adam
24 * Bug fix: delete didn't work.
26 * Revision 1.16 1995/10/09 16:18:31 adam
27 * Function dict_lookup_grep got extra client data parameter.
29 * Revision 1.15 1995/09/04 12:33:31 adam
30 * Various cleanup. YAZ util used instead.
32 * Revision 1.14 1994/10/04 17:46:55 adam
33 * Function options now returns arg with error option.
35 * Revision 1.13 1994/10/04 12:08:05 adam
36 * Some bug fixes and some optimizations.
38 * Revision 1.12 1994/10/03 17:23:03 adam
39 * First version of dictionary lookup with regular expressions and errors.
41 * Revision 1.11 1994/09/28 13:07:09 adam
42 * Use log_mask_str now.
44 * Revision 1.10 1994/09/26 10:17:24 adam
47 * Revision 1.9 1994/09/22 14:43:56 adam
48 * First functional version of lookup with error correction. A 'range'
49 * specified the maximum number of insertions+deletions+substitutions.
51 * Revision 1.8 1994/09/22 10:43:44 adam
52 * Two versions of depend. Type 1 is the tail-type compatible with
53 * all make programs. Type 2 is the GNU make with include facility.
54 * Type 2 is default. depend rule chooses current rule.
56 * Revision 1.7 1994/09/19 16:34:26 adam
57 * Depend rule change. Minor changes in dicttest.c
59 * Revision 1.6 1994/09/16 15:39:12 adam
60 * Initial code of lookup - not tested yet.
62 * Revision 1.5 1994/09/06 13:05:14 adam
63 * Further development of insertion. Some special cases are
64 * not properly handled yet! assert(0) are put here. The
65 * binary search in each page definitely reduce usr CPU.
67 * Revision 1.4 1994/09/01 17:49:37 adam
68 * Removed stupid line. Work on insertion in dictionary. Not finished yet.
70 * Revision 1.3 1994/09/01 17:44:06 adam
71 * depend include change.
73 * Revision 1.2 1994/08/18 12:40:54 adam
74 * Some development of dictionary. Not finished at all!
76 * Revision 1.1 1994/08/16 16:26:47 adam
94 static int grep_handle (char *name, const char *info, void *client)
97 printf ("%s\n", name);
101 int main (int argc, char **argv)
103 const char *name = NULL;
104 const char *inputfile = NULL;
105 const char *base = NULL;
114 char *grep_pattern = NULL;
116 int no_of_iterations = 0;
117 int no_of_new = 0, no_of_same = 0, no_of_change = 0;
118 int no_of_hits = 0, no_of_misses = 0, no_not_found = 0, no_of_deleted = 0;
124 fprintf (stderr, "usage:\n "
125 " %s [-d] [-r n] [-p n] [-u] [-g pat] [-s n] [-v n] [-i f]"
126 " [-w] [-c n] base file\n\n",
128 fprintf (stderr, " -d delete instead of insert\n");
129 fprintf (stderr, " -r n set regular match range\n");
130 fprintf (stderr, " -p n set regular match start range\n");
131 fprintf (stderr, " -u report if keys change during insert\n");
132 fprintf (stderr, " -g p try pattern n (see -r)\n");
133 fprintf (stderr, " -s n set info size to n (instead of 4)\n");
134 fprintf (stderr, " -v n set logging level\n");
135 fprintf (stderr, " -i f read file with words\n");
136 fprintf (stderr, " -w insert/delete instead of lookup\n");
137 fprintf (stderr, " -c n cache size (number of pages)\n");
140 while ((ret = options ("dr:p:ug:s:v:i:wc:", argv, argc, &arg)) != -2)
150 logf (LOG_FATAL, "too many files specified\n");
184 infosize = atoi(arg);
188 log_init (log_mask_str(arg), prog, NULL);
192 logf (LOG_FATAL, "Unknown option '-%s'", arg);
198 logf (LOG_FATAL, "no base and/or dictionary specified");
201 common_resource = res_open (base);
202 if (!common_resource)
204 logf (LOG_FATAL, "cannot open resource `%s'", base);
207 dict = dict_open (name, cache, rw);
210 logf (LOG_FATAL, "dict_open fail of `%s'", name);
219 memset (infobytes, 0, 120);
221 if (!(ipf = fopen(inputfile, "r")))
223 logf (LOG_FATAL|LOG_ERRNO, "cannot open %s", inputfile);
227 while (fgets (ipf_buf, 1023, ipf))
229 char *ipf_ptr = ipf_buf;
230 sprintf (infobytes, "%d", line);
231 for (;*ipf_ptr && *ipf_ptr != '\n';ipf_ptr++)
233 if (isalpha(*ipf_ptr) || *ipf_ptr == '_')
236 while (ipf_ptr[i] && (isalnum(ipf_ptr[i]) ||
244 switch (dict_delete (dict, ipf_ptr))
253 switch(dict_insert (dict, ipf_ptr,
254 infosize, infobytes))
262 logf (LOG_LOG, "%s change\n", ipf_ptr);
266 logf (LOG_LOG, "%s duplicate\n", ipf_ptr);
275 cp = dict_lookup (dict, ipf_ptr);
284 dict_lookup_grep (dict, ipf_ptr, range, NULL,
285 &max_pos, srange, grep_handle);
303 logf (LOG_LOG, "Grepping '%s'", grep_pattern);
304 dict_lookup_grep (dict, grep_pattern, range, NULL, &max_pos,
305 srange, grep_handle);
309 logf (LOG_LOG, "Iterations.... %d", no_of_iterations);
312 logf (LOG_LOG, "No of deleted. %d", no_of_deleted);
313 logf (LOG_LOG, "No not found.. %d", no_not_found);
317 logf (LOG_LOG, "No of new..... %d", no_of_new);
318 logf (LOG_LOG, "No of change.. %d", no_of_change);
323 logf (LOG_LOG, "Lookups....... %d", no_of_iterations);
324 logf (LOG_LOG, "No of hits.... %d", no_of_hits);
325 logf (LOG_LOG, "No of misses.. %d", no_of_misses);
328 res_close (common_resource);