merge with 0.30.213
[util-vserver.git] / lib_internal / matchlist.h
1 // $Id: matchlist.h 1912 2005-03-18 00:20:02Z ensc $    --*- 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 #include "pathinfo.h"
25
26 #include <lib/vserver.h>
27
28 #include <stdlib.h>
29 #include <stdbool.h>
30
31 typedef int     (*MatchItemCompareFunc)(char const *, char const *);
32 typedef enum { stINCLUDE,stEXCLUDE,stSKIP }     MatchType;
33
34 struct MatchItem
35 {
36     MatchType                   type;
37     char const *                name;
38     MatchItemCompareFunc        cmp;
39 };
40
41 struct MatchList
42 {
43     size_t              skip_depth;
44     PathInfo            root;
45     String              id;
46     struct MatchItem    *data;
47     size_t              count;
48
49     void const          **buf;
50     size_t              buf_count;
51 };
52
53 struct MatchVserverInfo
54 {
55     char const          *name;
56
57     vcCfgStyle          style;
58     PathInfo            vdir;
59     PathInfo            appdir;
60     
61     bool                use_pkgmgmt;
62 };
63
64 void            MatchList_init(struct MatchList *, char const *root,
65                                size_t count) NONNULL((1,2));
66 bool            MatchList_initByVserver(struct MatchList *,
67                                         struct MatchVserverInfo const *vserver) NONNULL((1,2));
68 void            MatchList_initManually(struct MatchList *list,
69                                        struct MatchVserverInfo const *vserver,
70                                        char const *vdir,
71                                        char const *exclude_file) NONNULL((1,4));
72 void            MatchList_initRefserverList(struct MatchList **, size_t *cnt,
73                                             char const *dir) NONNULL((1,2,3));
74 void            MatchList_destroy(struct MatchList *) NONNULL((1));
75 void            MatchList_appendFiles(struct MatchList *, size_t idx,
76                                       char **files, size_t count,
77                                       bool auto_type) NONNULL((1,3));
78
79 MatchType       MatchList_compare(struct MatchList const *,
80                                   char const *path) NONNULL((1,2));
81 struct MatchItem
82 const *         MatchList_find(struct MatchList const *,
83                                char const *path) NONNULL((1,2));
84
85 void            MatchList_printId(struct MatchList const *, int fd) NONNULL((1));
86
87
88 bool            MatchVserverInfo_init(struct MatchVserverInfo *);
89 void            MatchVserverInfo_free(struct MatchVserverInfo *);
90
91 #endif  //  H_UTIL_VSERVER_LIB_INTERNAL_MATCHLIST_H