BinaryMessageEncoder.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. //
  2. // BinaryMessageEncoder.cs
  3. //
  4. // Author: Atsushi Enomoto ([email protected])
  5. //
  6. // Copyright (C) 2005,2009 Novell, Inc (http://www.novell.com)
  7. //
  8. // Permission is hereby granted, free of charge, to any person obtaining
  9. // a copy of this software and associated documentation files (the
  10. // "Software"), to deal in the Software without restriction, including
  11. // without limitation the rights to use, copy, modify, merge, publish,
  12. // distribute, sublicense, and/or sell copies of the Software, and to
  13. // permit persons to whom the Software is furnished to do so, subject to
  14. // the following conditions:
  15. //
  16. // The above copyright notice and this permission notice shall be
  17. // included in all copies or substantial portions of the Software.
  18. //
  19. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  21. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  23. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  24. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  25. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  26. //
  27. using System;
  28. using System.IO;
  29. using System.Collections.ObjectModel;
  30. using System.ServiceModel;
  31. using System.Text;
  32. using System.Xml;
  33. namespace System.ServiceModel.Channels
  34. {
  35. internal class BinaryMessageEncoder : MessageEncoder
  36. {
  37. public BinaryMessageEncoder ()
  38. {
  39. }
  40. public BinaryMessageEncoder (BinaryMessageEncoderFactory owner, bool session)
  41. {
  42. this.owner = owner;
  43. this.session = session;
  44. }
  45. BinaryMessageEncoderFactory owner;
  46. bool session;
  47. public override string ContentType {
  48. get { return MediaType; }
  49. }
  50. public override string MediaType {
  51. get { return session ? "application/soap+msbinsession1" : "application/soap+msbin1"; }
  52. }
  53. public override MessageVersion MessageVersion {
  54. get { return MessageVersion.Default; }
  55. }
  56. [MonoTODO]
  57. public override Message ReadMessage (ArraySegment<byte> buffer,
  58. BufferManager bufferManager, string contentType)
  59. {
  60. if (contentType != null && contentType != ContentType)
  61. throw new ProtocolException ("Only content type 'application/soap+msbin1' is allowed.");
  62. // FIXME: retrieve reader session and message body.
  63. throw new NotImplementedException ();
  64. /*
  65. // FIXME: use bufferManager
  66. return Message.CreateMessage (
  67. XmlDictionaryReader.CreateBinaryReader (
  68. buffer.Array, buffer.Offset, buffer.Count,
  69. soap_dictionary,
  70. owner != null ? owner.Owner.ReaderQuotas : new XmlDictionaryReaderQuotas ()),
  71. int.MaxValue, MessageVersion);
  72. */
  73. }
  74. // It is sort of nasty hack, but there is no other way to provide reader/writer session from TCP stream.
  75. internal XmlBinaryReaderSession CurrentReaderSession { get; set; }
  76. internal XmlBinaryWriterSession CurrentWriterSession { get; set; }
  77. public override Message ReadMessage (Stream stream,
  78. int maxSizeOfHeaders, string contentType)
  79. {
  80. if (contentType != null && contentType != ContentType)
  81. throw new ProtocolException ("Only content type 'application/soap+msbin1' is allowed.");
  82. // FIXME: remove this extraneous buffering. It is somehow required for HTTP + binary encoding binding. The culprit is probably in binary xml reader or writer, but not sure.
  83. if (!stream.CanSeek) {
  84. var tmpms = new MemoryStream ();
  85. var bytes = new byte [4096];
  86. int len;
  87. do {
  88. len = stream.Read (bytes, 0, bytes.Length);
  89. tmpms.Write (bytes, 0, len);
  90. } while (len > 0);
  91. tmpms.Seek (0, SeekOrigin.Begin);
  92. stream = tmpms;
  93. }
  94. return Message.CreateMessage (
  95. XmlDictionaryReader.CreateBinaryReader (stream, Constants.SoapDictionary, owner != null ? owner.Owner.ReaderQuotas : new XmlDictionaryReaderQuotas (), session ? CurrentReaderSession : null),
  96. maxSizeOfHeaders, MessageVersion);
  97. }
  98. public override void WriteMessage (Message message, Stream stream)
  99. {
  100. VerifyMessageVersion (message);
  101. using (var xw = XmlDictionaryWriter.CreateBinaryWriter (stream, Constants.SoapDictionary, session ? CurrentWriterSession : null))
  102. message.WriteMessage (xw);
  103. }
  104. [MonoTODO]
  105. public override ArraySegment<byte> WriteMessage (
  106. Message message, int maxMessageSize,
  107. BufferManager bufferManager, int messageOffset)
  108. {
  109. VerifyMessageVersion (message);
  110. throw new NotImplementedException ();
  111. }
  112. }
  113. }