Dead
[official-gcc.git] / gomp-20050608-branch / libjava / classpath / native / jni / xmlj / xmlj_node.c
blob20832678a25f1475d0f450d1658d28fc5017137a
1 /* xmlj_node.c -
2 Copyright (C) 2004 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 #include "xmlj_error.h"
39 #include "xmlj_node.h"
40 #include "xmlj_util.h"
41 #include <libxml/xmlstring.h>
44 * Returns the node ID for the given GnomeNode object.
46 xmlNodePtr
47 xmljGetNodeID (JNIEnv * env, jobject self)
49 jclass cls;
50 jfieldID field;
51 jobject id;
52 xmlNodePtr node;
54 if (self == NULL)
56 xmljThrowDOMException (env, 8, NULL); /* NOT_FOUND_ERR */
57 return NULL;
59 cls = (*env)->GetObjectClass (env, self);
60 if (cls == NULL)
62 return NULL;
64 field = (*env)->GetFieldID (env, cls, "id", "Ljava/lang/Object;");
65 if (field == NULL)
67 return NULL;
69 id = (*env)->GetObjectField (env, self, field);
70 node = (xmlNodePtr) xmljAsPointer (env, id);
71 if (node == NULL)
73 xmljThrowDOMException (env, 8, NULL); /* NOT_FOUND_ERR */
75 return node;
79 * Returns the Java node instanced corresponding to the specified node ID.
81 jobject
82 xmljGetNodeInstance (JNIEnv * env, xmlNodePtr node)
84 jclass cls;
85 jmethodID method;
86 xmlElementType type;
88 if (node == NULL)
89 return NULL;
91 /* Invoke the GnomeNode.newInstance class method */
92 cls = (*env)->FindClass (env, "gnu/xml/libxmlj/dom/GnomeNode");
93 if (cls == NULL)
95 return NULL;
97 method = (*env)->GetStaticMethodID (env, cls, "newInstance",
98 "(Ljava/lang/Object;Ljava/lang/Object;I)Lgnu/xml/libxmlj/dom/GnomeNode;");
100 if (method == NULL)
102 return NULL;
104 type = node->type;
105 switch (type)
107 case XML_DTD_NODE:
108 type = XML_DOCUMENT_TYPE_NODE;
109 break;
110 case XML_ATTRIBUTE_DECL:
111 type = XML_ATTRIBUTE_NODE;
112 break;
113 case XML_ENTITY_DECL:
114 type = XML_ENTITY_NODE;
115 break;
116 default:
117 break;
119 return (*env)->CallStaticObjectMethod (env, cls, method,
120 xmljAsField (env, node->doc),
121 xmljAsField (env, node),
122 type);
125 void
126 xmljFreeDoc (JNIEnv * env, xmlDocPtr doc)
128 jclass cls;
129 jmethodID method;
131 /* Invoke the GnomeNode.freeDocument class method */
132 cls = (*env)->FindClass (env, "gnu/xml/libxmlj/dom/GnomeNode");
133 if (cls == NULL)
135 return;
137 method = (*env)->GetStaticMethodID (env, cls, "freeDocument",
138 "(Ljava/lang/Object;)V");
139 if (method == NULL)
141 return;
143 (*env)->CallStaticVoidMethod (env, cls, method, xmljAsField (env, doc));
147 xmljMatch (const xmlChar * name, xmlNodePtr node)
149 switch (node->type)
151 case XML_ELEMENT_NODE:
152 case XML_ATTRIBUTE_NODE:
153 return xmlStrcmp (node->name, name);
154 default:
155 return 1;
160 xmljMatchNS (const xmlChar * uri, const xmlChar * localName, xmlNodePtr node)
162 xmlNsPtr ns;
163 const xmlChar *nodeLocalName;
164 int *len;
165 int ret;
167 switch (node->type)
169 case XML_ELEMENT_NODE:
170 case XML_ATTRIBUTE_NODE:
171 len = (int *) malloc (sizeof (int));
172 if (xmlSplitQName3 (node->name, len) != NULL)
174 nodeLocalName = node->name + (*len);
176 else
178 nodeLocalName = node->name;
180 free (len);
181 ns = node->ns;
182 if (ns == NULL || ns->href == NULL)
184 if (uri != NULL)
186 return 0;
188 ret = xmlStrcmp (localName, nodeLocalName);
190 else
192 if (uri == NULL)
194 return 0;
196 ret = (xmlStrcmp (localName, nodeLocalName) &&
197 xmlStrcmp (uri, ns->href));
199 return ret;
200 default:
201 return 1;