使用QXMLSchema时,复杂类型中的XSD架构问题

时间:2019-02-15 22:29:07

标签: xml qt xsd xsd-validation

我正在创建用于验证XML文件的XSD模式。

该模式对于W3C XML Schema (XSD) Validation page是正确的,而对于QXmlSchema则有一个错误。这是生成错误的最小XSD部分:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://standards.ieee.org/IEEE1516-2010" xmlns:ns="http://standards.ieee.org/IEEE1516-2010" targetNamespace="http://standards.ieee.org/IEEE1516-2010" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2010">
  <xs:element name="objectModel" type="objectModelType">
  </xs:element>

  <xs:complexType name="objectModelType">
    <xs:sequence>
      <xs:element name="modelIdentification" type="modelIdentificationType">
        <xs:annotation>
          <xs:documentation>documents certain key identifying information within the object model description</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:any namespace="##other" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="modelIdentificationType">
    <xs:sequence>
      <xs:element name="name" type="NonEmptyString">
        <xs:annotation>
          <xs:documentation>specifies the name assigned to the object model</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="glyph" minOccurs="0">
        <xs:annotation>
          <xs:documentation>specifies a glyph to visually represent the model</xs:documentation>
        </xs:annotation>
        <xs:complexType mixed="true">
          <xs:simpleContent>
            <xs:extension base="glyphType"/>
          </xs:simpleContent>
        </xs:complexType>
      </xs:element>
      <xs:any namespace="##other" minOccurs="0"/>
    </xs:sequence>
    <xs:attributeGroup ref="commonAttributes"/>
  </xs:complexType>
  <xs:complexType name="String">
    <xs:simpleContent>
      <xs:extension base="xs:string">
        <xs:attributeGroup ref="commonAttributes"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
  <xs:complexType name="NonEmptyString">
    <xs:simpleContent>
      <xs:extension base="nonEmptyString">
        <xs:attributeGroup ref="commonAttributes"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
  <xs:complexType name="glyphType" mixed="true">
    <xs:simpleContent>
      <xs:extension base="xs:base64Binary">
        <xs:attributeGroup ref="commonAttributes"/>
        <xs:attribute name="href" type="xs:anyURI"/>
        <xs:attribute name="type" type="glyphTypeUnion"/>
        <xs:attribute name="height" type="xs:short"/>
        <xs:attribute name="width" type="xs:short"/>
        <xs:attribute name="alt" type="xs:string"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
  <xs:complexType name="IdentifierType">
    <xs:simpleContent>
      <xs:extension base="xs:NCName">
        <xs:attributeGroup ref="commonAttributes"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>



  <xs:simpleType name="nonEmptyString">
    <xs:restriction base="xs:string">
      <xs:minLength value="1"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="glyphTypeUnion">
    <xs:union memberTypes="glyphTypeEnumerations xs:string"/>
  </xs:simpleType>

  <xs:simpleType name="glyphTypeEnumerations">
    <xs:restriction base="xs:string">
      <xs:enumeration value="BITMAP"/>
      <xs:enumeration value="JPG"/>
      <xs:enumeration value="GIF"/>
      <xs:enumeration value="PNG"/>
      <xs:enumeration value="TIFF"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:attributeGroup name="commonAttributes">
    <xs:attribute name="notes" type="xs:IDREFS" use="optional"/>
    <xs:attribute name="idtag" type="xs:ID" use="optional"/>
    <xs:anyAttribute namespace="##other"/>
  </xs:attributeGroup>

</xs:schema>

如果我将此模式复制并粘贴到W3C页面,则表示可以。

我通过以下方式在程序中创建模式:

QXmlSchema schema;
// text is a char array containing the XML file.
schema.load(text);

当我调用load方法时,调试控制台窗口中会显示以下消息:

Error XSDError in Unknown location, at line 52, column 22: complexType element with simpleContent child element must not have a mixed attribute.

如果我转到消息中显示的行号,我可以看到complexType是以下类型:

<xs:complexType name="glyphType" mixed="true">
  <xs:simpleContent>
    <xs:extension base="xs:base64Binary">
      <xs:attributeGroup ref="commonAttributes"/>
      <xs:attribute name="href" type="xs:anyURI"/>
      <xs:attribute name="type" type="glyphTypeUnion"/>
      <xs:attribute name="height" type="xs:short"/>
      <xs:attribute name="width" type="xs:short"/>
      <xs:attribute name="alt" type="xs:string"/>
    </xs:extension>
  </xs:simpleContent>
</xs:complexType>

通过查看XSD的这一部分,错误消息对我来说似乎很清楚,但是我不知道为什么这应该是错误。

因此对于W3C页面,这是正确的,因为Qt是错误的。哪一个对具有简单内容的复杂类型有正确的解释?

这是应该验证的XML的最小示例(在网页中):

<?xml version="1.0" encoding="utf-8"?>
<objectModel xmlns="http://standards.ieee.org/IEEE1516-2010" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://standards.ieee.org/IEEE1516-2010 http://standards.ieee.org/downloads/1516/1516.2-2010/IEEE1516-DIF-2010.xsd">
  <modelIdentification>
    <name>New</name>
  </modelIdentification>
</objectModel>

1 个答案:

答案 0 :(得分:1)

简单的内容表示元素仅包含文本(字符数据),而混合的元素表示元素可以包含文本和子元素的混合,因此两者都矛盾。

撒克逊人拒绝了它:

Error at xs:complexType on line 2 column 51 of test.xsd:
  The <complexType> must not specify mixed='true' when <simpleContent> is present

我在XSD 1.0§3.4.3中找到了此注释

注意:尽管在此处或在Schema for Schemas(规范)(§A)中均未明确排除,但是在选择<xs:complexType . . .mixed='true'替代项时指定<simpleContent>不会影响相应的组件,应避免使用。在本规范的后续版本中可能会排除这种情况。

所以这是胡说八道,不鼓励这样做,但是根据XSD 1.0看来,这实际上并不是非法的。

XSD 1.1使其非法:§3.4.3第1节:如果选择了<simpleContent>替代项,则<complexType>元素必须没有mixed = true