1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Media;
namespace Tango.Documents
{
public class ExcelWriter : IDisposable
{
private Stream _stream;
private SpreadsheetDocument _document;
private List<DefinedName> _column_names;
private Worksheet _currentWorkSheet;
private Stylesheet _currentStyleSheet;
public ExcelWriter(Stream source)
{
_stream = source;
_document = SpreadsheetDocument.Open(_stream, true);
_column_names = new List<DefinedName>();
if (_document.WorkbookPart.Workbook.GetFirstChild<DefinedNames>() != null)
{
foreach (DefinedName name in _document.WorkbookPart.Workbook.GetFirstChild<DefinedNames>())
{
_column_names.Add(name);
}
}
}
public ExcelWriter(String fileName) : this(new FileStream(fileName, FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
}
public void WriteData<T>(IEnumerable<T> data, String sheetName, int? headerRowNumber = null)
{
var props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance).ToList();
WorksheetPart work_sheet_part = GetWorkSheetPart(sheetName);
Worksheet workSheet = work_sheet_part.Worksheet;
_currentWorkSheet = workSheet;
SheetData sheetData = workSheet.GetFirstChild<SheetData>();
List<Row> rows = sheetData.Elements<Row>().ToList();
var list = data.ToList();
int lastRowIndex = headerRowNumber.HasValue ? headerRowNumber.Value : 0;
for (int i = 0; i < list.Count; i++)
{
var item = list[i];
Row last_row = null;
if (headerRowNumber.HasValue)
{
last_row = sheetData.Elements<Row>().ElementAt(lastRowIndex - 1);
}
else
{
last_row = sheetData.Elements<Row>().Last();
}
Row newRow = new Row();
newRow.RowIndex = last_row.RowIndex + 1;
lastRowIndex = (int)newRow.RowIndex.Value;
sheetData.InsertAfter(newRow, last_row);
foreach (var prop in props)
{
var definedName = _column_names.SingleOrDefault(x => x.Name == prop.Name);
if (definedName != null)
{
SetCellRow(newRow, GetCellReference(definedName, (int)(last_row.RowIndex + 1)), prop.GetValue(item));
}
}
}
if (_currentStyleSheet != null)
{
_currentStyleSheet.Save();
_currentStyleSheet = null;
}
}
private void SetCellRow(Row row, string cellReference, object value)
{
Cell cell = row.Descendants<Cell>().FirstOrDefault(c => c.CellReference == cellReference);
bool append = false;
if (cell == null)
{
cell = new Cell();
cell.CellReference = cellReference;
append = true;
}
cell.CellValue = new CellValue(value.ToString());
cell.DataType = CellValues.Number;
if (value is String)
{
cell.DataType = CellValues.String;
}
else if (value is DateTime)
{
cell.DataType = CellValues.Date;
}
else if (value is Boolean)
{
cell.DataType = CellValues.Boolean;
}
else if (value is System.Windows.Media.Color)
{
cell.DataType = CellValues.String;
var color = (System.Windows.Media.Color)value;
if (_currentStyleSheet == null)
{
WorkbookPart wbPart = _document.WorkbookPart;
WorkbookStylesPart stylesPart = wbPart.WorkbookStylesPart;
_currentStyleSheet = stylesPart.Stylesheet;
}
var fill = new Fill(new PatternFill(
new ForegroundColor()
{
Rgb = new DocumentFormat.OpenXml.HexBinaryValue()
{
Value = new ColorConverter().ConvertToString(color).Replace("#", ""),
},
},
new BackgroundColor()
{
Rgb = new DocumentFormat.OpenXml.HexBinaryValue()
{
Value = new ColorConverter().ConvertToString(color).Replace("#", ""),
},
})
{
PatternType = PatternValues.Solid,
});
if (_currentStyleSheet.Fills == null)
{
_currentStyleSheet.Fills = new Fills();
}
_currentStyleSheet.Fills.Append(fill);
_currentStyleSheet.CellFormats.Append(new CellFormat()
{
ApplyFill = true,
FillId = _currentStyleSheet.Fills.Count,
NumberFormatId = (DocumentFormat.OpenXml.UInt32Value)0U,
FontId = (DocumentFormat.OpenXml.UInt32Value)0U,
BorderId = (DocumentFormat.OpenXml.UInt32Value)0U,
FormatId = (DocumentFormat.OpenXml.UInt32Value)0U,
});
cell.CellValue = new CellValue(String.Empty);
cell.StyleIndex = new DocumentFormat.OpenXml.UInt32Value(_currentStyleSheet.CellFormats.Count);
_currentStyleSheet.CellFormats.Count++;
_currentStyleSheet.Fills.Count++;
}
if (append)
{
row.Append(cell);
}
}
private WorksheetPart GetWorkSheetPart(String sheetName)
{
var sheet = _document.WorkbookPart.Workbook.Descendants<Sheet>().FirstOrDefault(x => x.Name.Value == sheetName);
string relId = sheet.Id;
return (WorksheetPart)_document.WorkbookPart.GetPartById(relId);
}
private string GetCellReference(DefinedName name, int rowIndex)
{
Regex rowPatern = new Regex("^.*\\!\\$(.*)\\$\\d*$");
Match match = rowPatern.Match(name.Text);
String s = match.Groups[1].Value + rowIndex.ToString();
return s;
}
/// <summary>
/// In case a sheet has a table with unknown rows update the size of the table . For example newRef="A1:B328" where 328 is count of rows table included header.
/// </summary>
/// <param name="sheetName">Name of the sheet.</param>
/// <param name="newRef">The new reference.</param>
public void UpdateTableSize( string sheetName, string newRef)
{
WorksheetPart work_sheet_part = GetWorkSheetPart(sheetName);
if (work_sheet_part.TableDefinitionParts != null)
{
TableDefinitionPart tableDefinitionPart = work_sheet_part.TableDefinitionParts.FirstOrDefault();
if (tableDefinitionPart == null)
return;
Table excelTable = tableDefinitionPart.Table;
if(excelTable != null)
{
excelTable.Reference = newRef;
}
}
}
public void Dispose()
{
_document.Save();
_stream.Dispose();
}
}
}
|