| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- //
- // Message.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // 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;
- using Mono.Xml.XPath;
- namespace System.ServiceModel.Channels
- {
- public abstract class Message : IDisposable
- {
- bool disposed;
- string body_id;
- protected Message () {
- State = MessageState.Created;
- }
- public abstract MessageHeaders Headers { get; }
- Dictionary<XmlQualifiedName,string> attributes = new Dictionary<XmlQualifiedName,string> ();
- public virtual bool IsEmpty {
- get { return false; }
- }
- public virtual bool IsFault {
- get { return false; }
- }
- public abstract MessageProperties Properties { get; }
- MessageState ___state;
- public MessageState State {
- get { return ___state; }
- private set { ___state = value; }
- }
- 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));
- try {
- return OnCreateBufferedCopy (maxBufferSize);
- } finally {
- State = MessageState.Copied;
- }
- }
- void IDisposable.Dispose ()
- {
- Close ();
- }
- public T GetBody<T> ()
- {
- return GetBody<T> (new DataContractSerializer (typeof (T)));
- }
- public T GetBody<T> (XmlObjectSerializer xmlFormatter)
- {
- return (T) xmlFormatter.ReadObject (GetReaderAtBodyContents ());
- }
- public string GetBodyAttribute (string localName, string ns)
- {
- return OnGetBodyAttribute (localName, ns);
- }
- public XmlDictionaryReader GetReaderAtBodyContents ()
- {
- return OnGetReaderAtBodyContents ();
- }
- public override string ToString ()
- {
- MessageState tempState = State;
- try {
- StringWriter sw = new StringWriter ();
- XmlWriterSettings settings = new XmlWriterSettings ();
- settings.Indent = true;
- settings.OmitXmlDeclaration = true;
- using (XmlWriter w = XmlWriter.Create (sw, settings)) {
- WriteMessage (w);
- }
- return sw.ToString ();
- }
- finally {
- State = tempState;
- }
- }
- 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)
- 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);
- foreach (var a in attributes)
- writer.WriteAttributeString (a.Key.Name, a.Key.Namespace, a.Value);
- }
- 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);
- }
- [MonoTODO]
- protected virtual void OnBodyToString (
- XmlDictionaryWriter writer)
- {
- throw new NotImplementedException ();
- }
- 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, attributes);
- }
- protected virtual string OnGetBodyAttribute (
- string localName, string ns)
- {
- var q = new XmlQualifiedName (localName, ns);
- string v;
- return attributes.TryGetValue (q, out v) ? v : 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 rs = new XmlReaderSettings ();
- rs.ConformanceLevel = ConformanceLevel.Auto;
- return XmlDictionaryReader.CreateDictionaryReader (XmlReader.Create (new StringReader (sw.ToString ()), rs));
- }
- 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.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 code, string reason, string action)
- {
- MessageFault fault = MessageFault.CreateFault (code, reason);
- return CreateMessage (version, fault, action);
- }
- // 2)
- public static Message CreateMessage (MessageVersion version,
- FaultCode code, string reason, object detail,
- string action)
- {
- MessageFault fault = MessageFault.CreateFault (
- code, 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 xmlFormatter)
- {
- return body == null ?
- CreateMessage (version, action) :
- CreateMessage (
- version, action,
- new XmlObjectSerializerBodyWriter (body, xmlFormatter));
- }
- // 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 Dictionary<XmlQualifiedName,string> empty_attributes = new Dictionary<XmlQualifiedName,string> ();
- // 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
- }
- }
|