aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-filter-input.c
blob: 6dbcc7e88a3d6bd031d3aab3d351e565bb491f06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 *
 *
 * Authors:
 *      Not Zed <notzed@lostzed.mmc.com.au>
 *      Jeffrey Stedfast <fejj@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <string.h>
#include <sys/types.h>
#include <regex.h>

#include <gtk/gtk.h>
#include <glib/gi18n.h>

#include "e-alert.h"
#include "e-filter-input.h"

G_DEFINE_TYPE (
    EFilterInput,
    e_filter_input,
    E_TYPE_FILTER_ELEMENT)

static void
filter_input_entry_changed (GtkEntry *entry,
                            EFilterElement *element)
{
    EFilterInput *input = E_FILTER_INPUT (element);
    const gchar *text;

    g_list_foreach (input->values, (GFunc) g_free, NULL);
    g_list_free (input->values);

    text = gtk_entry_get_text (entry);
    input->values = g_list_append (NULL, g_strdup (text));
}

static void
filter_input_finalize (GObject *object)
{
    EFilterInput *input = E_FILTER_INPUT (object);

    xmlFree (input->type);

    g_list_foreach (input->values, (GFunc) g_free, NULL);
    g_list_free (input->values);

    /* Chain up to parent's finalize() method. */
    G_OBJECT_CLASS (e_filter_input_parent_class)->finalize (object);
}

static gboolean
filter_input_validate (EFilterElement *element,
                       EAlert **alert)
{
    EFilterInput *input = E_FILTER_INPUT (element);
    gboolean valid = TRUE;

    g_warn_if_fail (alert == NULL || *alert == NULL);

    if (input->values && !strcmp (input->type, "regex")) {
        const gchar *pattern;
        regex_t regexpat;
        gint regerr;

        pattern = input->values->data;

        regerr = regcomp (
            &regexpat, pattern,
            REG_EXTENDED | REG_NEWLINE | REG_ICASE);
        if (regerr != 0) {
            if (alert) {
                gsize reglen;
                gchar *regmsg;

                /* regerror gets called twice to get the full error string
                 * length to do proper posix error reporting */
                reglen = regerror (regerr, &regexpat, 0, 0);
                regmsg = g_malloc0 (reglen + 1);
                regerror (regerr, &regexpat, regmsg, reglen);

                *alert = e_alert_new ("filter:bad-regexp",
                              pattern, regmsg, NULL);
                g_free (regmsg);
            }

            valid = FALSE;
        }

        regfree (&regexpat);
    } else if (!input->allow_empty && (!input->values || !input->values->next)) {
        const gchar *value = input->values->data;
        gboolean is_empty = value == NULL;

        if (value) {
            gint ii;

            is_empty = TRUE;

            for (ii = 0; value[ii]; ii++) {
                if (!g_ascii_isspace (value[ii])) {
                    is_empty = FALSE;
                    break;
                }
            }
        }

        if (is_empty) {
            valid = FALSE;
            if (alert)
                *alert = e_alert_new ("filter:not-allow-empty", NULL);
        }
    }

    return valid;
}

static gint
filter_input_eq (EFilterElement *element_a,
                 EFilterElement *element_b)
{
    EFilterInput *input_a = E_FILTER_INPUT (element_a);
    EFilterInput *input_b = E_FILTER_INPUT (element_b);
    GList *link_a;
    GList *link_b;

    /* Chain up to parent's eq() method. */
    if (!E_FILTER_ELEMENT_CLASS (e_filter_input_parent_class)->
        eq (element_a, element_b))
        return FALSE;

    if (g_strcmp0 (input_a->type, input_b->type) != 0)
        return FALSE;

    link_a = input_a->values;
    link_b = input_b->values;

    while (link_a != NULL && link_b != NULL) {
        if (g_strcmp0 (link_a->data, link_b->data) != 0)
            return FALSE;

        link_a = g_list_next (link_a);
        link_b = g_list_next (link_b);
    }

    if (link_a != NULL || link_b != NULL)
        return FALSE;

    return input_a->allow_empty == input_b->allow_empty;
}

static void
filter_input_xml_create (EFilterElement *element,
                         xmlNodePtr node)
{
    EFilterInput *input = E_FILTER_INPUT (element);
    gchar *allow_empty;

    /* Chain up to parent's method. */
    E_FILTER_ELEMENT_CLASS (e_filter_input_parent_class)->xml_create (element, node);

    allow_empty = (gchar *) xmlGetProp (node, (xmlChar *) "allow-empty");

    input->allow_empty = !allow_empty || g_strcmp0 (allow_empty, "true") == 0;
    xmlFree (allow_empty);
}

static xmlNodePtr
filter_input_xml_encode (EFilterElement *element)
{
    EFilterInput *input = E_FILTER_INPUT (element);
    xmlNodePtr value;
    GList *link;
    const gchar *type;

    type = input->type ? input->type : "string";

    value = xmlNewNode (NULL, (xmlChar *) "value");
    xmlSetProp (value, (xmlChar *) "name", (xmlChar *) element->name);
    xmlSetProp (value, (xmlChar *) "type", (xmlChar *) type);
    xmlSetProp (value, (xmlChar *) "allow-empty", (xmlChar *) (input->allow_empty ? "true" : "false"));

    for (link = input->values; link != NULL; link = g_list_next (link)) {
        xmlChar *str = link->data;
        xmlNodePtr cur;

        cur = xmlNewChild (value, NULL, (xmlChar *) type, NULL);

        str = xmlEncodeEntitiesReentrant (NULL, str);
        xmlNodeSetContent (cur, str);
        xmlFree (str);
    }

    return value;
}

static gint
filter_input_xml_decode (EFilterElement *element,
                         xmlNodePtr node)
{
    EFilterInput *input = (EFilterInput *) element;
    gchar *name, *str, *type, *allow_empty;
    xmlNodePtr child;

    g_list_foreach (input->values, (GFunc) g_free, NULL);
    g_list_free (input->values);
    input->values = NULL;

    name = (gchar *) xmlGetProp (node, (xmlChar *) "name");
    type = (gchar *) xmlGetProp (node, (xmlChar *) "type");
    allow_empty = (gchar *) xmlGetProp (node, (xmlChar *) "allow-empty");

    xmlFree (element->name);
    element->name = name;

    xmlFree (input->type);
    input->type = type;

    input->allow_empty = !allow_empty || g_strcmp0 (allow_empty, "true") == 0;
    xmlFree (allow_empty);

    child = node->children;
    while (child != NULL) {
        if (!strcmp ((gchar *) child->name, type)) {
            if (!(str = (gchar *) xmlNodeGetContent (child)))
                str = (gchar *) xmlStrdup ((xmlChar *)"");

            input->values = g_list_append (input->values, g_strdup (str));
            xmlFree (str);
        } else if (child->type == XML_ELEMENT_NODE) {
            g_warning (
                "Unknown node type '%s' encountered "
                "decoding a %s\n", child->name, type);
        }
        child = child->next;
    }

    return 0;
}

static GtkWidget *
filter_input_get_widget (EFilterElement *element)
{
    EFilterInput *input = E_FILTER_INPUT (element);
    GtkWidget *entry;

    entry = gtk_entry_new ();
    if (input->values && input->values->data)
        gtk_entry_set_text (
            GTK_ENTRY (entry), input->values->data);

    g_signal_connect (
        entry, "changed",
        G_CALLBACK (filter_input_entry_changed), element);

    return entry;
}

static void
filter_input_format_sexp (EFilterElement *element,
                          GString *out)
{
    EFilterInput *input = E_FILTER_INPUT (element);
    GList *link;

    for (link = input->values; link != NULL; link = g_list_next (link))
        camel_sexp_encode_string (out, link->data);
}

static void
e_filter_input_class_init (EFilterInputClass *class)
{
    GObjectClass *object_class;
    EFilterElementClass *filter_element_class;

    object_class = G_OBJECT_CLASS (class);
    object_class->finalize = filter_input_finalize;

    filter_element_class = E_FILTER_ELEMENT_CLASS (class);
    filter_element_class->validate = filter_input_validate;
    filter_element_class->eq = filter_input_eq;
    filter_element_class->xml_create = filter_input_xml_create;
    filter_element_class->xml_encode = filter_input_xml_encode;
    filter_element_class->xml_decode = filter_input_xml_decode;
    filter_element_class->get_widget = filter_input_get_widget;
    filter_element_class->format_sexp = filter_input_format_sexp;
}

static void
e_filter_input_init (EFilterInput *input)
{
    input->values = g_list_prepend (NULL, g_strdup (""));
    input->allow_empty = TRUE;
}

/**
 * filter_input_new:
 *
 * Create a new EFilterInput object.
 *
 * Return value: A new #EFilterInput object.
 **/
EFilterInput *
e_filter_input_new (void)
{
    return g_object_new (E_TYPE_FILTER_INPUT, NULL);
}

EFilterInput *
e_filter_input_new_type_name (const gchar *type)
{
    EFilterInput *input;

    input = e_filter_input_new ();
    input->type = (gchar *) xmlStrdup ((xmlChar *) type);

    return input;
}

void
e_filter_input_set_value (EFilterInput *input,
                          const gchar *value)
{
    g_return_if_fail (E_IS_FILTER_INPUT (input));

    g_list_foreach (input->values, (GFunc) g_free, NULL);
    g_list_free (input->values);

    input->values = g_list_append (NULL, g_strdup (value));
}