]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/breg.h
ebl Commit file relocation
[bacula/bacula] / bacula / src / lib / breg.h
1 /*
2  * Bacula BREGEXP Structure definition for FileDaemon
3  * Eric Bollengier March 2007
4  * Version $Id$
5  */
6 /*
7    Bacula® - The Network Backup Solution
8
9    Copyright (C) 2006-2006 Free Software Foundation Europe e.V.
10
11    The main author of Bacula is Kern Sibbald, with contributions from
12    many others, a complete list can be found in the file AUTHORS.
13    This program is Free Software; you can redistribute it and/or
14    modify it under the terms of version two of the GNU General Public
15    License as published by the Free Software Foundation plus additions
16    that are listed in the file LICENSE.
17
18    This program is distributed in the hope that it will be useful, but
19    WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public License
24    along with this program; if not, write to the Free Software
25    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26    02110-1301, USA.
27
28    Bacula® is a registered trademark of John Walker.
29    The licensor of Bacula is the Free Software Foundation Europe
30    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
31    Switzerland, email:ftf@fsfeurope.org.
32 */
33
34
35 #ifndef __BREG_H_
36 #define __BREG_H_ 1
37
38 //#undef HAVE_REGEX_H
39
40 #ifndef HAVE_REGEX_H
41 #include "bregex.h"
42 #else
43 #include <regex.h>
44 #endif
45
46 /* Usage:
47  *
48  * #include "lib/breg.h"
49  * 
50  * BREGEXP *breg = new_bregexp("!/prod!/test!");
51  * char *filename = breg->replace("/prod/data.dat");
52  *   or
53  * char *filename = breg->result;
54  * free_bregexp(breg);
55  */
56
57 /*
58  * Structure for BREGEXP ressource
59  */
60 class BREGEXP {
61 public:
62    POOLMEM *result;             /* match result */
63    bool success;                /* match is ok */
64
65    char *replace(const char *fname); /* return this.result */
66    void debug();
67
68    /* private */
69    POOLMEM *expr;               /* search epression */
70    POOLMEM *subst;              /* substitution */
71    POOLMEM *lcase;              /* fname in lower case when using bregexp.c */
72    regex_t preg;                /* regex_t result of regcomp() */
73    struct re_registers regs;    /* contains match */
74    char *eor;                   /* end of regexp in expr */
75
76    int *_regs_match;
77    
78    char *return_fname(const char *fname, int len); /* return fname as result */
79    char *edit_subst(const char *fname, struct re_registers *regs);
80    int compute_dest_len(const char *fname, struct re_registers *regs);
81    bool extract_regexp(const char *motif);
82 };
83
84 /* create new BREGEXP and compile regex_t */
85 BREGEXP *new_bregexp(const char *motif); 
86
87 /* launch each bregexp on filename */
88 int run_bregexp(alist *bregexps, const char *fname); 
89
90 /* free BREGEXP (and all POOLMEM) */
91 void free_bregexp(BREGEXP *script);
92
93 /* fill an alist with BREGEXP from where */
94 alist *get_bregexps(const char *where);
95
96 /* apply every regexps from the alist */
97 bool apply_bregexps(const char *fname, alist *bregexps, char **result);
98
99 /* foreach_alist free RUNSCRIPT */
100 void free_bregexps(alist *bregexps); /* you have to free alist */
101
102 /* get regexp size */
103 int bregexp_get_build_where_size(char *strip_prefix, 
104                                  char *add_prefix, 
105                                  char *add_suffix);
106
107 /* get a bregexp string from user arguments 
108  * you must allocate it with bregexp_get_build_where_size();
109  */
110 char *bregexp_build_where(char *dest, int str_size,
111                           char *strip_prefix, 
112                           char *add_prefix, 
113                           char *add_suffix);
114
115 /* escape a string to regexp format (sep and \) 
116  * dest must be long enough (dest = 2*src + 1)
117  */
118 char *bregexp_escape_string(char *dest, char *src, char sep);
119
120 #endif /* __BREG_H_ */