aboutsummaryrefslogtreecommitdiffstats
path: root/filter/rule-context.h
blob: 63c9abaa67f9a7066cfb9a7bf76fd8e53833240c (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
/*
 *
 * 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; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the 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)
 *
 */

#ifndef _RULE_CONTEXT_H
#define _RULE_CONTEXT_H

#include <glib.h>
#include <glib-object.h>
#include <libxml/parser.h>

#include "filter-part.h"
#include "filter-rule.h"

#define RULE_TYPE_CONTEXT            (rule_context_get_type ())
#define RULE_CONTEXT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), RULE_TYPE_CONTEXT, RuleContext))
#define RULE_CONTEXT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), RULE_TYPE_CONTEXT, RuleContextClass))
#define IS_RULE_CONTEXT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), RULE_TYPE_CONTEXT))
#define IS_RULE_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), RULE_TYPE_CONTEXT))
#define RULE_CONTEXT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), RULE_TYPE_CONTEXT, RuleContextClass))

typedef struct _RuleContext RuleContext;
typedef struct _RuleContextClass RuleContextClass;

/* backend capabilities, this is a hack since we don't support nested rules */
enum {
    RULE_CONTEXT_GROUPING = 1 << 0,
    RULE_CONTEXT_THREADING = 1 << 1
};

struct _RuleContext {
    GObject parent_object;
    struct _RuleContextPrivate *priv;

    gchar *error;              /* string version of error */

    guint32 flags;      /* capability flags */

    GList *parts;
    GList *rules;

    GHashTable *part_set_map; /* map set types to part types */
    GList *part_set_list;
    GHashTable *rule_set_map; /* map set types to rule types */
    GList *rule_set_list;
};

typedef void (*RCRegisterFunc) (RuleContext *rc, FilterRule *rule, gpointer user_data);

struct _RuleContextClass {
    GObjectClass parent_class;

    /* virtual methods */
    gint (*load) (RuleContext *rc, const gchar *system, const gchar *user);
    gint (*save) (RuleContext *rc, const gchar *user);
    gint (*revert) (RuleContext *rc, const gchar *user);

    GList *(*delete_uri) (RuleContext *rc, const gchar *uri, GCompareFunc cmp);
    GList *(*rename_uri) (RuleContext *rc, const gchar *olduri, const gchar *newuri, GCompareFunc cmp);

    FilterElement *(*new_element)(RuleContext *rc, const gchar *name);

    /* signals */
    void (*rule_added) (RuleContext *rc, FilterRule *rule);
    void (*rule_removed) (RuleContext *rc, FilterRule *rule);
    void (*changed) (RuleContext *rc);
};

typedef void (*RCPartFunc) (RuleContext *rc, FilterPart *part);
typedef void (*RCRuleFunc) (RuleContext *rc, FilterRule *part);
typedef FilterPart * (*RCNextPartFunc) (RuleContext *rc, FilterPart *part);
typedef FilterRule * (*RCNextRuleFunc) (RuleContext *rc, FilterRule *rule, const gchar *source);

struct _part_set_map {
    gchar *name;
    GType type;
    RCPartFunc append;
    RCNextPartFunc next;
};

struct _rule_set_map {
    gchar *name;
    GType type;
    RCRuleFunc append;
    RCNextRuleFunc next;
};

GType rule_context_get_type (void);

/* methods */
RuleContext *rule_context_new (void);

/* io */
gint rule_context_load (RuleContext *rc, const gchar *system, const gchar *user);
gint rule_context_save (RuleContext *rc, const gchar *user);
gint rule_context_revert (RuleContext *rc, const gchar *user);

void rule_context_add_part (RuleContext *rc, FilterPart *new);
FilterPart *rule_context_find_part (RuleContext *rc, const gchar *name);
FilterPart *rule_context_create_part (RuleContext *rc, const gchar *name);
FilterPart *rule_context_next_part (RuleContext *rc, FilterPart *last);

FilterRule *rule_context_next_rule (RuleContext *rc, FilterRule *last, const gchar *source);
FilterRule *rule_context_find_rule (RuleContext *rc, const gchar *name, const gchar *source);
FilterRule *rule_context_find_rank_rule (RuleContext *rc, gint rank, const gchar *source);
void rule_context_add_rule (RuleContext *rc, FilterRule *new);
void rule_context_add_rule_gui (RuleContext *rc, FilterRule *rule, const gchar *title, const gchar *path);
void rule_context_remove_rule (RuleContext *rc, FilterRule *rule);

/* get/set the rank (position) of a rule */
void rule_context_rank_rule (RuleContext *rc, FilterRule *rule, const gchar *source, gint rank);
gint rule_context_get_rank_rule (RuleContext *rc, FilterRule *rule, const gchar *source);

/* setup type for set parts */
void rule_context_add_part_set (RuleContext *rc, const gchar *setname, GType part_type,
                RCPartFunc append, RCNextPartFunc next);
void rule_context_add_rule_set (RuleContext *rc, const gchar *setname, GType rule_type,
                RCRuleFunc append, RCNextRuleFunc next);

/* dynamic element types */
FilterElement *rule_context_new_element(RuleContext *rc, const gchar *name);

/* uri's disappear/renamed externally */
GList *rule_context_delete_uri (RuleContext *rc, const gchar *uri, GCompareFunc cmp);
GList *rule_context_rename_uri (RuleContext *rc, const gchar *olduri, const gchar *newuri, GCompareFunc cmp);

void rule_context_free_uri_list (RuleContext *rc, GList *uris);

#endif /* ! _RULE_CONTEXT_H */