aboutsummaryrefslogtreecommitdiffstats
path: root/filter/rule-context.c
blob: 386e2cb7ab0af710b29539518ab8ac86eb0f9ef1 (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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/*
 *  Copyright (C) 2000 Helix Code Inc.
 *
 *  Authors: Not Zed <notzed@lostzed.mmc.com.au>
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public License
 *  as published by the Free Software Foundation; either version 2 of
 *  the License, or (at your option) any later version.
 *
 *  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 Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public
 *  License along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

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

#include <errno.h>
#include <gtk/gtk.h>
#include <gnome.h>

#include "rule-context.h"

#define d(x)

static int load(RuleContext * f, const char *system, const char *user);
static int save(RuleContext * f, const char *user);

static void rule_context_class_init(RuleContextClass * class);
static void rule_context_init(RuleContext * gspaper);
static void rule_context_finalise(GtkObject * obj);

#define _PRIVATE(x) (((RuleContext *)(x))->priv)

struct _RuleContextPrivate {
};

static GtkObjectClass *parent_class;

enum {
    LAST_SIGNAL
};

static guint signals[LAST_SIGNAL] = { 0 };

guint
rule_context_get_type(void)
{
    static guint type = 0;

    if (!type) {
        GtkTypeInfo type_info = {
            "RuleContext",
            sizeof(RuleContext),
            sizeof(RuleContextClass),
            (GtkClassInitFunc) rule_context_class_init,
            (GtkObjectInitFunc) rule_context_init,
            (GtkArgSetFunc) NULL,
            (GtkArgGetFunc) NULL
        };

        type = gtk_type_unique(gtk_object_get_type(), &type_info);
    }

    return type;
}

static void
rule_context_class_init(RuleContextClass * class)
{
    GtkObjectClass *object_class;

    object_class = (GtkObjectClass *) class;
    parent_class = gtk_type_class(gtk_object_get_type());

    object_class->finalize = rule_context_finalise;

    /* override methods */
    class->load = load;
    class->save = save;

    /* signals */

    gtk_object_class_add_signals(object_class, signals, LAST_SIGNAL);
}

static void
rule_context_init(RuleContext * o)
{
    o->priv = g_malloc0(sizeof(*o->priv));

    o->part_set_map = g_hash_table_new(g_str_hash, g_str_equal);
    o->rule_set_map = g_hash_table_new(g_str_hash, g_str_equal);
}

static void
rule_context_finalise(GtkObject * obj)
{
    RuleContext *o = (RuleContext *) obj;

    o = o;

    ((GtkObjectClass *) (parent_class))->finalize(obj);
}

/**
 * rule_context_new:
 *
 * Create a new RuleContext object.
 * 
 * Return value: A new #RuleContext object.
 **/
RuleContext *
rule_context_new(void)
{
    RuleContext *o = (RuleContext *) gtk_type_new(rule_context_get_type());

    return o;
}

void
rule_context_add_part_set(RuleContext * f, const char *setname, int part_type, RCPartFunc append, RCNextPartFunc next)
{
    struct _part_set_map *map;

    map = g_malloc0(sizeof(*map));
    map->type = part_type;
    map->append = append;
    map->next = next;
    map->name = g_strdup(setname);
    g_hash_table_insert(f->part_set_map, map->name, map);
    f->part_set_list = g_list_append(f->part_set_list, map);
    d(printf("adding part set '%s'\n", setname));
}

void
rule_context_add_rule_set(RuleContext * f, const char *setname, int rule_type, RCRuleFunc append, RCNextRuleFunc next)
{
    struct _rule_set_map *map;

    map = g_malloc0(sizeof(*map));
    map->type = rule_type;
    map->append = append;
    map->next = next;
    map->name = g_strdup(setname);
    g_hash_table_insert(f->rule_set_map, map->name, map);
    f->rule_set_list = g_list_append(f->rule_set_list, map);
    d(printf("adding rule set '%s'\n", setname));
}

/**
 * rule_context_set_error:
 * @f: 
 * @error: 
 * 
 * Set the text error for the context, or NULL to clear it.
 **/
static void
rule_context_set_error(RuleContext * f, char *error)
{
    g_free(f->error);
    f->error = error;
}

/**
 * rule_context_load:
 * @f: 
 * @system: 
 * @user: 
 *
 * Load a rule context from a system and user description file.
 * 
 * Return value: 
 **/
int
rule_context_load(RuleContext * f, const char *system, const char *user)
{
    d(printf("rule_context: loading %s %s\n", system, user));

    return ((RuleContextClass *) ((GtkObject *) f)->klass)->load(f, system, user);
}

static int
load(RuleContext * f, const char *system, const char *user)
{
    xmlNodePtr set, rule;
    struct _part_set_map *part_map;
    struct _rule_set_map *rule_map;

    rule_context_set_error(f, NULL);

    d(printf("loading rules %s %s\n", system, user));

    f->system = xmlParseFile(system);
    if (f->system == NULL) {
        rule_context_set_error(f, g_strdup_printf("Unable to load system rules '%s': %s",
                              system, strerror(errno)));
        return -1;
    }
    if (strcmp(f->system->root->name, "filterdescription")) {
        rule_context_set_error(f, g_strdup_printf("Unable to load system rules '%s': Invalid format", system));
        xmlFreeDoc(f->system);
        f->system = NULL;
        return -1;
    }
    /* doesn't matter if this doens't exist */
    f->user = xmlParseFile(user);

    /* now parse structure */
    /* get rule parts */
    set = f->system->root->childs;
    while (set) {
        d(printf("set name = %s\n", set->name));
        part_map = g_hash_table_lookup(f->part_set_map, set->name);
        if (part_map) {
            d(printf("loading parts ...\n"));
            rule = set->childs;
            while (rule) {
                if (!strcmp(rule->name, "part")) {
                    FilterPart *part = FILTER_PART(gtk_type_new(part_map->type));

                    if (filter_part_xml_create(part, rule) == 0) {
                        part_map->append(f, part);
                    } else {
                        gtk_object_unref((GtkObject *) part);
                        g_warning("Cannot load filter part");
                    }
                }
                rule = rule->next;
            }
        }
        set = set->next;
    }

    /* now load actual rules */
    if (f->user) {
        set = f->user->root->childs;
        while (set) {
            d(printf("set name = %s\n", set->name));
            rule_map = g_hash_table_lookup(f->rule_set_map, set->name);
            if (rule_map) {
                d(printf("loading rules ...\n"));
                rule = set->childs;
                while (rule) {
                    d(printf("checking node: %s\n", rule->name));
                    if (!strcmp(rule->name, "rule")) {
                        FilterRule *part = FILTER_RULE(gtk_type_new(rule_map->type));

                        if (filter_rule_xml_decode(part, rule, f) == 0) {
                            rule_map->append(f, part);
                        } else {
                            gtk_object_unref((GtkObject *) part);
                            g_warning("Cannot load filter part");
                        }
                    }
                    rule = rule->next;
                }
            }
            set = set->next;
        }
    }
    return 0;
}

/**
 * rule_context_save:
 * @f: 
 * @user: 
 * 
 * Save a rule context to disk.
 * 
 * Return value: 
 **/
int
rule_context_save(RuleContext * f, const char *user)
{
    return ((RuleContextClass *) ((GtkObject *) f)->klass)->save(f, user);
}

static int
save(RuleContext * f, const char *user)
{
    xmlDocPtr doc;
    xmlNodePtr root, rules, work;
    GList *l;
    FilterRule *rule;
    struct _rule_set_map *map;

    doc = xmlNewDoc("1.0");
    root = xmlNewDocNode(doc, NULL, "filteroptions", NULL);
    xmlDocSetRootElement(doc, root);
    l = f->rule_set_list;
    while (l) {
        map = l->data;
        rules = xmlNewDocNode(doc, NULL, map->name, NULL);
        xmlAddChild(root, rules);
        rule = NULL;
        while ((rule = map->next(f, rule, NULL))) {
            d(printf("processing rule %s\n", rule->name));
            work = filter_rule_xml_encode(rule);
            xmlAddChild(rules, work);
        }
        l = g_list_next(l);
    }
    xmlSaveFile(user, doc);
    xmlFreeDoc(doc);
    return 0;
}

FilterPart *
rule_context_find_part(RuleContext * f, const char *name)
{
    d(printf("find part : "));
    return filter_part_find_list(f->parts, name);
}

FilterPart *
rule_context_create_part(RuleContext * f, const char *name)
{
    FilterPart *part;

    part = rule_context_find_part(f, name);
    if (part)
        part = filter_part_clone(part);
    return part;
}

FilterPart *
rule_context_next_part(RuleContext * f, FilterPart * last)
{
    return filter_part_next_list(f->parts, last);
}

FilterRule *
rule_context_next_rule(RuleContext * f, FilterRule * last, const char *source)
{
    return filter_rule_next_list(f->rules, last, source);
}

FilterRule *
rule_context_find_rule(RuleContext * f, const char *name, const char *source)
{
    return filter_rule_find_list(f->rules, name, source);
}

void
rule_context_add_part(RuleContext * f, FilterPart * part)
{
    f->parts = g_list_append(f->parts, part);
}

void
rule_context_add_rule(RuleContext * f, FilterRule * new)
{
    f->rules = g_list_append(f->rules, new);
}

static void
new_rule_clicked(GtkWidget * w, int button, RuleContext * context)
{
#ifndef NO_WARNINGS
#warning "Need a changed signal for this to work best"
#endif
    if (button == 0) {
        FilterRule *rule = gtk_object_get_data((GtkObject *) w, "rule");
        char *user = gtk_object_get_data((GtkObject *) w, "path");

        gtk_object_ref((GtkObject *) rule);
        rule_context_add_rule(context, rule);
        if (user) {
            rule_context_save((RuleContext *) context, user);
        }
    }
    if (button != -1) {
        gnome_dialog_close((GnomeDialog *) w);
    }
}

/* add a rule, with a gui, asking for confirmation first ... optionally save to path */
void
rule_context_add_rule_gui(RuleContext * f, FilterRule * rule, const char *title, const char *path)
{
    GtkWidget *w;
    GnomeDialog *gd;

    w = filter_rule_get_widget(rule, f);
    gd = (GnomeDialog *) gnome_dialog_new(title, GNOME_STOCK_BUTTON_OK, GNOME_STOCK_BUTTON_CANCEL, NULL);
    gtk_window_set_policy(GTK_WINDOW(gd), FALSE, TRUE, FALSE);
    gtk_box_pack_start((GtkBox *) gd->vbox, w, TRUE, TRUE, 0);
    gtk_widget_show((GtkWidget *) gd);
    gtk_object_set_data_full((GtkObject *) gd, "rule", rule, (GtkDestroyNotify) gtk_object_unref);
    if (path)
        gtk_object_set_data_full((GtkObject *) gd, "path", g_strdup(path), (GtkDestroyNotify) g_free);
    gtk_signal_connect((GtkObject *) gd, "clicked", new_rule_clicked, f);
    gtk_object_ref((GtkObject *) f);
    gtk_object_set_data_full((GtkObject *) gd, "context", f, (GtkDestroyNotify) gtk_object_unref);
    gtk_widget_show((GtkWidget *) gd);
}

void
rule_context_remove_rule(RuleContext * f, FilterRule * rule)
{
    f->rules = g_list_remove(f->rules, rule);
}

void
rule_context_rank_rule(RuleContext * f, FilterRule * rule, int rank)
{
    f->rules = g_list_remove(f->rules, rule);
    f->rules = g_list_insert(f->rules, rule, rank);
}

int
rule_context_get_rank_rule(RuleContext * f, FilterRule * rule, const char *source)
{
    GList *n = f->rules;
    int i = 0;

    while (n) {
        FilterRule *r = n->data;

        if (r == rule)
            return i;
        if (source == NULL || (r->source && strcmp(r->source, source) == 0))
            i++;
        n = g_list_next(n);
    }
    return i;
}