COMStream.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. using System.Runtime.InteropServices;
  6. namespace Biff8Excel.COM
  7. {
  8. public sealed class COMStream : System.IO.Stream, IDisposable
  9. {
  10. private bool disposed;
  11. private IStreamRef stream;
  12. IntPtr PWrite;
  13. public COMStream(IStreamRef stream)
  14. {
  15. this.stream = stream;
  16. PWrite = IntPtr.Zero;
  17. }
  18. ~COMStream()
  19. {
  20. this.Dispose();
  21. }
  22. public void Dispose()
  23. {
  24. if (!this.disposed)
  25. {
  26. Marshal.ReleaseComObject(this.stream);
  27. this.stream = null;
  28. this.disposed = true;
  29. }
  30. GC.SuppressFinalize(this);
  31. }
  32. public IStreamRef UnderlyingStream
  33. {
  34. get
  35. {
  36. return this.stream;
  37. }
  38. }
  39. public override bool CanRead
  40. {
  41. get { return true; }
  42. }
  43. public override bool CanSeek
  44. {
  45. get { return true; }
  46. }
  47. public override bool CanWrite
  48. {
  49. get { return true; }
  50. }
  51. public override void Flush()
  52. {
  53. this.stream.Commit(0);
  54. }
  55. public override long Length
  56. {
  57. get
  58. {
  59. if (this.stream == null)
  60. throw new ObjectDisposedException("Invalid stream object.");
  61. STATSTG statstg;
  62. this.stream.Stat(out statstg, 1 /**//* STATSFLAG_NONAME*/ );
  63. return statstg.cbSize;
  64. }
  65. }
  66. public override long Position
  67. {
  68. get { return Seek(0, SeekOrigin.Current); }
  69. set { Seek(value, SeekOrigin.Begin); }
  70. }
  71. public override int Read(byte[] buffer, int offset, int count)
  72. {
  73. if (stream == null)
  74. throw new ObjectDisposedException("Invalid stream object.");
  75. //if (offset != 0)
  76. //{
  77. // throw new NotSupportedException("Only 0 offset is supported");
  78. //}
  79. IntPtr address = IntPtr.Zero;
  80. stream.Read(buffer, count, ref address);
  81. int bytesRead = address.ToInt32();
  82. //unsafe
  83. //{
  84. // IntPtr address = new IntPtr(&bytesRead);
  85. // stream.Read(buffer, count, address);
  86. //}
  87. return bytesRead;
  88. }
  89. //public long Read(byte[] buffer, int offset, int count)
  90. //{
  91. // IntPtr address = IntPtr.Zero;
  92. // stream.Read(buffer, count, ref address);
  93. // long bytesRead = address.ToInt64();
  94. // return bytesRead;
  95. //}
  96. public override long Seek(long offset, SeekOrigin origin)
  97. {
  98. if (stream == null)
  99. throw new ObjectDisposedException("Invalid stream object.");
  100. IntPtr address = IntPtr.Zero;
  101. stream.Seek(offset, (int)origin, ref address);
  102. long position = address.ToInt64();
  103. //long position = 0;
  104. //unsafe
  105. //{
  106. // IntPtr address = new IntPtr(&position);
  107. // stream.Seek(offset, (int)origin, address);
  108. //}
  109. return position;
  110. }
  111. public override void SetLength(long value)
  112. {
  113. if (stream == null)
  114. throw new ObjectDisposedException("Invalid stream object.");
  115. stream.SetSize(value);
  116. }
  117. public override void Write(byte[] buffer, int offset, int count)
  118. {
  119. if (stream == null)
  120. throw new ObjectDisposedException("Invalid stream object.");
  121. //if (offset != 0)
  122. //{
  123. // throw new NotSupportedException("Only 0 offset is supported");
  124. //}
  125. //stream.Write(buffer, count,ref IntPtr.Zero);
  126. stream.Write(buffer, count, ref PWrite);
  127. stream.Commit(0);
  128. }
  129. public void WriteBytes(byte[] buffer)
  130. {
  131. if (stream == null)
  132. throw new ObjectDisposedException("Invalid stream object.");
  133. int count = 0;
  134. if (buffer == null)
  135. return;
  136. count = buffer.Length;
  137. //stream.Write(buffer, count,ref IntPtr.Zero);
  138. stream.Write(buffer, count, ref PWrite);
  139. stream.Commit(0);
  140. }
  141. //Convenience method for writing Strings to the stream
  142. public void Write(string s)
  143. {
  144. System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
  145. byte[] pv = encoding.GetBytes(s);
  146. Write(pv, 0, pv.GetLength(0));
  147. }
  148. public override void Close()
  149. {
  150. try
  151. {
  152. if (this.stream != null)
  153. stream.Commit(0);
  154. }
  155. finally
  156. {
  157. this.Dispose();
  158. //GC.SuppressFinalize(this);
  159. }
  160. }
  161. }
  162. }