Presentation is loading. Please wait.

Presentation is loading. Please wait.

XML, XML Schema, Xpath and XQuery Slides collated from various sources, many from Dan Suciu at Univ. of Washington.

Similar presentations


Presentation on theme: "XML, XML Schema, Xpath and XQuery Slides collated from various sources, many from Dan Suciu at Univ. of Washington."— Presentation transcript:

1 XML, XML Schema, Xpath and XQuery Slides collated from various sources, many from Dan Suciu at Univ. of Washington

2 CS561 - Spring 2005.2 XML W3C standard to complement HTML origins: structured text SGML motivation: –HTML describes presentation –XML describes content http://www.w3.org/TR/2000/REC-xml-20001006 (version 2, 10/2000)

3 CS561 - Spring 2005.3 From HTML to XML HTML describes the presentation

4 CS561 - Spring 2005.4 HTML Bibliography Foundations of Databases Abiteboul, Hull, Vianu Addison Wesley, 1995 Data on the Web Abiteboul, Buneman, Suciu Morgan Kaufmann, 1999

5 CS561 - Spring 2005.5 XML Foundations… Abiteboul Hull Vianu Addison Wesley 1995 … XML describes the content

6 CS561 - Spring 2005.6 XML Terminology tags: book, title, author, … start tag:, end tag: elements: …, … elements are nested empty element: abbrv. an XML document: single root element well formed XML document: if it has matching tags

7 CS561 - Spring 2005.7 More XML: Attributes Foundations of Databases Abiteboul … 1995 attributes are alternative ways to represent data

8 CS561 - Spring 2005.8 More XML: Oids and References Jane Mary John oids and references in XML are just syntax

9 CS561 - Spring 2005.9 XML Namespaces http://www.w3.org/TR/REC-xml-names (1/99) name ::= [prefix:]localpart … 15 …. … 15 ….

10 CS561 - Spring 2005.10 … … XML Namespaces syntactic:, semantic: provide URL for schema defined here

11 CS561 - Spring 2005.11 XML Data Model Several competing models: Document Object Model (DOM): –http://www.w3.org/TR/2001/WD-DOM-Level-3-CMLS- 20010209/ (2/2001) –class hierarchy (node, element, attribute,…) –objects have behavior –defines API to inspect/modify the document Infoset - PSV (post schema validation) XML Query data model

12 CS561 - Spring 2005.12 XML Schemas http://www.w3.org/TR/xmlschema- 1/10/2000 generalizes DTDs uses XML syntax two documents: structure and datatypes –http://www.w3.org/TR/xmlschema-1 –http://www.w3.org/TR/xmlschema-2 XML-Schema is complex

13 CS561 - Spring 2005.13 XML Schemas DTD:

14 CS561 - Spring 2005.14 Elements v.s. Types in XML Schema DTD:

15 CS561 - Spring 2005.15 Types: –Simple types (integers, strings,...) –Complex types (regular expressions, like in DTDs) Element-type-element alternation: –Root element has a complex type –That type is a regular expression of elements –Those elements have their complex types... –... –On the leaves we have simple types Elements v.s. Types in XML Schema

16 CS561 - Spring 2005.16 Local and Global Types in XML Schema Local type: [define locally the person’s type] Global type: [define here the type ttt] Global types: can be reused in other elements

17 CS561 - Spring 2005.17 Local v.s. Global Elements in XML Schema Local element:... Global element:... Global elements: like in DTDs

18 CS561 - Spring 2005.18 Regular Expressions in XML Schema Recall the element-type-element alternation: [regular expression on elements] Regular expressions: A B C = A B C A B C = A | B | C A B C = (A B C).. = (...)*.. = (...)?

19 CS561 - Spring 2005.19 Attributes in XML Schema............ Attributes are associated to the type, not to the element Only to complex types; more trouble if we want to add attributes to simple types.

20 CS561 - Spring 2005.20 Derived Types by Extensions Corresponds to inheritance

21 CS561 - Spring 2005.21 Keys in XML Schema Lawnmower Baby Monitor Lapis Necklace Sturdy Shelves Lawnmower Baby Monitor Lapis Necklace Sturdy Shelves XML: XML Schema:

22 CS561 - Spring 2005.22 Keys in XML Schema In general, two flavors:............ Note: all Xpath expressions “start” at the element currently being defined The fields must identify a single node

23 CS561 - Spring 2005.23 Keys in XML Schema Unique = guarantees uniqueness Key = guarantees uniqueness and existence All Xpath expressions are “restricted”: –/a/b | /a/c OK for selector” –//a/b/*/c OK for field Note: better than DTD’s ID mechanism

24 CS561 - Spring 2005.24 Keys in XML Schema Examples Recall: must have A single forename, Single surname

25 CS561 - Spring 2005.25 Foreign Keys in XML Schema Example

26 XPATH

27 CS561 - Spring 2005.27 XPath Goal = permit to access some nodes from document XPath main construct : axis navigation XPath path consists of one or more navigation steps, separated by / Navigation step : axis + node-test + predicates Examples –/descendant::node()/child::author –/descendant::node()/child::author[parent/attribute::booktitle =“XML”][2] XPath also offers shortcuts –no axis means child –//  / descendant-or-self::node()/

28 CS561 - Spring 2005.28 XPath- Child axis navigation author is shorthand for child::author. Examples: –aaa -- all the child nodes labeled aaa (1,3) –aaa/bbb -- all the bbb grandchildren of aaa children (4) –*/ bbb all the bbb grandchildren of any child (4,6) –. -- the context node –/ -- the root node aaa bbb cccaaa bbb ccc 1 23 4 567 context node

29 CS561 - Spring 2005.29 XPath- child axis navigation –/ doc -- all the doc children of the root –./ aaa -- all the aaa children of the context node (equivalent to aaa ) –text() -- all the text children of the context node –node() -- all the children of the context node (includes text and attribute nodes) –.. -- parent of the context node –.// -- the context node and all its descendants –// -- the root node and all its descendants –//text() -- all the text nodes in the document

30 CS561 - Spring 2005.30 Predicates –[2] -- the second child node of the context node –chapter[5] -- the fifth chapter child of the context node –[last()] -- the last child node of the context node –chapter[title=“introduction”] -- the chapter children of the context node that have one or more title children whose string-value is “introduction” (the string-value is the concatenation of all the text on descendant text nodes) –person[.//firstname = “joe”] -- the person children of the context node that have in their descendants a firstname element with string-value “ Joe ”

31 CS561 - Spring 2005.31 Axis navigation So far, nearly all our expressions have moved us down by moving to child nodes. Exceptions were –. -- stay where you are –/ go to the root –// all descendants of the root –.// all descendants of the context node XPath has several axes: ancestor, ancestor-or-self, attribute, child, descendant, descendant-or-self, following, following-sibling, namespace, parent, preceding, preceding-sibling, self –Some of these ( self, parent ) describe single nodes, others describe sequences of nodes.

32 CS561 - Spring 2005.32 XPath Navigation Axes ancestor descendant followingpreceding following-siblingpreceding-sibling child attribute namespace self

33 CS561 - Spring 2005.33 XPath abbreviated syntax (nothing)child:: @attribute:: ///descendant-or-self::node().self::node().//descendant-or-self::node..parent::node() /(document root)

34 CS561 - Spring 2005.34 XPath Reasonably widely adopted -- in XML- Schema and query languages. Neither more expressive nor less expressive than regular path expressions

35 Query Languages - XQuery

36 CS561 - Spring 2005.36 Summary of XQuery FLWR expressions FOR and LET expressions Collections and sorting Resources XQuery: A Query Language for XML XQuery: A Query Language for XML Chamberlin, Florescu, et al. W3C recommendation: www.w3.org/TR/xquery/

37 CS561 - Spring 2005.37 XQuery Based on Quilt (which is based on XML-QL) http://www.w3.org/TR/xquery/2/2001 XML Query data model (ordered)

38 CS561 - Spring 2005.38 FLWR (“Flower”) Expressions FOR... LET... FOR... LET... WHERE... RETURN...

39 CS561 - Spring 2005.39 XQuery Find all book titles published after 1995: FOR $x IN document("bib.xml") /bib/book WHERE $x/year > 1995 RETURN $x/title FOR $x IN document("bib.xml") /bib/book WHERE $x/year > 1995 RETURN $x/title Result: abc def ghi

40 CS561 - Spring 2005.40 XQuery For each author of a book by Morgan Kaufmann, list all books she published: FOR $a IN distinct( document("bib.xml") /bib/book[publisher=“Morgan Kaufmann”]/author) RETURN $a, FOR $t IN /bib/book[author=$a]/title RETURN $t FOR $a IN distinct( document("bib.xml") /bib/book[publisher=“Morgan Kaufmann”]/author) RETURN $a, FOR $t IN /bib/book[author=$a]/title RETURN $t distinct = a function that eliminates duplicates

41 CS561 - Spring 2005.41 XQuery Result: Jones abc def Smith ghi

42 CS561 - Spring 2005.42 XQuery FOR $x in expr -- binds $x to each element in the list expr LET $x = expr -- binds $x to the entire list expr –Useful for common subexpressions and for aggregations

43 CS561 - Spring 2005.43 XQuery count = a (aggregate) function that returns the number of elms FOR $p IN distinct(document("bib.xml")//publisher) LET $b := document("bib.xml")/book[publisher = $p] WHERE count($b) > 100 RETURN $p FOR $p IN distinct(document("bib.xml")//publisher) LET $b := document("bib.xml")/book[publisher = $p] WHERE count($b) > 100 RETURN $p

44 CS561 - Spring 2005.44 XQuery Find books whose price is larger than average: LET $a=avg( document("bib.xml") /bib/book/@price) FOR $b in document("bib.xml") /bib/book WHERE $b/@price > $a RETURN $b LET $a=avg( document("bib.xml") /bib/book/@price) FOR $b in document("bib.xml") /bib/book WHERE $b/@price > $a RETURN $b

45 CS561 - Spring 2005.45 XQuery Summary: FOR-LET-WHERE-RETURN = FLWR FOR/LET Clauses WHERE Clause RETURN Clause List of tuples Instance of Xquery data model

46 CS561 - Spring 2005.46 FOR v.s. LET FOR Binds node variables  iteration LET Binds collection variables  one value

47 CS561 - Spring 2005.47 FOR v.s. LET FOR $x IN document("bib.xml") /bib/book RETURN $x FOR $x IN document("bib.xml") /bib/book RETURN $x Returns:... LET $x := document("bib.xml") /bib/book RETURN $x LET $x := document("bib.xml") /bib/book RETURN $x Returns:...

48 CS561 - Spring 2005.48 Collections in XQuery Ordered and unordered collections –/bib/book/author = an ordered collection –Distinct(/bib/book/author) = an unordered collection LET $a = /bib/book  $a is a collection $b/author  a collection (several authors...) RETURN $b/author Returns:...

49 CS561 - Spring 2005.49 Sorting in XQuery FOR $p IN distinct(document("bib.xml")//publisher) RETURN $p/text(), FOR $b IN document("bib.xml")//book[publisher = $p] RETURN $b/title, $b/@price SORTBY(price DESCENDING) SORTBY(name) FOR $p IN distinct(document("bib.xml")//publisher) RETURN $p/text(), FOR $b IN document("bib.xml")//book[publisher = $p] RETURN $b/title, $b/@price SORTBY(price DESCENDING) SORTBY(name)

50 CS561 - Spring 2005.50 Sorting in XQuery Sorting arguments: refer to name space of RETURN clause, not FOR clause To sort on an element you don’t want to display, first return it, then remove it with an additional query.

51 CS561 - Spring 2005.51 If-Then-Else FOR $h IN //holding RETURN $h/title, IF $h/@type = "Journal" THEN $h/editor ELSE $h/author SORTBY (title) FOR $h IN //holding RETURN $h/title, IF $h/@type = "Journal" THEN $h/editor ELSE $h/author SORTBY (title)

52 CS561 - Spring 2005.52 Existential Quantifiers FOR $b IN //book WHERE SOME $p IN $b//para SATISFIES contains($p, "sailing") AND contains($p, "windsurfing") RETURN $b/title FOR $b IN //book WHERE SOME $p IN $b//para SATISFIES contains($p, "sailing") AND contains($p, "windsurfing") RETURN $b/title

53 CS561 - Spring 2005.53 Universal Quantifiers FOR $b IN //book WHERE EVERY $p IN $b//para SATISFIES contains($p, "sailing") RETURN $b/title FOR $b IN //book WHERE EVERY $p IN $b//para SATISFIES contains($p, "sailing") RETURN $b/title


Download ppt "XML, XML Schema, Xpath and XQuery Slides collated from various sources, many from Dan Suciu at Univ. of Washington."

Similar presentations


Ads by Google