initial checkin
[util-vserver.git] / util-vserver / src / vunify-matchlist.h
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifndef H_UTIL_VSERVER_SRC_VUNIFY_MATCHLIST_H
20 #define H_UTIL_VSERVER_SRC_VUNIFY_MATCHLIST_H
21
22 #include "util.h"
23
24 #include <stdlib.h>
25 #include <assert.h>
26 #include <stdbool.h>
27
28 struct MatchItem
29 {
30     enum { stINCLUDE, stEXCLUDE }       type;
31     char const *                        name;
32     int                                 (*cmp)(char const *, char const *);
33 };
34
35 typedef struct
36 {
37     char const *        d;
38     size_t              l;
39 } String;
40
41 typedef String          PathInfo;
42
43 struct MatchList
44 {
45     size_t              skip_depth;
46     PathInfo            root;
47     struct MatchItem    *data;
48     size_t              count;
49 };
50
51
52 void            MatchList_init(struct MatchList *, char const *root, size_t count) NONNULL((1,2));
53 void            MatchList_destroy(struct MatchList *) NONNULL((1));
54
55 bool            MatchList_compare(struct MatchList const *, char const *path) NONNULL((1,2));
56 struct MatchItem
57 const *         MatchList_find(struct MatchList const *,    char const *path) NONNULL((1,2));
58
59 void            PathInfo_append(PathInfo * restrict,
60                                 PathInfo const * restrict,
61                                 char *buf) NONNULL((1,2,3));
62
63 #define ENSC_PI_APPSZ(P1,P2)    ((P1).l + sizeof("/") + (P2).l)
64
65 #endif  //  H_UTIL_VSERVER_SRC_VUNIFY_MATCHLIST_H