minor optimizations
[util-vserver.git] / util-vserver / lib_internal / matchlist.h
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2004 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_LIB_INTERNAL_MATCHLIST_H
20 #define H_UTIL_VSERVER_LIB_INTERNAL_MATCHLIST_H
21
22 #include "pathinfo.h"
23 #include "string.h"
24
25 #include <stdlib.h>
26 #include <stdbool.h>
27
28 typedef int     (*MatchItemCompareFunc)(char const *, char const *);
29 typedef enum { stINCLUDE,stEXCLUDE,stSKIP }     MatchType;
30
31 struct MatchItem
32 {
33     MatchType                   type;
34     char const *                name;
35     MatchItemCompareFunc        cmp;
36 };
37
38 struct MatchList
39 {
40     size_t              skip_depth;
41     PathInfo            root;
42     String              id;
43     struct MatchItem    *data;
44     size_t              count;
45
46     void const          **buf;
47     size_t              buf_count;
48 };
49
50 void            MatchList_init(struct MatchList *, char const *root,
51                                size_t count) NONNULL((1,2));
52 bool            MatchList_initByVserver(struct MatchList *,
53                                         char const *vserver,
54                                         char const **res_appdir) NONNULL((1,2));
55 void            MatchList_initManually(struct MatchList *list,
56                                        char const *vserver,
57                                        char const *vdir,
58                                        char const *exclude_file) NONNULL((1,3,4));
59 void            MatchList_initRefserverList(struct MatchList **, size_t *cnt,
60                                             char const *dir) NONNULL((1,2,3));
61 void            MatchList_destroy(struct MatchList *) NONNULL((1));
62 void            MatchList_appendFiles(struct MatchList *, size_t idx,
63                                       char **files, size_t count,
64                                       bool auto_type) NONNULL((1,3));
65
66 MatchType       MatchList_compare(struct MatchList const *,
67                                   char const *path) NONNULL((1,2));
68 struct MatchItem
69 const *         MatchList_find(struct MatchList const *,
70                                char const *path) NONNULL((1,2));
71
72 void            MatchList_printId(struct MatchList const *, int fd) NONNULL((1));
73
74 #endif  //  H_UTIL_VSERVER_LIB_INTERNAL_MATCHLIST_H