inconsistent path detection for xml ides
play

Inconsistent Path Detection for XML IDEs Pierre Genevs Nabil Layada - PowerPoint PPT Presentation

Inconsistent Path Detection for XML IDEs Pierre Genevs Nabil Layada CNRS INRIA May 25 th , 2011 33 rd International Conference on Software Engineering Honolulu, HI, USA . A Simple XQuery Program Generate alerts for news related to stocks


  1. Inconsistent Path Detection for XML IDEs Pierre Genevès Nabil Layaïda CNRS INRIA May 25 th , 2011 33 rd International Conference on Software Engineering Honolulu, HI, USA .

  2. A Simple XQuery Program Generate alerts for news related to stocks in portfolio: for $s in doc("portfolio.xml")//stocks/stock for $line in doc("news.xml")/news/headline where contains($line, $s/name) return <alert>{$s/ticker, $line/parent::*/summary}</alert> portfolio + <alert>QQQ, Nasdaq falls...</alert> stock qty ticker QQQ 100 Search, selection and information extraction done using XPath expressions Pierre Genevès (CNRS, France) Inconsistent Path Detection for XML IDEs 05.25.2011 – ICSE’11 2 / 7

  3. Zoom on XPath Expressions ( axis :: nodetest [ filter ] ′ / ′ ) n General form: r t o s e n c a self parent context node child preceding-sibling a selected node following-sibling f o preceding l l o w i n g descendant Succinct but very powerful Describe binary relations between context and selected nodes Standard recommended by the W3 Consortium Central component (XSLT, XQuery, XML Schema, XPointer...) Pierre Genevès (CNRS, France) Inconsistent Path Detection for XML IDEs 05.25.2011 – ICSE’11 3 / 7

  4. The Path Consistency Problem In real life, XML data are complex and queried using complex paths Paths are error-prone for programmers Two types of inconsistencies: self-contradicting paths a/b[following-sibling::c/parent::d] paths violating schema constraints (more frequent since path and self::a/child::e a[b*,c,d+] schemas are updated independently) Inconsistencies are hard to detect → Detect path inconsistencies automatically → Detect them all (be sound and complete) Pierre Genevès (CNRS, France) Inconsistent Path Detection for XML IDEs 05.25.2011 – ICSE’11 4 / 7

  5. The Path Consistency Problem: Formal Overlook An expression e , evaluated from a context node x in a tree t , returns a set of matching nodes e ( t , x ) XPath expression e is inconsistent ⇔ ∀ t ∀ x ∈ t , e ( t , x ) = ∅ e is inconsistent in the presence of s ⇔ ∀ t ⊢ s ∀ x ∈ t , e ( t , x ) = ∅ The problem of determining whether an XPath expression is inconsistent is: Undecidable for XPath in general EXPTIME for the navigational core fragment of XPath (CXPath ↔ first-order logic over trees) EXPTIME for CXPath in the presence of schemas (regular tree grammars ↔ monadic second-order logic over trees) Pierre Genevès (CNRS, France) Inconsistent Path Detection for XML IDEs 05.25.2011 – ICSE’11 5 / 7

  6. Proposed Approach CXPath expression e ϕ is satisfiable ϕ e ∧ ϕ s Parsing and Satisfiability check Schema s (2 O( | ϕ | ) time) compilation Logical formula ϕ ϕ is unsatisfiable: (linear time) e is inconsistent in the presence of s Reduction to satisfiability of a unifying tree logic: The µ -calculus with converse of finite trees of [Geneves-PLDI07] CXPath expressions and schemas are compiled linearly into the logic Formula ϕ is checked for satisfiability in time complexity 2 O ( | ϕ | ) Exact algorithm (sound and complete) The core logical solver is available online: http://wam.inrialpes.fr/websolver Pierre Genevès (CNRS, France) Inconsistent Path Detection for XML IDEs 05.25.2011 – ICSE’11 6 / 7

  7. Other Applications and Demo Dead code elimination (e.g. loops over inconsistent paths) ← − inconsistent w.r.t schema for $x in //news[article]/headline return { ... } ← − dead code Code optimization (e.g. removing redundancies in path expressions) (the decision procedure can also check path equivalence) First IDE for XML augmented with static detection of inconsistent paths (demo) Pierre Genevès (CNRS, France) Inconsistent Path Detection for XML IDEs 05.25.2011 – ICSE’11 7 / 7

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend