分享
 
 
 

Schema Structure小结

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

1. Schema机制:

a) Simple Type和Complex Type

由于XML文档被组织成树状结构,因此,我们可以按照节点所处的位置把他们区分为叶子节点和内部节点。Simple Type是Schema引入以表示叶子节点类型的,而Complex Type是用来表示内部节点类型的。因此,对于Simple Type我们关心的是她所允许的值,也就是在Datatypes中所说的Lexical Space,Value Space以及facet。而对于Complex Type,她反映的是文档的结构,所以,对于Complex Type我们关心的是她怎么定义节点之间的关系。

b) Content Models

Content model

Mixed

Complex

Simple

Empty

Child elements

Yes

Yes

No

No

Child text

Yes

No

Yes

No

注:由于Complex Type用于定义内部节点,Content Model用于表示该节点所包含子节点的类型。

Empty Content Complex Type:表示节点不包含任何文本和子节点的Complex Type类型。

Simple Content Complex Type:表示节点只包含文本的Complex Type类型。

Complex Content Complex Type:表示节点只包含子节点的Complex Type类型。

Mixed Content Complex Type:表示节点的子节点当中既包含文本又能包含子节点的Complex Type类型。

c) 定义Complex Type的语法:

<complexType

abstract = boolean : false

block = (#all | List of (extension | restriction))

final = (#all | List of (extension | restriction))

id = ID

mixed = boolean : false

name = NCName

>

Content: (annotation?, (simpleContent | complexContent | ((group | all | choice |

sequence)?, ((attribute | attributeGroup)*, anyAttribute?))))

</complexType>

2. Simple Content Complex Type

a) 说明:我们不能直接定义Simple Content Complex Type类型,而必须通过对已有的Simple Type或者Simple Content进行扩展或约束得到。

b) Simple Content的扩展(extension)

i. 说明:对基类型进行扩展,定义额外的属性。

ii. 语法:

<extension

base = QName

id = ID

>

Content: (annotation?, ((attribute | attributeGroup)*, anyAttribute?))

</extension>

iii. 例子:

Schema:

<xs:element name="title">

<xs:complexType>

<xs:simpleContent>

<xs:extension base="xs:string">

<xs:attribute name="note" type="xs:token"/>

</xs:extension>

</xs:simpleContent>

</xs:complexType>

</xs:element>

XML:

<title note="…">…</title>

c) Simple Content的约束(restriction)

i. 说明:可以对基类型中,已定义的内容和属性进行约束。通过修改属性的use属性,可以禁止该属性的出现。约束后的类型是基类型的子集。

ii. 语法:

<restriction

base = QName

id = ID

>

Content: (annotation?, (simpleType?, (minExclusive | minInclusive | maxExclusive

| maxInclusive | totalDigits | fractionDigits | length | minLength | maxLength |

enumeration | whiteSpace | pattern)*)?, ((attribute | attributeGroup)*,

anyAttribute?))

iii. 例子:

Schema:

<xs:element name="title">

<xs:complexType>

<xs:simpleContent>

<xs:restriction base="xs:string">

<xs:maxLength value="5"/>

</xs:restriction>

</xs:simpleContent>

</xs:complexType>

</xs:element>

XML:

<title>Hello</title>

d) 两种方法的比较:

扩展的方式只能增加新的属性,而不能对基类型当中的文本和属性进行任何的约束和修改。相比之下,约束的方式显得更加灵活,她能够增加对基类型中的文本和属性的约束。

3. Complex Content Complex Type

a) 说明:我们能够通过Compositor和Partical的方式,直接定义Complex Content Complex Type类型,也能够通过扩展和约束的方式,对已有的Complex Content Complex Type类型进行扩展。

b) 通过Compositor和Partical定义Complex Content Complex Type

Compositor和Partical用于定义子节点及其之间的关系。其中Compositor用于说明子节点之间的出现顺序,Partical用于说明都包含了哪些子节点。Schema定义的Compositor包括:sequence,choice,all;Partical包括:element,sequence,choice,any和group。

i. sequence

1. 说明:sequence中的Partical必须按顺序出现。

2. 语法:

<sequence

id = ID

maxOccurs = (nonNegativeInteger | unbounded) : 1

minOccurs = nonNegativeInteger : 1

>

Content: (annotation?, (element | group | choice | sequence | any)*)

</sequence>

3. 例子:

Schema:

<xs:element name="author">

<xs:complexType>

<xs:sequence>

<xs:element name="name" type="xs:string"/>

<xs:element name="born" type="xs:string"/>

</xs:sequence>

<xs:attribute name="id" type="xs:string"/>

</xs:complexType>

</xs:element>

XML:

<author id="…">

<name>…</name>

<born>…</born>

</author>

ii. choice

1. 说明:choice中的Partical只能出现其中的一个。

2. 语法:

<choice

id = ID

maxOccurs = (nonNegativeInteger | unbounded) : 1

minOccurs = nonNegativeInteger : 1

>

Content: (annotation?, (element | group | choice | sequence | any)*)

</choice>

3. 例子:

Schema:

<xs:element name="author">

<xs:complexType>

<xs:choice>

<xs:element name="name" type="xs:string"/>

<xs:element name="born" type="xs:string"/>

</xs:choice>

<xs:attribute name="id" type="xs:string"/>

</xs:complexType>

</xs:element>

XML:

<author id="…">

<name>…</name>

</author>

iii. all

1. 说明:all中的Partical可以按任何顺序组合出现,但all中的Partical的maxOccurs属性只能小于或等于1。

2. 语法:

<all

id = ID

maxOccurs = 1 : 1

minOccurs = (0 | 1) : 1

>

Content: (annotation?, element*)

</all>

3. 例子:

Schema:

<xs:element name="author">

<xs:complexType>

<xs:all>

<xs:element name="name" maxOccurs="1" type="xs:string"/>

<xs:element name="born" maxOccurs="1" type="xs:string"/>

</xs:all>

<xs:attribute name="id" type="xs:string"/>

</xs:complexType>

</xs:element>

XML:

<author id="…">

<born>…</born>

<name>…</name>

</author>

c) Complex Content的扩展(extention)

i. 说明:对基类型进行扩展,定义额外的元素和属性。

ii. 语法:

<extension

base = QName

id = ID

>

Content: (annotation?, ((group | all | choice | sequence)?, ((attribute |

attributeGroup)*, anyAttribute?)))

</extension>

iii. 例子:

Schema:

父类型:

<xs:complexType name="basePerson">

<xs:choice>

<xs:element name="author" type="xs:string"/>

<xs:element name="character" type="xs:string"/>

</xs:choice>

</xs:complexType>

子类型:

<xs:element name="person">

<xs:complexType>

<xs:complexContent>

<xs:extension base="basePerson">

<xs:sequence>

<xs:element name="editor" type="xs:string"/>

</xs:sequence>

</xs:extension>

</xs:complexContent>

</xs:complexType>

</xs:element>

XML:

<person>

<author>…</author>

<editor>…</editor>

</person>

注:子类型的定义等价于:

<xs:complexType name="person">

<xs:complexContent>

<xs:sequence>

<xs:choice>

<xs:element name="author" type="xs:string"/>

<xs:element name="character" type="xs:string"/>

</xs:choice>

<xs:sequence>

<xs:element name="editor" type="xs:string"/>

</xs:sequence>

</xs:sequence>

</xs:complexContent>

</xs:complexType>

d) Complex Content的约束(restriction)

i. 说明:可以对基类型中,已定义的内容和属性进行约束。通过修改元素的maxOccurs属性,可以限制元素的出现,通过修改属性的use属性,可以限制属性的出现。约束后的类型是基类型的子集。

ii. 语法:

<restriction

base = QName

id = ID

>

Content: (annotation?, (group | all | choice | sequence)?, ((attribute |

attributeGroup)*, anyAttribute?))

</restriction>

iii. 例子:

Schema:

父类型:

<xs:complexType name="person">

<xs:sequence>

<xs:element name="name" type="xs:string"/>

<xs:element name="born" type="xs:string"/>

</xs:sequence>

<xs:attribute name="id" type="xs:string"/>

</xs:complexType>

子类型:

<xs:element name="author">

<xs:complexType>

<xs:complexContent>

<xs:restriction base="person">

<xs:sequence>

<xs:element name="name" type="xs:string"/>

</xs:sequence>

</xs:restriction>

</xs:complexContent>

</xs:complexType>

</xs:element>

XML:

<author id="…">

<name>…</name>

</author>

注:通过约束得到新类型时,对于元素部分,我们需要重新书写我们需要的Content内容;

而对于属性部分,我们只需要书写我们希望改变的部分,如果不需要改变,则可以不书写。

e) 两种方法的比较

与扩展Simple Content的两种方法相似,extension方法只能在父类型的结尾部分增加新的节点或者属性,而不能对父节点中的节点或属性的类型进行修改。而restriction则可以通过重新书写Content和Attribute的方式,重新定义子类型的各部分内容。另外,这两种方法是非对称的,即通过一次extension和restriction不能得回到原来的类型。对于使用扩展方法,符合扩展类的XML文件内容,不一定符合基类。而对于约束方法,符合扩展类的XML内容,也必须符合基类。

4. Mixed Content Complex Type

a) 说明:我们能够通过complexType声明中的mixed属性,定义Mixed Content Complex Type类型。也能够通过扩展和约束的方式,对Mixed Content Complex Type进行扩展。

b) 通过mixed属性定义Mixed Content Complex Type

i. 例子:

Schema:

<xs:element name="title">

<xs:complexType mixed="true">

<xs:choice>

<xs:element name="em" type="xs:token"/>

<xs:element name="a" type="xs:string"/>

</xs:choice>

<xs:attribute name="lang" type="xs:string"/>

</xs:complexType>

</xs:element>

XML:

<title lang="…">

<em>

</title>

c) Mixed Content的扩展(extention)

i. 例子:

Schema:

<xs:element name="title">

<xs:complexType mixed="true">

<xs:complexContent mixed="true">

<xs:extension base="…">

<xs:choice>

<xs:element name="strong" type="xs:string"/>

</xs:choice>

</xs:extension>

</xs:complexContent>

</xs:complexType>

</xs:element>

d) Mixed Content的约束(restriction)

i. 例子:

Schema:

<xs:element name="title">

<xs:complexType mixed="true">

<xs:complexContent mixed="true">

<xs:restriction base="…">

<xs:choice>

<xs:element name="a" type="xs:string"/>

</xs:choice>

<xs:attribute name="lang"/>

</xs:restriction>

</xs:complexContent>

</xs:complexType>

</xs:element>

e) Complex Content Complex Type和Mixed Content Complex Type之间的相互扩展

Complex -> Mixed(E) forbidden

Mixed -> Complex(E) forbidden

Complex -> Mixed(R) forbidden

Mixed -> Complex(R) ok

5. Empty Content Complex Type

a) 说明:我们可以通过两种方式来定义Empty Content,一种是通过禁止Simple Content Complex Type中的文本内容出现,另一种是通过禁止Complex Content Complex Type中的元素出现。

b) 通过Simple Content定义Empty Content

i. 例子:

Schema:

<xs:element name="br">

<xs:complexType>

<xs:simpleContent>

<xs:extension base="xs:string">

<xs:enumeration value=""/>

</xs:extension>

</xs:simpleContent>

</xs:complexType>

</xs:element>

c) 通过Complex Content定义Empty Content

i. 例子:

Schema:

<xs:element name="br">

<xs:complexType/>

</xs:element>

d) 对基于Simple Content的Empty Content进行扩展和约束

由于是基于Simple Content的,所以在扩展时,我们可以增加额外的属性,而在约束时可以约束文本的内容。

e) 对基于Complex Content的Empty Content进行扩展和约束

由于是基于Complex Content的,所以在扩展时,我们可以增加额外的属性和元素,而在

约束时可以约束属性和元素的内容。

6. XML文档结构抽象:

注:XML文档的结构从抽象来说,就是E(元素节点),A(属性节点),T(文本节点)之间的一个组合关系。而根据这些节点的特性要求,他们的关系只能表现为以下几种:属性定义(A);空元素节点(E());元素节点包含属性节点(E(A));元素节点包含文本节点(E(T));元素节点包含元素节点(E(E));元素节点包含元素节点和文本节点(E(A,T));元素节点包含元素节点和属性节点(E(E,A));元素节点包含元素节点和文本节点(E(E,T));元素节点包含元素节点,属性节点和文本节点(E(E,A,T))。而DTD和Schema的作用就是定义这9中组合关系的规则。

7. 属性定义(A)

a) 语法:

<attribute

default = string

fixed = string

form = (qualified | unqualified)

id = ID

name = NCName

ref = QName

type = QName

use = (optional | prohibited | required) : optional

>

Content: (annotation?, simpleType?)

</attribute>

b) 例子:

<attribute name="test" type="xs:string"/>

8. 空元素节点(E())

a) 语法:使用Empty Content Complex Type

b) 例子:

<xs:element name="test">

<xs:complexType/>

</xs:element>

9. 元素节点包含属性节点(E(A))

a) 语法:使用Empty Content Complex Type

b) 例子:

<xs:element name="test">

<xs:complexType>

<attribute name="…" type="…"/>

</xs:complexType>

</xs:element>

10.元素节点包含文本节点(E(T))

a) 语法:使用Simple Content Complex Type

b) 例子:

<xs:element name="title">

<xs:complexType>

<xs:simpleContent>

<xs:extension base="xs:string"/>

</xs:simpleContent>

</xs:complexType>

</xs:element>

11.元素节点包含元素节点(E(E))

a) 语法:使用Complex Content Complex Type

b) 例子:

<xs:complexType name="person">

<xs:complexContent>

<xs:sequence>

<xs:choice>

<xs:element name="author" type="xs:string"/>

<xs:element name="character" type="xs:string"/>

</xs:choice>

</xs:sequence>

</xs:complexContent>

</xs:complexType>

12.元素节点包含元素节点和文本节点(E(A,T))

a) 语法:使用Simple Content Complex Type

b) 例子:

<xs:element name="title">

<xs:complexType>

<xs:simpleContent>

<xs:extension base="xs:string">

<xs:attribute name="note" type="xs:token"/>

</xs:extension>

</xs:simpleContent>

</xs:complexType>

</xs:element>

13.元素节点包含元素节点和属性节点(E(E,A))

a) 语法:使用Complex Content Complex Type

b) 例子:

<xs:element name="author">

<xs:complexType>

<xs:sequence>

<xs:element name="name" type="xs:string"/>

<xs:element name="born" type="xs:string"/>

</xs:sequence>

<xs:attribute name="id" type="xs:string"/>

</xs:complexType>

</xs:element>

14.元素节点包含元素节点和文本节点(E(E,T))

a) 语法:使用Mixed Content Complex Type

b) 例子:

<xs:element name="title">

<xs:complexType mixed="true">

<xs:choice>

<xs:element name="em" type="xs:token"/>

<xs:element name="a" type="xs:string"/>

</xs:choice>

</xs:complexType>

</xs:element>

15.元素节点包含元素节点,属性节点和文本节点(E(E,A,T))

a) 语法:使用Mixed Content Complex Type

b) 例子:

<xs:element name="title">

<xs:complexType mixed="true">

<xs:choice>

<xs:element name="em" type="xs:token"/>

<xs:element name="a" type="xs:string"/>

</xs:choice>

<xs:attribute name="lang" type="xs:string"/>

</xs:complexType>

</xs:element>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有