sort out some prototypes, put them where they belong.
[apps/madmutt.git] / lib-lib / rx.c
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19 /*
20  * This file is part of mutt-ng, see http://www.muttng.org/.
21  * It's licensed under the GNU General Public License,
22  * please see the file GPL in the top level source directory.
23  */
24
25 #if HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28
29 #include <lib-lib/lib-lib.h>
30
31 rx_t *rx_compile(const char *s, int flags)
32 {
33     rx_t *pp = p_new(rx_t, 1);
34
35     pp->pattern = m_strdup(s);
36     pp->rx = p_new(regex_t, 1);
37
38     if (REGCOMP(pp->rx, NONULL(s), flags) != 0) {
39         rx_delete(&pp);
40     }
41
42     return pp;
43 }
44
45 void rx_delete(rx_t **p)
46 {
47     p_delete(&(*p)->pattern);
48     regfree((*p)->rx);
49     p_delete(&(*p)->rx);
50     p_delete(p);
51 }
52
53 int rx_list_match(list2_t *l, const char *pat)
54 {
55     int i;
56
57     if (!pat || !*pat || list_empty(l))
58         return 0;
59
60     for (i = 0; i < l->length; i++) {
61         if (!REGEXEC(((rx_t*)l->data[i])->rx, pat))
62             return 1;
63     }
64
65     return 0;
66 }
67
68 int rx_lookup (list2_t *l, const char *pat)
69 {
70     int i;
71
72     if (!pat || !*pat || list_empty(l))
73         return -1;
74
75     for (i = 0; i < l->length; i++) {
76         if (!strcmp(((rx_t*)l->data[i])->pattern, pat))
77             return i;
78     }
79
80     return -1;
81 }
82
83 int rx_sanitize_string(char *dst, ssize_t n, const char *src)
84 {
85     while (*src) {
86         if (n <= 1)
87             break;
88
89         /* these characters must be escaped in regular expressions */
90         if (strchr("^.[$()|*+?{\\", *src)) {
91             if (n <= 2)
92                 break;
93
94             *dst++ = '\\';
95             n--;
96         }
97
98         *dst++ = *src++;
99         n--;
100     }
101
102     *dst = '\0';
103
104     return *src ? -1 : 0;
105 }