| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 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 const **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 |
|---|