Version 1.12.
[pwmd.git] / src / xml.h
blob3b7bfa6e62e42374d47e0c7073eb49d0d8dd158f
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2008 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
19 #ifndef XML_H
20 #define XML_H
22 #include <libxml/tree.h>
23 #include <libxml/parser.h>
24 #include <libxml/xpath.h>
26 #include "gettext.h"
27 #define N_(msgid) gettext(msgid)
29 struct element_list_s {
30 GSList *list;
31 gchar **elements;
32 gchar *prefix;
33 gint depth;
34 gboolean resolving;
37 gint max_recursion_depth;
39 gpg_error_t new_account(xmlDocPtr doc, gchar *name);
40 xmlChar *new_document(void);
41 gpg_error_t list_accounts(xmlDocPtr doc, GString **);
42 gboolean valid_xml_element(xmlChar *element);
43 gchar **split_input_line(gchar *str, gchar *delim, gint n);
44 xmlNodePtr find_elements(xmlDocPtr doc, xmlNodePtr node,
45 gchar **req, gpg_error_t *error, gboolean *target,
46 xmlNodePtr (*found_fn)(xmlNodePtr, gchar **, gpg_error_t *, gchar **, void *),
47 xmlNodePtr (*not_found_fn)(xmlNodePtr, gchar **, gpg_error_t *, void *),
48 gboolean is_list_command, gint recursion_depth, void *data);
49 xmlNodePtr find_account(xmlDocPtr doc, gchar ***req, gpg_error_t *error,
50 gboolean *target, gint recursion_depth);
51 xmlNodePtr create_elements_cb(xmlNodePtr node, gchar **elements,
52 gpg_error_t *error, void *data);
53 xmlNodePtr create_target_elements_cb(xmlNodePtr node, gchar **elements,
54 gpg_error_t *error, void *data);
55 gboolean is_literal_element(gchar **element);
56 gboolean valid_element_path(gchar **path, gboolean has_value);
57 xmlNodePtr find_text_node(xmlNodePtr node);
58 gpg_error_t create_path_list(xmlDocPtr doc, struct element_list_s *elements,
59 gchar *path);
60 gpg_error_t recurse_xpath_nodeset(xmlDocPtr doc, xmlNodeSetPtr nodes,
61 xmlChar *value, xmlBufferPtr *result);
63 #endif