2004-12-08 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Runtime.Serialization.Formatters.Binary / BinaryCommon.cs
index 0812f956174c33937a1c565607019416f1b12c4c..19be6da75e22265afb67e33de199ef4d85f55a49 100644 (file)
@@ -4,6 +4,29 @@
 //   Lluis Sanchez Gual (lluis@ideary.com)
 //
 // (C) 2003 Lluis Sanchez Gual
+
+//
+// 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.
+//
 \r
 using System;\r
 \r
@@ -16,6 +39,7 @@ namespace System.Runtime.Serialization.Formatters.Binary
 \r
                static Type[] _typeCodesToType;\r
                static byte[] _typeCodeMap;\r
+               public static bool UseReflectionSerialization = false;\r
 \r
                static BinaryCommon()\r
                {\r
@@ -57,6 +81,12 @@ namespace System.Runtime.Serialization.Formatters.Binary
 \r
                        // TimeStamp does not have a TypeCode, so it is managed as a special\r
                        // case in GetTypeCode()\r
+                       \r
+                       // This environment variable is only for test and benchmarking pourposes.\r
+                       // By default, mono will always use IL generated class serializers.\r
+                       string s = Environment.GetEnvironmentVariable("MONO_REFLECTION_SERIALIZER");\r
+                       if (s == null) s = "no";\r
+                       UseReflectionSerialization = (s != "no");\r
                }\r
 \r
                public static bool IsPrimitive (Type type)\r
@@ -77,6 +107,17 @@ namespace System.Runtime.Serialization.Formatters.Binary
                {\r
                        return _typeCodesToType [code];\r
                }\r
+               \r
+               public static void CheckSerializable (Type type, ISurrogateSelector selector, StreamingContext context)\r
+               {\r
+                       if (!type.IsSerializable && !type.IsInterface) \r
+                       {\r
+                               if (selector != null && selector.GetSurrogate (type, context, out selector) != null)\r
+                                       return;\r
+\r
+                               throw new SerializationException ("Type " + type + " is not marked as Serializable.");\r
+                       }\r
+               }\r
        }\r
 \r
        internal enum BinaryElement : byte\r