]> git.pond.sub.org Git - empserver/blob - src/lib/common/stmtch.c
Fix trailing whitespace
[empserver] / src / lib / common / stmtch.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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-2008
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 == M_NOTFOUND)
60                 res = i;
61             else
62                 res = M_NOTUNIQUE;
63             break;
64         case ME_EXACT:
65             return i;
66         }
67     }
68     return res;
69 #undef ELT_NAME
70 }
71
72 /*
73  * Compare A with B.
74  * Return ME_EXACT if they are the same, or A is a prefix of B
75  * followed by a space in B.
76  * Return ME_PARTIAL if A is a prefix of B not followed by a space.
77  * Else return ME_MISMATCH.
78  */
79 int
80 mineq(char *a, char *b)
81 {
82     int i;
83
84     /* find common prefix: */
85     for (i = 0; a[i] != 0 && a[i] == b[i]; i++) ;
86
87     if (a[i] != 0) return ME_MISMATCH;
88     if (b[i] == 0 || b[i] == ' ') return ME_EXACT;
89     return ME_PARTIAL;
90 }