BinaryWriter.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. //using System;
  2. //using System.Collections.Generic;
  3. //using System.Text;
  4. //using System.IO;
  5. //namespace Biff8Excel.Excel
  6. //{
  7. // // Write simple data types to a binary stream
  8. // internal class ExcelBinaryWriter : IDisposable
  9. // {
  10. // byte[] m_stream; // byte stream
  11. // int m_Offset; // current position for writing operations
  12. // int m_bufferSize; // dynamically increases with use
  13. // int m_lastByte; // offset to the last used byte in the stream
  14. // const int m_IncBufferSize = 2048; //amount of bytes to increase the stream size by when full
  15. // public void init()
  16. // {
  17. // m_Offset = 0;
  18. // m_lastByte = 0;
  19. // }
  20. // public ExcelBinaryWriter()
  21. // {
  22. // m_bufferSize = 0;
  23. // m_stream = null;
  24. // init();
  25. // }
  26. // // Procedure : Sub SetInitialSize
  27. // // : creates an empty stream of size lNumBytes
  28. // // : any attempts to write past the end of the stream will require the stream to be resized
  29. // // : by calling ReDim Preserve to relocate the array in memory.
  30. // // : this function does not need to be called but if used and given a size sufficient to hold
  31. // // : the entire stream will stop any memory reallocation needs
  32. // public ExcelBinaryWriter(int lNumBytes)
  33. // {
  34. // m_bufferSize = lNumBytes;
  35. // m_stream = new byte[m_bufferSize];
  36. // init();
  37. // }
  38. // public int Length
  39. // {
  40. // // from zero
  41. // get { return m_lastByte+1; }
  42. // }
  43. // // Procedure : Sub UpdateLastByte
  44. // // : update the pointer to the last used byte in the stream
  45. // // : as there may be unused bytes at the end if the stream buffer
  46. // private void UpdateLastByte(int bytesToAdd)
  47. // {
  48. // if (m_Offset + bytesToAdd > m_lastByte)
  49. // m_lastByte = m_Offset + bytesToAdd - 1;
  50. // }
  51. // // Procedure : Sub IncreaseBuffer
  52. // // : check if the stream buffer needs to grow
  53. // private void IncreaseBuffer(int bytesToAdd)
  54. // {
  55. // // make sure there is enough room in the stream
  56. // if (m_Offset + bytesToAdd >= m_bufferSize)
  57. // {
  58. // do
  59. // {
  60. // m_bufferSize += m_IncBufferSize;
  61. // }
  62. // while ((m_Offset + bytesToAdd) >= m_bufferSize);
  63. // Array.Resize<byte>(ref m_stream, m_bufferSize);
  64. // }
  65. // }
  66. // public void Write(byte Value)
  67. // {
  68. // IncreaseBuffer(1);
  69. // UpdateLastByte(1);
  70. // m_stream[m_Offset] = Value;
  71. // m_Offset++;
  72. // }
  73. // public void Write(byte[] Value)
  74. // {
  75. // int Length;
  76. // if (Value == null) return;
  77. // Length = Value.Length;
  78. // if (Length == 0) return;
  79. // IncreaseBuffer(Length);
  80. // UpdateLastByte(Length);
  81. // Value.CopyTo(m_stream, m_Offset);
  82. // m_Offset += Length;
  83. // }
  84. // public void Write(bool Value)
  85. // {
  86. // IncreaseBuffer(2);
  87. // UpdateLastByte(2);
  88. // BitConverter.GetBytes(Value).CopyTo(m_stream, m_Offset);
  89. // m_Offset += 2;
  90. // }
  91. // public void Write(ushort Value)
  92. // {
  93. // IncreaseBuffer(2);
  94. // UpdateLastByte(2);
  95. // BitConverter.GetBytes(Value).CopyTo(m_stream, m_Offset);
  96. // m_Offset += 2;
  97. // }
  98. // public void Write(int Value)
  99. // {
  100. // IncreaseBuffer(4);
  101. // UpdateLastByte(4);
  102. // BitConverter.GetBytes(Value).CopyTo(m_stream, m_Offset);
  103. // m_Offset += 4;
  104. // }
  105. // public void Write(Single Value)
  106. // {
  107. // IncreaseBuffer(4);
  108. // UpdateLastByte(4);
  109. // BitConverter.GetBytes(Value).CopyTo(m_stream, m_Offset);
  110. // m_Offset += 4;
  111. // }
  112. // public void Write(double Value)
  113. // {
  114. // IncreaseBuffer(8);
  115. // UpdateLastByte(8);
  116. // BitConverter.GetBytes(Value).CopyTo(m_stream, m_Offset);
  117. // m_Offset += 8;
  118. // }
  119. // public void Write(DateTime Value)
  120. // {
  121. // IncreaseBuffer(8);
  122. // UpdateLastByte(8);
  123. // double date = Math.Floor(Value.ToOADate());
  124. // BitConverter.GetBytes(date).CopyTo(m_stream, m_Offset);
  125. // m_Offset += 8;
  126. // }
  127. // public void Write(string Value)
  128. // {
  129. // ushort length;
  130. // length = (ushort)Value.Length;
  131. // // 2 bytes are prefixed to the start of the string in the byte array
  132. // // to record the length of the string
  133. // IncreaseBuffer(length + 2);
  134. // UpdateLastByte(length + 2);
  135. // // save the length of the string (2 bytes)
  136. // BitConverter.GetBytes(length).CopyTo(m_stream, m_Offset);
  137. // m_Offset += 2;
  138. // if (length > 0)
  139. // Write(Globals.GetBytes(Value));
  140. // }
  141. // public int Position
  142. // {
  143. // set
  144. // {
  145. // if (value < 0)
  146. // throw new Biff8ExcelException("BinaryReader.ReadString", "Attempt to move past beginning of stream", 3869);
  147. // if (value > m_bufferSize)
  148. // IncreaseBuffer(value - m_bufferSize + 1);
  149. // m_Offset = value;
  150. // }
  151. // get { return m_Offset; }
  152. // }
  153. // public byte[] Stream
  154. // {
  155. // get
  156. // {
  157. // if (m_stream != null)
  158. // {
  159. // Array.Resize<byte>(ref m_stream, m_lastByte + 1);
  160. // return m_stream;
  161. // }
  162. // return null;
  163. // }
  164. // set
  165. // {
  166. // m_stream = value;
  167. // m_bufferSize = (int)value.Length;
  168. // }
  169. // }
  170. // public void Clear()
  171. // {
  172. // m_bufferSize = m_stream.Length;
  173. // m_stream = new byte[m_bufferSize];
  174. // m_Offset = 0;
  175. // m_lastByte = 0;
  176. // }
  177. // #region IDisposable ³ÉÔ±
  178. // public void Dispose()
  179. // {
  180. // m_stream = null;
  181. // }
  182. // #endregion
  183. // }
  184. //}