| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- //
- // System.Xml.XPath.XPathComparer
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // (C) 2003 Atsushi Enomoto
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections;
- using System.Xml;
- using System.Xml.XPath;
- using System.Xml.Xsl;
- namespace System.Xml.XPath
- {
- internal class XPathIteratorComparer : IComparer
- {
- public static XPathIteratorComparer Instance = new XPathIteratorComparer ();
- private XPathIteratorComparer ()
- {
- }
- public int Compare (object o1, object o2)
- {
- BaseIterator nav1 = o1 as BaseIterator;
- BaseIterator nav2 = o2 as BaseIterator;
- if (nav1 == null)
- return -1;
- if (nav2 == null)
- return 1;
- switch (nav1.Current.ComparePosition (nav2.Current)) {
- case XmlNodeOrder.Same:
- return 0;
- case XmlNodeOrder.After:
- return -1;
- default:
- return 1;
- }
- }
- }
- #if NET_2_0
- internal class XPathNavigatorComparer : IComparer, IEqualityComparer
- #else
- internal class XPathNavigatorComparer : IComparer
- #endif
- {
- public static XPathNavigatorComparer Instance = new XPathNavigatorComparer ();
- private XPathNavigatorComparer ()
- {
- }
- public int Compare (object o1, object o2)
- {
- XPathNavigator nav1 = o1 as XPathNavigator;
- XPathNavigator nav2 = o2 as XPathNavigator;
- if (nav1 == null)
- return -1;
- if (nav2 == null)
- return 1;
- switch (nav1.ComparePosition (nav2)) {
- case XmlNodeOrder.Same:
- return 0;
- case XmlNodeOrder.After:
- return 1;
- default:
- return -1;
- }
- }
- #if NET_2_0
- public bool Equals (object o1, object o2)
- {
- XPathNavigator nav1 = o1 as XPathNavigator;
- XPathNavigator nav2 = o2 as XPathNavigator;
- if (nav1 != null && nav2 != null)
- return nav1.IsSamePosition (nav2);
- else
- return false;
- }
- public int GetHashCode (object obj)
- {
- return obj.GetHashCode ();
- }
- #endif
- }
- }
|