2007-05-08 Igor Zelmanovich <igorz@mainsoft.com>
[mono.git] / mcs / class / System / System.ComponentModel / Win32Exception.cs
old mode 100755 (executable)
new mode 100644 (file)
index 2b9eaf2..7a5523c
@@ -1,12 +1,34 @@
 //
-// System.ComponentModel.Win32Exceptioncs
+// System.ComponentModel.Win32Exception.cs
 //
 // Author:
 //   Dick Porter (dick@ximian.com)
 //
 // (C) 2002 Ximian, Inc.  http://www.ximian.com
+// Copyright (C) 2005 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.Security;
+using System.Security.Permissions;
 using System.Runtime.InteropServices;
 using System.Runtime.Serialization;
 using System.Collections;
@@ -14,30 +36,52 @@ using System.Globalization;
 
 namespace System.ComponentModel
 {
-       [Serializable]
+       [Serializable, SuppressUnmanagedCodeSecurity]
        public class Win32Exception : ExternalException
        {
                private int native_error_code;
-               
+
+//             [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
                public Win32Exception ()
-                       : base (W32ErrorMessage(Marshal.GetLastWin32Error()),
-                               Marshal.GetLastWin32Error()) {
-                       native_error_code=Marshal.GetLastWin32Error();
+                       : base (W32ErrorMessage (Marshal.GetLastWin32Error ()),
+                               Marshal.GetLastWin32Error ()) 
+               {
+                       native_error_code = Marshal.GetLastWin32Error ();
                }
 
-               public Win32Exception(int error)
-                       : base (W32ErrorMessage(error), error) {
-                       native_error_code=error;
+//             [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (int error)
+                       : base (W32ErrorMessage (error), error) 
+               {
+                       native_error_code = error;
                }
 
-               public Win32Exception(int error, string message) 
-                       : base (message, error) {
-                       native_error_code=error;
+//             [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (int error, string message) 
+                       : base (message, error)
+               {
+                       native_error_code = error;
+               }
+#if NET_2_0
+               [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (string message)
+                       : base (message)
+               {
+                       native_error_code = Marshal.GetLastWin32Error ();
                }
 
+               [SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]          
+               public Win32Exception (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+                       native_error_code = Marshal.GetLastWin32Error ();
+               }
+#endif
                protected Win32Exception(SerializationInfo info,
                                         StreamingContext context)
                        : base (info, context) {
+
+                       native_error_code = info.GetInt32 ("NativeErrorCode");
                }
 
                public int NativeErrorCode {
@@ -46,83 +90,133 @@ namespace System.ComponentModel
                        }
                }
 
-               [MonoTODO]
-               public override void GetObjectData(SerializationInfo info,
-                                                  StreamingContext context) {
-                       if(info==null) {
-                               throw new ArgumentNullException();
-                       }
+               [SecurityPermission (SecurityAction.Demand, SerializationFormatter = true)]
+               public override void GetObjectData(SerializationInfo info, StreamingContext context)
+               {
+                       if (info == null)
+                               throw new ArgumentNullException ("info");
 
-                       throw new NotImplementedException();
+                       info.AddValue ("NativeErrorCode", native_error_code);
+                       base.GetObjectData (info, context);
                }
 
-               private static Hashtable w32_errors = new Hashtable();
-
-               /* Initialise the list of error strings */
-               static Win32Exception() {
-                       /* No need to list everything, just the ones
-                        * the runtime can throw. A list of the errors
-                        * can be found in class System.IO.MonoIOError.
-                        */
-                       w32_errors.Add(10004,
-                                      Locale.GetText("interrupted"));
-                       w32_errors.Add(10013,
-                                      Locale.GetText("Access denied"));
-                       w32_errors.Add(10022,
-                                      Locale.GetText("Invalid arguments"));
-                       w32_errors.Add(10035,
-                                      Locale.GetText("Operation on non-blocking socket would block"));
-                       w32_errors.Add(10036,
-                                      Locale.GetText("Operation in progress"));
-                       w32_errors.Add(10038,
-                                      Locale.GetText("The descriptor is not a socket"));
-                       w32_errors.Add(10043,
-                                      Locale.GetText("proto no supported"));
-                       w32_errors.Add(10044,
-                                      Locale.GetText("socket not supproted"));
-                       w32_errors.Add(10045,
-                                      Locale.GetText("Operation not supported"));
-                       w32_errors.Add(10047,
-                                      Locale.GetText("AF not supported"));
-                       w32_errors.Add(10048,
-                                      Locale.GetText("Address already in use"));
-                       w32_errors.Add(10050,
-                                      Locale.GetText("Network subsystem is down"));
-                       w32_errors.Add(10051,
-                                      Locale.GetText("Network is unreachable"));
-                       w32_errors.Add(10055,
-                                      Locale.GetText("Not enough buffer space is available"));
-                       w32_errors.Add(10056,
-                                      Locale.GetText("Socket is already connected"));
-                       w32_errors.Add(10057,
-                                      Locale.GetText("The socket is not connected"));
-                       w32_errors.Add(10058,
-                                      Locale.GetText("The socket has been shut down"));
-                       w32_errors.Add(10060,
-                                      Locale.GetText("Connection timed out"));
-                       w32_errors.Add(10061,
-                                      Locale.GetText("Connection refused"));
-                       w32_errors.Add(10065,
-                                      Locale.GetText("No route to host"));
-                       w32_errors.Add(10093,
-                                      Locale.GetText("Winsock not initialized"));
-                       w32_errors.Add(10107,
-                                      Locale.GetText("System call failed"));
+               static string W32ErrorMessage (int error_code)
+               {
+                       string message;
 
-                       w32_errors.Add(11001,
-                                      Locale.GetText("No such host is known"));
-                       w32_errors.Add(11002,
-                                      Locale.GetText("A temporary error occurred on an  authoritative  name  server. Try  again later."));
-               }
-
-               private static string W32ErrorMessage(int error_code) {
-                       string message=(string)w32_errors[error_code];
-                       
-                       if(message==null) {
-                               return(Locale.GetText("Some sort of w32 error occurred"));
-                       } else {
-                               return(message);
+                       switch (error_code) {
+                       case 2:
+                               message = Locale.GetText ("Cannot find the specified file");
+                               break;
+                       case 3:
+                               message = Locale.GetText ("Cannot find the specified file");
+                               break;
+                       case 50:
+                               message = Locale.GetText ("Operation not supported");
+                               break;
+                       case 267:
+                               message = Locale.GetText ("Is a directory");
+                               break;
+                       case 10004:
+                               message = Locale.GetText ("interrupted");
+                               break;
+                       case 10013:
+                               message = Locale.GetText ("Access denied");
+                               break;
+                       case 10022:
+                               message = Locale.GetText ("Invalid arguments");
+                               break;
+                       case 10024:
+                               message = Locale.GetText ("Too many open files");
+                               break;
+                       case 10035:
+                               message = Locale.GetText ("Operation on non-blocking socket would block");
+                               break;
+                       case 10036:
+                               message = Locale.GetText ("Operation in progress");
+                               break;
+                       case 10038:
+                               message = Locale.GetText ("The descriptor is not a socket");
+                               break;
+                       case 10040:
+                               message = Locale.GetText ("Message too long");
+                               break;
+                       case 10042:
+                               message = Locale.GetText ("Protocol option not supported");
+                               break;
+                       case 10043:
+                               message = Locale.GetText ("Protocol not supported");
+                               break;
+                       case 10044:
+                               message = Locale.GetText ("Socket not supported");
+                               break;
+                       case 10045:
+                               message = Locale.GetText ("Operation not supported");
+                               break;
+                       case 10047:
+                               message = Locale.GetText ("An address incompatible with the requested protocol was used");
+                               break;
+                       case 10048:
+                               message = Locale.GetText ("Address already in use");
+                               break;
+                       case 10049:
+                               message = Locale.GetText ("The requested address is not valid in this context");
+                               break;
+                       case 10050:
+                               message = Locale.GetText ("Network subsystem is down");
+                               break;
+                       case 10051:
+                               message = Locale.GetText ("Network is unreachable");
+                               break;
+                       case 10052:
+                               message = Locale.GetText ("Connection broken, keep-alive detected a problem");
+                               break;
+                       case 10053:
+                               message = Locale.GetText ("An established connection was aborted in your host machine.");
+                               break;
+                       case 10054:
+                               message = Locale.GetText ("Connection reset by peer");
+                               break;
+                       case 10055:
+                               message = Locale.GetText ("Not enough buffer space is available");
+                               break;
+                       case 10056:
+                               message = Locale.GetText ("Socket is already connected");
+                               break;
+                       case 10057:
+                               message = Locale.GetText ("The socket is not connected");
+                               break;
+                       case 10058:
+                               message = Locale.GetText ("The socket has been shut down");
+                               break;
+                       case 10060:
+                               message = Locale.GetText ("Connection timed out");
+                               break;
+                       case 10061:
+                               message = Locale.GetText ("Connection refused");
+                               break;
+                       case 10065:
+                               message = Locale.GetText ("No route to host");
+                               break;
+                       case 10093:
+                               message = Locale.GetText ("Winsock not initialized");
+                               break;
+                       case 10107:
+                               message = Locale.GetText ("System call failed");
+                               break;
+                       case 11001:
+                               message = Locale.GetText ("No such host is known");
+                               break;
+                       case 11002:
+                               message = Locale.GetText ("A temporary error occurred on an " +
+                                                         "authoritative name server. Try  again later.");
+                               break;
+                       default:
+                               message = Locale.GetText ("Some sort of w32 error occurred: ") + error_code;
+                               break;
                        }
+
+                       return message;
                }
        }
 }