2007-11-30 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / corlib / Mono.Globalization.Unicode / SortKey.cs
1 //
2 // Sortkey.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 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 //
30 // This file works with our managed collation implementation.
31 //
32
33 using System;
34 using System.IO;
35 using System.Globalization;
36
37 namespace System.Globalization
38 {
39         [Serializable]
40         public class SortKey
41         {
42                 #region Static members
43                 public static int Compare (SortKey sk1, SortKey sk2)
44                 {
45                         if (Object.ReferenceEquals (sk1, sk2)
46                                 || Object.ReferenceEquals (sk1.OriginalString,
47                                 sk2.OriginalString))
48                                 return 0;
49
50                         byte [] d1 = sk1.KeyData;
51                         byte [] d2 = sk2.KeyData;
52
53                         int len = d1.Length > d2.Length ? d2.Length : d1.Length;
54                         for (int i = 0; i < len; i++)
55                                 if (d1 [i] != d2 [i])
56                                         return d1 [i] < d2 [i] ? -1 : 1;
57                         return d1.Length == d2.Length ? 0 : d1.Length < d2.Length ? -1 : 1;
58                 }
59                 #endregion
60
61                 readonly string source;
62                 readonly CompareOptions options;
63                 readonly byte [] key;
64                 readonly int lcid;
65
66                 // for legacy unmanaged one
67                 internal SortKey (int lcid, string source, CompareOptions opt)
68                 {
69                         this.lcid = lcid;
70                         this.source = source;
71                         this.options = opt;
72                 }
73
74                 internal SortKey (int lcid, string source, byte [] buffer, CompareOptions opt,
75                         int lv1Length, int lv2Length, int lv3Length,
76                         int kanaSmallLength, int markTypeLength,
77                         int katakanaLength, int kanaWidthLength,
78                         int identLength)
79                 {
80                         this.lcid = lcid;
81                         this.source = source;
82                         this.key = buffer;
83                         this.options = opt;
84                 }
85
86                 public virtual string OriginalString {
87                         get { return source; }
88                 }
89
90                 public virtual byte [] KeyData {
91                         get { return key; }
92                 }
93
94                 // copy from original SortKey.cs
95                 public override bool Equals (object value)
96                 {
97                         SortKey other = (value as SortKey);
98                         if(other!=null) {
99                                 if((this.lcid==other.lcid) &&
100                                    (this.options==other.options) &&
101                                    (Compare (this, other)==0)) {
102                                         return(true);
103                                 }
104                         }
105
106                         return(false);
107                 }
108
109                 public override int GetHashCode ()
110                 {
111                         if (key.Length == 0)
112                                 return 0; // should not happen though.
113                         int val = key [0];
114                         for (int i = 1; i < key.Length; i++)
115                                 val ^= (int) key [i] << (i & 3);
116                         return (int) val;
117                 }
118
119                 // copy from original SortKey.cs
120                 public override string ToString()
121                 {
122                         return("SortKey - "+lcid+", "+options+", "+source);
123                 }
124         }
125 }