struct MatchVserverInfo: added; it allows to pass additional information about the...
[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 struct MatchVserverInfo
51 {
52     char const          *name;
53     bool                use_pkgmgmt;
54 };
55
56 void            MatchList_init(struct MatchList *, char const *root,
57                                size_t count) NONNULL((1,2));
58 bool            MatchList_initByVserver(struct MatchList *,
59                                         struct MatchVserverInfo const *vserver,
60                                         char const **res_appdir) NONNULL((1,2));
61 void            MatchList_initManually(struct MatchList *list,
62                                        struct MatchVserverInfo const *vserver,
63                                        char const *vdir,
64                                        char const *exclude_file) NONNULL((1,3,4));
65 void            MatchList_initRefserverList(struct MatchList **, size_t *cnt,
66                                             char const *dir) NONNULL((1,2,3));
67 void            MatchList_destroy(struct MatchList *) NONNULL((1));
68 void            MatchList_appendFiles(struct MatchList *, size_t idx,
69                                       char **files, size_t count,
70                                       bool auto_type) NONNULL((1,3));
71
72 MatchType       MatchList_compare(struct MatchList const *,
73                                   char const *path) NONNULL((1,2));
74 struct MatchItem
75 const *         MatchList_find(struct MatchList const *,
76                                char const *path) NONNULL((1,2));
77
78 void            MatchList_printId(struct MatchList const *, int fd) NONNULL((1));
79
80 #endif  //  H_UTIL_VSERVER_LIB_INTERNAL_MATCHLIST_H