- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[scala-bts] #3334: XML comparison between Node and NodeSeq broken
Wed, 2010-04-21, 19:36
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------+--------------------------------------------------------
{{{
Welcome to Scala version 2.8.0.RC1 (Java HotSpot(TM) Server VM, Java
1.6.0_16).
Type in expressions to have them evaluated.
Type :help for more information.
scala> val xml = bar
xml: scala.xml.Elem = bar
scala> val x2 = xml.map(i => i)
x2: scala.xml.NodeSeq = NodeSeq(bar)
scala> x2 == xml
res0: Boolean = false
scala> xml == x2
res1: Boolean = false
}}}
Old behavior:
{{{
scala> val xml = bar
xml: scala.xml.Elem = bar
scala> val x2 = xml.map(i => i)
x2: scala.xml.NodeSeq = bar
scala> x2 == xml
res0: Boolean = true
}}}
Wed, 2010-04-21, 22:47
#2
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Comment(by jeortiz):
If we can't change "equals", perhaps we can change "map".
What if x2 was an Elem instead of a NodeSeq (similar to how str.reverse
returns a String now)? That could solve this problem.
Thu, 2010-04-22, 00:07
#3
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Changes (by eengbrec):
* cc: erik.engbrecht@… (added)
Thu, 2010-04-22, 00:17
#4
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Comment(by eengbrec):
This is a little more illuminating:
{{{
scala> val x1 = bar
x1: scala.xml.Elem = bar
scala> val x2 = x1.map( i => i)
x2: scala.xml.NodeSeq = NodeSeq(bar)
scala> x2.getClass
res41: java.lang.Class[_] = class scala.xml.NodeSeq$$anon$1
scala> x1.getClass
res42: java.lang.Class[_] = class scala.xml.Elem
scala> x2(0)
res43: scala.xml.Node = bar
scala> x1 == x2(0)
res44: Boolean = true
scala> x2(0) == x1
res45: Boolean = true
scala>
}}}
So really it looks like the behavior of map has changed, not the behavior
of equals.
Thu, 2010-04-22, 00:47
#5
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Comment(by eengbrec):
For reference:
http://thread.gmane.org/gmane.comp.lang.scala.internals/2423/focus=2425
Thu, 2010-04-22, 04:37
#6
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Comment(by extempore):
Replying to [comment:4 eengbrec]:
> So really it looks like the behavior of map has changed, not the
behavior of equals.
OK, but to be clear, the behavior of equals has definitely changed. I
changed it. Since NodeSeq is a Seq and therefore part of the new
collections, the behavior of map has also changed.
Thu, 2010-04-22, 04:52
#7
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Comment(by extempore):
Replying to [comment:2 jeortiz]:
> What if x2 was an Elem instead of a NodeSeq (similar to how str.reverse
returns a String now)? That could solve this problem.
XMLLike? The mind reels! You know that Elem's grandparent is NodeSeq,
right? Everything is a sequence in XMLtown! So nothing can be Elem
"instead of" NodeSeq.
My effort at undoing the sequence damage was aborted, it was dug in too
deep.
Fri, 2010-04-23, 09:17
#8
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Changes (by ijuma):
* cc: mlists@… (added)
Sun, 2010-04-25, 07:27
#9
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: closed
Priority: normal | Component: XML support
Version: | Resolution: fixed
Keywords: |
-------------------+--------------------------------------------------------
Changes (by rytz):
* status: new => closed
* resolution: => fixed
Comment:
(In [21675]) close #3338, close #3334, close #3345. review by community.
Sun, 2010-04-25, 07:37
#10
Re: [scala-bts] #3334: XML comparison between Node and NodeSeq b
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: reopened
Priority: normal | Component: XML support
Version: | Resolution:
Keywords: |
-------------------+--------------------------------------------------------
Changes (by rytz):
* status: closed => reopened
* resolution: fixed =>
Comment:
mistakenly closed...
-------------------+--------------------------------------------------------
Reporter: dpp | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Version: | Keywords:
-------------------+--------------------------------------------------------
Changes (by extempore):
* cc: paulp@… (added)
Comment:
"Broken" is what it was before. You left the last line off your old
behavior transcript:
{{{
scala> xml == x2
res1: Boolean = false
}}}
As far as I'm concerned, if we're stuck with this idea of "universal"
equality and one == method which takes an Any, then the absolute minimum
requirement for the standard library is that it not be internally
inconsistent. That way people who want an inconsistent equals can
implement it on top of a consistent one; however there is no way to
implement a consistent one on top of an inconsistent one.
As mentioned elsewhere the old behavior is still available in xml_==.
{{{
scala> x2 xml_== xml
res0: Boolean = true
scala> xml xml_== x2
res1: Boolean = false
}}}
So to the extent I have anything to say about it, this is wontfix.