rewrote and enhanced it
[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 typedef int     (*MatchItemCompareFunc)(char const *, char const *);
29
30 struct MatchItem
31 {
32     enum { stINCLUDE, stEXCLUDE }       type;
33     char const *                        name;
34     MatchItemCompareFunc                cmp;
35 };
36
37 typedef struct
38 {
39     char const *        d;
40     size_t              l;
41 } String;
42
43 typedef String          PathInfo;
44
45 struct MatchList
46 {
47     size_t              skip_depth;
48     PathInfo            root;
49     String              id;
50     struct MatchItem    *data;
51     size_t              count;
52
53     void const          **buf;
54     size_t              buf_count;
55 };
56
57
58 void            MatchList_init(struct MatchList *, char const *root, size_t count) NONNULL((1,2));
59 void            MatchList_destroy(struct MatchList *) NONNULL((1));
60 void            MatchList_appendFiles(struct MatchList *, size_t idx,
61                                       char **files, size_t count,
62                                       bool auto_type);
63
64 bool            MatchList_compare(struct MatchList const *, char const *path) NONNULL((1,2));
65 struct MatchItem
66 const *         MatchList_find(struct MatchList const *,    char const *path) NONNULL((1,2));
67
68 void            String_init(String *);
69 void            String_destroy(String *);
70
71 void            PathInfo_append(PathInfo * restrict,
72                                 PathInfo const * restrict,
73                                 char *buf) NONNULL((1,2,3));
74
75 #define ENSC_PI_APPSZ(P1,P2)    ((P1).l + sizeof("/") + (P2).l)
76
77 #endif  //  H_UTIL_VSERVER_SRC_VUNIFY_MATCHLIST_H