aboutsummaryrefslogblamecommitdiffstats
path: root/filter/filter-xml.h
blob: a2e0cfada040c5ec9f10d7bc5cb627cdb37ad92d (plain) (tree)
1
2
3
4
5
6
7
8
9



                     


                           

                       













































                                                       







                                                                 




                                                                                    
                            

#ifndef _FILTER_XML_H
#define _FILTER_XML_H

#include <glib.h>
#include <gnome-xml/tree.h>

#include "filter-arg.h"

enum filter_xml_token {
    FILTER_XML_TEXT=0,
    FILTER_XML_RULE,
    FILTER_XML_CODE,
    FILTER_XML_DESC,
    FILTER_XML_RULESET,
    FILTER_XML_OPTION,
    FILTER_XML_OPTIONRULE,
    FILTER_XML_OPTIONSET,
    FILTER_XML_OPTIONVALUE,
    FILTER_XML_SOURCE,
    FILTER_XML_SEND,
    FILTER_XML_RECEIVE,
    FILTER_XML_ADDRESS,
    FILTER_XML_FOLDER,
    FILTER_XML_NAME,
    FILTER_XML_MATCH,
    FILTER_XML_ACTION,
    FILTER_XML_EXCEPT
};

struct filter_desc {
    int type;
    char *data;
    char *varname;      /* for named types */
    int vartype;
};

struct filter_rule {
    int type;
    char *name;
    char *code;
    GList *description;
};

struct filter_optionrule {
    struct filter_rule *rule;
    GList *args;        /* FilterArg objects */
};

struct filter_option {
    int type;       /* 'send' 'receive'? */
    GList *description; /* filter_desc */
    GList *options;     /* option_rule */
};

GList *filter_load_ruleset(xmlDocPtr doc);
GList *filter_load_optionset(xmlDocPtr doc, GList *rules);
xmlNodePtr filter_write_optionset(xmlDocPtr doc, GList *optionl);

/* callbacks for searching GLists of various types */
int filter_find_rule(struct filter_rule *a, char *name);
int filter_find_arg(FilterArg *a, char *name);

/* utility functions */
struct filter_optionrule *filter_clone_optionrule(struct filter_optionrule *or);
void filter_clone_optionrule_free(struct filter_optionrule *or);
struct filter_optionrule *filter_optionrule_new_from_rule(struct filter_rule *rule);

#endif /* ! _FILTER_XML_H */