/CustomRSRenderCS/MatrixRenderer.cs

# · C# · 248 lines · 161 code · 47 blank · 40 comment · 28 complexity · e4d1555bf1dc0b2884bc3ab8db159080 MD5 · raw file

  1. using System.Data;
  2. using System.Collections;
  3. using Microsoft.VisualBasic;
  4. using System.Diagnostics;
  5. using Microsoft.ReportingServices.ReportRendering;
  6. using System;
  7. namespace CustomExcelRenderCS
  8. {
  9. internal class MatrixCache
  10. {
  11. #region class variables
  12. /// <summary>
  13. /// start rown of matrix data area
  14. /// </summary>
  15. internal double matrixStartRow;
  16. /// <summary>
  17. /// end row of matrix data area
  18. /// </summary>
  19. internal double matrixEndRow;
  20. /// <summary>
  21. /// start column of matrix data area
  22. /// </summary>
  23. internal double matrixStartCol;
  24. /// <summary>
  25. /// end column of matrix data area
  26. /// </summary>
  27. internal double matrixEndCol;
  28. #endregion
  29. /// <summary>
  30. /// flag to indicate if values have been cached for current matrix object
  31. /// </summary>
  32. internal bool matrixCacheRecorded;
  33. /// <summary>
  34. /// current column of matrix data area
  35. /// </summary>
  36. internal double matrixCurCol;
  37. /// <summary>
  38. /// current column of matrix data area
  39. /// </summary>
  40. internal double matrixCurRow;
  41. /// <summary>
  42. /// flag indicating if it is ready for applying sum up formula generating
  43. /// </summary>
  44. internal bool isReadyForSumUp;
  45. /// <summary>
  46. /// counter used by matrix load
  47. /// </summary>
  48. internal int mCounter;
  49. }
  50. internal class MatrixRenderer
  51. {
  52. /// <summary>
  53. /// offset to forest row of data area
  54. /// </summary>
  55. private int RowOffset = 0;
  56. /// <summary>
  57. /// offset to first row of data area
  58. /// </summary>
  59. private int ColOffset = 0;
  60. public MatrixCache matrixCache;
  61. internal MatrixRenderer()
  62. {
  63. matrixCache = new MatrixCache();
  64. }
  65. /// <summary>
  66. /// render method of Matrix object, called be Rendereer
  67. /// </summary>
  68. /// <returns>generated html string of matrix object</returns>
  69. protected internal string Render(Microsoft.ReportingServices.ReportRendering.Matrix reportMatrix)
  70. {
  71. // register to renderer record of current matrix
  72. Renderer.reportRenderCache.currentObjParent = reportMatrix.Name;
  73. Renderer.reportItemHashTable.Add(reportMatrix.Name, matrixCache);
  74. int lastRow = 0;
  75. int lastCol = 0;
  76. string[] rContent= new string[reportMatrix.CellRows];
  77. string[] cContent= new string[reportMatrix.CellColumns];
  78. System.Text.StringBuilder pHtml = new System.Text.StringBuilder();
  79. #region retrieve data from matrix object
  80. this.RenderMatrixRowMembersCollection(0, rContent, reportMatrix.RowMemberCollection, ref lastRow);
  81. this.RenderMatrixColMembersCollection(0, cContent, reportMatrix.ColumnMemberCollection, ref lastCol);
  82. matrixCache.matrixEndRow = lastRow;
  83. matrixCache.matrixEndCol = lastCol;
  84. #endregion
  85. #region process retrieved matrix data and render to output stream
  86. StyleHandler sh = new StyleHandler(reportMatrix.Style);
  87. pHtml.AppendFormat("<TABLE BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"0\">");
  88. cContent[0] = "<TD ROWSPAN=\"" + (ColOffset + 1).ToString() + "\" COLSPAN=\"" + (RowOffset + 1).ToString() + "\">" + Renderer.RenderReportItem(reportMatrix.Corner) + "</TD>" + cContent[0];
  89. foreach (string c in cContent)
  90. {
  91. if (c != null&& c != "")
  92. {
  93. pHtml.Append("<TR>" + c + "</TR>");
  94. }
  95. }
  96. for (int r = 0; r <= reportMatrix.CellRows - 1; r++)
  97. {
  98. pHtml.Append("<TR>");
  99. pHtml.Append(rContent[r]);
  100. int colSpan = 1;
  101. for (int c = 0; c <= lastCol; c++)
  102. {
  103. Microsoft.ReportingServices.ReportRendering.MatrixCellCollection mc = reportMatrix.CellCollection;
  104. sh = new StyleHandler(mc[r, c].ReportItem.Style);
  105. ReportItem rItem = mc[r, c].ReportItem as ReportItem;
  106. if (rItem !=null)
  107. {
  108. colSpan = (int)(rItem.Width.ToInches() / Renderer.standardCellWidth);
  109. }
  110. pHtml.Append(string.Format("<TD STYLE=\"{0}\" {1}>", sh.GetHtmlStyleString(typeof(Microsoft.ReportingServices.ReportRendering.Matrix)),colSpan>1?" colspan=\"" + colSpan+"\"":"" ));
  111. pHtml.Append(string.Format("<FONT STYLE=\"{0}\">", sh.GetHtmlStyleString(mc[r, c].ReportItem.GetType())));
  112. if (mc[r, c].ReportItem != null)
  113. {
  114. // when it comes to the last row of matrix, apply formula computing, save value for cache
  115. if (r == reportMatrix.CellRows -1 )
  116. {
  117. matrixCache.isReadyForSumUp = true;
  118. matrixCache.matrixCurCol = RowOffset + 1 + c;
  119. if (!matrixCache.matrixCacheRecorded)
  120. {
  121. matrixCache.matrixCacheRecorded = true;
  122. matrixCache.matrixStartRow = Renderer.globalTrackingRow + RowOffset + 1;
  123. matrixCache.matrixEndRow = matrixCache.matrixStartRow + reportMatrix.CellRows - 2;
  124. matrixCache.matrixStartCol = RowOffset + 1 + c;
  125. }
  126. }
  127. else // do not apply sum up formula for rows other than last row
  128. {
  129. matrixCache.isReadyForSumUp = false;
  130. }
  131. // process current matrix cell, get formulas if applicable, then write to output stream
  132. pHtml.Append(Renderer.RenderReportItem(mc[r, c].ReportItem));
  133. }
  134. else
  135. {
  136. pHtml.Append("&nbsp;");
  137. }
  138. pHtml.Append("</FONT></TD>");
  139. }
  140. pHtml.Append("</TR>");
  141. }
  142. pHtml.Append("</TABLE>");
  143. #endregion
  144. return pHtml.ToString();
  145. }
  146. private string[] RenderMatrixRowMembersCollection(int level, string[] rContent, Microsoft.ReportingServices.ReportRendering.MatrixMemberCollection mColl, ref int LastRow)
  147. {
  148. System.Text.StringBuilder pHtml = new System.Text.StringBuilder();
  149. StyleHandler sh = null;
  150. for (int i = 0; i <= mColl.Count - 1; i++)
  151. {
  152. if (mColl[i].ReportItem != null)
  153. {
  154. sh = new StyleHandler(mColl[i].ReportItem.Style);
  155. rContent[mColl[i].MemberCellIndex] += string.Format("<TD ROWSPAN=\"{0}\" COLSPAN=\"{1}\" BGCOLOR=\"" + sh.GetStyleColorRGBCode("BackgroundColor") + "\" STYLE=\"{2}\">", mColl[i].RowSpan.ToString(), mColl[i].ColumnSpan.ToString(), sh.GetHtmlStyleString(typeof(Microsoft.ReportingServices.ReportRendering.Matrix)));
  156. rContent[mColl[i].MemberCellIndex] += Renderer.RenderReportItem(mColl[i].ReportItem);
  157. rContent[mColl[i].MemberCellIndex] += "</TD>";
  158. if (mColl[i].MemberCellIndex > LastRow)
  159. {
  160. LastRow = mColl[i].MemberCellIndex;
  161. }
  162. if ( mColl[i].Children != null)
  163. {
  164. if (RowOffset == level)
  165. {
  166. RowOffset++;
  167. }
  168. this.RenderMatrixRowMembersCollection(level + 1, rContent, mColl[i].Children, ref LastRow);
  169. }
  170. }
  171. }
  172. return rContent;
  173. }
  174. private string[] RenderMatrixColMembersCollection(int level, string[] cContent, Microsoft.ReportingServices.ReportRendering.MatrixMemberCollection mColl, ref int LastCol)
  175. {
  176. System.Text.StringBuilder pHtml = new System.Text.StringBuilder();
  177. StyleHandler sh = null;
  178. for (int i = 0; i <= mColl.Count - 1; i++)
  179. {
  180. if (mColl[i].ReportItem != null)
  181. {
  182. sh = new StyleHandler(mColl[i].ReportItem.Style);
  183. cContent[level] += string.Format("<TD ROWSPAN=\"{0}\" COLSPAN=\"{1}\" BGCOLOR=\"{2}\" STYLE=\"{3}\">{4}</TD>", mColl[i].RowSpan.ToString(), mColl[i].ColumnSpan.ToString(), sh.GetStyleColorRGBCode("BackgroundColor"), sh.GetHtmlStyleString(typeof(Microsoft.ReportingServices.ReportRendering.Matrix)), Renderer.RenderReportItem(mColl[i].ReportItem));
  184. if (mColl[i].MemberCellIndex > LastCol)
  185. {
  186. LastCol = mColl[i].MemberCellIndex;
  187. }
  188. if (mColl[i].Children != null)
  189. {
  190. if (ColOffset == level)
  191. {
  192. ColOffset++;
  193. }
  194. this.RenderMatrixColMembersCollection(level + 1, cContent, mColl[i].Children, ref LastCol);
  195. }
  196. }
  197. }
  198. return cContent;
  199. }
  200. }
  201. }