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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Dispatcher
{
using System;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Description;
using System.Collections.Generic;
using System.Xml;
using System.Runtime.Serialization;
using DiagnosticUtility = System.ServiceModel.DiagnosticUtility;
using System.ServiceModel.Web;
abstract class SingleBodyParameterMessageFormatter : IDispatchMessageFormatter, IClientMessageFormatter
{
string contractName;
string contractNs;
bool isRequestFormatter;
string operationName;
string serializerType;
protected SingleBodyParameterMessageFormatter(OperationDescription operation, bool isRequestFormatter, string serializerType)
{
if (operation == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("operation");
}
this.contractName = operation.DeclaringContract.Name;
this.contractNs = operation.DeclaringContract.Namespace;
this.operationName = operation.Name;
this.isRequestFormatter = isRequestFormatter;
this.serializerType = serializerType;
}
protected string ContractName
{
get { return this.contractName; }
}
protected string ContractNs
{
get { return this.contractNs; }
}
protected string OperationName
{
get { return this.operationName; }
}
public static IClientMessageFormatter CreateXmlAndJsonClientFormatter(OperationDescription operation, Type type, bool isRequestFormatter, UnwrappedTypesXmlSerializerManager xmlSerializerManager)
{
IClientMessageFormatter xmlFormatter = CreateClientFormatter(operation, type, isRequestFormatter, false, xmlSerializerManager);
if (!WebHttpBehavior.SupportsJsonFormat(operation))
{
return xmlFormatter;
}
IClientMessageFormatter jsonFormatter = CreateClientFormatter(operation, type, isRequestFormatter, true, xmlSerializerManager);
Dictionary<WebContentFormat, IClientMessageFormatter> map = new Dictionary<WebContentFormat, IClientMessageFormatter>();
map.Add(WebContentFormat.Xml, xmlFormatter);
map.Add(WebContentFormat.Json, jsonFormatter);
return new DemultiplexingClientMessageFormatter(map, xmlFormatter);
}
public static IDispatchMessageFormatter CreateXmlAndJsonDispatchFormatter(OperationDescription operation, Type type, bool isRequestFormatter, UnwrappedTypesXmlSerializerManager xmlSerializerManager, string callbackParameterName)
{
IDispatchMessageFormatter xmlFormatter = CreateDispatchFormatter(operation, type, isRequestFormatter, false, xmlSerializerManager, null);
if (!WebHttpBehavior.SupportsJsonFormat(operation))
{
return xmlFormatter;
}
IDispatchMessageFormatter jsonFormatter = CreateDispatchFormatter(operation, type, isRequestFormatter, true, xmlSerializerManager, callbackParameterName);
Dictionary<WebContentFormat, IDispatchMessageFormatter> map = new Dictionary<WebContentFormat, IDispatchMessageFormatter>();
map.Add(WebContentFormat.Xml, xmlFormatter);
map.Add(WebContentFormat.Json, jsonFormatter);
return new DemultiplexingDispatchMessageFormatter(map, xmlFormatter);
}
public object DeserializeReply(Message message, object[] parameters)
{
if (isRequestFormatter)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.FormatterCannotBeUsedForReplyMessages)));
}
return ReadObject(message);
}
public void DeserializeRequest(Message message, object[] parameters)
{
if (!isRequestFormatter)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.FormatterCannotBeUsedForRequestMessages)));
}
parameters[0] = ReadObject(message);
}
public Message SerializeReply(MessageVersion messageVersion, object[] parameters, object result)
{
if (isRequestFormatter)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.FormatterCannotBeUsedForReplyMessages)));
}
Message message = Message.CreateMessage(messageVersion, (string)null, CreateBodyWriter(result));
if (result == null)
{
SuppressReplyEntityBody(message);
}
AttachMessageProperties(message, false);
return message;
}
public Message SerializeRequest(MessageVersion messageVersion, object[] parameters)
{
if (!isRequestFormatter)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.FormatterCannotBeUsedForRequestMessages)));
}
Message message = Message.CreateMessage(messageVersion, (string)null, CreateBodyWriter(parameters[0]));
if (parameters[0] == null)
{
SuppressRequestEntityBody(message);
}
AttachMessageProperties(message, true);
return message;
}
internal static IClientMessageFormatter CreateClientFormatter(OperationDescription operation, Type type, bool isRequestFormatter, bool useJson, UnwrappedTypesXmlSerializerManager xmlSerializerManager)
{
if (type == null)
{
return new NullMessageFormatter(false, null);
}
else if (useJson)
{
return CreateJsonFormatter(operation, type, isRequestFormatter);
}
else
{
return CreateXmlFormatter(operation, type, isRequestFormatter, xmlSerializerManager);
}
}
internal static IDispatchMessageFormatter CreateDispatchFormatter(OperationDescription operation, Type type, bool isRequestFormatter, bool useJson, UnwrappedTypesXmlSerializerManager xmlSerializerManager, string callbackParameterName)
{
if (type == null)
{
return new NullMessageFormatter(useJson, callbackParameterName);
}
else if (useJson)
{
return CreateJsonFormatter(operation, type, isRequestFormatter);
}
else
{
return CreateXmlFormatter(operation, type, isRequestFormatter, xmlSerializerManager);
}
}
internal static void SuppressReplyEntityBody(Message message)
{
WebOperationContext currentContext = WebOperationContext.Current;
if (currentContext != null)
{
OutgoingWebResponseContext responseContext = currentContext.OutgoingResponse;
if (responseContext != null)
{
responseContext.SuppressEntityBody = true;
}
}
else
{
object untypedProp;
message.Properties.TryGetValue(HttpResponseMessageProperty.Name, out untypedProp);
HttpResponseMessageProperty prop = untypedProp as HttpResponseMessageProperty;
if (prop == null)
{
prop = new HttpResponseMessageProperty();
message.Properties[HttpResponseMessageProperty.Name] = prop;
}
prop.SuppressEntityBody = true;
}
}
internal static void SuppressRequestEntityBody(Message message)
{
WebOperationContext currentContext = WebOperationContext.Current;
if (currentContext != null)
{
OutgoingWebRequestContext requestContext = currentContext.OutgoingRequest;
if (requestContext != null)
{
requestContext.SuppressEntityBody = true;
}
}
else
{
object untypedProp;
message.Properties.TryGetValue(HttpRequestMessageProperty.Name, out untypedProp);
HttpRequestMessageProperty prop = untypedProp as HttpRequestMessageProperty;
if (prop == null)
{
prop = new HttpRequestMessageProperty();
message.Properties[HttpRequestMessageProperty.Name] = prop;
}
prop.SuppressEntityBody = true;
}
}
protected virtual void AttachMessageProperties(Message message, bool isRequest)
{
}
protected abstract XmlObjectSerializer[] GetInputSerializers();
protected abstract XmlObjectSerializer GetOutputSerializer(Type type);
protected virtual void ValidateMessageFormatProperty(Message message)
{
}
protected Type GetTypeForSerializer(Type type, Type parameterType, IList<Type> knownTypes)
{
if (type == parameterType)
{
return type;
}
else if (knownTypes != null)
{
for (int i = 0; i < knownTypes.Count; ++i)
{
if (type == knownTypes[i])
{
return type;
}
}
}
return parameterType;
}
public static SingleBodyParameterMessageFormatter CreateXmlFormatter(OperationDescription operation, Type type, bool isRequestFormatter, UnwrappedTypesXmlSerializerManager xmlSerializerManager)
{
DataContractSerializerOperationBehavior dcsob = operation.Behaviors.Find<DataContractSerializerOperationBehavior>();
if (dcsob != null)
{
return new SingleBodyParameterDataContractMessageFormatter(operation, type, isRequestFormatter, false, dcsob);
}
XmlSerializerOperationBehavior xsob = operation.Behaviors.Find<XmlSerializerOperationBehavior>();
if (xsob != null)
{
return new SingleBodyParameterXmlSerializerMessageFormatter(operation, type, isRequestFormatter, xsob, xmlSerializerManager);
}
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR2.GetString(SR2.OnlyDataContractAndXmlSerializerTypesInUnWrappedMode, operation.Name)));
}
public static SingleBodyParameterMessageFormatter CreateJsonFormatter(OperationDescription operation, Type type, bool isRequestFormatter)
{
DataContractSerializerOperationBehavior dcsob = operation.Behaviors.Find<DataContractSerializerOperationBehavior>();
if (dcsob == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.JsonFormatRequiresDataContract, operation.Name, operation.DeclaringContract.Name, operation.DeclaringContract.Namespace)));
}
return new SingleBodyParameterDataContractMessageFormatter(operation, type, isRequestFormatter, true, dcsob);
}
BodyWriter CreateBodyWriter(object body)
{
XmlObjectSerializer serializer;
if (body != null)
{
serializer = GetOutputSerializer(body.GetType());
if (serializer == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR2.GetString(SR2.CannotSerializeType, body.GetType(), this.operationName, this.contractName, this.contractNs, this.serializerType)));
}
}
else
{
serializer = null;
}
return new SingleParameterBodyWriter(body, serializer);
}
protected virtual object ReadObject(Message message)
{
if (HttpStreamFormatter.IsEmptyMessage(message))
{
return null;
}
XmlObjectSerializer[] inputSerializers = GetInputSerializers();
XmlDictionaryReader reader = message.GetReaderAtBodyContents();
if (inputSerializers != null)
{
for (int i = 0; i < inputSerializers.Length; ++i)
{
if (inputSerializers[i].IsStartObject(reader))
{
return inputSerializers[i].ReadObject(reader, false);
}
}
}
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SR2.GetString(SR2.CannotDeserializeBody, reader.LocalName, reader.NamespaceURI, operationName, contractName, contractNs, this.serializerType)));
}
class NullMessageFormatter : IDispatchMessageFormatter, IClientMessageFormatter
{
bool useJson;
string callbackParameterName;
public NullMessageFormatter(bool useJson, string callbackParameterName)
{
this.useJson = useJson;
this.callbackParameterName = callbackParameterName;
}
public object DeserializeReply(Message message, object[] parameters)
{
return null;
}
public void DeserializeRequest(Message message, object[] parameters)
{
}
public Message SerializeReply(MessageVersion messageVersion, object[] parameters, object result)
{
Message reply = Message.CreateMessage(messageVersion, (string)null);
SuppressReplyEntityBody(reply);
if (useJson && WebHttpBehavior.TrySetupJavascriptCallback(callbackParameterName) != null)
{
reply.Properties.Add(WebBodyFormatMessageProperty.Name, WebBodyFormatMessageProperty.JsonProperty);
}
return reply;
}
public Message SerializeRequest(MessageVersion messageVersion, object[] parameters)
{
Message request = Message.CreateMessage(messageVersion, (string)null);
SuppressRequestEntityBody(request);
return request;
}
}
class SingleParameterBodyWriter : BodyWriter
{
object body;
XmlObjectSerializer serializer;
public SingleParameterBodyWriter(object body, XmlObjectSerializer serializer)
: base(false)
{
if (body != null && serializer == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("serializer");
}
this.body = body;
this.serializer = serializer;
}
protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
{
if (body != null)
{
this.serializer.WriteObject(writer, body);
}
}
}
}
}
|