libxml-ruby 3.2.2-x64-mingw-ucrt
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.
- checksums.yaml +7 -0
- data/HISTORY +848 -0
- data/LICENSE +21 -0
- data/MANIFEST +166 -0
- data/README.rdoc +217 -0
- data/Rakefile +99 -0
- data/ext/libxml/extconf.rb +61 -0
- data/ext/libxml/libxml.c +80 -0
- data/ext/libxml/libxml_ruby.def +35 -0
- data/ext/libxml/ruby_libxml.h +67 -0
- data/ext/libxml/ruby_xml.c +933 -0
- data/ext/libxml/ruby_xml.h +10 -0
- data/ext/libxml/ruby_xml_attr.c +333 -0
- data/ext/libxml/ruby_xml_attr.h +12 -0
- data/ext/libxml/ruby_xml_attr_decl.c +153 -0
- data/ext/libxml/ruby_xml_attr_decl.h +11 -0
- data/ext/libxml/ruby_xml_attributes.c +275 -0
- data/ext/libxml/ruby_xml_attributes.h +15 -0
- data/ext/libxml/ruby_xml_cbg.c +85 -0
- data/ext/libxml/ruby_xml_document.c +1123 -0
- data/ext/libxml/ruby_xml_document.h +11 -0
- data/ext/libxml/ruby_xml_dtd.c +248 -0
- data/ext/libxml/ruby_xml_dtd.h +9 -0
- data/ext/libxml/ruby_xml_encoding.c +250 -0
- data/ext/libxml/ruby_xml_encoding.h +16 -0
- data/ext/libxml/ruby_xml_error.c +996 -0
- data/ext/libxml/ruby_xml_error.h +12 -0
- data/ext/libxml/ruby_xml_html_parser.c +89 -0
- data/ext/libxml/ruby_xml_html_parser.h +10 -0
- data/ext/libxml/ruby_xml_html_parser_context.c +337 -0
- data/ext/libxml/ruby_xml_html_parser_context.h +10 -0
- data/ext/libxml/ruby_xml_html_parser_options.c +46 -0
- data/ext/libxml/ruby_xml_html_parser_options.h +10 -0
- data/ext/libxml/ruby_xml_input_cbg.c +191 -0
- data/ext/libxml/ruby_xml_input_cbg.h +20 -0
- data/ext/libxml/ruby_xml_io.c +47 -0
- data/ext/libxml/ruby_xml_io.h +10 -0
- data/ext/libxml/ruby_xml_namespace.c +153 -0
- data/ext/libxml/ruby_xml_namespace.h +10 -0
- data/ext/libxml/ruby_xml_namespaces.c +293 -0
- data/ext/libxml/ruby_xml_namespaces.h +9 -0
- data/ext/libxml/ruby_xml_node.c +1402 -0
- data/ext/libxml/ruby_xml_node.h +13 -0
- data/ext/libxml/ruby_xml_parser.c +91 -0
- data/ext/libxml/ruby_xml_parser.h +12 -0
- data/ext/libxml/ruby_xml_parser_context.c +999 -0
- data/ext/libxml/ruby_xml_parser_context.h +10 -0
- data/ext/libxml/ruby_xml_parser_options.c +66 -0
- data/ext/libxml/ruby_xml_parser_options.h +12 -0
- data/ext/libxml/ruby_xml_reader.c +1239 -0
- data/ext/libxml/ruby_xml_reader.h +17 -0
- data/ext/libxml/ruby_xml_relaxng.c +110 -0
- data/ext/libxml/ruby_xml_relaxng.h +10 -0
- data/ext/libxml/ruby_xml_sax2_handler.c +326 -0
- data/ext/libxml/ruby_xml_sax2_handler.h +10 -0
- data/ext/libxml/ruby_xml_sax_parser.c +116 -0
- data/ext/libxml/ruby_xml_sax_parser.h +10 -0
- data/ext/libxml/ruby_xml_schema.c +278 -0
- data/ext/libxml/ruby_xml_schema.h +809 -0
- data/ext/libxml/ruby_xml_schema_attribute.c +109 -0
- data/ext/libxml/ruby_xml_schema_attribute.h +15 -0
- data/ext/libxml/ruby_xml_schema_element.c +95 -0
- data/ext/libxml/ruby_xml_schema_element.h +14 -0
- data/ext/libxml/ruby_xml_schema_facet.c +52 -0
- data/ext/libxml/ruby_xml_schema_facet.h +13 -0
- data/ext/libxml/ruby_xml_schema_type.c +232 -0
- data/ext/libxml/ruby_xml_schema_type.h +9 -0
- data/ext/libxml/ruby_xml_version.h +9 -0
- data/ext/libxml/ruby_xml_writer.c +1133 -0
- data/ext/libxml/ruby_xml_writer.h +10 -0
- data/ext/libxml/ruby_xml_xinclude.c +16 -0
- data/ext/libxml/ruby_xml_xinclude.h +11 -0
- data/ext/libxml/ruby_xml_xpath.c +194 -0
- data/ext/libxml/ruby_xml_xpath.h +13 -0
- data/ext/libxml/ruby_xml_xpath_context.c +360 -0
- data/ext/libxml/ruby_xml_xpath_context.h +9 -0
- data/ext/libxml/ruby_xml_xpath_expression.c +81 -0
- data/ext/libxml/ruby_xml_xpath_expression.h +10 -0
- data/ext/libxml/ruby_xml_xpath_object.c +338 -0
- data/ext/libxml/ruby_xml_xpath_object.h +17 -0
- data/ext/libxml/ruby_xml_xpointer.c +99 -0
- data/ext/libxml/ruby_xml_xpointer.h +11 -0
- data/ext/vc/libxml_ruby.sln +28 -0
- data/lib/3.1/libxml_ruby.so +0 -0
- data/lib/libxml/attr.rb +123 -0
- data/lib/libxml/attr_decl.rb +80 -0
- data/lib/libxml/attributes.rb +14 -0
- data/lib/libxml/document.rb +194 -0
- data/lib/libxml/error.rb +95 -0
- data/lib/libxml/hpricot.rb +78 -0
- data/lib/libxml/html_parser.rb +96 -0
- data/lib/libxml/namespace.rb +62 -0
- data/lib/libxml/namespaces.rb +38 -0
- data/lib/libxml/node.rb +323 -0
- data/lib/libxml/parser.rb +101 -0
- data/lib/libxml/sax_callbacks.rb +180 -0
- data/lib/libxml/sax_parser.rb +41 -0
- data/lib/libxml/schema/attribute.rb +19 -0
- data/lib/libxml/schema/element.rb +19 -0
- data/lib/libxml/schema/type.rb +21 -0
- data/lib/libxml/schema.rb +48 -0
- data/lib/libxml/tree.rb +29 -0
- data/lib/libxml-ruby.rb +30 -0
- data/lib/libxml.rb +5 -0
- data/lib/xml/libxml.rb +10 -0
- data/lib/xml.rb +14 -0
- data/libxml-ruby.gemspec +48 -0
- data/script/benchmark/depixelate +634 -0
- data/script/benchmark/hamlet.xml +9055 -0
- data/script/benchmark/parsecount +170 -0
- data/script/benchmark/sock_entries.xml +507 -0
- data/script/benchmark/throughput +41 -0
- data/script/test +6 -0
- data/setup.rb +1584 -0
- data/test/c14n/given/doc.dtd +1 -0
- data/test/c14n/given/example-1.xml +14 -0
- data/test/c14n/given/example-2.xml +11 -0
- data/test/c14n/given/example-3.xml +18 -0
- data/test/c14n/given/example-4.xml +9 -0
- data/test/c14n/given/example-5.xml +12 -0
- data/test/c14n/given/example-6.xml +2 -0
- data/test/c14n/given/example-7.xml +11 -0
- data/test/c14n/given/example-8.xml +11 -0
- data/test/c14n/given/example-8.xpath +10 -0
- data/test/c14n/given/world.txt +1 -0
- data/test/c14n/result/1-1-without-comments/example-1 +4 -0
- data/test/c14n/result/1-1-without-comments/example-2 +11 -0
- data/test/c14n/result/1-1-without-comments/example-3 +14 -0
- data/test/c14n/result/1-1-without-comments/example-4 +9 -0
- data/test/c14n/result/1-1-without-comments/example-5 +3 -0
- data/test/c14n/result/1-1-without-comments/example-6 +1 -0
- data/test/c14n/result/1-1-without-comments/example-7 +1 -0
- data/test/c14n/result/1-1-without-comments/example-8 +1 -0
- data/test/c14n/result/with-comments/example-1 +6 -0
- data/test/c14n/result/with-comments/example-2 +11 -0
- data/test/c14n/result/with-comments/example-3 +14 -0
- data/test/c14n/result/with-comments/example-4 +9 -0
- data/test/c14n/result/with-comments/example-5 +4 -0
- data/test/c14n/result/with-comments/example-6 +1 -0
- data/test/c14n/result/with-comments/example-7 +1 -0
- data/test/c14n/result/without-comments/example-1 +4 -0
- data/test/c14n/result/without-comments/example-2 +11 -0
- data/test/c14n/result/without-comments/example-3 +14 -0
- data/test/c14n/result/without-comments/example-4 +9 -0
- data/test/c14n/result/without-comments/example-5 +3 -0
- data/test/c14n/result/without-comments/example-6 +1 -0
- data/test/c14n/result/without-comments/example-7 +1 -0
- data/test/model/atom.xml +13 -0
- data/test/model/bands.iso-8859-1.xml +5 -0
- data/test/model/bands.utf-8.xml +5 -0
- data/test/model/bands.xml +5 -0
- data/test/model/books.xml +154 -0
- data/test/model/cwm_1_0.xml +11336 -0
- data/test/model/merge_bug_data.xml +58 -0
- data/test/model/ruby-lang.html +238 -0
- data/test/model/rubynet.xml +79 -0
- data/test/model/rubynet_project +1 -0
- data/test/model/shiporder.rnc +28 -0
- data/test/model/shiporder.rng +86 -0
- data/test/model/shiporder.xml +23 -0
- data/test/model/shiporder.xsd +40 -0
- data/test/model/soap.xml +27 -0
- data/test/model/xinclude.xml +5 -0
- data/test/test_attr.rb +181 -0
- data/test/test_attr_decl.rb +132 -0
- data/test/test_attributes.rb +136 -0
- data/test/test_canonicalize.rb +120 -0
- data/test/test_deprecated_require.rb +12 -0
- data/test/test_document.rb +132 -0
- data/test/test_document_write.rb +146 -0
- data/test/test_dtd.rb +129 -0
- data/test/test_encoding.rb +129 -0
- data/test/test_encoding_sax.rb +115 -0
- data/test/test_error.rb +178 -0
- data/test/test_helper.rb +9 -0
- data/test/test_html_parser.rb +162 -0
- data/test/test_html_parser_context.rb +23 -0
- data/test/test_namespace.rb +60 -0
- data/test/test_namespaces.rb +200 -0
- data/test/test_node.rb +237 -0
- data/test/test_node_cdata.rb +50 -0
- data/test/test_node_comment.rb +32 -0
- data/test/test_node_copy.rb +40 -0
- data/test/test_node_edit.rb +158 -0
- data/test/test_node_pi.rb +37 -0
- data/test/test_node_text.rb +69 -0
- data/test/test_node_write.rb +97 -0
- data/test/test_node_xlink.rb +28 -0
- data/test/test_parser.rb +324 -0
- data/test/test_parser_context.rb +198 -0
- data/test/test_properties.rb +38 -0
- data/test/test_reader.rb +364 -0
- data/test/test_relaxng.rb +53 -0
- data/test/test_sax_parser.rb +326 -0
- data/test/test_schema.rb +168 -0
- data/test/test_suite.rb +48 -0
- data/test/test_traversal.rb +152 -0
- data/test/test_writer.rb +468 -0
- data/test/test_xinclude.rb +20 -0
- data/test/test_xml.rb +263 -0
- data/test/test_xpath.rb +244 -0
- data/test/test_xpath_context.rb +88 -0
- data/test/test_xpath_expression.rb +37 -0
- data/test/test_xpointer.rb +72 -0
- metadata +325 -0
| @@ -0,0 +1,278 @@ | |
| 1 | 
            +
            #include "ruby_libxml.h"
         | 
| 2 | 
            +
            #define LIBXML_OUTPUT_ENABLED
         | 
| 3 | 
            +
            #define DUMP_CONTENT_MODEL
         | 
| 4 | 
            +
            #include "ruby_xml_schema.h"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            #include "ruby_xml_schema_type.h"
         | 
| 7 | 
            +
            #include "ruby_xml_schema_element.h"
         | 
| 8 | 
            +
            #include "ruby_xml_schema_attribute.h"
         | 
| 9 | 
            +
            #include "ruby_xml_schema_facet.h"
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            /*
         | 
| 12 | 
            +
             * Document-class: LibXML::XML::Schema
         | 
| 13 | 
            +
             *
         | 
| 14 | 
            +
             * The XML::Schema class is used to prepare XML Schemas for validation of xml
         | 
| 15 | 
            +
             * documents.
         | 
| 16 | 
            +
             *
         | 
| 17 | 
            +
             * Schemas can be created from XML documents, strinings or URIs using the
         | 
| 18 | 
            +
             * corresponding methods (new for URIs).
         | 
| 19 | 
            +
             *
         | 
| 20 | 
            +
             * Once a schema is prepared, an XML document can be validated by the
         | 
| 21 | 
            +
             * XML::Document#validate_schema method providing the XML::Schema object
         | 
| 22 | 
            +
             * as parameter. The method return true if the document validates, false
         | 
| 23 | 
            +
             * otherwise.
         | 
| 24 | 
            +
             *
         | 
| 25 | 
            +
             * Basic usage:
         | 
| 26 | 
            +
             *
         | 
| 27 | 
            +
             *  # parse schema as xml document
         | 
| 28 | 
            +
             *  schema_document = XML::Document.file('schema.rng')
         | 
| 29 | 
            +
             *
         | 
| 30 | 
            +
             *  # prepare schema for validation
         | 
| 31 | 
            +
             *  schema = XML::Schema.document(schema_document)
         | 
| 32 | 
            +
             *
         | 
| 33 | 
            +
             *  # parse xml document to be validated
         | 
| 34 | 
            +
             *  instance = XML::Document.file('instance.xml')
         | 
| 35 | 
            +
             *
         | 
| 36 | 
            +
             *  # validate
         | 
| 37 | 
            +
             *  instance.validate_schema(schema)
         | 
| 38 | 
            +
             */
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            VALUE cXMLSchema;
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            static void rxml_schema_free(xmlSchemaPtr xschema)
         | 
| 43 | 
            +
            {
         | 
| 44 | 
            +
              xmlSchemaFree(xschema);
         | 
| 45 | 
            +
            }
         | 
| 46 | 
            +
             | 
| 47 | 
            +
            VALUE rxml_wrap_schema(xmlSchemaPtr xschema)
         | 
| 48 | 
            +
            {
         | 
| 49 | 
            +
              return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
         | 
| 50 | 
            +
            }
         | 
| 51 | 
            +
             | 
| 52 | 
            +
             | 
| 53 | 
            +
            /*
         | 
| 54 | 
            +
             * call-seq:
         | 
| 55 | 
            +
             *    XML::Schema.initialize(schema_uri) -> schema
         | 
| 56 | 
            +
             *
         | 
| 57 | 
            +
             * Create a new schema from the specified URI.
         | 
| 58 | 
            +
             */
         | 
| 59 | 
            +
            static VALUE rxml_schema_init_from_uri(VALUE class, VALUE uri)
         | 
| 60 | 
            +
            {
         | 
| 61 | 
            +
              xmlSchemaParserCtxtPtr xparser;
         | 
| 62 | 
            +
              xmlSchemaPtr xschema;
         | 
| 63 | 
            +
             | 
| 64 | 
            +
              Check_Type(uri, T_STRING);
         | 
| 65 | 
            +
             | 
| 66 | 
            +
              xparser = xmlSchemaNewParserCtxt(StringValuePtr(uri));
         | 
| 67 | 
            +
              xschema = xmlSchemaParse(xparser);
         | 
| 68 | 
            +
              xmlSchemaFreeParserCtxt(xparser);
         | 
| 69 | 
            +
             | 
| 70 | 
            +
              return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
         | 
| 71 | 
            +
            }
         | 
| 72 | 
            +
             | 
| 73 | 
            +
            /*
         | 
| 74 | 
            +
             * call-seq:
         | 
| 75 | 
            +
             *    XML::Schema.document(document) -> schema
         | 
| 76 | 
            +
             *
         | 
| 77 | 
            +
             * Create a new schema from the specified document.
         | 
| 78 | 
            +
             */
         | 
| 79 | 
            +
            static VALUE rxml_schema_init_from_document(VALUE class, VALUE document)
         | 
| 80 | 
            +
            {
         | 
| 81 | 
            +
              xmlDocPtr xdoc;
         | 
| 82 | 
            +
              xmlSchemaPtr xschema;
         | 
| 83 | 
            +
              xmlSchemaParserCtxtPtr xparser;
         | 
| 84 | 
            +
             | 
| 85 | 
            +
              Data_Get_Struct(document, xmlDoc, xdoc);
         | 
| 86 | 
            +
             | 
| 87 | 
            +
              xparser = xmlSchemaNewDocParserCtxt(xdoc);
         | 
| 88 | 
            +
              xschema = xmlSchemaParse(xparser);
         | 
| 89 | 
            +
              xmlSchemaFreeParserCtxt(xparser);
         | 
| 90 | 
            +
             | 
| 91 | 
            +
              if (xschema == NULL)
         | 
| 92 | 
            +
                return Qnil;
         | 
| 93 | 
            +
             | 
| 94 | 
            +
              return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
         | 
| 95 | 
            +
            }
         | 
| 96 | 
            +
             | 
| 97 | 
            +
            /*
         | 
| 98 | 
            +
             * call-seq:
         | 
| 99 | 
            +
             *    XML::Schema.from_string("schema_data") -> "value"
         | 
| 100 | 
            +
             *
         | 
| 101 | 
            +
             * Create a new schema using the specified string.
         | 
| 102 | 
            +
             */
         | 
| 103 | 
            +
            static VALUE rxml_schema_init_from_string(VALUE self, VALUE schema_str)
         | 
| 104 | 
            +
            {
         | 
| 105 | 
            +
              xmlSchemaParserCtxtPtr xparser;
         | 
| 106 | 
            +
              xmlSchemaPtr xschema;
         | 
| 107 | 
            +
             | 
| 108 | 
            +
              Check_Type(schema_str, T_STRING);
         | 
| 109 | 
            +
             | 
| 110 | 
            +
              xparser = xmlSchemaNewMemParserCtxt(StringValuePtr(schema_str), (int)strlen(StringValuePtr(schema_str)));
         | 
| 111 | 
            +
              xschema = xmlSchemaParse(xparser);
         | 
| 112 | 
            +
              xmlSchemaFreeParserCtxt(xparser);
         | 
| 113 | 
            +
             | 
| 114 | 
            +
              return Data_Wrap_Struct(cXMLSchema, NULL, rxml_schema_free, xschema);
         | 
| 115 | 
            +
            }
         | 
| 116 | 
            +
             | 
| 117 | 
            +
             | 
| 118 | 
            +
            static VALUE rxml_schema_target_namespace(VALUE self)
         | 
| 119 | 
            +
            {
         | 
| 120 | 
            +
              xmlSchemaPtr xschema;
         | 
| 121 | 
            +
             | 
| 122 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 123 | 
            +
             | 
| 124 | 
            +
              QNIL_OR_STRING(xschema->targetNamespace)
         | 
| 125 | 
            +
            }
         | 
| 126 | 
            +
             | 
| 127 | 
            +
            static VALUE rxml_schema_name(VALUE self)
         | 
| 128 | 
            +
            {
         | 
| 129 | 
            +
              xmlSchemaPtr xschema;
         | 
| 130 | 
            +
             | 
| 131 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 132 | 
            +
             | 
| 133 | 
            +
              QNIL_OR_STRING(xschema->name)
         | 
| 134 | 
            +
            }
         | 
| 135 | 
            +
             | 
| 136 | 
            +
            static VALUE rxml_schema_version(VALUE self)
         | 
| 137 | 
            +
            {
         | 
| 138 | 
            +
              xmlSchemaPtr xschema;
         | 
| 139 | 
            +
             | 
| 140 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 141 | 
            +
             | 
| 142 | 
            +
              QNIL_OR_STRING(xschema->version)
         | 
| 143 | 
            +
            }
         | 
| 144 | 
            +
             | 
| 145 | 
            +
            static VALUE rxml_schema_id(VALUE self)
         | 
| 146 | 
            +
            {
         | 
| 147 | 
            +
              xmlSchemaPtr xschema;
         | 
| 148 | 
            +
             | 
| 149 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 150 | 
            +
             | 
| 151 | 
            +
              QNIL_OR_STRING(xschema->id)
         | 
| 152 | 
            +
            }
         | 
| 153 | 
            +
             | 
| 154 | 
            +
            static VALUE rxml_schema_document(VALUE self)
         | 
| 155 | 
            +
            {
         | 
| 156 | 
            +
              xmlSchemaPtr xschema;
         | 
| 157 | 
            +
             | 
| 158 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 159 | 
            +
             | 
| 160 | 
            +
              return rxml_node_wrap(xmlDocGetRootElement(xschema->doc));
         | 
| 161 | 
            +
            }
         | 
| 162 | 
            +
             | 
| 163 | 
            +
            static void scan_namespaces(xmlSchemaImportPtr ximport, VALUE array, xmlChar *nsname)
         | 
| 164 | 
            +
            {
         | 
| 165 | 
            +
              xmlNodePtr xnode;
         | 
| 166 | 
            +
              xmlNsPtr xns;
         | 
| 167 | 
            +
             | 
| 168 | 
            +
              if (ximport->doc)
         | 
| 169 | 
            +
              {
         | 
| 170 | 
            +
                xnode = xmlDocGetRootElement(ximport->doc);
         | 
| 171 | 
            +
                xns = xnode->nsDef;
         | 
| 172 | 
            +
             | 
| 173 | 
            +
                while (xns)
         | 
| 174 | 
            +
            	{
         | 
| 175 | 
            +
                  VALUE namespace = rxml_namespace_wrap(xns);
         | 
| 176 | 
            +
                  rb_ary_push(array, namespace);
         | 
| 177 | 
            +
                  xns = xns->next;
         | 
| 178 | 
            +
                }
         | 
| 179 | 
            +
              }
         | 
| 180 | 
            +
            }
         | 
| 181 | 
            +
             | 
| 182 | 
            +
            static VALUE rxml_schema_namespaces(VALUE self)
         | 
| 183 | 
            +
            {
         | 
| 184 | 
            +
              VALUE result;
         | 
| 185 | 
            +
              xmlSchemaPtr xschema;
         | 
| 186 | 
            +
             | 
| 187 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 188 | 
            +
             | 
| 189 | 
            +
              result = rb_ary_new();
         | 
| 190 | 
            +
              xmlHashScan(xschema->schemasImports, (xmlHashScanner)scan_namespaces, (void *)result);
         | 
| 191 | 
            +
             | 
| 192 | 
            +
              return result;
         | 
| 193 | 
            +
            }
         | 
| 194 | 
            +
             | 
| 195 | 
            +
            static void scan_element(xmlSchemaElementPtr xelement, VALUE hash, xmlChar *name)
         | 
| 196 | 
            +
            {
         | 
| 197 | 
            +
              VALUE element = rxml_wrap_schema_element(xelement);
         | 
| 198 | 
            +
              rb_hash_aset(hash, rb_str_new2((const char*)name), element);
         | 
| 199 | 
            +
            }
         | 
| 200 | 
            +
             | 
| 201 | 
            +
            static VALUE rxml_schema_elements(VALUE self)
         | 
| 202 | 
            +
            {
         | 
| 203 | 
            +
              VALUE result = rb_hash_new();
         | 
| 204 | 
            +
              xmlSchemaPtr xschema;
         | 
| 205 | 
            +
             | 
| 206 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 207 | 
            +
              xmlHashScan(xschema->elemDecl, (xmlHashScanner)scan_element, (void *)result);
         | 
| 208 | 
            +
             | 
| 209 | 
            +
              return result;
         | 
| 210 | 
            +
            }
         | 
| 211 | 
            +
             | 
| 212 | 
            +
            static void scan_type(xmlSchemaTypePtr xtype, VALUE hash, xmlChar *name)
         | 
| 213 | 
            +
            {
         | 
| 214 | 
            +
            	VALUE type = rxml_wrap_schema_type(xtype);
         | 
| 215 | 
            +
            	rb_hash_aset(hash, rb_str_new2((const char*)name), type);
         | 
| 216 | 
            +
            }
         | 
| 217 | 
            +
             | 
| 218 | 
            +
            static VALUE rxml_schema_types(VALUE self)
         | 
| 219 | 
            +
            {
         | 
| 220 | 
            +
            	VALUE result = rb_hash_new();
         | 
| 221 | 
            +
            	xmlSchemaPtr xschema;
         | 
| 222 | 
            +
             | 
| 223 | 
            +
            	Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 224 | 
            +
             | 
| 225 | 
            +
            	if (xschema != NULL && xschema->typeDecl != NULL)
         | 
| 226 | 
            +
            	{
         | 
| 227 | 
            +
            		xmlHashScan(xschema->typeDecl, (xmlHashScanner)scan_type, (void *)result);
         | 
| 228 | 
            +
            	}
         | 
| 229 | 
            +
             | 
| 230 | 
            +
            	return result;
         | 
| 231 | 
            +
            }
         | 
| 232 | 
            +
             | 
| 233 | 
            +
            static void collect_imported_types(xmlSchemaImportPtr import, VALUE result)
         | 
| 234 | 
            +
            {
         | 
| 235 | 
            +
              if (import->imported && import->schema)
         | 
| 236 | 
            +
              {
         | 
| 237 | 
            +
                xmlHashScan(import->schema->typeDecl, (xmlHashScanner)scan_type, (void *)result);
         | 
| 238 | 
            +
              }
         | 
| 239 | 
            +
            }
         | 
| 240 | 
            +
             | 
| 241 | 
            +
            static VALUE rxml_schema_imported_types(VALUE self)
         | 
| 242 | 
            +
            {
         | 
| 243 | 
            +
              xmlSchemaPtr xschema;
         | 
| 244 | 
            +
              VALUE result = rb_hash_new();
         | 
| 245 | 
            +
             | 
| 246 | 
            +
              Data_Get_Struct(self, xmlSchema, xschema);
         | 
| 247 | 
            +
             | 
| 248 | 
            +
              if (xschema)
         | 
| 249 | 
            +
              {
         | 
| 250 | 
            +
            	  xmlHashScan(xschema->schemasImports, (xmlHashScanner)collect_imported_types, (void *)result);
         | 
| 251 | 
            +
              }
         | 
| 252 | 
            +
             | 
| 253 | 
            +
              return result;
         | 
| 254 | 
            +
            }
         | 
| 255 | 
            +
             | 
| 256 | 
            +
            void rxml_init_schema(void)
         | 
| 257 | 
            +
            {
         | 
| 258 | 
            +
              cXMLSchema = rb_define_class_under(mXML, "Schema", rb_cObject);
         | 
| 259 | 
            +
              rb_define_singleton_method(cXMLSchema, "new", rxml_schema_init_from_uri, 1);
         | 
| 260 | 
            +
              rb_define_singleton_method(cXMLSchema, "from_string", rxml_schema_init_from_string, 1);
         | 
| 261 | 
            +
              rb_define_singleton_method(cXMLSchema, "document", rxml_schema_init_from_document, 1);
         | 
| 262 | 
            +
             | 
| 263 | 
            +
              rb_define_method(cXMLSchema, "target_namespace", rxml_schema_target_namespace, 0);
         | 
| 264 | 
            +
              rb_define_method(cXMLSchema, "name", rxml_schema_name, 0);
         | 
| 265 | 
            +
              rb_define_method(cXMLSchema, "id", rxml_schema_id, 0);
         | 
| 266 | 
            +
              rb_define_method(cXMLSchema, "version", rxml_schema_version, 0);
         | 
| 267 | 
            +
              rb_define_method(cXMLSchema, "document", rxml_schema_document, 0);
         | 
| 268 | 
            +
             | 
| 269 | 
            +
              rb_define_method(cXMLSchema, "elements", rxml_schema_elements, 0);
         | 
| 270 | 
            +
              rb_define_method(cXMLSchema, "imported_types", rxml_schema_imported_types, 0);
         | 
| 271 | 
            +
              rb_define_method(cXMLSchema, "namespaces", rxml_schema_namespaces, 0);
         | 
| 272 | 
            +
              rb_define_method(cXMLSchema, "types", rxml_schema_types, 0);
         | 
| 273 | 
            +
             | 
| 274 | 
            +
              rxml_init_schema_facet();
         | 
| 275 | 
            +
              rxml_init_schema_element();
         | 
| 276 | 
            +
              rxml_init_schema_attribute();
         | 
| 277 | 
            +
              rxml_init_schema_type();
         | 
| 278 | 
            +
            }
         |