]> git.pond.sub.org Git - empserver/blob - src/lib/common/stmtch.c
5325869afb74f736d1fac09be83d709530ec07d7
[empserver] / src / lib / common / stmtch.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  stmtch.c: Matching operations on structures and commands
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2004
32  */
33
34 #include <config.h>
35
36 #include "match.h"
37
38 /*
39  * Find element named NEEDLE in array HAYSTACK[], return its index.
40  * Return M_NOTFOUND if there are no matches, M_NOTUNIQUE if there are
41  * several.
42  * Each array element has a pointer to its name stored at offset OFFS.
43  * Search stops when this name is a null pointer or empty.
44  * NEEDLE is compared to element names with mineq(NEEDLE, NAME).
45  * ELT_SIZE gives the size of an array element.
46  */
47 int
48 stmtch(char *needle, void *haystack, ptrdiff_t offs, size_t elt_size)
49 {
50 #define ELT_NAME(i) (*(char **)((char *)haystack + (i)*elt_size + offs))
51     int i, res;
52
53     res = M_NOTFOUND;
54     for (i = 0; ELT_NAME(i) && ELT_NAME(i)[0] != 0; i++) {
55         switch (mineq(needle, ELT_NAME(i))) {
56         case ME_MISMATCH:
57             break;
58         case ME_PARTIAL:
59             if (res >= 0)
60                 return M_NOTUNIQUE;
61             res = i;
62             break;
63         case ME_EXACT:
64             return i;
65         }
66     }
67     return res;
68 #undef ELT_NAME
69 }
70
71 /*
72  * Compare A with B.
73  * Return ME_EXACT if they are the same, or A is a prefix of B
74  * followed by a space in B.
75  * Return ME_PARTIAL if A is a prefix of B not followed by a space.
76  * Else return ME_MISMATCH.
77  */
78 int
79 mineq(char *a, char *b)
80 {
81     int i;
82
83     /* find common prefix: */
84     for (i = 0; a[i] != 0 && a[i] == b[i]; i++) ;
85
86     if (a[i] != 0) return ME_MISMATCH;
87     if (b[i] == 0 || b[i] == ' ') return ME_EXACT;
88     return ME_PARTIAL;
89 }