Minor bug fix (bug introduced by previous commit).
[yaz-moved-to-github.git] / util / matchstr.c
1 /*
2  * Copyright (c) 1995-1997, Index Data.
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: matchstr.c,v $
7  * Revision 1.3  1999-10-19 12:35:42  adam
8  * Minor bug fix (bug introduced by previous commit).
9  *
10  * Revision 1.2  1999/10/15 11:35:41  adam
11  * Character '.' matches any single character.
12  *
13  * Revision 1.1  1999/06/08 10:10:16  adam
14  * New sub directory zutil. Moved YAZ Compiler to be part of YAZ tree.
15  *
16  * Revision 1.7  1997/09/30 11:47:47  adam
17  * Added function 'cause checkergcc doesn't include assert handler.
18  *
19  * Revision 1.6  1997/09/04 07:54:34  adam
20  * Right hande side operand of yaz_matchstr may include a ? in
21  * which case it returns "match ok".
22  *
23  * Revision 1.5  1997/07/21 12:48:11  adam
24  * Removed windows DLL stubs.
25  *
26  * Revision 1.4  1997/05/01 15:07:55  adam
27  * Added DLL entry point routines.
28  *
29  * Revision 1.3  1996/10/29 13:36:28  adam
30  * Added header.
31  *
32  * Revision 1.2  1996/02/20 17:58:42  adam
33  * Added const to yaz_matchstr.
34  *
35  * Revision 1.1  1996/02/20  16:33:06  quinn
36  * Moved matchstr to global util
37  *
38  * Revision 1.1  1995/11/01  11:56:08  quinn
39  * Added Retrieval (data management) functions en masse.
40  *
41  *
42  */
43 #include <stdio.h>
44 #include <assert.h>
45 #include <ctype.h>
46 #include <yaz-util.h>
47
48 /*
49  * Match strings, independently of case and occurences of '-'.
50  * fairly inefficient - will be replaced with an indexing scheme for
51  * the various subsystems if we get a bottleneck here.
52  */
53
54 int yaz_matchstr(const char *s1, const char *s2)
55 {
56     while (*s1 && *s2)
57     {
58         char c1 = *s1;
59         char c2 = *s2;
60
61         if (c2 == '?')
62             return 0;
63         if (c1 == '-')
64             c1 = *++s1;
65         if (c2 == '-')
66             c2 = *++s2;
67         if (!c1 || !c2)
68             break;
69         if (c2 != '.')
70         {
71             if (isupper(c1))
72                 c1 = tolower(c1);
73             if (isupper(c2))
74                 c2 = tolower(c2);
75             if (c1 != c2)
76                 break;
77         }
78         s1++;
79         s2++;
80     }
81     return *s1 || *s2;
82 }
83
84 #ifdef __GNUC__
85 #ifdef __CHECKER__
86 void __assert_fail (const char *assertion, const char *file, 
87                     unsigned int line, const char *function)
88 {
89     fprintf (stderr, "%s in file %s line %d func %s\n",
90              assertion, file, line, function);
91     abort ();
92 }
93 #endif
94 #endif