added support for $VSERVER_EXTRA_CMDS[] which can be set in userscripts
[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
30 struct MatchItem
31 {
32     enum { stINCLUDE, stEXCLUDE }       type;
33     char const *                        name;
34     MatchItemCompareFunc                cmp;
35 };
36
37 struct MatchList
38 {
39     size_t              skip_depth;
40     PathInfo            root;
41     String              id;
42     struct MatchItem    *data;
43     size_t              count;
44
45     void const          **buf;
46     size_t              buf_count;
47 };
48
49 void            MatchList_init(struct MatchList *, char const *root,
50                                size_t count) NONNULL((1,2));
51 bool            MatchList_initByVserver(struct MatchList *,
52                                         char const *vserver,
53                                         char const **res_appdir) NONNULL((1,2));
54 void            MatchList_initManually(struct MatchList *list,
55                                        char const *vserver,
56                                        char const *vdir,
57                                        char const *exclude_file) NONNULL((1,3,4));
58 void            MatchList_initRefserverList(struct MatchList **, size_t *cnt,
59                                             char const *dir) NONNULL((1,2,3));
60 void            MatchList_destroy(struct MatchList *) NONNULL((1));
61 void            MatchList_appendFiles(struct MatchList *, size_t idx,
62                                       char **files, size_t count,
63                                       bool auto_type) NONNULL((1,3));
64
65 bool            MatchList_compare(struct MatchList const *,
66                                   char const *path) NONNULL((1,2));
67 struct MatchItem
68 const *         MatchList_find(struct MatchList const *,
69                                char const *path) NONNULL((1,2));
70
71 void            MatchList_printId(struct MatchList const *, int fd) NONNULL((1));
72
73 #endif  //  H_UTIL_VSERVER_LIB_INTERNAL_MATCHLIST_H