[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

Deep-equal between sequences

Michael Kay mike at saxonica.com
Wed Jul 11 12:41:26 PDT 2007


  Deep-equal between sequences
> 
> some $i in $firstSeq satisfies $secondSeq[deep-equal(.,$i)]
> 

Certainly this meets the requirement, and certainly a half-decent
implementation will exit when it finds the first "true" value. But in the
worst case, without a very clever bit of optimization, it will result in N*M
deep-equal comparisons.

I saw another requirement like this recently - essentially grouping where
grouping keys were compared using deep equality. It suggests to me a need
for a function

deep-comparison-key(node(), collation) -> xs:atomicValue

where the result of the function is undefined except to the extent that
deep-comparison-key(N, C) eq deep-comparison-key(M, C) if and only if
deep-equal(N, M, C). (One possible implementation would be to serialize into
canonical XML and then replace all strings with a collation key).

The downside is that the semantics of deep-equal are themselves so fragile -
the function so often doesn't perform exactly the comparison you would like.

Another solution you could try to implement at application level would be to
define a hash function such that deep-equal(A, B) => hash(A) eq hash(B), and
then confine the deep-equal() comparisons to nodes where the hash values are
equal. A good start might be hash($N) == string($N). Not very effective
where most of the information is held in attributes, but OK in most other
cases.

Michael Kay



Purchase Stylus Studio Online Today!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.