ExcelSst.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Collections;
  5. using System.Text.RegularExpressions;
  6. using System.Collections.Specialized;
  7. namespace Biff8Excel.Excel
  8. {
  9. /// <summary>
  10. /// 全部cell中内容为label的字符串的处理
  11. /// </summary>
  12. public class ExcelSst : IDisposable
  13. {
  14. Records.SST m_sst;
  15. const int SSTMaxLen = 8224 - 8; // length 8224 - totalstrings(uint)(4) stringnumber(uint)(4) 之后的用CONTINUE
  16. const int ContinueMaxLen = 8224; // 每8224后重新开始
  17. int m_ContinueTimes; // Continue次数, m_ContinueIndex & m_ContinueStringLength 数组长度
  18. uint m_LabelCells;
  19. uint m_totalStrings;
  20. List<string> m_arrString;
  21. Hashtable m_htStringIndex; //空间换时间用于得到字符串数组的索引
  22. bool m_isContinue;
  23. uint[] m_ContinueIndex;
  24. uint[] m_ContinueStringLength;
  25. uint[] m_ContinueTotalStrings;
  26. //uint m_absolute;
  27. uint m_SSTStringsLength;
  28. internal byte[] WriteRecord()
  29. {
  30. m_htStringIndex.Clear();
  31. m_sst.TotalStringCells = m_LabelCells;
  32. if (m_totalStrings > 0)
  33. {
  34. m_sst.SharedStrings = m_arrString;
  35. //m_sst.TotalStringCells = m_totalStringsLength;
  36. m_sst.TotalStringsLength = m_SSTStringsLength;
  37. if (m_isContinue)
  38. {
  39. m_sst.ContinueIndex = m_ContinueIndex;
  40. m_sst.ContinueStringLength = m_ContinueStringLength;
  41. m_sst.ContinueTotalStrings = m_ContinueTotalStrings;
  42. }
  43. }
  44. //m_sst.absolutoffset = m_absolute;
  45. return m_sst.GetByte();
  46. }
  47. /// <summary>
  48. /// 查找将加入的string是否存在数组中,存在则返回所在数组的index
  49. /// 否则将string加入数组的最后,返回数组的最后的index
  50. /// </summary>
  51. /// <param name="st">要加入的string</param>
  52. /// <returns>加入string所在数组的index</returns>
  53. internal uint AddString(string st)
  54. {
  55. object tmp = m_htStringIndex[st];
  56. if (tmp != null)
  57. return Convert.ToUInt32(tmp);
  58. m_htStringIndex.Add(st, m_totalStrings);
  59. m_arrString.Add(st);
  60. m_totalStrings++;
  61. CalcStringLen(st);
  62. return m_totalStrings - 1;
  63. }
  64. /// <summary>
  65. /// 计算字符串长度如当前所有字符串长度之和大于SST允许,则加入至CONTINUE
  66. /// </summary>
  67. /// <param name="cs"></param>
  68. private void CalcStringLen(string cs)
  69. {
  70. uint bytelen = (uint)Globals.GetDefaultBytesLength(cs);
  71. uint charcount = (uint)cs.Length;
  72. uint realLen = 0;
  73. if (bytelen != charcount)
  74. realLen = charcount * 2;
  75. else
  76. realLen = charcount;
  77. //uint realLen = (uint)Globals.GetUnicodeByteLength(cs);
  78. if (m_isContinue)
  79. {
  80. if (((m_ContinueTotalStrings[m_ContinueTimes - 1]+1) * 3 + m_ContinueStringLength[m_ContinueTimes - 1] + realLen) >= ContinueMaxLen)
  81. {
  82. AddContinue(realLen);
  83. return;
  84. }
  85. m_ContinueTotalStrings[m_ContinueTimes - 1]++;
  86. m_ContinueStringLength[m_ContinueTimes - 1] += realLen;
  87. return;
  88. }
  89. else
  90. {
  91. if ((m_totalStrings * 3 + m_SSTStringsLength + realLen) >= SSTMaxLen)
  92. {
  93. m_isContinue = true;
  94. AddContinue(realLen);
  95. return;
  96. }
  97. m_SSTStringsLength += realLen;
  98. return;
  99. }
  100. }
  101. private void AddContinue(uint realLen)
  102. {
  103. m_ContinueTimes++;
  104. Array.Resize<uint>(ref m_ContinueIndex, m_ContinueTimes);
  105. Array.Resize<uint>(ref m_ContinueStringLength, m_ContinueTimes);
  106. Array.Resize<uint>(ref m_ContinueTotalStrings, m_ContinueTimes);
  107. m_ContinueIndex[m_ContinueTimes - 1] = m_totalStrings - 1;
  108. m_ContinueStringLength[m_ContinueTimes - 1] += realLen;
  109. m_ContinueTotalStrings[m_ContinueTimes - 1] = 1;
  110. }
  111. //public uint AbsolutOffset
  112. //{
  113. // set { m_absolute = value; }
  114. //}
  115. public ExcelSst()
  116. {
  117. m_sst = new Biff8Excel.Records.SST();
  118. m_arrString = new List<string>();
  119. m_htStringIndex = new Hashtable();
  120. //m_totalStrings = 0;
  121. //m_SSTStringsLength = 0;
  122. //m_isContinue = false;
  123. //m_ContinueTimes = 0;
  124. }
  125. #region IDisposable 成员
  126. public void Dispose()
  127. {
  128. m_sst = null;
  129. }
  130. #endregion
  131. }
  132. }