* OdbcParameterTest.cs: Fixed compilation on 1.0 profile.
[mono.git] / mcs / class / System.Data / System.Data.SqlTypes / SqlBinary.cs
index f989d00172462edb476a367c6efbda1a24e9286c..940436bfcfab3b1d63d5237509b71a0d1ce93e70 100644 (file)
@@ -4,20 +4,54 @@
 // Author:
 //   Rodrigo Moya (rodrigo@ximian.com)
 //   Tim Coleman (tim@timcoleman.com)
+//   Ville Palo (vi64pa@koti.soon.fi)
 //
 // (C) Ximian, Inc.
 // (C) Copyright 2002 Tim Coleman
 //
 
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// 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.Xml;
+using System.Xml.Schema;
 using System.Globalization;
+using System.Xml.Serialization;
 
 namespace System.Data.SqlTypes
 {
        /// <summary>
        /// Represents a variable-length stream of binary data to be stored in or retrieved from a database.
        /// </summary>
+#if NET_2_0
+       [SerializableAttribute]
+       [XmlSchemaProvider ("GetXsdType")]
+#endif
        public struct SqlBinary : INullable, IComparable
+#if NET_2_0
+                               , IXmlSerializable
+#endif
        {
 
                #region Fields
@@ -50,7 +84,7 @@ namespace System.Data.SqlTypes
                                if (this.IsNull)
                                        throw new SqlNullValueException ("The property contains Null.");
                                else if (index >= this.Length)
-                                       throw new SqlNullValueException ("The index parameter indicates a position beyond the length of the byte array.");
+                                       throw new IndexOutOfRangeException ("The index parameter indicates a position beyond the length of the byte array.");
                                else
                                        return value [index]; 
                        }
@@ -78,11 +112,31 @@ namespace System.Data.SqlTypes
                #endregion
 
                #region Methods
+#if NET_2_0
+               public static SqlBinary Add (SqlBinary x, SqlBinary y)
+               {
+                       return (x + y);
+               }
+#endif
 
-               [MonoTODO]
-               public int CompareTo (object value) 
+               public int CompareTo (object value)
                {
-                       throw new NotImplementedException ();
+                       if (value == null)
+                               return 1;
+                       if (!(value is SqlBinary))
+                               throw new ArgumentException (Locale.GetText ("Value is not a System.Data.SqlTypes.SqlBinary"));
+
+                       return CompareTo ((SqlBinary) value);
+               }
+#if NET_2_0
+               public
+#endif
+               int CompareTo (SqlBinary value) 
+               {
+                       if (value.IsNull)
+                               return 1;
+                       else
+                               return Compare (this, value);
                }
 
                public static SqlBinary Concat (SqlBinary x, SqlBinary y) 
@@ -94,6 +148,10 @@ namespace System.Data.SqlTypes
                {
                        if (!(value is SqlBinary))
                                return false;
+                       else if (this.IsNull)
+                               return ((SqlBinary)value).IsNull;
+                       else if (((SqlBinary)value).IsNull)
+                               return false;
                        else
                                return (bool) (this == (SqlBinary)value);
                }
@@ -103,10 +161,16 @@ namespace System.Data.SqlTypes
                        return (x == y);
                }
 
-               [MonoTODO]
                public override int GetHashCode () 
                {
-                       throw new NotImplementedException ();
+                       // FIXME: I'm not sure is this a right way
+                       int result = 10;
+                       for (int i = 0; i < value.Length; i++) {
+                               
+                               result = 91 * result + (int)value [i];
+                       }
+                       
+                       return result;
                }
 
                #endregion
@@ -140,77 +204,84 @@ namespace System.Data.SqlTypes
 
                public SqlGuid ToSqlGuid () 
                {
-                       return new SqlGuid (value);
+                       return (SqlGuid)this;
                }
 
-               [MonoTODO]
                public override string ToString () 
                {
-                       throw new NotImplementedException ();
+                       if (!notNull)
+                               return "Null";
+                       return "SqlBinary(" + value.Length + ")";
                }
 
                #endregion
 
                #region Operators
 
-               [MonoTODO]
                public static SqlBinary operator + (SqlBinary x, SqlBinary y) 
                {
-                       throw new NotImplementedException ();
+                       byte [] b = new byte [x.Value.Length + y.Value.Length];
+                       int j = 0;
+                       int i;
+
+                       for (i = 0; i < x.Value.Length; i++) 
+                               b [i] = x.Value [i];
+                       
+
+                       for (; i < (x.Value.Length + y.Value.Length); i++) {
+                               b [i] = y.Value [j];
+                               j++;
+                       }       
+                       
+                       return new SqlBinary (b);
                }
-
-               [MonoTODO]
+                       
                public static SqlBoolean operator == (SqlBinary x, SqlBinary y) 
                {
                        if (x.IsNull || y.IsNull) 
                                return SqlBoolean.Null;
                        else
-                               throw new NotImplementedException ();
+                               return new SqlBoolean (Compare (x, y) == 0);
                }
 
-               [MonoTODO]
                public static SqlBoolean operator > (SqlBinary x, SqlBinary y) 
                {
                        if (x.IsNull || y.IsNull) 
                                return SqlBoolean.Null;
-                       else
-                               throw new NotImplementedException ();
+
+                       return new SqlBoolean (Compare (x, y) > 0);
                }
 
-               [MonoTODO]
                public static SqlBoolean operator >= (SqlBinary x, SqlBinary y) 
                {
                        if (x.IsNull || y.IsNull) 
                                return SqlBoolean.Null;
-                       else
-                               throw new NotImplementedException ();
+
+                       return new SqlBoolean (Compare (x, y) >= 0);
                }
 
-               [MonoTODO]
                public static SqlBoolean operator != (SqlBinary x, SqlBinary y) 
                {
                        if (x.IsNull || y.IsNull) 
                                return SqlBoolean.Null;
                        else
-                               throw new NotImplementedException ();
+                               return new SqlBoolean (Compare (x, y) != 0);
                }
 
-               [MonoTODO]
                public static SqlBoolean operator < (SqlBinary x, SqlBinary y) 
                {
                        if (x.IsNull || y.IsNull) 
                                return SqlBoolean.Null;
-                       else
-                               throw new NotImplementedException ();
+
+                       return new SqlBoolean (Compare (x, y) < 0);
                }
 
-               [MonoTODO]
                public static SqlBoolean operator <= (SqlBinary x, SqlBinary y) 
                {
                        if (x.IsNull || y.IsNull) 
                                return SqlBoolean.Null;
-                       else
-                               throw new NotImplementedException ();
+
+                       return new SqlBoolean (Compare (x, y) <= 0);
                }
 
                public static explicit operator byte[] (SqlBinary x) 
@@ -218,10 +289,9 @@ namespace System.Data.SqlTypes
                        return x.Value;
                }
 
-               [MonoTODO]
                public static explicit operator SqlBinary (SqlGuid x) 
                {
-                       throw new NotImplementedException ();
+                       return new SqlBinary (x.ToByteArray ());
                }
 
                public static implicit operator SqlBinary (byte[] x) 
@@ -230,5 +300,80 @@ namespace System.Data.SqlTypes
                }
 
                #endregion
+
+               // Helper method to Compare methods and operators.
+               // Returns 0 if x == y
+               //         1 if x > y
+               //        -1 if x < y
+               private static int Compare(SqlBinary x, SqlBinary y)
+               {
+                       
+                       int LengthDiff = 0;
+
+                       // If they are different size test are bytes something else than 0
+                       if (x.Value.Length != y.Value.Length) {
+                               
+                               LengthDiff = x.Value.Length - y.Value.Length;
+
+                               // If more than zero, x is longer
+                               if (LengthDiff > 0) {
+                                       
+                                       for (int i = x.Value.Length - 1; i > x.Value.Length - LengthDiff; i--) {
+                                               // If byte is more than zero the x is bigger
+                                               if (x.Value [i] != (byte)0)
+                                                       return 1;
+                                       }
+                               } else {
+
+                                       for (int i = y.Value.Length - 1; i > y.Value.Length - LengthDiff; i--) {
+                                               // If byte is more than zero then y is bigger
+                                               if (y.Value [i] != (byte)0)
+                                                       return -1;
+                                       }
+                               }                               
+                       }
+
+                       // choose shorter
+                       int lenght = (LengthDiff > 0) ? y.Value.Length : x.Value.Length;
+
+                       for (int i = lenght - 1 ; i > 0; i--) {
+                               
+                               byte X = x.Value [i];
+                               byte Y = y.Value [i];
+                               
+                               if (X > Y) 
+                                       return 1;
+                               else if (X < Y)
+                                       return -1;
+                       }
+
+                       // If we are here, x and y were same size
+                       return 0;
+               }
+#if NET_2_0
+               public static XmlQualifiedName GetXsdType (XmlSchemaSet schemaSet)
+               {
+                       XmlQualifiedName qualifiedName = new XmlQualifiedName ("base64Binary", "http://www.w3.org/2001/XMLSchema");
+                       return qualifiedName;
+               }
+               
+               [MonoTODO]
+               XmlSchema IXmlSerializable.GetSchema ()
+               {
+                       throw new NotImplementedException ();
+               }
+               
+               [MonoTODO]
+               void IXmlSerializable.ReadXml (XmlReader reader)
+               {
+                       throw new NotImplementedException ();
+               }
+               
+               [MonoTODO]
+               void IXmlSerializable.WriteXml (XmlWriter writer) 
+               {
+                       throw new NotImplementedException ();
+               }
+#endif
        }
 }