libxml-ruby 0.9.2-x86-mswin32-60 → 0.9.3-x86-mswin32-60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +13 -0
- data/ext/libxml/libxml.c +885 -886
- data/ext/libxml/ruby_libxml.h +70 -72
- data/ext/libxml/ruby_xml_attr.c +76 -76
- data/ext/libxml/ruby_xml_attr.h +8 -8
- data/ext/libxml/ruby_xml_attributes.c +36 -36
- data/ext/libxml/ruby_xml_attributes.h +6 -6
- data/ext/libxml/ruby_xml_document.c +133 -220
- data/ext/libxml/ruby_xml_document.h +4 -7
- data/ext/libxml/ruby_xml_dtd.c +30 -109
- data/ext/libxml/ruby_xml_dtd.h +2 -11
- data/ext/libxml/ruby_xml_error.c +10 -10
- data/ext/libxml/ruby_xml_error.h +4 -4
- data/ext/libxml/ruby_xml_html_parser.c +28 -40
- data/ext/libxml/ruby_xml_html_parser.h +4 -4
- data/ext/libxml/ruby_xml_input.c +208 -32
- data/ext/libxml/ruby_xml_input.h +7 -5
- data/ext/libxml/ruby_xml_input_cbg.c +3 -3
- data/ext/libxml/ruby_xml_node.c +217 -217
- data/ext/libxml/ruby_xml_node.h +5 -5
- data/ext/libxml/ruby_xml_ns.c +26 -26
- data/ext/libxml/ruby_xml_ns.h +4 -4
- data/ext/libxml/ruby_xml_parser.c +151 -164
- data/ext/libxml/ruby_xml_parser.h +3 -8
- data/ext/libxml/ruby_xml_parser_context.c +105 -105
- data/ext/libxml/ruby_xml_parser_context.h +4 -4
- data/ext/libxml/ruby_xml_reader.c +145 -162
- data/ext/libxml/ruby_xml_reader.h +4 -4
- data/ext/libxml/ruby_xml_relaxng.c +30 -43
- data/ext/libxml/ruby_xml_relaxng.h +2 -7
- data/ext/libxml/ruby_xml_sax_parser.c +174 -228
- data/ext/libxml/ruby_xml_sax_parser.h +12 -20
- data/ext/libxml/ruby_xml_schema.c +31 -44
- data/ext/libxml/ruby_xml_schema.h +2 -7
- data/ext/libxml/ruby_xml_state.c +6 -6
- data/ext/libxml/ruby_xml_state.h +2 -2
- data/ext/libxml/ruby_xml_xinclude.c +1 -1
- data/ext/libxml/ruby_xml_xinclude.h +3 -3
- data/ext/libxml/ruby_xml_xpath.c +1 -1
- data/ext/libxml/ruby_xml_xpath.h +3 -12
- data/ext/libxml/ruby_xml_xpath_context.c +293 -294
- data/ext/libxml/ruby_xml_xpath_context.h +3 -7
- data/ext/libxml/ruby_xml_xpath_expression.c +11 -11
- data/ext/libxml/ruby_xml_xpath_expression.h +2 -2
- data/ext/libxml/ruby_xml_xpath_object.c +52 -66
- data/ext/libxml/ruby_xml_xpath_object.h +3 -14
- data/ext/libxml/ruby_xml_xpointer.c +11 -12
- data/ext/libxml/ruby_xml_xpointer.h +5 -7
- data/ext/libxml/sax_parser_callbacks.inc +53 -36
- data/ext/libxml/version.h +2 -2
- data/ext/mingw/libxml_ruby.dll.a +0 -0
- data/ext/mingw/libxml_ruby.so +0 -0
- data/ext/vc/libxml_ruby.vcproj +1 -9
- data/lib/libxml/html_parser.rb +5 -5
- data/lib/libxml/parser.rb +4 -4
- data/lib/libxml/sax_parser.rb +24 -0
- data/test/tc_document_write.rb +2 -16
- data/test/tc_html_parser.rb +57 -5
- data/test/tc_input.rb +13 -0
- data/test/tc_parser.rb +11 -3
- data/test/tc_reader.rb +53 -34
- data/test/tc_sax_parser.rb +30 -8
- data/test/test.rb +8 -0
- data/test/test_suite.rb +1 -1
- metadata +5 -6
- data/ext/libxml/ruby_xml_encoding.c +0 -164
- data/ext/libxml/ruby_xml_encoding.h +0 -13
- data/test/tc_encoding.rb +0 -13
@@ -1,20 +1,12 @@
|
|
1
|
-
/* $Id: ruby_xml_sax_parser.h
|
2
|
-
|
3
|
-
/* Please see the LICENSE file for copyright and distribution information */
|
4
|
-
|
5
|
-
#ifndef
|
6
|
-
#define
|
7
|
-
|
8
|
-
extern VALUE cXMLSaxParser;
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
VALUE callbackHandler;
|
14
|
-
VALUE filename;
|
15
|
-
VALUE str;
|
16
|
-
} ruby_xml_sax_parser;
|
17
|
-
|
18
|
-
void ruby_init_xml_sax_parser(void);
|
19
|
-
|
20
|
-
#endif
|
1
|
+
/* $Id: ruby_xml_sax_parser.h 616 2008-11-22 09:25:12Z cfis $ */
|
2
|
+
|
3
|
+
/* Please see the LICENSE file for copyright and distribution information */
|
4
|
+
|
5
|
+
#ifndef __rxml_SAX_PARSER__
|
6
|
+
#define __rxml_SAX_PARSER__
|
7
|
+
|
8
|
+
extern VALUE cXMLSaxParser;
|
9
|
+
|
10
|
+
void ruby_init_xml_sax_parser(void);
|
11
|
+
|
12
|
+
#endif
|
@@ -39,39 +39,28 @@ VALUE cXMLSchema;
|
|
39
39
|
#endif
|
40
40
|
|
41
41
|
static void
|
42
|
-
|
43
|
-
|
44
|
-
}
|
45
|
-
|
46
|
-
void
|
47
|
-
ruby_xml_schema_free(ruby_xml_schema *rxschema) {
|
48
|
-
if (rxschema->schema != NULL) {
|
49
|
-
xmlSchemaFree(rxschema->schema);
|
50
|
-
rxschema->schema = NULL;
|
51
|
-
}
|
52
|
-
|
53
|
-
ruby_xfree(rxschema);
|
42
|
+
rxml_schema_free(xmlSchemaPtr xschema) {
|
43
|
+
xmlSchemaFree(xschema);
|
54
44
|
}
|
55
45
|
|
56
46
|
/*
|
57
47
|
* call-seq:
|
58
|
-
* XML::Schema.
|
48
|
+
* XML::Schema.initialize(schema_uri) -> schema
|
59
49
|
*
|
60
50
|
* Create a new schema from the specified URI.
|
61
51
|
*/
|
62
|
-
VALUE
|
63
|
-
|
64
|
-
xmlSchemaParserCtxtPtr
|
65
|
-
|
52
|
+
static VALUE
|
53
|
+
rxml_schema_init_from_uri(VALUE class, VALUE uri) {
|
54
|
+
xmlSchemaParserCtxtPtr xparser;
|
55
|
+
xmlSchemaPtr xschema;
|
66
56
|
|
67
57
|
Check_Type(uri, T_STRING);
|
68
58
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
return Data_Wrap_Struct(cXMLSchema, ruby_xml_schema_mark, ruby_xml_schema_free, schema);
|
59
|
+
xparser = xmlSchemaNewParserCtxt(StringValuePtr(uri));
|
60
|
+
xschema = xmlSchemaParse(xparser);
|
61
|
+
xmlSchemaFreeParserCtxt(xparser);
|
62
|
+
|
63
|
+
return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
|
75
64
|
}
|
76
65
|
|
77
66
|
/*
|
@@ -80,20 +69,19 @@ ruby_xml_schema_init_from_uri(VALUE class, VALUE uri) {
|
|
80
69
|
*
|
81
70
|
* Create a new schema from the specified document.
|
82
71
|
*/
|
83
|
-
VALUE
|
84
|
-
|
72
|
+
static VALUE
|
73
|
+
rxml_schema_init_from_document(VALUE class, VALUE document) {
|
85
74
|
xmlDocPtr xdoc;
|
86
|
-
|
87
|
-
xmlSchemaParserCtxtPtr
|
75
|
+
xmlSchemaPtr xschema;
|
76
|
+
xmlSchemaParserCtxtPtr xparser;
|
88
77
|
|
89
78
|
Data_Get_Struct(document, xmlDoc, xdoc);
|
90
79
|
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
xmlSchemaFreeParserCtxt(parser);
|
80
|
+
xparser = xmlSchemaNewDocParserCtxt(xdoc);
|
81
|
+
xschema = xmlSchemaParse(xparser);
|
82
|
+
xmlSchemaFreeParserCtxt(xparser);
|
95
83
|
|
96
|
-
return Data_Wrap_Struct(cXMLSchema,
|
84
|
+
return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
|
97
85
|
}
|
98
86
|
|
99
87
|
/*
|
@@ -102,19 +90,18 @@ ruby_xml_schema_init_from_document(VALUE class, VALUE document) {
|
|
102
90
|
*
|
103
91
|
* Create a new schema using the specified string.
|
104
92
|
*/
|
105
|
-
VALUE
|
106
|
-
|
107
|
-
xmlSchemaParserCtxtPtr
|
108
|
-
|
93
|
+
static VALUE
|
94
|
+
rxml_schema_init_from_string(VALUE self, VALUE schema_str) {
|
95
|
+
xmlSchemaParserCtxtPtr xparser;
|
96
|
+
xmlSchemaPtr xschema;
|
109
97
|
|
110
98
|
Check_Type(schema_str, T_STRING);
|
111
99
|
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
xmlSchemaFreeParserCtxt(parser);
|
100
|
+
xparser = xmlSchemaNewMemParserCtxt(StringValuePtr(schema_str), strlen(StringValuePtr(schema_str)));
|
101
|
+
xschema = xmlSchemaParse(xparser);
|
102
|
+
xmlSchemaFreeParserCtxt(xparser);
|
116
103
|
|
117
|
-
return Data_Wrap_Struct(cXMLSchema,
|
104
|
+
return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
|
118
105
|
}
|
119
106
|
|
120
107
|
/* TODO what is this patch doing here?
|
@@ -167,8 +154,8 @@ ruby_xml_schema_init_from_string(VALUE self, VALUE schema_str) {
|
|
167
154
|
|
168
155
|
void ruby_init_xml_schema(void) {
|
169
156
|
cXMLSchema = rb_define_class_under(mXML, "Schema", rb_cObject);
|
170
|
-
rb_define_singleton_method(cXMLSchema, "new",
|
171
|
-
rb_define_singleton_method(cXMLSchema, "from_string",
|
172
|
-
rb_define_singleton_method(cXMLSchema, "document",
|
157
|
+
rb_define_singleton_method(cXMLSchema, "new", rxml_schema_init_from_uri, 1);
|
158
|
+
rb_define_singleton_method(cXMLSchema, "from_string", rxml_schema_init_from_string, 1);
|
159
|
+
rb_define_singleton_method(cXMLSchema, "document", rxml_schema_init_from_document, 1);
|
173
160
|
}
|
174
161
|
|
@@ -1,16 +1,11 @@
|
|
1
|
-
#ifndef
|
2
|
-
#define
|
1
|
+
#ifndef __rxml_SCHEMA__
|
2
|
+
#define __rxml_SCHEMA__
|
3
3
|
|
4
4
|
#include <libxml/schemasInternals.h>
|
5
5
|
#include <libxml/xmlschemas.h>
|
6
6
|
|
7
7
|
extern VALUE cXMLSchema;
|
8
8
|
|
9
|
-
typedef struct rxp_schema {
|
10
|
-
xmlSchemaPtr schema; /* Schema interface */
|
11
|
-
} ruby_xml_schema;
|
12
|
-
|
13
9
|
void ruby_init_xml_schema(void);
|
14
|
-
void ruby_schema_free(ruby_xml_schema *rxs);
|
15
10
|
#endif
|
16
11
|
|
data/ext/libxml/ruby_xml_state.c
CHANGED
@@ -7,14 +7,14 @@ VALUE LIBXML_STATE = Qnil;
|
|
7
7
|
|
8
8
|
static int dummy = 0;
|
9
9
|
|
10
|
-
void
|
11
|
-
|
10
|
+
static void
|
11
|
+
rxml_state_free(int dummy) {
|
12
12
|
xmlCleanupParser();
|
13
13
|
LIBXML_STATE = Qnil;
|
14
14
|
}
|
15
15
|
|
16
|
-
VALUE
|
17
|
-
|
16
|
+
static VALUE
|
17
|
+
rxml_state_alloc(VALUE klass) {
|
18
18
|
#ifdef DEBUG
|
19
19
|
fprintf(stderr, "Allocating state");
|
20
20
|
#endif
|
@@ -22,7 +22,7 @@ ruby_xml_state_alloc(VALUE klass) {
|
|
22
22
|
xmlInitParser();
|
23
23
|
|
24
24
|
return Data_Wrap_Struct(cXMLState,
|
25
|
-
NULL,
|
25
|
+
NULL, rxml_state_free,
|
26
26
|
&dummy);
|
27
27
|
}
|
28
28
|
|
@@ -42,7 +42,7 @@ ruby_init_state(void) {
|
|
42
42
|
rb_mSingleton = rb_const_get(rb_cObject, rb_intern("Singleton"));
|
43
43
|
rb_include_module(cXMLState, rb_mSingleton);
|
44
44
|
|
45
|
-
rb_define_alloc_func(cXMLState,
|
45
|
+
rb_define_alloc_func(cXMLState, rxml_state_alloc);
|
46
46
|
|
47
47
|
/* Create one instance of the state object that is used
|
48
48
|
to initalize and cleanup libxml. Then register it with
|
data/ext/libxml/ruby_xml_state.h
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
/* $Id: ruby_xml_xinclude.h
|
1
|
+
/* $Id: ruby_xml_xinclude.h 612 2008-11-21 08:01:29Z cfis $ */
|
2
2
|
|
3
3
|
/* Please see the LICENSE file for copyright and distribution information */
|
4
4
|
|
5
|
-
#ifndef
|
6
|
-
#define
|
5
|
+
#ifndef __rxml_XINCLUDE__
|
6
|
+
#define __rxml_XINCLUDE__
|
7
7
|
|
8
8
|
extern VALUE cXMLXInclude;
|
9
9
|
extern VALUE eXMLXIncludeError;
|
data/ext/libxml/ruby_xml_xpath.c
CHANGED
data/ext/libxml/ruby_xml_xpath.h
CHANGED
@@ -1,21 +1,12 @@
|
|
1
|
-
/* $Id: ruby_xml_xpath.h
|
1
|
+
/* $Id: ruby_xml_xpath.h 614 2008-11-22 08:04:39Z cfis $ */
|
2
2
|
|
3
3
|
/* Please see the LICENSE file for copyright and distribution information */
|
4
4
|
|
5
|
-
#ifndef
|
6
|
-
#define
|
5
|
+
#ifndef __rxml_XPATH__
|
6
|
+
#define __rxml_XPATH__
|
7
7
|
|
8
8
|
extern VALUE mXPath;
|
9
9
|
|
10
|
-
typedef struct ruby_xml_xpath {
|
11
|
-
VALUE xd;
|
12
|
-
VALUE ctxt;
|
13
|
-
xmlXPathObjectPtr xpop;
|
14
|
-
} ruby_xml_xpath;
|
15
|
-
|
16
|
-
void ruby_xml_xpath_free(ruby_xml_xpath *rxxp);
|
17
|
-
VALUE ruby_xml_xpath_find(VALUE class, VALUE anode, VALUE xpath_expr, VALUE nslist);
|
18
|
-
|
19
10
|
void ruby_init_xml_xpath(void);
|
20
11
|
|
21
12
|
#endif
|
@@ -1,294 +1,293 @@
|
|
1
|
-
/* $Id: ruby_xml_xpath_context.c
|
2
|
-
|
3
|
-
/* Please see the LICENSE file for copyright and distribution information */
|
4
|
-
|
5
|
-
#include "ruby_libxml.h"
|
6
|
-
#include "ruby_xml_xpath_context.h"
|
7
|
-
#include "ruby_xml_xpath_expression.h"
|
8
|
-
#include <st.h>
|
9
|
-
|
10
|
-
|
11
|
-
/*
|
12
|
-
* Document-class: LibXML::XML::XPath::Context
|
13
|
-
*
|
14
|
-
* The XML::XPath::Context class is used to evaluate XPath
|
15
|
-
* expressions. Generally, you should not directly use this class,
|
16
|
-
* but instead use the XML::Document#find and XML::Node#find methods.
|
17
|
-
*
|
18
|
-
* doc = XML::Document.string('<header>content</header>')
|
19
|
-
* context = XPath::Context.new(doc)
|
20
|
-
* context.node = doc.root
|
21
|
-
* context.register_namespaces_from_node(doc.root)
|
22
|
-
* nodes = context.find('/header')
|
23
|
-
*/
|
24
|
-
|
25
|
-
VALUE cXMLXPathContext;
|
26
|
-
|
27
|
-
void
|
28
|
-
|
29
|
-
xmlXPathFreeContext(ctxt);
|
30
|
-
}
|
31
|
-
|
32
|
-
|
33
|
-
VALUE
|
34
|
-
|
35
|
-
return Data_Wrap_Struct(cXMLXPathContext,
|
36
|
-
NULL,
|
37
|
-
|
38
|
-
NULL);
|
39
|
-
}
|
40
|
-
|
41
|
-
/* call-seq:
|
42
|
-
* XPath::Context.new(node) -> XPath::Context
|
43
|
-
*
|
44
|
-
* Creates a new XPath context for the specified document. The
|
45
|
-
* context can then be used to evaluate an XPath expression.
|
46
|
-
*
|
47
|
-
* doc = XML::Document.string('<header><first>hi</first></header>')
|
48
|
-
* context = XPath::Context.new(doc)
|
49
|
-
* nodes = XPath::Object.new('//first', context)
|
50
|
-
* nodes.length == 1
|
51
|
-
*/
|
52
|
-
VALUE
|
53
|
-
|
54
|
-
xmlDocPtr xdoc;
|
55
|
-
VALUE document;
|
56
|
-
#ifndef LIBXML_XPATH_ENABLED
|
57
|
-
rb_raise(rb_eTypeError, "libxml was not compiled with XPath support.");
|
58
|
-
#endif
|
59
|
-
|
60
|
-
if (rb_obj_is_kind_of(node, cXMLNode) == Qtrue)
|
61
|
-
{
|
62
|
-
document = rb_funcall(node, rb_intern("doc"), 0);
|
63
|
-
if NIL_P(document)
|
64
|
-
rb_raise(rb_eTypeError, "Supplied node must belong to a document.");
|
65
|
-
}
|
66
|
-
else if (rb_obj_is_kind_of(node, cXMLDocument) == Qtrue)
|
67
|
-
{
|
68
|
-
document = node;
|
69
|
-
}
|
70
|
-
else
|
71
|
-
{
|
72
|
-
rb_raise(rb_eTypeError, "Supplied argument must be a document or node.");
|
73
|
-
}
|
74
|
-
|
75
|
-
Data_Get_Struct(document, xmlDoc, xdoc);
|
76
|
-
DATA_PTR(self) = xmlXPathNewContext(xdoc);
|
77
|
-
|
78
|
-
/* Save the doc as an attribute, this will expose it to Ruby's GC. */
|
79
|
-
rb_iv_set(self, "@doc", document);
|
80
|
-
|
81
|
-
return self;
|
82
|
-
}
|
83
|
-
|
84
|
-
|
85
|
-
/*
|
86
|
-
* call-seq:
|
87
|
-
* context.register_namespace(prefix, uri) -> (true|false)
|
88
|
-
*
|
89
|
-
* Register the specified namespace URI with the specified prefix
|
90
|
-
* in this context.
|
91
|
-
|
92
|
-
* context.register_namespace('xi', 'http://www.w3.org/2001/XInclude')
|
93
|
-
*/
|
94
|
-
VALUE
|
95
|
-
|
96
|
-
xmlXPathContextPtr ctxt;
|
97
|
-
|
98
|
-
Data_Get_Struct(self, xmlXPathContext, ctxt);
|
99
|
-
if (xmlXPathRegisterNs(ctxt,
|
100
|
-
(xmlChar*)StringValuePtr(prefix),
|
101
|
-
(xmlChar*)StringValuePtr(uri))
|
102
|
-
== 0) {
|
103
|
-
return(Qtrue);
|
104
|
-
} else {
|
105
|
-
/* Should raise an exception, IMHO (whose?, why shouldnt it? -danj)*/
|
106
|
-
rb_warning("register namespace failed");
|
107
|
-
return(Qfalse);
|
108
|
-
}
|
109
|
-
}
|
110
|
-
|
111
|
-
/* call-seq:
|
112
|
-
* context.register_namespaces_from_node(node) -> self
|
113
|
-
*
|
114
|
-
* Helper method to read in namespaces defined on a node.
|
115
|
-
*
|
116
|
-
* doc = XML::Document.string('<header><first>hi</first></header>')
|
117
|
-
* context = XPath::Context.new(doc)
|
118
|
-
* context.register_namespaces_from_node(doc.root)
|
119
|
-
*/
|
120
|
-
VALUE
|
121
|
-
|
122
|
-
xmlXPathContextPtr xctxt;
|
123
|
-
xmlNodePtr xnode;
|
124
|
-
xmlNsPtr *xnsArr;
|
125
|
-
|
126
|
-
Data_Get_Struct(self, xmlXPathContext, xctxt);
|
127
|
-
|
128
|
-
if (rb_obj_is_kind_of(node, cXMLDocument) == Qtrue)
|
129
|
-
{
|
130
|
-
xmlDocPtr xdoc;
|
131
|
-
Data_Get_Struct(node, xmlDoc, xdoc);
|
132
|
-
xnode = xmlDocGetRootElement(xdoc);
|
133
|
-
}
|
134
|
-
else if (rb_obj_is_kind_of(node, cXMLNode) == Qtrue)
|
135
|
-
{
|
136
|
-
Data_Get_Struct(node, xmlNode, xnode);
|
137
|
-
}
|
138
|
-
else
|
139
|
-
{
|
140
|
-
rb_raise(rb_eTypeError, "The first argument must be a document or node.");
|
141
|
-
}
|
142
|
-
|
143
|
-
xnsArr = xmlGetNsList(xnode->doc, xnode);
|
144
|
-
|
145
|
-
if (xnsArr)
|
146
|
-
{
|
147
|
-
xmlNsPtr xns = *xnsArr;
|
148
|
-
|
149
|
-
while (xns) {
|
150
|
-
/* If there is no prefix, then this is the default namespace.
|
151
|
-
Skip it for now. */
|
152
|
-
if (xns->prefix)
|
153
|
-
{
|
154
|
-
VALUE prefix = rb_str_new2(xns->prefix);
|
155
|
-
VALUE uri = rb_str_new2(xns->href);
|
156
|
-
|
157
|
-
}
|
158
|
-
xns = xns->next;
|
159
|
-
}
|
160
|
-
xmlFree(xnsArr);
|
161
|
-
}
|
162
|
-
|
163
|
-
return self;
|
164
|
-
}
|
165
|
-
|
166
|
-
static int
|
167
|
-
iterate_ns_hash(st_data_t prefix, st_data_t uri, st_data_t self)
|
168
|
-
{
|
169
|
-
|
170
|
-
return ST_CONTINUE;
|
171
|
-
}
|
172
|
-
|
173
|
-
|
174
|
-
/*
|
175
|
-
* call-seq:
|
176
|
-
* context.register_namespaces(["prefix:uri"]) -> self
|
177
|
-
*
|
178
|
-
* Register the specified namespaces in this context.
|
179
|
-
*
|
180
|
-
* context.register_namespaces('xi:http://www.w3.org/2001/XInclude')
|
181
|
-
* context.register_namespaces(['xlink:http://www.w3.org/1999/xlink',
|
182
|
-
* 'xi:http://www.w3.org/2001/XInclude')
|
183
|
-
* context.register_namespaces('xlink' => 'http://www.w3.org/1999/xlink',
|
184
|
-
* 'xi' => 'http://www.w3.org/2001/XInclude')
|
185
|
-
*/
|
186
|
-
VALUE
|
187
|
-
|
188
|
-
char *cp;
|
189
|
-
long i;
|
190
|
-
VALUE rprefix, ruri;
|
191
|
-
|
192
|
-
/* Need to loop through the 2nd argument and iterate through the
|
193
|
-
* list of namespaces that we want to allow */
|
194
|
-
switch (TYPE(nslist)) {
|
195
|
-
case T_STRING:
|
196
|
-
cp = strchr(StringValuePtr(nslist), (int)':');
|
197
|
-
if (cp == NULL) {
|
198
|
-
rprefix = nslist;
|
199
|
-
ruri = Qnil;
|
200
|
-
} else {
|
201
|
-
rprefix = rb_str_new(StringValuePtr(nslist), (int)((long)cp - (long)StringValuePtr(nslist)));
|
202
|
-
ruri = rb_str_new2(&cp[1]);
|
203
|
-
}
|
204
|
-
/* Should test the results of this */
|
205
|
-
|
206
|
-
break;
|
207
|
-
case T_ARRAY:
|
208
|
-
for (i = 0; i < RARRAY(nslist)->len; i++) {
|
209
|
-
|
210
|
-
}
|
211
|
-
break;
|
212
|
-
case T_HASH:
|
213
|
-
st_foreach(RHASH(nslist)->tbl, iterate_ns_hash, self);
|
214
|
-
break;
|
215
|
-
default:
|
216
|
-
rb_raise(rb_eArgError, "Invalid argument type, only accept string, array of strings, or an array of arrays");
|
217
|
-
}
|
218
|
-
return self;
|
219
|
-
}
|
220
|
-
|
221
|
-
/*
|
222
|
-
* call-seq:
|
223
|
-
* context.node = node
|
224
|
-
*
|
225
|
-
* Set the current node used by the XPath engine
|
226
|
-
|
227
|
-
* doc = XML::Document.string('<header><first>hi</first></header>')
|
228
|
-
* context.node = doc.root.first
|
229
|
-
*/
|
230
|
-
VALUE
|
231
|
-
|
232
|
-
xmlXPathContextPtr xctxt;
|
233
|
-
xmlNodePtr xnode;
|
234
|
-
|
235
|
-
Data_Get_Struct(self, xmlXPathContext, xctxt);
|
236
|
-
Data_Get_Struct(node, xmlNode, xnode);
|
237
|
-
xctxt->node = xnode;
|
238
|
-
return node;
|
239
|
-
}
|
240
|
-
|
241
|
-
/*
|
242
|
-
* call-seq:
|
243
|
-
* context.find("xpath") -> XML::XPath::Object
|
244
|
-
*
|
245
|
-
* Find nodes matching the specified XPath expression
|
246
|
-
*/
|
247
|
-
VALUE
|
248
|
-
|
249
|
-
xmlXPathContextPtr xctxt;
|
250
|
-
xmlXPathObjectPtr xobject;
|
251
|
-
xmlXPathCompExprPtr xcompexpr;
|
252
|
-
VALUE result;
|
253
|
-
|
254
|
-
Data_Get_Struct(self, xmlXPathContext, xctxt);
|
255
|
-
|
256
|
-
if (TYPE(xpath_expr) == T_STRING) {
|
257
|
-
VALUE expression = rb_check_string_type(xpath_expr);
|
258
|
-
xobject = xmlXPathEval((xmlChar*)StringValueCStr(expression), xctxt);
|
259
|
-
}
|
260
|
-
else if (rb_obj_is_kind_of(xpath_expr, cXMLXPathExpression)) {
|
261
|
-
Data_Get_Struct(xpath_expr, xmlXPathCompExpr, xcompexpr);
|
262
|
-
xobject = xmlXPathCompiledEval(xcompexpr, xctxt);
|
263
|
-
}
|
264
|
-
else {
|
265
|
-
rb_raise(rb_eTypeError, "Argument should be an intance of a String or XPath::Expression");
|
266
|
-
}
|
267
|
-
|
268
|
-
if (xobject == NULL)
|
269
|
-
{
|
270
|
-
/* xmlLastError is different than xctxt->lastError. Use
|
271
|
-
xmlLastError since it has the message set while xctxt->lastError
|
272
|
-
does not. */
|
273
|
-
xmlErrorPtr xerror = xmlGetLastError();
|
274
|
-
|
275
|
-
}
|
276
|
-
|
277
|
-
result =
|
278
|
-
rb_iv_set(result, "@context", self);
|
279
|
-
return result;
|
280
|
-
}
|
281
|
-
|
282
|
-
|
283
|
-
void
|
284
|
-
|
285
|
-
cXMLXPathContext
|
286
|
-
|
287
|
-
|
288
|
-
rb_define_method(cXMLXPathContext, "
|
289
|
-
rb_define_method(cXMLXPathContext, "
|
290
|
-
rb_define_method(cXMLXPathContext, "
|
291
|
-
rb_define_method(cXMLXPathContext, "
|
292
|
-
rb_define_method(cXMLXPathContext, "
|
293
|
-
|
294
|
-
}
|
1
|
+
/* $Id: ruby_xml_xpath_context.c 612 2008-11-21 08:01:29Z cfis $ */
|
2
|
+
|
3
|
+
/* Please see the LICENSE file for copyright and distribution information */
|
4
|
+
|
5
|
+
#include "ruby_libxml.h"
|
6
|
+
#include "ruby_xml_xpath_context.h"
|
7
|
+
#include "ruby_xml_xpath_expression.h"
|
8
|
+
#include <st.h>
|
9
|
+
|
10
|
+
|
11
|
+
/*
|
12
|
+
* Document-class: LibXML::XML::XPath::Context
|
13
|
+
*
|
14
|
+
* The XML::XPath::Context class is used to evaluate XPath
|
15
|
+
* expressions. Generally, you should not directly use this class,
|
16
|
+
* but instead use the XML::Document#find and XML::Node#find methods.
|
17
|
+
*
|
18
|
+
* doc = XML::Document.string('<header>content</header>')
|
19
|
+
* context = XPath::Context.new(doc)
|
20
|
+
* context.node = doc.root
|
21
|
+
* context.register_namespaces_from_node(doc.root)
|
22
|
+
* nodes = context.find('/header')
|
23
|
+
*/
|
24
|
+
|
25
|
+
VALUE cXMLXPathContext;
|
26
|
+
|
27
|
+
static void
|
28
|
+
rxml_xpath_context_free(xmlXPathContextPtr ctxt) {
|
29
|
+
xmlXPathFreeContext(ctxt);
|
30
|
+
}
|
31
|
+
|
32
|
+
|
33
|
+
static VALUE
|
34
|
+
rxml_xpath_context_alloc(VALUE klass) {
|
35
|
+
return Data_Wrap_Struct(cXMLXPathContext,
|
36
|
+
NULL,
|
37
|
+
rxml_xpath_context_free,
|
38
|
+
NULL);
|
39
|
+
}
|
40
|
+
|
41
|
+
/* call-seq:
|
42
|
+
* XPath::Context.new(node) -> XPath::Context
|
43
|
+
*
|
44
|
+
* Creates a new XPath context for the specified document. The
|
45
|
+
* context can then be used to evaluate an XPath expression.
|
46
|
+
*
|
47
|
+
* doc = XML::Document.string('<header><first>hi</first></header>')
|
48
|
+
* context = XPath::Context.new(doc)
|
49
|
+
* nodes = XPath::Object.new('//first', context)
|
50
|
+
* nodes.length == 1
|
51
|
+
*/
|
52
|
+
static VALUE
|
53
|
+
rxml_xpath_context_initialize(VALUE self, VALUE node) {
|
54
|
+
xmlDocPtr xdoc;
|
55
|
+
VALUE document;
|
56
|
+
#ifndef LIBXML_XPATH_ENABLED
|
57
|
+
rb_raise(rb_eTypeError, "libxml was not compiled with XPath support.");
|
58
|
+
#endif
|
59
|
+
|
60
|
+
if (rb_obj_is_kind_of(node, cXMLNode) == Qtrue)
|
61
|
+
{
|
62
|
+
document = rb_funcall(node, rb_intern("doc"), 0);
|
63
|
+
if NIL_P(document)
|
64
|
+
rb_raise(rb_eTypeError, "Supplied node must belong to a document.");
|
65
|
+
}
|
66
|
+
else if (rb_obj_is_kind_of(node, cXMLDocument) == Qtrue)
|
67
|
+
{
|
68
|
+
document = node;
|
69
|
+
}
|
70
|
+
else
|
71
|
+
{
|
72
|
+
rb_raise(rb_eTypeError, "Supplied argument must be a document or node.");
|
73
|
+
}
|
74
|
+
|
75
|
+
Data_Get_Struct(document, xmlDoc, xdoc);
|
76
|
+
DATA_PTR(self) = xmlXPathNewContext(xdoc);
|
77
|
+
|
78
|
+
/* Save the doc as an attribute, this will expose it to Ruby's GC. */
|
79
|
+
rb_iv_set(self, "@doc", document);
|
80
|
+
|
81
|
+
return self;
|
82
|
+
}
|
83
|
+
|
84
|
+
|
85
|
+
/*
|
86
|
+
* call-seq:
|
87
|
+
* context.register_namespace(prefix, uri) -> (true|false)
|
88
|
+
*
|
89
|
+
* Register the specified namespace URI with the specified prefix
|
90
|
+
* in this context.
|
91
|
+
|
92
|
+
* context.register_namespace('xi', 'http://www.w3.org/2001/XInclude')
|
93
|
+
*/
|
94
|
+
static VALUE
|
95
|
+
rxml_xpath_context_register_namespace(VALUE self, VALUE prefix, VALUE uri) {
|
96
|
+
xmlXPathContextPtr ctxt;
|
97
|
+
|
98
|
+
Data_Get_Struct(self, xmlXPathContext, ctxt);
|
99
|
+
if (xmlXPathRegisterNs(ctxt,
|
100
|
+
(xmlChar*)StringValuePtr(prefix),
|
101
|
+
(xmlChar*)StringValuePtr(uri))
|
102
|
+
== 0) {
|
103
|
+
return(Qtrue);
|
104
|
+
} else {
|
105
|
+
/* Should raise an exception, IMHO (whose?, why shouldnt it? -danj)*/
|
106
|
+
rb_warning("register namespace failed");
|
107
|
+
return(Qfalse);
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
/* call-seq:
|
112
|
+
* context.register_namespaces_from_node(node) -> self
|
113
|
+
*
|
114
|
+
* Helper method to read in namespaces defined on a node.
|
115
|
+
*
|
116
|
+
* doc = XML::Document.string('<header><first>hi</first></header>')
|
117
|
+
* context = XPath::Context.new(doc)
|
118
|
+
* context.register_namespaces_from_node(doc.root)
|
119
|
+
*/
|
120
|
+
static VALUE
|
121
|
+
rxml_xpath_context_register_namespaces_from_node(VALUE self, VALUE node) {
|
122
|
+
xmlXPathContextPtr xctxt;
|
123
|
+
xmlNodePtr xnode;
|
124
|
+
xmlNsPtr *xnsArr;
|
125
|
+
|
126
|
+
Data_Get_Struct(self, xmlXPathContext, xctxt);
|
127
|
+
|
128
|
+
if (rb_obj_is_kind_of(node, cXMLDocument) == Qtrue)
|
129
|
+
{
|
130
|
+
xmlDocPtr xdoc;
|
131
|
+
Data_Get_Struct(node, xmlDoc, xdoc);
|
132
|
+
xnode = xmlDocGetRootElement(xdoc);
|
133
|
+
}
|
134
|
+
else if (rb_obj_is_kind_of(node, cXMLNode) == Qtrue)
|
135
|
+
{
|
136
|
+
Data_Get_Struct(node, xmlNode, xnode);
|
137
|
+
}
|
138
|
+
else
|
139
|
+
{
|
140
|
+
rb_raise(rb_eTypeError, "The first argument must be a document or node.");
|
141
|
+
}
|
142
|
+
|
143
|
+
xnsArr = xmlGetNsList(xnode->doc, xnode);
|
144
|
+
|
145
|
+
if (xnsArr)
|
146
|
+
{
|
147
|
+
xmlNsPtr xns = *xnsArr;
|
148
|
+
|
149
|
+
while (xns) {
|
150
|
+
/* If there is no prefix, then this is the default namespace.
|
151
|
+
Skip it for now. */
|
152
|
+
if (xns->prefix)
|
153
|
+
{
|
154
|
+
VALUE prefix = rb_str_new2(xns->prefix);
|
155
|
+
VALUE uri = rb_str_new2(xns->href);
|
156
|
+
rxml_xpath_context_register_namespace(self, prefix, uri);
|
157
|
+
}
|
158
|
+
xns = xns->next;
|
159
|
+
}
|
160
|
+
xmlFree(xnsArr);
|
161
|
+
}
|
162
|
+
|
163
|
+
return self;
|
164
|
+
}
|
165
|
+
|
166
|
+
static int
|
167
|
+
iterate_ns_hash(st_data_t prefix, st_data_t uri, st_data_t self)
|
168
|
+
{
|
169
|
+
rxml_xpath_context_register_namespace(self, prefix, uri);
|
170
|
+
return ST_CONTINUE;
|
171
|
+
}
|
172
|
+
|
173
|
+
|
174
|
+
/*
|
175
|
+
* call-seq:
|
176
|
+
* context.register_namespaces(["prefix:uri"]) -> self
|
177
|
+
*
|
178
|
+
* Register the specified namespaces in this context.
|
179
|
+
*
|
180
|
+
* context.register_namespaces('xi:http://www.w3.org/2001/XInclude')
|
181
|
+
* context.register_namespaces(['xlink:http://www.w3.org/1999/xlink',
|
182
|
+
* 'xi:http://www.w3.org/2001/XInclude')
|
183
|
+
* context.register_namespaces('xlink' => 'http://www.w3.org/1999/xlink',
|
184
|
+
* 'xi' => 'http://www.w3.org/2001/XInclude')
|
185
|
+
*/
|
186
|
+
static VALUE
|
187
|
+
rxml_xpath_context_register_namespaces(VALUE self, VALUE nslist) {
|
188
|
+
char *cp;
|
189
|
+
long i;
|
190
|
+
VALUE rprefix, ruri;
|
191
|
+
|
192
|
+
/* Need to loop through the 2nd argument and iterate through the
|
193
|
+
* list of namespaces that we want to allow */
|
194
|
+
switch (TYPE(nslist)) {
|
195
|
+
case T_STRING:
|
196
|
+
cp = strchr(StringValuePtr(nslist), (int)':');
|
197
|
+
if (cp == NULL) {
|
198
|
+
rprefix = nslist;
|
199
|
+
ruri = Qnil;
|
200
|
+
} else {
|
201
|
+
rprefix = rb_str_new(StringValuePtr(nslist), (int)((long)cp - (long)StringValuePtr(nslist)));
|
202
|
+
ruri = rb_str_new2(&cp[1]);
|
203
|
+
}
|
204
|
+
/* Should test the results of this */
|
205
|
+
rxml_xpath_context_register_namespace(self, rprefix, ruri);
|
206
|
+
break;
|
207
|
+
case T_ARRAY:
|
208
|
+
for (i = 0; i < RARRAY(nslist)->len; i++) {
|
209
|
+
rxml_xpath_context_register_namespaces(self, RARRAY(nslist)->ptr[i]);
|
210
|
+
}
|
211
|
+
break;
|
212
|
+
case T_HASH:
|
213
|
+
st_foreach(RHASH(nslist)->tbl, iterate_ns_hash, self);
|
214
|
+
break;
|
215
|
+
default:
|
216
|
+
rb_raise(rb_eArgError, "Invalid argument type, only accept string, array of strings, or an array of arrays");
|
217
|
+
}
|
218
|
+
return self;
|
219
|
+
}
|
220
|
+
|
221
|
+
/*
|
222
|
+
* call-seq:
|
223
|
+
* context.node = node
|
224
|
+
*
|
225
|
+
* Set the current node used by the XPath engine
|
226
|
+
|
227
|
+
* doc = XML::Document.string('<header><first>hi</first></header>')
|
228
|
+
* context.node = doc.root.first
|
229
|
+
*/
|
230
|
+
static VALUE
|
231
|
+
rxml_xpath_context_node_set(VALUE self, VALUE node) {
|
232
|
+
xmlXPathContextPtr xctxt;
|
233
|
+
xmlNodePtr xnode;
|
234
|
+
|
235
|
+
Data_Get_Struct(self, xmlXPathContext, xctxt);
|
236
|
+
Data_Get_Struct(node, xmlNode, xnode);
|
237
|
+
xctxt->node = xnode;
|
238
|
+
return node;
|
239
|
+
}
|
240
|
+
|
241
|
+
/*
|
242
|
+
* call-seq:
|
243
|
+
* context.find("xpath") -> XML::XPath::Object
|
244
|
+
*
|
245
|
+
* Find nodes matching the specified XPath expression
|
246
|
+
*/
|
247
|
+
static VALUE
|
248
|
+
rxml_xpath_context_find(VALUE self, VALUE xpath_expr) {
|
249
|
+
xmlXPathContextPtr xctxt;
|
250
|
+
xmlXPathObjectPtr xobject;
|
251
|
+
xmlXPathCompExprPtr xcompexpr;
|
252
|
+
VALUE result;
|
253
|
+
|
254
|
+
Data_Get_Struct(self, xmlXPathContext, xctxt);
|
255
|
+
|
256
|
+
if (TYPE(xpath_expr) == T_STRING) {
|
257
|
+
VALUE expression = rb_check_string_type(xpath_expr);
|
258
|
+
xobject = xmlXPathEval((xmlChar*)StringValueCStr(expression), xctxt);
|
259
|
+
}
|
260
|
+
else if (rb_obj_is_kind_of(xpath_expr, cXMLXPathExpression)) {
|
261
|
+
Data_Get_Struct(xpath_expr, xmlXPathCompExpr, xcompexpr);
|
262
|
+
xobject = xmlXPathCompiledEval(xcompexpr, xctxt);
|
263
|
+
}
|
264
|
+
else {
|
265
|
+
rb_raise(rb_eTypeError, "Argument should be an intance of a String or XPath::Expression");
|
266
|
+
}
|
267
|
+
|
268
|
+
if (xobject == NULL)
|
269
|
+
{
|
270
|
+
/* xmlLastError is different than xctxt->lastError. Use
|
271
|
+
xmlLastError since it has the message set while xctxt->lastError
|
272
|
+
does not. */
|
273
|
+
xmlErrorPtr xerror = xmlGetLastError();
|
274
|
+
rxml_raise(xerror);
|
275
|
+
}
|
276
|
+
|
277
|
+
result = rxml_xpath_object_wrap(xobject);
|
278
|
+
rb_iv_set(result, "@context", self);
|
279
|
+
return result;
|
280
|
+
}
|
281
|
+
|
282
|
+
void
|
283
|
+
ruby_init_xml_xpath_context(void) {
|
284
|
+
cXMLXPathContext = rb_define_class_under(mXPath, "Context", rb_cObject);
|
285
|
+
rb_define_alloc_func(cXMLXPathContext, rxml_xpath_context_alloc);
|
286
|
+
rb_define_attr(cXMLXPathContext, "doc", 1, 0);
|
287
|
+
rb_define_method(cXMLXPathContext, "initialize", rxml_xpath_context_initialize, 1);
|
288
|
+
rb_define_method(cXMLXPathContext, "register_namespaces", rxml_xpath_context_register_namespaces, 1);
|
289
|
+
rb_define_method(cXMLXPathContext, "register_namespaces_from_node", rxml_xpath_context_register_namespaces_from_node, 1);
|
290
|
+
rb_define_method(cXMLXPathContext, "register_namespace", rxml_xpath_context_register_namespace, 2);
|
291
|
+
rb_define_method(cXMLXPathContext, "node=", rxml_xpath_context_node_set, 1);
|
292
|
+
rb_define_method(cXMLXPathContext, "find", rxml_xpath_context_find, 1);
|
293
|
+
}
|