| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- //
- // Message.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // Copyright (C) 2005-2006 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.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; }
- internal string BodyId {
- get { return body_id; }
- set { body_id = value; }
- }
- 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)
- {
- writer.WriteStartElement ("z", "anyType", Constants.MSSerialization);
- writer.WriteAttributeString ("i", "nil", "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);
- }
- public void WriteMessage (XmlDictionaryWriter writer)
- {
- if (State != MessageState.Created)
- throw new InvalidOperationException (String.Format ("The message is already at {0} state", State));
- State = MessageState.Written;
- OnWriteMessage (writer);
- }
- public void WriteMessage (XmlWriter writer)
- {
- WriteMessage (XmlDictionaryWriter.CreateDictionaryWriter (writer));
- }
- public void WriteStartBody (XmlDictionaryWriter writer)
- {
- if (State != MessageState.Created && State != MessageState.Written)
- throw new InvalidOperationException (String.Format ("The message is already at {0} state", State));
- State = MessageState.Written;
- OnWriteStartBody (writer);
- }
- public void WriteStartBody (XmlWriter writer)
- {
- WriteStartBody (
- XmlDictionaryWriter.CreateDictionaryWriter (writer));
- }
- public void WriteStartEnvelope (XmlDictionaryWriter writer)
- {
- if (State != MessageState.Created && State != MessageState.Written)
- throw new InvalidOperationException (String.Format ("The message is already at {0} state", State));
- State = MessageState.Written;
- OnWriteStartEnvelope (writer);
- }
- [MonoTODO]
- protected virtual void OnBodyToString (
- XmlDictionaryWriter writer)
- {
- throw new NotImplementedException ();
- }
- protected virtual void OnClose ()
- {
- }
- [MonoTODO]
- protected virtual MessageBuffer OnCreateBufferedCopy (
- int maxBufferSize)
- {
- #if NET_2_1
- StringWriter sw = new StringWriter ();
- XmlDictionaryWriter w = XmlDictionaryWriter.CreateDictionaryWriter (XmlWriter.Create (sw));
- WriteMessage (w);
- return new DefaultMessageBuffer (Headers, Properties, new XmlReaderBodyWriter (XmlDictionaryReader.CreateDictionaryReader (XmlReader.Create (new StringReader (sw.ToString ())))), false);
- #else
- DTMXPathDocumentWriter2 pw = new DTMXPathDocumentWriter2 (new NameTable (), 100);
- XmlDictionaryWriter w = XmlDictionaryWriter.CreateDictionaryWriter (pw);
- WriteMessage (w);
- return new XPathMessageBuffer (pw.CreateDocument (), Version, Headers.Count, this.Properties);
- #endif
- }
- protected virtual string OnGetBodyAttribute (
- string localName, string ns)
- {
- // other than XmlReaderMessage it cannot return anything
- return null;
- }
- [MonoTODO]
- protected virtual XmlDictionaryReader OnGetReaderAtBodyContents ()
- {
- XmlDictionaryWriter writer = XmlDictionaryWriter.CreateDictionaryWriter (XmlWriter.Create (TextWriter.Null));
- if (Version.Envelope != EnvelopeVersion.None) {
- WriteStartEnvelope (writer);
- OnWriteStartHeaders (writer);
- for (int i = 0, count = Headers.Count; i < count; i++)
- Headers.WriteHeader (i, writer);
- writer.WriteEndElement ();
- WriteStartBody (writer);
- }
- StringWriter sw = new StringWriter ();
- using (XmlDictionaryWriter body = XmlDictionaryWriter.CreateDictionaryWriter (XmlWriter.Create (sw))) {
- WriteBodyContents (body);
- }
- if (Version.Envelope != EnvelopeVersion.None) {
- writer.WriteEndElement ();
- writer.WriteEndElement ();
- }
- return XmlDictionaryReader.CreateDictionaryReader (XmlReader.Create (new StringReader (sw.ToString ())));
- }
- protected abstract void OnWriteBodyContents (
- XmlDictionaryWriter writer);
- protected virtual void OnWriteMessage (
- XmlDictionaryWriter writer)
- {
- if (Version.Envelope != EnvelopeVersion.None) {
- WriteStartEnvelope (writer);
- 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 ();
- }
- [MonoTODO]
- protected virtual void OnWriteStartBody (
- XmlDictionaryWriter writer)
- {
- writer.WriteStartElement ("s", "Body", Version.Envelope.Namespace);
- if (BodyId != null)
- writer.WriteAttributeString ("u", "Id", Constants.WsuNamespace, BodyId);
- }
- protected virtual void OnWriteStartEnvelope (
- XmlDictionaryWriter writer)
- {
- writer.WriteStartElement ("s", "Envelope", Version.Envelope.Namespace);
- if (Headers.Action != null && Version.Addressing.Namespace != MessageVersion.None.Addressing.Namespace)
- writer.WriteXmlnsAttribute ("a", Version.Addressing.Namespace);
- foreach (MessageHeaderInfo h in Headers)
- if (h.Id != null) {
- writer.WriteXmlnsAttribute ("u", Constants.WsuNamespace);
- break;
- }
- }
- protected virtual void OnWriteStartHeaders (
- XmlDictionaryWriter writer)
- {
- writer.WriteStartElement ("s", "Header", Version.Envelope.Namespace);
- }
- #region factory methods
- // 1) fault -> 4
- // 2) action -> 5
- // 3) fault, action -> 10
- // 4) version, fault -> 10
- // 5) version, action -> EmptyMessage
- // 6) action, body -> 12
- // 7) action, xmlReader -> 8
- // 8) action, reader -> 16
- // 10) version, fault, action -> 20
- // 11) version, action, body -> 14
- // 12) action, body, formatter -> 14
- // 13) version, action, body -> 14
- // 14) version, action, body, formatter -> 20
- // 15) version, action, xmlReader -> 16
- // 16) version, action, reader -> 20
- // 17) xmlReader, maxSizeOfHeaders, version -> 18
- // 18) reader, maxSizeOfHeaders, version -> ForwardingMessage
- // 19) action, bodyWriter -> 20
- // 20) version, action, bodyWriter -> SimpleMessage
- public static Message CreateMessage (MessageVersion version,
- FaultCode code, string reason, string action)
- {
- MessageFault fault = MessageFault.CreateFault (code, reason);
- return CreateMessage (version, fault, action);
- }
- 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);
- }
- public static Message CreateMessage (MessageVersion version,
- MessageFault fault, string action)
- {
- return new SimpleMessage (version, action,
- new MessageFaultBodyWriter (fault, version), true);
- }
- public static Message CreateMessage (MessageVersion version,
- string action, object body)
- {
- return body == null ?
- CreateMessage (version, action) :
- CreateMessage (version, action, body, new DataContractSerializer (body.GetType ()));
- }
- 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));
- }
- public static Message CreateMessage (MessageVersion version,
- string action, XmlReader body)
- {
- return CreateMessage (version, action,
- XmlDictionaryReader.CreateDictionaryReader (body));
- }
- public static Message CreateMessage (MessageVersion version,
- string action, XmlDictionaryReader body)
- {
- return CreateMessage (version, action,
- new XmlReaderBodyWriter (body));
- }
- public static Message CreateMessage (XmlReader envelopeReader,
- int maxSizeOfHeaders, MessageVersion version)
- {
- return CreateMessage (
- XmlDictionaryReader.CreateDictionaryReader (envelopeReader),
- maxSizeOfHeaders,
- version);
- }
- // Core implementations of CreateMessage.
- 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);
- }
- public static Message CreateMessage (MessageVersion version,
- string action)
- {
- if (version == null)
- throw new ArgumentNullException ("version");
- return new EmptyMessage (version, action);
- }
- 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
- }
- }
|