| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979 |
- //-----------------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace System.ServiceModel.Dispatcher
- {
- using System.Collections;
- using System.ServiceModel.Channels;
- using System.ServiceModel;
- using System.ServiceModel.Description;
- using System.Collections.Generic;
- using System.Runtime.Serialization;
- using System.Reflection;
- using System.Xml;
- using System.ServiceModel.Diagnostics;
- using System.Diagnostics;
- using System.Runtime;
- class PrimitiveOperationFormatter : IClientMessageFormatter, IDispatchMessageFormatter
- {
- OperationDescription operation;
- MessageDescription responseMessage;
- MessageDescription requestMessage;
- XmlDictionaryString action;
- XmlDictionaryString replyAction;
- ActionHeader actionHeaderNone;
- ActionHeader actionHeader10;
- ActionHeader actionHeaderAugust2004;
- ActionHeader replyActionHeaderNone;
- ActionHeader replyActionHeader10;
- ActionHeader replyActionHeaderAugust2004;
- XmlDictionaryString requestWrapperName;
- XmlDictionaryString requestWrapperNamespace;
- XmlDictionaryString responseWrapperName;
- XmlDictionaryString responseWrapperNamespace;
- PartInfo[] requestParts;
- PartInfo[] responseParts;
- PartInfo returnPart;
- XmlDictionaryString xsiNilLocalName;
- XmlDictionaryString xsiNilNamespace;
- public PrimitiveOperationFormatter(OperationDescription description, bool isRpc)
- {
- if (description == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("description");
- OperationFormatter.Validate(description, isRpc, false/*isEncoded*/);
- this.operation = description;
- #pragma warning suppress 56506 // [....], OperationDescription.Messages never be null
- this.requestMessage = description.Messages[0];
- if (description.Messages.Count == 2)
- this.responseMessage = description.Messages[1];
- int stringCount = 3 + requestMessage.Body.Parts.Count;
- if (responseMessage != null)
- stringCount += 2 + responseMessage.Body.Parts.Count;
- XmlDictionary dictionary = new XmlDictionary(stringCount * 2);
- xsiNilLocalName = dictionary.Add("nil");
- xsiNilNamespace = dictionary.Add(System.Xml.Schema.XmlSchema.InstanceNamespace);
- OperationFormatter.GetActions(description, dictionary, out this.action, out this.replyAction);
- if (requestMessage.Body.WrapperName != null)
- {
- requestWrapperName = AddToDictionary(dictionary, requestMessage.Body.WrapperName);
- requestWrapperNamespace = AddToDictionary(dictionary, requestMessage.Body.WrapperNamespace);
- }
- requestParts = AddToDictionary(dictionary, requestMessage.Body.Parts, isRpc);
- if (responseMessage != null)
- {
- if (responseMessage.Body.WrapperName != null)
- {
- responseWrapperName = AddToDictionary(dictionary, responseMessage.Body.WrapperName);
- responseWrapperNamespace = AddToDictionary(dictionary, responseMessage.Body.WrapperNamespace);
- }
- responseParts = AddToDictionary(dictionary, responseMessage.Body.Parts, isRpc);
- if (responseMessage.Body.ReturnValue != null && responseMessage.Body.ReturnValue.Type != typeof(void))
- {
- returnPart = AddToDictionary(dictionary, responseMessage.Body.ReturnValue, isRpc);
- }
- }
- }
- ActionHeader ActionHeaderNone
- {
- get
- {
- if (actionHeaderNone == null)
- {
- actionHeaderNone =
- ActionHeader.Create(this.action, AddressingVersion.None);
- }
- return actionHeaderNone;
- }
- }
- ActionHeader ActionHeader10
- {
- get
- {
- if (actionHeader10 == null)
- {
- actionHeader10 =
- ActionHeader.Create(this.action, AddressingVersion.WSAddressing10);
- }
- return actionHeader10;
- }
- }
- ActionHeader ActionHeaderAugust2004
- {
- get
- {
- if (actionHeaderAugust2004 == null)
- {
- actionHeaderAugust2004 =
- ActionHeader.Create(this.action, AddressingVersion.WSAddressingAugust2004);
- }
- return actionHeaderAugust2004;
- }
- }
- ActionHeader ReplyActionHeaderNone
- {
- get
- {
- if (replyActionHeaderNone == null)
- {
- replyActionHeaderNone =
- ActionHeader.Create(this.replyAction, AddressingVersion.None);
- }
- return replyActionHeaderNone;
- }
- }
- ActionHeader ReplyActionHeader10
- {
- get
- {
- if (replyActionHeader10 == null)
- {
- replyActionHeader10 =
- ActionHeader.Create(this.replyAction, AddressingVersion.WSAddressing10);
- }
- return replyActionHeader10;
- }
- }
- ActionHeader ReplyActionHeaderAugust2004
- {
- get
- {
- if (replyActionHeaderAugust2004 == null)
- {
- replyActionHeaderAugust2004 =
- ActionHeader.Create(this.replyAction, AddressingVersion.WSAddressingAugust2004);
- }
- return replyActionHeaderAugust2004;
- }
- }
- static XmlDictionaryString AddToDictionary(XmlDictionary dictionary, string s)
- {
- XmlDictionaryString dictionaryString;
- if (!dictionary.TryLookup(s, out dictionaryString))
- {
- dictionaryString = dictionary.Add(s);
- }
- return dictionaryString;
- }
- static PartInfo[] AddToDictionary(XmlDictionary dictionary, MessagePartDescriptionCollection parts, bool isRpc)
- {
- PartInfo[] partInfos = new PartInfo[parts.Count];
- for (int i = 0; i < parts.Count; i++)
- {
- partInfos[i] = AddToDictionary(dictionary, parts[i], isRpc);
- }
- return partInfos;
- }
- ActionHeader GetActionHeader(AddressingVersion addressing)
- {
- if (this.action == null)
- {
- return null;
- }
- if (addressing == AddressingVersion.WSAddressingAugust2004)
- {
- return ActionHeaderAugust2004;
- }
- else if (addressing == AddressingVersion.WSAddressing10)
- {
- return ActionHeader10;
- }
- else if (addressing == AddressingVersion.None)
- {
- return ActionHeaderNone;
- }
- else
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
- new InvalidOperationException(SR.GetString(SR.AddressingVersionNotSupported, addressing)));
- }
- }
- ActionHeader GetReplyActionHeader(AddressingVersion addressing)
- {
- if (this.replyAction == null)
- {
- return null;
- }
- if (addressing == AddressingVersion.WSAddressingAugust2004)
- {
- return ReplyActionHeaderAugust2004;
- }
- else if (addressing == AddressingVersion.WSAddressing10)
- {
- return ReplyActionHeader10;
- }
- else if (addressing == AddressingVersion.None)
- {
- return ReplyActionHeaderNone;
- }
- else
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
- new InvalidOperationException(SR.GetString(SR.AddressingVersionNotSupported, addressing)));
- }
- }
- static string GetArrayItemName(Type type)
- {
- switch (Type.GetTypeCode(type))
- {
- case TypeCode.Boolean:
- return "boolean";
- case TypeCode.DateTime:
- return "dateTime";
- case TypeCode.Decimal:
- return "decimal";
- case TypeCode.Int32:
- return "int";
- case TypeCode.Int64:
- return "long";
- case TypeCode.Single:
- return "float";
- case TypeCode.Double:
- return "double";
- default:
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxInvalidUseOfPrimitiveOperationFormatter)));
- }
- }
- static PartInfo AddToDictionary(XmlDictionary dictionary, MessagePartDescription part, bool isRpc)
- {
- Type type = part.Type;
- XmlDictionaryString itemName = null;
- XmlDictionaryString itemNamespace = null;
- if (type.IsArray && type != typeof(byte[]))
- {
- const string ns = "http://schemas.microsoft.com/2003/10/Serialization/Arrays";
- string name = GetArrayItemName(type.GetElementType());
- itemName = AddToDictionary(dictionary, name);
- itemNamespace = AddToDictionary(dictionary, ns);
- }
- return new PartInfo(part,
- AddToDictionary(dictionary, part.Name),
- AddToDictionary(dictionary, isRpc ? string.Empty : part.Namespace),
- itemName, itemNamespace);
- }
- public static bool IsContractSupported(OperationDescription description)
- {
- if (description == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("description");
- OperationDescription operation = description;
- #pragma warning suppress 56506 // [....], OperationDescription.Messages never be null
- MessageDescription requestMessage = description.Messages[0];
- MessageDescription responseMessage = null;
- if (description.Messages.Count == 2)
- responseMessage = description.Messages[1];
- if (requestMessage.Headers.Count > 0)
- return false;
- if (requestMessage.Properties.Count > 0)
- return false;
- if (requestMessage.IsTypedMessage)
- return false;
- if (responseMessage != null)
- {
- if (responseMessage.Headers.Count > 0)
- return false;
- if (responseMessage.Properties.Count > 0)
- return false;
- if (responseMessage.IsTypedMessage)
- return false;
- }
- if (!AreTypesSupported(requestMessage.Body.Parts))
- return false;
- if (responseMessage != null)
- {
- if (!AreTypesSupported(responseMessage.Body.Parts))
- return false;
- if (responseMessage.Body.ReturnValue != null && !IsTypeSupported(responseMessage.Body.ReturnValue))
- return false;
- }
- return true;
- }
- static bool AreTypesSupported(MessagePartDescriptionCollection bodyDescriptions)
- {
- for (int i = 0; i < bodyDescriptions.Count; i++)
- if (!IsTypeSupported(bodyDescriptions[i]))
- return false;
- return true;
- }
- static bool IsTypeSupported(MessagePartDescription bodyDescription)
- {
- Fx.Assert(bodyDescription != null, "");
- Type type = bodyDescription.Type;
- if (type == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxMessagePartDescriptionMissingType, bodyDescription.Name, bodyDescription.Namespace)));
- if (bodyDescription.Multiple)
- return false;
- if (type == typeof(void))
- return true;
- if (type.IsEnum)
- return false;
- switch (Type.GetTypeCode(type))
- {
- case TypeCode.Boolean:
- case TypeCode.DateTime:
- case TypeCode.Decimal:
- case TypeCode.Double:
- case TypeCode.Int32:
- case TypeCode.Int64:
- case TypeCode.Single:
- case TypeCode.String:
- return true;
- case TypeCode.Object:
- if (type.IsArray && type.GetArrayRank() == 1 && IsArrayTypeSupported(type.GetElementType()))
- return true;
- break;
- default:
- break;
- }
- return false;
- }
- static bool IsArrayTypeSupported(Type type)
- {
- if (type.IsEnum)
- return false;
- switch (Type.GetTypeCode(type))
- {
- case TypeCode.Byte:
- case TypeCode.Boolean:
- case TypeCode.DateTime:
- case TypeCode.Decimal:
- case TypeCode.Int32:
- case TypeCode.Int64:
- case TypeCode.Single:
- case TypeCode.Double:
- return true;
- default:
- return false;
- }
- }
- public Message SerializeRequest(MessageVersion messageVersion, object[] parameters)
- {
- if (messageVersion == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("messageVersion");
- if (parameters == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("parameters");
- return Message.CreateMessage(messageVersion, GetActionHeader(messageVersion.Addressing), new PrimitiveRequestBodyWriter(parameters, this));
- }
- public Message SerializeReply(MessageVersion messageVersion, object[] parameters, object result)
- {
- if (messageVersion == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("messageVersion");
- if (parameters == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("parameters");
- return Message.CreateMessage(messageVersion, GetReplyActionHeader(messageVersion.Addressing), new PrimitiveResponseBodyWriter(parameters, result, this));
- }
- public object DeserializeReply(Message message, object[] parameters)
- {
- if (message == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("message"));
- if (parameters == null)
- throw TraceUtility.ThrowHelperError(new ArgumentNullException("parameters"), message);
- try
- {
- if (message.IsEmpty)
- {
- if (responseWrapperName == null)
- return null;
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SR.GetString(SR.SFxInvalidMessageBodyEmptyMessage)));
- }
- XmlDictionaryReader bodyReader = message.GetReaderAtBodyContents();
- using (bodyReader)
- {
- object returnValue = DeserializeResponse(bodyReader, parameters);
- message.ReadFromBodyContentsToEnd(bodyReader);
- return returnValue;
- }
- }
- catch (XmlException xe)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
- SR.GetString(SR.SFxErrorDeserializingReplyBodyMore, operation.Name, xe.Message), xe));
- }
- catch (FormatException fe)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
- SR.GetString(SR.SFxErrorDeserializingReplyBodyMore, operation.Name, fe.Message), fe));
- }
- catch (SerializationException se)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
- SR.GetString(SR.SFxErrorDeserializingReplyBodyMore, operation.Name, se.Message), se));
- }
- }
- public void DeserializeRequest(Message message, object[] parameters)
- {
- if (message == null)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("message"));
- if (parameters == null)
- throw TraceUtility.ThrowHelperError(new ArgumentNullException("parameters"), message);
- try
- {
- if (message.IsEmpty)
- {
- if (requestWrapperName == null)
- return;
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SR.GetString(SR.SFxInvalidMessageBodyEmptyMessage)));
- }
- XmlDictionaryReader bodyReader = message.GetReaderAtBodyContents();
- using (bodyReader)
- {
- DeserializeRequest(bodyReader, parameters);
- message.ReadFromBodyContentsToEnd(bodyReader);
- }
- }
- catch (XmlException xe)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
- OperationFormatter.CreateDeserializationFailedFault(
- SR.GetString(SR.SFxErrorDeserializingRequestBodyMore, operation.Name, xe.Message),
- xe));
- }
- catch (FormatException fe)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
- OperationFormatter.CreateDeserializationFailedFault(
- SR.GetString(SR.SFxErrorDeserializingRequestBodyMore, operation.Name, fe.Message),
- fe));
- }
- catch (SerializationException se)
- {
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CommunicationException(
- SR.GetString(SR.SFxErrorDeserializingRequestBodyMore, operation.Name, se.Message),
- se));
- }
- }
- void DeserializeRequest(XmlDictionaryReader reader, object[] parameters)
- {
- if (requestWrapperName != null)
- {
- if (!reader.IsStartElement(requestWrapperName, requestWrapperNamespace))
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SR.GetString(SR.SFxInvalidMessageBody, requestWrapperName, requestWrapperNamespace, reader.NodeType, reader.Name, reader.NamespaceURI)));
- bool isEmptyElement = reader.IsEmptyElement;
- reader.Read();
- if (isEmptyElement)
- {
- return;
- }
- }
- DeserializeParameters(reader, requestParts, parameters);
- if (requestWrapperName != null)
- {
- reader.ReadEndElement();
- }
- }
- object DeserializeResponse(XmlDictionaryReader reader, object[] parameters)
- {
- if (responseWrapperName != null)
- {
- if (!reader.IsStartElement(responseWrapperName, responseWrapperNamespace))
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SR.GetString(SR.SFxInvalidMessageBody, responseWrapperName, responseWrapperNamespace, reader.NodeType, reader.Name, reader.NamespaceURI)));
- bool isEmptyElement = reader.IsEmptyElement;
- reader.Read();
- if (isEmptyElement)
- {
- return null;
- }
- }
- object returnValue = null;
- if (returnPart != null)
- {
- while (true)
- {
- if (IsPartElement(reader, returnPart))
- {
- returnValue = DeserializeParameter(reader, returnPart);
- break;
- }
- if (!reader.IsStartElement())
- break;
- if (IsPartElements(reader, responseParts))
- break;
- OperationFormatter.TraceAndSkipElement(reader);
- }
- }
- DeserializeParameters(reader, responseParts, parameters);
- if (responseWrapperName != null)
- {
- reader.ReadEndElement();
- }
- return returnValue;
- }
- void DeserializeParameters(XmlDictionaryReader reader, PartInfo[] parts, object[] parameters)
- {
- if (parts.Length != parameters.Length)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
- new ArgumentException(SR.GetString(SR.SFxParameterCountMismatch, "parts", parts.Length, "parameters", parameters.Length), "parameters"));
- int nextPartIndex = 0;
- while (reader.IsStartElement())
- {
- for (int i = nextPartIndex; i < parts.Length; i++)
- {
- PartInfo part = parts[i];
- if (IsPartElement(reader, part))
- {
- parameters[part.Description.Index] = DeserializeParameter(reader, parts[i]);
- nextPartIndex = i + 1;
- }
- else
- parameters[part.Description.Index] = null;
- }
- if (reader.IsStartElement())
- OperationFormatter.TraceAndSkipElement(reader);
- }
- }
- private bool IsPartElements(XmlDictionaryReader reader, PartInfo[] parts)
- {
- foreach (PartInfo part in parts)
- if (IsPartElement(reader, part))
- return true;
- return false;
- }
- bool IsPartElement(XmlDictionaryReader reader, PartInfo part)
- {
- return reader.IsStartElement(part.DictionaryName, part.DictionaryNamespace);
- }
- object DeserializeParameter(XmlDictionaryReader reader, PartInfo part)
- {
- if (reader.AttributeCount > 0 &&
- reader.MoveToAttribute(xsiNilLocalName.Value, xsiNilNamespace.Value) &&
- reader.ReadContentAsBoolean())
- {
- reader.Skip();
- return null;
- }
- return part.ReadValue(reader);
- }
- void SerializeParameter(XmlDictionaryWriter writer, PartInfo part, object graph)
- {
- writer.WriteStartElement(part.DictionaryName, part.DictionaryNamespace);
- if (graph == null)
- {
- writer.WriteStartAttribute(xsiNilLocalName, xsiNilNamespace);
- writer.WriteValue(true);
- writer.WriteEndAttribute();
- }
- else
- part.WriteValue(writer, graph);
- writer.WriteEndElement();
- }
- void SerializeParameters(XmlDictionaryWriter writer, PartInfo[] parts, object[] parameters)
- {
- if (parts.Length != parameters.Length)
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
- new ArgumentException(SR.GetString(SR.SFxParameterCountMismatch, "parts", parts.Length, "parameters", parameters.Length), "parameters"));
- for (int i = 0; i < parts.Length; i++)
- {
- PartInfo part = parts[i];
- SerializeParameter(writer, part, parameters[part.Description.Index]);
- }
- }
- void SerializeRequest(XmlDictionaryWriter writer, object[] parameters)
- {
- if (requestWrapperName != null)
- writer.WriteStartElement(requestWrapperName, requestWrapperNamespace);
- SerializeParameters(writer, requestParts, parameters);
- if (requestWrapperName != null)
- writer.WriteEndElement();
- }
- void SerializeResponse(XmlDictionaryWriter writer, object returnValue, object[] parameters)
- {
- if (responseWrapperName != null)
- writer.WriteStartElement(responseWrapperName, responseWrapperNamespace);
- if (returnPart != null)
- SerializeParameter(writer, returnPart, returnValue);
- SerializeParameters(writer, responseParts, parameters);
- if (responseWrapperName != null)
- writer.WriteEndElement();
- }
- class PartInfo
- {
- XmlDictionaryString dictionaryName;
- XmlDictionaryString dictionaryNamespace;
- XmlDictionaryString itemName;
- XmlDictionaryString itemNamespace;
- MessagePartDescription description;
- TypeCode typeCode;
- bool isArray;
- public PartInfo(MessagePartDescription description, XmlDictionaryString dictionaryName, XmlDictionaryString dictionaryNamespace, XmlDictionaryString itemName, XmlDictionaryString itemNamespace)
- {
- this.dictionaryName = dictionaryName;
- this.dictionaryNamespace = dictionaryNamespace;
- this.itemName = itemName;
- this.itemNamespace = itemNamespace;
- this.description = description;
- if (description.Type.IsArray)
- {
- this.isArray = true;
- this.typeCode = Type.GetTypeCode(description.Type.GetElementType());
- }
- else
- {
- this.isArray = false;
- this.typeCode = Type.GetTypeCode(description.Type);
- }
- }
- public MessagePartDescription Description
- {
- get { return description; }
- }
- public XmlDictionaryString DictionaryName
- {
- get { return dictionaryName; }
- }
- public XmlDictionaryString DictionaryNamespace
- {
- get { return dictionaryNamespace; }
- }
- public object ReadValue(XmlDictionaryReader reader)
- {
- object value;
- if (isArray)
- {
- switch (typeCode)
- {
- case TypeCode.Byte:
- value = reader.ReadElementContentAsBase64();
- break;
- case TypeCode.Boolean:
- if (!reader.IsEmptyElement)
- {
- reader.ReadStartElement();
- value = reader.ReadBooleanArray(itemName, itemNamespace);
- reader.ReadEndElement();
- }
- else
- {
- reader.Read();
- value = new bool[0];
- }
- break;
- case TypeCode.DateTime:
- if (!reader.IsEmptyElement)
- {
- reader.ReadStartElement();
- value = reader.ReadDateTimeArray(itemName, itemNamespace);
- reader.ReadEndElement();
- }
- else
- {
- reader.Read();
- value = new DateTime[0];
- }
- break;
- case TypeCode.Decimal:
- if (!reader.IsEmptyElement)
- {
- reader.ReadStartElement();
- value = reader.ReadDecimalArray(itemName, itemNamespace);
- reader.ReadEndElement();
- }
- else
- {
- reader.Read();
- value = new Decimal[0];
- }
- break;
- case TypeCode.Int32:
- if (!reader.IsEmptyElement)
- {
- reader.ReadStartElement();
- value = reader.ReadInt32Array(itemName, itemNamespace);
- reader.ReadEndElement();
- }
- else
- {
- reader.Read();
- value = new Int32[0];
- }
- break;
- case TypeCode.Int64:
- if (!reader.IsEmptyElement)
- {
- reader.ReadStartElement();
- value = reader.ReadInt64Array(itemName, itemNamespace);
- reader.ReadEndElement();
- }
- else
- {
- reader.Read();
- value = new Int64[0];
- }
- break;
- case TypeCode.Single:
- if (!reader.IsEmptyElement)
- {
- reader.ReadStartElement();
- value = reader.ReadSingleArray(itemName, itemNamespace);
- reader.ReadEndElement();
- }
- else
- {
- reader.Read();
- value = new Single[0];
- }
- break;
- case TypeCode.Double:
- if (!reader.IsEmptyElement)
- {
- reader.ReadStartElement();
- value = reader.ReadDoubleArray(itemName, itemNamespace);
- reader.ReadEndElement();
- }
- else
- {
- reader.Read();
- value = new Double[0];
- }
- break;
- default:
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxInvalidUseOfPrimitiveOperationFormatter)));
- }
- }
- else
- {
- switch (typeCode)
- {
- case TypeCode.Boolean:
- value = reader.ReadElementContentAsBoolean();
- break;
- case TypeCode.DateTime:
- value = reader.ReadElementContentAsDateTime();
- break;
- case TypeCode.Decimal:
- value = reader.ReadElementContentAsDecimal();
- break;
- case TypeCode.Double:
- value = reader.ReadElementContentAsDouble();
- break;
- case TypeCode.Int32:
- value = reader.ReadElementContentAsInt();
- break;
- case TypeCode.Int64:
- value = reader.ReadElementContentAsLong();
- break;
- case TypeCode.Single:
- value = reader.ReadElementContentAsFloat();
- break;
- case TypeCode.String:
- return reader.ReadElementContentAsString();
- default:
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxInvalidUseOfPrimitiveOperationFormatter)));
- }
- }
- return value;
- }
- public void WriteValue(XmlDictionaryWriter writer, object value)
- {
- if (isArray)
- {
- switch (typeCode)
- {
- case TypeCode.Byte:
- {
- byte[] arrayValue = (byte[])value;
- writer.WriteBase64(arrayValue, 0, arrayValue.Length);
- }
- break;
- case TypeCode.Boolean:
- {
- bool[] arrayValue = (bool[])value;
- writer.WriteArray(null, itemName, itemNamespace, arrayValue, 0, arrayValue.Length);
- }
- break;
- case TypeCode.DateTime:
- {
- DateTime[] arrayValue = (DateTime[])value;
- writer.WriteArray(null, itemName, itemNamespace, arrayValue, 0, arrayValue.Length);
- }
- break;
- case TypeCode.Decimal:
- {
- decimal[] arrayValue = (decimal[])value;
- writer.WriteArray(null, itemName, itemNamespace, arrayValue, 0, arrayValue.Length);
- }
- break;
- case TypeCode.Int32:
- {
- Int32[] arrayValue = (Int32[])value;
- writer.WriteArray(null, itemName, itemNamespace, arrayValue, 0, arrayValue.Length);
- }
- break;
- case TypeCode.Int64:
- {
- Int64[] arrayValue = (Int64[])value;
- writer.WriteArray(null, itemName, itemNamespace, arrayValue, 0, arrayValue.Length);
- }
- break;
- case TypeCode.Single:
- {
- float[] arrayValue = (float[])value;
- writer.WriteArray(null, itemName, itemNamespace, arrayValue, 0, arrayValue.Length);
- }
- break;
- case TypeCode.Double:
- {
- double[] arrayValue = (double[])value;
- writer.WriteArray(null, itemName, itemNamespace, arrayValue, 0, arrayValue.Length);
- }
- break;
- default:
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxInvalidUseOfPrimitiveOperationFormatter)));
- }
- }
- else
- {
- switch (typeCode)
- {
- case TypeCode.Boolean:
- writer.WriteValue((bool)value);
- break;
- case TypeCode.DateTime:
- writer.WriteValue((DateTime)value);
- break;
- case TypeCode.Decimal:
- writer.WriteValue((Decimal)value);
- break;
- case TypeCode.Double:
- writer.WriteValue((double)value);
- break;
- case TypeCode.Int32:
- writer.WriteValue((int)value);
- break;
- case TypeCode.Int64:
- writer.WriteValue((long)value);
- break;
- case TypeCode.Single:
- writer.WriteValue((float)value);
- break;
- case TypeCode.String:
- writer.WriteString((string)value);
- break;
- default:
- throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxInvalidUseOfPrimitiveOperationFormatter)));
- }
- }
- }
- }
- class PrimitiveRequestBodyWriter : BodyWriter
- {
- object[] parameters;
- PrimitiveOperationFormatter primitiveOperationFormatter;
- public PrimitiveRequestBodyWriter(object[] parameters, PrimitiveOperationFormatter primitiveOperationFormatter)
- : base(true)
- {
- this.parameters = parameters;
- this.primitiveOperationFormatter = primitiveOperationFormatter;
- }
- protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
- {
- primitiveOperationFormatter.SerializeRequest(writer, parameters);
- }
- }
- class PrimitiveResponseBodyWriter : BodyWriter
- {
- object[] parameters;
- object returnValue;
- PrimitiveOperationFormatter primitiveOperationFormatter;
- public PrimitiveResponseBodyWriter(object[] parameters, object returnValue,
- PrimitiveOperationFormatter primitiveOperationFormatter)
- : base(true)
- {
- this.parameters = parameters;
- this.returnValue = returnValue;
- this.primitiveOperationFormatter = primitiveOperationFormatter;
- }
- protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
- {
- primitiveOperationFormatter.SerializeResponse(writer, returnValue, parameters);
- }
- }
- }
- }
|