bb09fa183d4563b60d02b9c48f5193250d2ff7fc
[mono.git] / mcs / class / corlib / System.Collections.Generic / EqualityComparer.cs
1 //
2 // Comparer
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@ximian.com)
6 //
7 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Runtime.InteropServices;
31
32 namespace System.Collections.Generic {
33         [Serializable]
34         public abstract class EqualityComparer <T> : IEqualityComparer, IEqualityComparer <T> {
35                 
36                 static EqualityComparer ()
37                 {
38                         if (typeof (T) == typeof (string)){
39                                 _default = (EqualityComparer<T>) (object) new InternalStringComparer ();
40                                 return;
41                         }
42                         if (typeof (IEquatable <T>).IsAssignableFrom (typeof (T)))
43                                 _default = (EqualityComparer <T>) Activator.CreateInstance (typeof (GenericEqualityComparer <>).MakeGenericType (typeof (T)));
44                         else
45                                 _default = new DefaultComparer ();
46                 }
47                 
48                 
49                 public abstract int GetHashCode (T obj);
50                 public abstract bool Equals (T x, T y);
51         
52                 static readonly EqualityComparer <T> _default;
53                 
54                 public static EqualityComparer <T> Default {
55                         get {
56                                 return _default;
57                         }
58                 }
59
60                 int IEqualityComparer.GetHashCode (object obj)
61                 {
62                         return GetHashCode ((T)obj);
63                 }
64
65                 bool IEqualityComparer.Equals (object x, object y)
66                 {
67                         if (!(x is T))
68                                 throw new ArgumentException ("Argument is not compatible", "x");
69                         if (!(y is T))
70                                 throw new ArgumentException ("Argument is not compatible", "y");
71                         return Equals ((T)x, (T)y);
72                 }
73                 
74                 [Serializable]
75                 sealed class DefaultComparer : EqualityComparer<T> {
76         
77                         public override int GetHashCode (T obj)
78                         {
79                                 if (obj == null)
80                                         return 0;
81                                 return obj.GetHashCode ();
82                         }
83         
84                         public override bool Equals (T x, T y)
85                         {
86                                 if (x == null)
87                                         return y == null;
88
89                                 return x.Equals (y);
90                         }
91                 }
92         }
93         
94         [Serializable]
95         sealed class InternalStringComparer : EqualityComparer<string> {
96         
97                 public override int GetHashCode (string obj)
98                 {
99                         if (obj == null)
100                                 return 0;
101                         return obj.GetHashCode ();
102                 }
103         
104                 public override bool Equals (string x, string y)
105                 {
106                         if (x == null)
107                                 return y == null;
108
109                         if ((object) x == (object) y)
110                                 return true;
111                                 
112                         return x.Equals (y);
113                 }
114         }
115
116         [Serializable]
117         sealed class GenericEqualityComparer <T> : EqualityComparer <T> where T : IEquatable <T> {
118
119                 public override int GetHashCode (T obj)
120                 {
121                         if (obj == null)
122                                 return 0;
123                         return obj.GetHashCode ();
124                 }
125
126                 public override bool Equals (T x, T y)
127                 {
128                         if (x == null)
129                                 return y == null;
130                         
131                         return x.Equals (y);
132                 }
133         }
134 }