123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625 |
- /* xmlj_xpath.c -
- Copyright (C) 2004 Free Software Foundation, Inc.
- This file is part of GNU Classpath.
- GNU Classpath is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
-
- GNU Classpath 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
- General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with GNU Classpath; see the file COPYING. If not, write to the
- Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- 02110-1301 USA.
- Linking this library statically or dynamically with other modules is
- making a combined work based on this library. Thus, the terms and
- conditions of the GNU General Public License cover the whole
- combination.
- As a special exception, the copyright holders of this library give you
- permission to link this library with independent modules to produce an
- executable, regardless of the license terms of these independent
- modules, and to copy and distribute the resulting executable under
- terms of your choice, provided that you also meet, for each linked
- independent module, the terms and conditions of the license of that
- module. An independent module is a module which is not derived from
- or based on this library. If you modify this library, you may extend
- this exception to your version of the library, but you are not
- obligated to do so. If you do not wish to do so, delete this
- exception statement from your version. */
- #include "gnu_xml_libxmlj_dom_GnomeDocument.h"
- #include "gnu_xml_libxmlj_dom_GnomeElement.h"
- #include "gnu_xml_libxmlj_dom_GnomeXPathExpression.h"
- #include "gnu_xml_libxmlj_dom_GnomeXPathNodeList.h"
- #include "gnu_xml_libxmlj_dom_GnomeXPathResult.h"
- #include "xmlj_node.h"
- #include "xmlj_util.h"
- #include <libxml/xpath.h>
- /* Local function prototypes */
- xmlXPathContextPtr
- xmljCreateXPathContextPtr (xmlNodePtr node);
- jobject
- xmljGetXPathResult (JNIEnv *env, xmlXPathObjectPtr obj);
- jobject
- xmljGetXPathNodeList (JNIEnv *env, xmlXPathObjectPtr obj);
- xmlXPathObjectPtr
- xmljGetXPathObjectID (JNIEnv *env, jobject obj);
- /**
- * Creates an XPath context for the given node.
- */
- xmlXPathContextPtr
- xmljCreateXPathContextPtr (xmlNodePtr node)
- {
- xmlXPathContextPtr ctx;
- ctx = xmlXPathNewContext (node->doc);
- ctx->node = node;
- return ctx;
- }
- /**
- * Converts an xmlXPathObjectPtr to a Java XPathResult.
- */
- jobject
- xmljGetXPathResult (JNIEnv *env, xmlXPathObjectPtr obj)
- {
- jclass cls;
- jmethodID method;
- jobject ret;
- jobject val;
-
- if (obj == NULL)
- {
- return NULL;
- }
- cls = (*env)->FindClass (env, "gnu/xml/libxmlj/dom/GnomeXPathResult");
- if (cls == NULL)
- {
- return NULL;
- }
- method = (*env)->GetMethodID (env, cls, "<init>", "(Ljava/lang/Object;)V");
- if (method == NULL)
- {
- return NULL;
- }
- val = xmljAsField (env, obj);
- ret = (*env)->NewObject (env, cls, method, val);
-
- return ret;
- }
- /**
- * Converts an xmlXPathObjectPtr to a Java XPathNodeList.
- */
- jobject
- xmljGetXPathNodeList (JNIEnv *env, xmlXPathObjectPtr obj)
- {
- jclass cls;
- jmethodID method;
- jobject ret;
- jobject val;
-
- if (obj == NULL)
- {
- return NULL;
- }
- cls = (*env)->FindClass (env, "gnu/xml/libxmlj/dom/GnomeXPathNodeList");
- if (cls == NULL)
- {
- return NULL;
- }
- method = (*env)->GetMethodID (env, cls, "<init>", "(Ljava/lang/Object;)V");
- if (method == NULL)
- {
- return NULL;
- }
- val = xmljAsField (env, obj);
- ret = (*env)->NewObject (env, cls, method, val);
-
- return ret;
- }
- xmlXPathObjectPtr
- xmljGetXPathObjectID (JNIEnv *env, jobject obj)
- {
- jclass cls;
- jfieldID field;
- jobject val;
- xmlXPathObjectPtr ret;
- cls = (*env)->GetObjectClass (env, obj);
- if (cls == NULL)
- {
- return NULL;
- }
- field = (*env)->GetFieldID (env, cls, "obj", "Ljava/lang/Object;");
- if (field == NULL)
- {
- return NULL;
- }
- val = (*env)->GetObjectField (env, obj, field);
- ret = (xmlXPathObjectPtr) xmljAsPointer (env, val);
- return ret;
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeDocument_evaluate (JNIEnv *env,
- jobject self
- __attribute__((__unused__)),
- jstring expression,
- jobject contextNode,
- jobject resolver,
- jshort type,
- jobject result)
- {
- const xmlChar *str;
- xmlNodePtr node;
- xmlXPathContextPtr ctx;
- xmlXPathObjectPtr eval = NULL;
-
- str = xmljGetStringChars (env, expression);
- node = xmljGetNodeID (env, contextNode);
- if (node == NULL)
- {
- return NULL;
- }
- ctx = xmljCreateXPathContextPtr (node);
- if (ctx != NULL)
- {
- eval = xmlXPathEval (str, ctx);
- xmlXPathFreeContext (ctx);
- }
- xmlFree ((xmlChar *) str);
- return xmljGetXPathResult (env, eval);
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathExpression_init (JNIEnv *env,
- jobject self
- __attribute__((__unused__)),
- jstring expression)
- {
- const xmlChar *str;
- xmlXPathCompExprPtr ptr;
- str = xmljGetStringChars (env, expression);
- ptr = xmlXPathCompile (str);
- xmlFree ((xmlChar *) str);
- return xmljAsField (env, ptr);
- }
- JNIEXPORT void JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathExpression_free (JNIEnv *env,
- jobject self
- __attribute__((__unused__)),
- jobject ptr)
- {
- xmlXPathCompExprPtr expr;
- expr = (xmlXPathCompExprPtr) xmljAsPointer (env, ptr);
- xmlXPathFreeCompExpr (expr);
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathExpression_doEvaluate (JNIEnv *env,
- jobject self
- __attribute__((__unused__)),
- jobject ptr,
- jobject contextNode,
- jshort type,
- jobject result)
- {
- xmlXPathCompExprPtr expr;
- xmlNodePtr node;
- xmlXPathContextPtr ctx;
- xmlXPathObjectPtr eval = NULL;
- expr = (xmlXPathCompExprPtr) xmljAsPointer (env, ptr);
- node = xmljGetNodeID (env, contextNode);
- if (node == NULL)
- {
- return NULL;
- }
- ctx = xmljCreateXPathContextPtr (node);
- if (ctx != NULL)
- {
- eval = xmlXPathCompiledEval (expr, ctx);
- xmlXPathFreeContext (ctx);
- }
- return xmljGetXPathResult (env, eval);
- }
- JNIEXPORT void JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_free (JNIEnv *env,
- jobject self
- __attribute__((__unused__)),
- jobject obj)
- {
- xmlXPathFreeObject ((xmlXPathObjectPtr) xmljAsPointer (env, obj));
- }
- JNIEXPORT jshort JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_getResultType (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- switch (obj->type)
- {
- case XPATH_UNDEFINED:
- return 0; /* ANY_TYPE */
- case XPATH_NUMBER:
- return 1; /* NUMBER_TYPE */
- case XPATH_STRING:
- return 2; /* STRING_TYPE */
- case XPATH_BOOLEAN:
- return 3; /* BOOLEAN_TYPE */
- case XPATH_NODESET:
- return 6; /* UNORDERED_NODE_SNAPSHOT_TYPE */
- case XPATH_POINT:
- case XPATH_RANGE:
- case XPATH_LOCATIONSET:
- case XPATH_USERS:
- case XPATH_XSLT_TREE:
- /* TODO */
- default:
- return -1; /* TODO */
- }
- }
- JNIEXPORT jdouble JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_getNumberValue (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- if (obj == NULL)
- {
- return 0.0;
- }
- return obj->floatval;
- }
- JNIEXPORT jstring JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_getStringValue (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- if (obj == NULL)
- {
- return NULL;
- }
- return xmljNewString (env, obj->stringval);
- }
- JNIEXPORT jboolean JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_getBooleanValue (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- return obj->boolval;
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_getSingleNodeValue (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- if (obj == NULL)
- {
- return NULL;
- }
- if (obj->nodesetval == NULL)
- {
- return NULL;
- }
- if (obj->nodesetval->nodeNr > 0)
- {
- return xmljGetNodeInstance (env, obj->nodesetval->nodeTab[0]);
- }
- else
- {
- return NULL;
- }
- }
- JNIEXPORT jboolean JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_getInvalidIteratorState (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- return 0; /* TODO */
- }
- JNIEXPORT jint JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_getSnapshotLength (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- if (obj == NULL)
- {
- return -1;
- }
- if (obj->nodesetval == NULL)
- {
- return -1;
- }
- return obj->nodesetval->nodeNr;
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_iterateNext (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- return NULL; /* TODO */
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathResult_snapshotItem (JNIEnv *env,
- jobject self,
- jint index)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- if (obj == NULL)
- {
- return NULL;
- }
- if (obj->nodesetval == NULL)
- {
- return NULL;
- }
- if (obj->nodesetval->nodeNr > 0)
- {
- return xmljGetNodeInstance (env, obj->nodesetval->nodeTab[index]);
- }
- else
- {
- return NULL;
- }
- }
- /* -- GnomeXPathNodeList -- */
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeDocument_getElementsByTagName (JNIEnv *env,
- jobject self,
- jstring name)
- {
- return Java_gnu_xml_libxmlj_dom_GnomeElement_getElementsByTagName (env,
- self,
- name);
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeElement_getElementsByTagName (JNIEnv *env,
- jobject self,
- jstring name)
- {
- const xmlChar *s_name;
- const xmlChar *format;
- xmlChar expr[256];
- xmlNodePtr node;
- xmlXPathContextPtr ctx;
- xmlXPathObjectPtr eval = NULL;
-
- node = xmljGetNodeID (env, self);
- if (node == NULL)
- {
- return NULL;
- }
- s_name = xmljGetStringChars (env, name);
- if (xmlStrEqual (s_name, BAD_CAST "*"))
- {
- format = xmlCharStrdup ("descendant-or-self::*[node-type()=1]");
- if (xmlStrPrintf (expr, 256, format) == -1)
- {
- return NULL;
- }
- }
- else
- {
- format = xmlCharStrdup ("descendant-or-self::*[name()='%s']");
- if (xmlStrPrintf (expr, 256, format, s_name) == -1)
- {
- return NULL;
- }
- }
- xmlFree ((xmlChar *) s_name);
- ctx = xmljCreateXPathContextPtr (node);
- if (ctx != NULL)
- {
- eval = xmlXPathEval (expr, ctx);
- xmlXPathFreeContext (ctx);
- }
- return xmljGetXPathNodeList (env, eval);
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeDocument_getElementsByTagNameNS (JNIEnv *env,
- jobject self,
- jstring uri,
- jstring localName)
- {
- return Java_gnu_xml_libxmlj_dom_GnomeElement_getElementsByTagNameNS (env,
- self,
- uri,
- localName);
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeElement_getElementsByTagNameNS (JNIEnv *env,
- jobject self,
- jstring uri,
- jstring localName)
- {
- const xmlChar *s_uri;
- const xmlChar *s_localName;
- const xmlChar *format;
- xmlChar expr[256];
- xmlNodePtr node;
- xmlXPathContextPtr ctx;
- xmlXPathObjectPtr eval = NULL;
-
- node = xmljGetNodeID (env, self);
- if (node == NULL)
- {
- return NULL;
- }
- s_uri = xmljGetStringChars (env, uri);
- s_localName = xmljGetStringChars (env, localName);
- if (uri == NULL)
- {
- /* namespace URI is empty */
- if (xmlStrEqual (s_localName, BAD_CAST "*"))
- {
- format = xmlCharStrdup ("descendant-or-self::*[namespace-uri()='' and node-type()=1]");
- if (xmlStrPrintf (expr, 256, format) == -1)
- {
- return NULL;
- }
- }
- else
- {
- format = xmlCharStrdup ("descendant-or-self::*[namespace-uri()='' and local-name()='%s']");
- if (xmlStrPrintf (expr, 256, format, s_localName) == -1)
- {
- return NULL;
- }
- }
- }
- else if (xmlStrEqual (s_uri, BAD_CAST "*"))
- {
- /* matches all namespaces */
- if (xmlStrEqual (s_localName, BAD_CAST "*"))
- {
- format = xmlCharStrdup ("descendant-or-self::*[node-type()=1]");
- if (xmlStrPrintf (expr, 256, format) == -1)
- {
- return NULL;
- }
- }
- else
- {
- format = xmlCharStrdup ("descendant-or-self::*[local-name()='%s']");
- if (xmlStrPrintf (expr, 256, format, s_localName) == -1)
- {
- return NULL;
- }
- }
- }
- else
- {
- if (xmlStrEqual (s_localName, BAD_CAST "*"))
- {
- format = xmlCharStrdup ("descendant-or-self::*[namespace-uri()='%s' and node-type()=1]");
- if (xmlStrPrintf (expr, 256, format, s_uri) == -1)
- {
- return NULL;
- }
- }
- else
- {
- format = xmlCharStrdup ("descendant-or-self::*[namespace-uri()='%s' and local-name()='%s']");
- if (xmlStrPrintf (expr, 256, format, s_uri, s_localName) == -1)
- {
- return NULL;
- }
- }
- }
- xmlFree ((xmlChar *) s_uri);
- xmlFree ((xmlChar *) s_localName);
- ctx = xmljCreateXPathContextPtr (node);
- if (ctx != NULL)
- {
- eval = xmlXPathEval (expr, ctx);
- xmlXPathFreeContext (ctx);
- }
- return xmljGetXPathNodeList (env, eval);
- }
- JNIEXPORT void JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathNodeList_free (JNIEnv *env,
- jobject self
- __attribute__((__unused__)),
- jobject obj)
- {
- xmlXPathFreeObject ((xmlXPathObjectPtr) xmljAsPointer (env, obj));
- }
- JNIEXPORT jint JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathNodeList_getLength (JNIEnv *env,
- jobject self)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- if (obj == NULL)
- {
- return 0;
- }
- if (obj->nodesetval == NULL)
- {
- return 0;
- }
- return obj->nodesetval->nodeNr;
- }
- JNIEXPORT jobject JNICALL
- Java_gnu_xml_libxmlj_dom_GnomeXPathNodeList_item (JNIEnv *env,
- jobject self,
- jint index)
- {
- xmlXPathObjectPtr obj;
-
- obj = xmljGetXPathObjectID (env, self);
- if (obj == NULL)
- {
- return NULL;
- }
- if (obj->nodesetval == NULL)
- {
- return NULL;
- }
- if (obj->nodesetval->nodeNr > 0)
- {
- return xmljGetNodeInstance (env, obj->nodesetval->nodeTab[index]);
- }
- else
- {
- return NULL;
- }
- }
|