aboutsummaryrefslogtreecommitdiff
path: root/core/src/Model/Template/TableTemplate.cpp
blob: 88980aee296eef28363de1376c33fd4c2e6381c9 (plain)
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#include "TableTemplate.hpp"

#include <xlsxwriter.h>
#include <iostream>
#include <map>

bool TableCell::IsDataHoldingCell() const
{
	return IsPrimaryCell() || !IsMergedCell();
}

bool TableCell::IsPrimaryCell() const
{
	return PrimaryCellLocation == Location;
}

bool TableCell::IsMergedCell() const
{
	return PrimaryCellLocation.x == -1 || PrimaryCellLocation.y == -1;
}

Vec2i TableCellArrayGroup::GetLeftCell() const
{
	return { Row, LeftCell };
}

Vec2i TableCellArrayGroup::GetRightCell() const
{
	return { Row, RightCell };
}

int TableCellArrayGroup::GetCount() const
{
	return RightCell - LeftCell + 1;
}

Vec2i TableCellArrayGroup::FindCell(std::string_view name)
{
}

TableInstantiationParameters::TableInstantiationParameters(const TableTemplate& table)
	: mTable{ &table }
{
}

TableInstantiationParameters& TableInstantiationParameters::ResetTable(const TableTemplate& newTable)
{
	mTable = &newTable;
	return *this;
}

TableInstantiationParameters TableInstantiationParameters::RebindTable(const TableTemplate& newTable) const
{
	TableInstantiationParameters result(newTable);
	result.SingularCells = this->SingularCells;
	result.ArrayGroups = this->ArrayGroups;
	return result;
}

const TableTemplate& TableInstantiationParameters::GetTable() const
{
	return *mTable;
}

bool TableTemplate::IsInstance(const Template* tmpl)
{
	return tmpl->GetKind() == KD_Table;
}

TableTemplate::TableTemplate()
	: Template(KD_Table)
{
}

int TableTemplate::GetTableWidth() const
{
	return mColumnWidths.size();
}

int TableTemplate::GetTableHeight() const
{
	return mRowHeights.size();
}

void TableTemplate::Resize(int newWidth, int newHeight)
{
	// TODO this doesn't gracefully handle resizing to a smaller size which trims some merged cells

	std::vector<TableCell> cells;
	cells.reserve(newWidth * newHeight);

	int tableWidth = GetTableWidth();
	int tableHeight = GetTableHeight();

	for (int y = 0; y < newHeight; ++y) {
		if (y >= tableHeight) {
			for (int x = 0; x < newWidth; ++x) {
				cells.push_back(TableCell{});
			}
			continue;
		}

		for (int x = 0; x < newWidth; ++x) {
			if (x >= tableWidth) {
				cells.push_back(TableCell{});
			} else {
				auto& cell = GetCell({ x, y });
				cells.push_back(std::move(cell));
			}
		}
	}

	mCells = std::move(cells);
	mColumnWidths.resize(newWidth, 80);
	mRowHeights.resize(newHeight, 20);
}

int TableTemplate::GetRowHeight(int row) const
{
	return mRowHeights[row];
}

void TableTemplate::SetRowHeight(int row, int height)
{
	mRowHeights[row] = height;
}

int TableTemplate::GetColumnWidth(int column) const
{
	return mColumnWidths[column];
}

void TableTemplate::SetColumnWidth(int column, int width)
{
	mColumnWidths[column] = width;
}

const TableCell& TableTemplate::GetCell(Vec2i pos) const
{
	int tableWidth = GetTableWidth();
	return mCells[pos.y * tableWidth + pos.x];
}

TableCell& TableTemplate::GetCell(Vec2i pos)
{
	return const_cast<TableCell&>(const_cast<const TableTemplate*>(this)->GetCell(pos));
}

void TableTemplate::SetCellType(Vec2i pos, TableCell::CellType type)
{
	auto& cell = GetCell(pos);
	if (cell.Type == type) {
		return;
	}

	switch (type) {
		case TableCell::ConstantCell: {
			// TODO
		} break;

		case TableCell::SingularParametricCell: {
			cell.Type = type;
		} break;

		// Setting the cell to be a part of a group requires calling the overload that supplies the group
		case TableCell::ArrayParametricCell: break;
	}
}

int TableTemplate::GetArrayGroupCount() const
{
	return mArrayGroups.size();
}

const TableCellArrayGroup& TableTemplate::GetArrayGroup(int id) const
{
	return mArrayGroups[id];
}

TableCellArrayGroup& TableTemplate::GetArrayGroup(int id)
{
	return mArrayGroups[id];
}

TableCellArrayGroup& TableTemplate::AddArrayGroup(int row, int left, int right)
{
	assert(row >= 0 && row < GetTableHeight());
	assert(left >= 0 && left < GetTableWidth());
	assert(right >= 0 && right < GetTableWidth());

	// TODO check for overlap

	if (left > right) {
		std::swap(left, right);
	}

	mArrayGroups.push_back(TableCellArrayGroup{
		.Row = row,
		.LeftCell = left,
		.RightCell = right,
	});
	return mArrayGroups.back();
}

bool TableTemplate::ExtendArrayGroupLeft(int id, int n)
{
	assert(n > 0);

	auto& ag = mArrayGroups[id];
	ag.LeftCell -= n;

	return false;
}

bool TableTemplate::ExtendArrayGroupRight(int id, int n)
{
	assert(n > 0);

	auto& ag = mArrayGroups[id];
	ag.RightCell += n;

	return false;
}

TableCell* TableTemplate::FindCell(std::string_view name)
{
	auto iter = mName2Parameters.find(name);
	if (iter != mName2Parameters.end()) {
		return &mCells[iter.value()];
	} else {
		return nullptr;
	}
}

TableCellArrayGroup* TableTemplate::FindArrayGroup(std::string_view name)
{
	auto iter = mName2ArrayGroups.find(name);
	if (iter != mName2ArrayGroups.end()) {
		return &mArrayGroups[iter.value()];
	} else {
		return nullptr;
	}
}

TableTemplate::MergeCellsResult TableTemplate::MergeCells(Vec2i topLeft, Vec2i bottomRight)
{
	auto SortTwo = [](int& a, int& b) {
		if (a > b) {
			std::swap(a, b);
		}
	};
	SortTwo(topLeft.x, bottomRight.x);
	SortTwo(topLeft.y, bottomRight.y);

	auto ResetProgress = [&]() {
		for (int y = topLeft.y; y < bottomRight.y; ++y) {
			for (int x = topLeft.x; x < bottomRight.x; ++x) {
				auto& cell = GetCell({ x, y });
				cell.PrimaryCellLocation = { -1, -1 };
			}
		}
	};

	for (int y = topLeft.y; y < bottomRight.y; ++y) {
		for (int x = topLeft.x; x < bottomRight.x; ++x) {
			auto& cell = GetCell({ x, y });
			if (cell.IsMergedCell()) {
				ResetProgress();
				return MCR_CellAlreadyMerged;
			}

			cell.PrimaryCellLocation = topLeft;
		}
	}

	auto& primaryCell = GetCell(topLeft);
	primaryCell.SpanX = bottomRight.x - topLeft.x;
	primaryCell.SpanY = bottomRight.y - topLeft.y;

	return MCR_Success;
}

TableTemplate::BreakCellsResult TableTemplate::BreakCells(Vec2i topLeft)
{
	auto& primaryCell = GetCell(topLeft);
	if (!primaryCell.IsMergedCell()) {
		return BCR_CellNotMerged;
	}

	for (int dy = 0; dy < primaryCell.SpanY; ++dy) {
		for (int dx = 0; dx < primaryCell.SpanX; ++dx) {
			auto& cell = GetCell({ topLeft.x + dx, topLeft.y + dy });
			cell.PrimaryCellLocation = { -1, -1 };
		}
	}

	primaryCell.SpanX = 1;
	primaryCell.SpanY = 1;

	return BCR_Success;
}

lxw_workbook* TableTemplate::InstantiateToExcelWorkbook(const TableInstantiationParameters& params) const
{
	auto workbook = workbook_new("Table.xlsx");
	InstantiateToExcelWorksheet(workbook, params);
	return workbook;
}

lxw_worksheet* TableTemplate::InstantiateToExcelWorksheet(lxw_workbook* workbook, const TableInstantiationParameters& params) const
{
	auto worksheet = workbook_add_worksheet(workbook, "CpltExport.xlsx");

	// Map: row number -> length of generated ranges
	std::map<int, int> generatedRanges;

	for (size_t i = 0; i < mArrayGroups.size(); ++i) {
		auto& info = mArrayGroups[i];
		auto& param = params.ArrayGroups[i];

		auto iter = generatedRanges.find(i);
		if (iter != generatedRanges.end()) {
			int available = iter->second;
			if (available >= param.size()) {
				// Current space is enough to fit in this array group, skip
				continue;
			}
		}

		// Not enough space to fit in this array group, update (or insert) the appropriate amount of generated rows
		int row = i;
		int count = param.size();
		generatedRanges.try_emplace(row, count);
	}

	auto GetOffset = [&](int y) -> int {
		// std::find_if <values less than y>
		int verticalOffset = 0;
		for (auto it = generatedRanges.begin(); it != generatedRanges.end() && it->first < y; ++it) {
			verticalOffset += it->second;
		}
		return verticalOffset;
	};

	auto WriteCell = [&](int row, int col, const TableCell& cell, const char* text) -> void {
		if (cell.IsPrimaryCell()) {
			int lastRow = row + cell.SpanY - 1;
			int lastCol = col + cell.SpanX - 1;
			// When both `string` and `format` are null, the top-left cell contents are untouched (what we just wrote in the above switch)
			worksheet_merge_range(worksheet, row, col, lastRow, lastCol, text, nullptr);
		} else {
			worksheet_write_string(worksheet, row, col, text, nullptr);
		}
	};

	// Write/instantiate all array groups
	for (size_t i = 0; i < mArrayGroups.size(); ++i) {
		auto& groupInfo = mArrayGroups[i];
		auto& groupParams = params.ArrayGroups[i];

		int rowCellCount = groupInfo.GetCount();
		int rowCount = groupParams.size();
		int baseRowIdx = groupInfo.Row + GetOffset(groupInfo.Row);

		// For each row that would be generated
		for (int rowIdx = 0; rowIdx < rowCount; ++rowIdx) {
			auto& row = groupParams[rowIdx];

			// For each cell in the row
			for (int rowCellIdx = 0; rowCellIdx < rowCellCount; ++rowCellIdx) {
				// TODO support merged cells in array groups
				worksheet_write_string(worksheet, baseRowIdx + rowIdx, rowCellIdx, row[rowCellIdx].c_str(), nullptr);
			}
		}
	}

	int tableWidth = GetTableWidth();
	int tableHeight = GetTableHeight();

	// Write all regular and singular parameter cells
	for (int y = 0; y < tableHeight; ++y) {
		for (int x = 0; x < tableWidth; ++x) {
			auto& cell = GetCell({ x, y });

			if (!cell.IsDataHoldingCell()) {
				continue;
			}

			switch (cell.Type) {
				case TableCell::ConstantCell: {
					int row = y + GetOffset(y);
					int col = x;

					WriteCell(row, col, cell, cell.Content.c_str());
				} break;

				case TableCell::SingularParametricCell: {
					int row = y + GetOffset(y);
					int col = x;

					auto iter = params.SingularCells.find({ x, y });
					if (iter != params.SingularCells.end()) {
						WriteCell(row, col, cell, iter.value().c_str());
					}
				} break;

				// See loop above that processes whole array groups at the same time
				case TableCell::ArrayParametricCell: break;
			}
		}
	}

	return worksheet;
}
Template::ReadResult TableTemplate::ReadFrom(std::istream& stream)
{
	// TODO
	return ReadResult::RR_Success;
}

void TableTemplate::WriteTo(std::ostream& stream) const
{
	// TODO
}