1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
//
// System.Runtime.Serialization.Formatter.cs
//
// 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;
namespace System.Runtime.Serialization
{
[CLSCompliant (false)]
[Serializable]
#if NET_2_0
[System.Runtime.InteropServices.ComVisibleAttribute (true)]
#endif
public abstract class Formatter : IFormatter
{
protected Formatter ()
{
}
protected ObjectIDGenerator m_idGenerator = new ObjectIDGenerator ();
protected Queue m_objectQueue = new Queue ();
public abstract SerializationBinder Binder {
get;
set;
}
public abstract StreamingContext Context {
get;
set;
}
public abstract ISurrogateSelector SurrogateSelector {
get;
set;
}
public abstract object Deserialize (Stream serializationStream);
protected virtual object GetNext (out long objID)
{
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;
}
protected virtual long Schedule (object obj)
{
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);
protected abstract void WriteArray (object obj, string name, Type memberType);
protected abstract void WriteBoolean (bool val, string name);
protected abstract void WriteByte (byte val, string name);
protected abstract void WriteChar (char val, string name);
protected abstract void WriteDateTime (DateTime val, string name);
protected abstract void WriteDecimal (Decimal val, string name);
protected abstract void WriteDouble (double val, string name);
protected abstract void WriteInt16 (short val, string name);
protected abstract void WriteInt32 (int val, string name);
protected abstract void WriteInt64 (long val, string name);
protected virtual void WriteMember (string memberName, object data)
{
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);
protected abstract void WriteSingle (float val, string name);
protected abstract void WriteTimeSpan (TimeSpan val, string name);
[CLSCompliant (false)]
protected abstract void WriteUInt16 (ushort val, string name);
[CLSCompliant (false)]
protected abstract void WriteUInt32 (uint val, string name);
[CLSCompliant (false)]
protected abstract void WriteUInt64 (ulong val, string name);
protected abstract void WriteValueType (object obj, string name, Type memberType);
}
}
|