📄 xmlj_xpath.c
字号:
/* 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 modifyit under the terms of the GNU General Public License as published bythe 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, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING. If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library. Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule. An independent module is a module which is not derived fromor based on this library. If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so. If you do not wish to do so, delete thisexception 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_GnomeXPathNSResolver.h"#include "gnu_xml_libxmlj_dom_GnomeXPathResult.h"#include "xmlj_node.h"#include "xmlj_util.h"#include <libxml/xpath.h>/* Local function prototypes */xmlXPathContextPtrxmljCreateXPathContextPtr (xmlNodePtr node);jobjectxmljGetXPathResult (JNIEnv *env, xmlXPathObjectPtr obj);jobjectxmljGetXPathNodeList (JNIEnv *env, xmlXPathObjectPtr obj);xmlXPathObjectPtrxmljGetXPathObjectID (JNIEnv *env, jobject obj);/** * Creates an XPath context for the given node. */xmlXPathContextPtrxmljCreateXPathContextPtr (xmlNodePtr node){ xmlXPathContextPtr ctx; ctx = xmlXPathNewContext (node->doc); ctx->node = node; return ctx;}/** * Converts an xmlXPathObjectPtr to a Java XPathResult. */jobjectxmljGetXPathResult (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. */jobjectxmljGetXPathNodeList (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;}xmlXPathObjectPtrxmljGetXPathObjectID (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 JNICALLJava_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 JNICALLJava_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 JNICALLJava_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 JNICALLJava_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 JNICALLJava_gnu_xml_libxmlj_dom_GnomeXPathResult_free (JNIEnv *env, jobject self __attribute__((__unused__)), jobject obj){ xmlXPathFreeObject ((xmlXPathObjectPtr) xmljAsPointer (env, obj));}JNIEXPORT jshort JNICALLJava_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 JNICALLJava_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 JNICALLJava_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);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -