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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
|
//
// Message.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2005-2006,2010 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.Generic;
using System.IO;
using System.Runtime.Serialization;
using System.Xml;
using System.Xml.Schema;
namespace System.ServiceModel.Channels
{
public abstract class Message : IDisposable
{
bool disposed;
string body_id;
Message copied_message;
string string_cache;
protected Message () {
State = MessageState.Created;
}
public abstract MessageHeaders Headers { get; }
public virtual bool IsEmpty {
get { return false; }
}
public virtual bool IsFault {
get { return false; }
}
public abstract MessageProperties Properties { get; }
public MessageState State { get; private set; }
public abstract MessageVersion Version { get; }
protected bool IsDisposed {
get { return disposed; }
}
public void Close ()
{
if (!disposed)
OnClose ();
State = MessageState.Closed;
disposed = true;
}
public MessageBuffer CreateBufferedCopy (int maxBufferSize)
{
if (State != MessageState.Created)
throw new InvalidOperationException (String.Format ("The message is already at {0} state", State));
if (copied_message != null)
return copied_message.CreateBufferedCopy (maxBufferSize);
try {
return OnCreateBufferedCopy (maxBufferSize);
} finally {
State = MessageState.Copied;
}
}
void IDisposable.Dispose ()
{
Close ();
}
public T GetBody<T> ()
{
return OnGetBody<T> (GetReaderAtBodyContents ());
}
public T GetBody<T> (XmlObjectSerializer serializer)
{
// FIXME: Somehow use OnGetBody() here as well?
return (T)serializer.ReadObject (GetReaderAtBodyContents ());
}
protected virtual T OnGetBody<T> (XmlDictionaryReader reader)
{
var xmlFormatter = new DataContractSerializer (typeof (T));
return (T)xmlFormatter.ReadObject (reader);
}
public string GetBodyAttribute (string localName, string ns)
{
return OnGetBodyAttribute (localName, ns);
}
public XmlDictionaryReader GetReaderAtBodyContents ()
{
if (copied_message != null)
return copied_message.GetReaderAtBodyContents ();
return OnGetReaderAtBodyContents ();
}
public override string ToString ()
{
if (string_cache != null)
return string_cache;
StringWriter sw = new StringWriter ();
XmlWriterSettings settings = new XmlWriterSettings ();
settings.Indent = true;
settings.OmitXmlDeclaration = true;
using (XmlWriter w = XmlWriter.Create (sw, settings)) {
OnBodyToString (XmlDictionaryWriter.CreateDictionaryWriter (w));
}
string_cache = sw.ToString ();
return string_cache;
}
void WriteXsiNil (XmlDictionaryWriter writer)
{
var dic = Constants.SoapDictionary;
writer.WriteStartElement ("z", dic.Add ("anyType"), dic.Add (Constants.MSSerialization));
writer.WriteAttributeString ("i", dic.Add ("nil"), dic.Add ("http://www.w3.org/2001/XMLSchema-instance"), "true");
writer.WriteEndElement ();
}
public void WriteBody (XmlDictionaryWriter writer)
{
if (Version.Envelope != EnvelopeVersion.None)
WriteStartBody (writer);
WriteBodyContents (writer);
if (Version.Envelope != EnvelopeVersion.None)
writer.WriteEndElement ();
}
public void WriteBody (XmlWriter writer)
{
WriteBody (XmlDictionaryWriter.CreateDictionaryWriter (writer));
}
public void WriteBodyContents (XmlDictionaryWriter writer)
{
if (!IsEmpty) {
if (copied_message != null)
copied_message.WriteBodyContents (writer);
else
OnWriteBodyContents (writer);
}
else if (Version.Envelope == EnvelopeVersion.None)
WriteXsiNil (writer);
State = MessageState.Written;
}
public void WriteMessage (XmlDictionaryWriter writer)
{
if (State != MessageState.Created)
throw new InvalidOperationException (String.Format ("The message is already at {0} state", State));
OnWriteMessage (writer);
}
public void WriteMessage (XmlWriter writer)
{
WriteMessage (XmlDictionaryWriter.CreateDictionaryWriter (writer));
}
public void WriteStartBody (XmlDictionaryWriter writer)
{
if (State != MessageState.Created)
throw new InvalidOperationException (String.Format ("The message is already at {0} state", State));
OnWriteStartBody (writer);
}
public void WriteStartBody (XmlWriter writer)
{
WriteStartBody (
XmlDictionaryWriter.CreateDictionaryWriter (writer));
}
public void WriteStartEnvelope (XmlDictionaryWriter writer)
{
if (State != MessageState.Created)
throw new InvalidOperationException (String.Format ("The message is already at {0} state", State));
OnWriteStartEnvelope (writer);
}
protected virtual void OnBodyToString (
XmlDictionaryWriter writer)
{
MessageState tempState = State;
try {
var mb = CreateBufferedCopy (int.MaxValue);
copied_message = mb.CreateMessage ();
var msg = mb.CreateMessage ();
msg.WriteMessage (writer);
}
finally {
State = tempState;
}
}
protected virtual void OnClose ()
{
}
protected virtual MessageBuffer OnCreateBufferedCopy (
int maxBufferSize)
{
var s = new XmlWriterSettings ();
s.OmitXmlDeclaration = true;
s.ConformanceLevel = ConformanceLevel.Auto;
StringWriter sw = new StringWriter ();
using (XmlDictionaryWriter w = XmlDictionaryWriter.CreateDictionaryWriter (XmlWriter.Create (sw, s)))
WriteBodyContents (w);
var headers = new MessageHeaders (Headers);
var props = new MessageProperties (Properties);
return new DefaultMessageBuffer (maxBufferSize, headers, props, new XmlReaderBodyWriter (sw.ToString (), maxBufferSize, null), false, new AttributeCollection ());
}
protected virtual string OnGetBodyAttribute (
string localName, string ns)
{
return null;
}
protected virtual XmlDictionaryReader OnGetReaderAtBodyContents ()
{
var ws = new XmlWriterSettings ();
ws.ConformanceLevel = ConformanceLevel.Auto;
StringWriter sw = new StringWriter ();
using (XmlDictionaryWriter body = XmlDictionaryWriter.CreateDictionaryWriter (XmlWriter.Create (sw, ws))) {
WriteBodyContents (body);
}
var nt = new NameTable ();
var nsmgr = new XmlNamespaceManager (nt);
nsmgr.AddNamespace ("s", Version.Envelope.Namespace);
nsmgr.AddNamespace ("a", Version.Addressing.Namespace);
var pc = new XmlParserContext (nt, nsmgr, null, XmlSpace.None);
var rs = new XmlReaderSettings ();
rs.ConformanceLevel = ConformanceLevel.Auto;
return XmlDictionaryReader.CreateDictionaryReader (XmlReader.Create (new StringReader (sw.ToString ()), rs, pc));
}
protected abstract void OnWriteBodyContents (
XmlDictionaryWriter writer);
protected virtual void OnWriteMessage (
XmlDictionaryWriter writer)
{
if (Version.Envelope != EnvelopeVersion.None) {
WriteStartEnvelope (writer);
if (Headers.Count > 0) {
OnWriteStartHeaders (writer);
for (int i = 0, count = Headers.Count; i < count; i++)
Headers.WriteHeader (i, writer);
writer.WriteEndElement ();
}
}
WriteBody (writer);
if (Version.Envelope != EnvelopeVersion.None)
writer.WriteEndElement ();
}
protected virtual void OnWriteStartBody (
XmlDictionaryWriter writer)
{
var dic = Constants.SoapDictionary;
writer.WriteStartElement ("s", dic.Add ("Body"), dic.Add (Version.Envelope.Namespace));
}
protected virtual void OnWriteStartEnvelope (
XmlDictionaryWriter writer)
{
var dic = Constants.SoapDictionary;
writer.WriteStartElement ("s", dic.Add ("Envelope"), dic.Add (Version.Envelope.Namespace));
if (Headers.Action != null && Version.Addressing.Namespace != MessageVersion.None.Addressing.Namespace)
writer.WriteXmlnsAttribute ("a", dic.Add (Version.Addressing.Namespace));
foreach (MessageHeaderInfo h in Headers)
if (h.Id != null && writer.LookupPrefix (Constants.WsuNamespace) != "u") {
writer.WriteXmlnsAttribute ("u", dic.Add (Constants.WsuNamespace));
break;
}
}
protected virtual void OnWriteStartHeaders (
XmlDictionaryWriter writer)
{
var dic = Constants.SoapDictionary;
writer.WriteStartElement ("s", dic.Add ("Header"), dic.Add (Version.Envelope.Namespace));
}
#region factory methods
// 1) version, code, reason, action -> 3
// 2) version, code, reason, detail, action -> 3
// 3) version, fault, action -> SimpleMessage
// 4) version, action, body -> 10 or 5
// 5) version, action, body, formatter -> 10 or 9
// 6) version, action, xmlReader -> 7
// 7) version, action, reader -> 9
// 8) xmlReader, maxSizeOfHeaders, version -> 11
// 9) version, action, body -> SimpleMessage
// 10) version, action -> EmptyMessage
// 11) reader, maxSizeOfHeaders, version -> XmlReaderMessage
// 1)
public static Message CreateMessage (MessageVersion version,
FaultCode faultCode, string reason, string action)
{
MessageFault fault = MessageFault.CreateFault (faultCode, reason);
return CreateMessage (version, fault, action);
}
// 2)
public static Message CreateMessage (MessageVersion version,
FaultCode faultCode, string reason, object detail,
string action)
{
MessageFault fault = MessageFault.CreateFault (
faultCode, new FaultReason (reason), detail);
return CreateMessage (version, fault, action);
}
// 3)
public static Message CreateMessage (MessageVersion version,
MessageFault fault, string action)
{
return new SimpleMessage (version, action,
new MessageFaultBodyWriter (fault, version), true, empty_attributes);
}
// 4)
public static Message CreateMessage (MessageVersion version,
string action, object body)
{
return body == null ?
CreateMessage (version, action) :
CreateMessage (version, action, body, new DataContractSerializer (body.GetType ()));
}
// 5)
public static Message CreateMessage (MessageVersion version,
string action, object body, XmlObjectSerializer serializer)
{
return body == null ?
CreateMessage (version, action) :
CreateMessage (
version, action,
new XmlObjectSerializerBodyWriter (body, serializer));
}
// 6)
public static Message CreateMessage (MessageVersion version,
string action, XmlReader body)
{
return CreateMessage (version, action,
XmlDictionaryReader.CreateDictionaryReader (body));
}
// 7)
public static Message CreateMessage (MessageVersion version,
string action, XmlDictionaryReader body)
{
return CreateMessage (version, action,
new XmlReaderBodyWriter (body));
}
// 8)
public static Message CreateMessage (XmlReader envelopeReader,
int maxSizeOfHeaders, MessageVersion version)
{
return CreateMessage (
XmlDictionaryReader.CreateDictionaryReader (envelopeReader),
maxSizeOfHeaders,
version);
}
// Core implementations of CreateMessage.
static readonly AttributeCollection empty_attributes = new AttributeCollection ();
// 9)
public static Message CreateMessage (MessageVersion version,
string action, BodyWriter body)
{
if (version == null)
throw new ArgumentNullException ("version");
if (body == null)
throw new ArgumentNullException ("body");
return new SimpleMessage (version, action, body, false, empty_attributes);
}
// 10)
public static Message CreateMessage (MessageVersion version,
string action)
{
if (version == null)
throw new ArgumentNullException ("version");
return new EmptyMessage (version, action);
}
// 11)
public static Message CreateMessage (
XmlDictionaryReader envelopeReader,
int maxSizeOfHeaders,
MessageVersion version)
{
if (envelopeReader == null)
throw new ArgumentNullException ("envelopeReader");
if (version == null)
throw new ArgumentNullException ("version");
return new XmlReaderMessage (version,
envelopeReader, maxSizeOfHeaders);
}
#endregion
}
}
|