2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / corlib / System.Runtime.Serialization / Formatter.cs
index 5faf5773be6238bea8a8ac14a19d33151a57d6e1..7dcae1f3b0932bd83b93ca84b64cc0818b1f0236 100755 (executable)
@@ -1,11 +1,36 @@
 //
 // System.Runtime.Serialization.Formatter.cs
 //
-// Duncan Mak  (duncan@ximian.com)
+// Authors:
+//   Duncan Mak  (duncan@ximian.com)
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
 //
 // (C) Ximian, Inc.
 //
 
+//
+// 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.Collections;
 using System.IO;
@@ -40,16 +65,33 @@ public abstract class Formatter : IFormatter
 
        public abstract object Deserialize (Stream serializationStream);
 
-       [MonoTODO]
        protected virtual object GetNext (out long objID)
        {
-               throw new NotImplementedException ();
+               if (m_objectQueue.Count == 0)
+               {
+                       // set the out field to 0
+                       objID = 0L;
+                       return null;
+               }
+
+               Object o = m_objectQueue.Dequeue ();
+               bool FirstTime;
+               objID = m_idGenerator.HasId (o, out FirstTime);
+
+               return o;
        }
 
-       [MonoTODO]
        protected virtual long Schedule (object obj)
        {
-               throw new NotImplementedException ();
+               if (obj == null)
+                       return 0L;
+
+               bool FirstTime;
+               long ID = m_idGenerator.GetId (obj, out FirstTime);
+               if (FirstTime)
+                       m_objectQueue.Enqueue (obj);
+
+               return ID;
        }
 
        public abstract void Serialize (Stream serializationStream, object graph);
@@ -74,15 +116,54 @@ public abstract class Formatter : IFormatter
 
        protected abstract void WriteInt64 (long val, string name);
 
-       [MonoTODO]
        protected virtual void WriteMember (string memberName, object data)
        {
-               throw new NotImplementedException ();
+               if (data == null)
+                       WriteObjectRef (data, memberName, typeof(Object));
+
+               Type dataType = data.GetType ();
+               if (dataType.IsArray)
+                       WriteArray (data, memberName, dataType);
+               else if (dataType == typeof(bool))
+                       WriteBoolean ((bool)data, memberName);
+               else if (dataType == typeof(byte))
+                       WriteByte ((byte)data, memberName);
+               else if (dataType == typeof(char))
+                       WriteChar ((char)data, memberName);
+               else if (dataType == typeof(DateTime))
+                       WriteDateTime ((DateTime)data, memberName);
+               else if (dataType == typeof(decimal))
+                       WriteDecimal ((decimal)data, memberName);
+               else if (dataType == typeof(double))
+                       WriteDouble ((double)data, memberName);
+               else if (dataType == typeof(Int16))
+                       WriteInt16 ((Int16)data, memberName);
+               else if (dataType == typeof(Int32))
+                       WriteInt32 ((Int32)data, memberName);
+               else if (dataType == typeof(Int64))
+                       WriteInt64 ((Int64)data, memberName);
+               else if (dataType == typeof(sbyte))
+                       WriteSByte ((sbyte)data, memberName);
+               else if (dataType == typeof(float))
+                       WriteSingle ((float)data, memberName);
+               else if (dataType == typeof(TimeSpan))
+                       WriteTimeSpan ((TimeSpan)data, memberName);
+               else if (dataType == typeof(UInt16))
+                       WriteUInt16 ((UInt16)data, memberName);
+               else if (dataType == typeof(UInt32))
+                       WriteUInt32 ((UInt32)data, memberName);
+               else if (dataType == typeof(UInt64))
+                       WriteUInt64 ((UInt64)data, memberName);
+               else if (dataType.IsValueType)
+                       WriteValueType (data, memberName, dataType);
+
+               WriteObjectRef (data, memberName, dataType);
        }
 
        protected abstract void WriteObjectRef (object obj, string name, Type memberType);
 
 
+        [CLSCompliant (false)]
        protected abstract void WriteSByte (sbyte val, string name);
 
 
@@ -99,7 +180,6 @@ public abstract class Formatter : IFormatter
        [CLSCompliant (false)]
        protected abstract void WriteUInt64 (ulong val, string name);
 
-       [CLSCompliant (false)]
        protected abstract void WriteValueType (object obj, string name, Type memberType);      
 }
 }