#endif
#include "xml.h"
+
+xmlNodeSet
+*zak_utils_xml_filter (xmlDoc *xdoc, xmlNode *xnode, const xmlChar *filter)
+{
+ xmlXPathContextPtr xpcontext;
+ xmlXPathObjectPtr xpresult;
+ xmlNodeSet *xnodeset;
+
+ xpcontext = xmlXPathNewContext (xdoc);
+ if (xnode != NULL)
+ {
+ xpcontext->node = xnode;
+ }
+ else
+ {
+ xpcontext->node = xmlDocGetRootElement (xdoc);
+ }
+ xpresult = xmlXPathEvalExpression (filter, xpcontext);
+ if (!xmlXPathNodeSetIsEmpty (xpresult->nodesetval))
+ {
+ xnodeset = xpresult->nodesetval;
+ }
+ else
+ {
+ xnodeset = NULL;
+ }
+
+ return xnodeset;
+}
#include <glib-object.h>
#include <gio/gio.h>
#include <libxml/tree.h>
+#include <libxml/xpath.h>
G_BEGIN_DECLS
+xmlNodeSet *zak_utils_xml_filter (xmlDoc *xdoc, xmlNode *xnode, const xmlChar *filter);
G_END_DECLS