aboutsummaryrefslogtreecommitdiff
path: root/core/src/UI/UI_DatabaseView.cpp
blob: bc458da3d3a63a2234556fbf7a8c343c679ee5ff (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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
#include "UI.hpp"

#include "Model/Filter.hpp"
#include "Model/Project.hpp"
#include "UI/Localization.hpp"
#include "UI/States.hpp"
#include "Utils/ScopeGuard.hpp"
#include "Utils/Time.hpp"

#include <IconsFontAwesome.h>
#include <SQLiteCpp/Statement.h>
#include <imgui.h>
#include <tsl/robin_map.h>
#include <cstdint>
#include <iostream>
#include <memory>
#include <vector>

namespace {

// TODO move to Settings
constexpr int kMaxEntriesPerPage = 20;

enum class DeliveryDirection
{
	FactoryToWarehouse,
	WarehouseToCustomer,
};

struct DeliveryEntry
{
	std::string ShipmentTime;
	std::string ArriveTime;
	DeliveryDirection Direction;

	const char* StringifyDirection() const
	{
		switch (Direction) {
			case DeliveryDirection::FactoryToWarehouse: return "Factory to warehouse";
			case DeliveryDirection::WarehouseToCustomer: return "Warehouse to customer";
		}
	}
};

class GenericTableView
{
protected:
	// Translation entries for implementer to fill out
	const char* mEditDialogTitle;

	SQLite::Statement* mGetRowCountStatement;
	SQLite::Statement* mGetRowsStatement;
	SQLite::Statement* mFilterRowsStatement;

	Project* mProject;

	/// Current active filter object, or \c nullptr.
	std::unique_ptr<TableRowsFilter> mActiveFilter;

	/// Inclusive.
	/// \see mLastCachedRowId
	int64_t mFirstCachedRowId;
	/// Inclusive.
	/// \see mFirstCachedRowId
	int64_t mLastCachedRowId;

	/// A vector of row ids of entries (in \c mEntries) that are visible under the current filter. To use these indices, the elements should be mapped to
	/// index of the list of entries by adding \c mFirstCachedRowId.
	/// The list of entries is a cached, contiguous (row id of each entry is monotonically increasing, but not necessarily starts at 0) list
	/// of ready-to-be-presented entries, held by the implementer.
	std::vector<int> mActiveEntries;

	/// Number of rows in the table.
	int mRowCount;
	/// Last possible page for the current set table and filter (inclusive).
	int mLastPage;
	/// The current page the user is on.
	int mCurrentPage;

	int mSelectedEntryRowId;

public:
	static int CalcPageForRowId(int64_t rowId)
	{
		return rowId / kMaxEntriesPerPage;
	}

	/// Calculate range [begin, end) of index for the list of entries that are currently visible that the path-th page would show.
	/// i.e. when there is a filter, look into \c mActiveEntryIndices; when there is no filter, use directly.
	static std::pair<int64_t, int64_t> CalcRangeForPage(int page)
	{
		int begin = page * kMaxEntriesPerPage;
		return { begin, begin + kMaxEntriesPerPage };
	}

	Project* GetProject() const
	{
		return mProject;
	}

	virtual void OnProjectChanged(Project* newProject)
	{
		mProject = newProject;

		if (mGetRowCountStatement->executeStep()) {
			mRowCount = mGetRowCountStatement->getColumn(0).getInt();
		} else {
			std::cerr << "Failed to fetch row count from SQLite.\n";
			mRowCount = 0;
		}

		mFirstCachedRowId = 0;
		mLastCachedRowId = 0;

		ClearEntries();
		mActiveEntries.clear();

		UpdateLastPage();
		SetPage(0);

		mSelectedEntryRowId = -1;
	}

	TableRowsFilter* GetFilter() const
	{
		return mActiveFilter.get();
	}

	virtual void OnFilterChanged()
	{
		auto& stmt = *mFilterRowsStatement;
		DEFER
		{
			stmt.reset();
		};

		// TODO lazy loading when too many results
		mActiveEntries.clear();
		int columnIdx = stmt.getColumnIndex("rowid");
		while (stmt.executeStep()) {
			mActiveEntries.push_back(stmt.getColumn(columnIdx).getInt());
		}

		UpdateLastPage();
		SetPage(0);

		mSelectedEntryRowId = -1;
	}

	void OnFilterChanged(std::unique_ptr<TableRowsFilter> filter)
	{
		mActiveFilter = std::move(filter);
		OnFilterChanged();
	}

	void Draw()
	{
		bool dummy = true;
		auto ls = LocaleStrings::Instance.get();

		if (ImGui::Button(ICON_FA_ARROW_LEFT, mCurrentPage == 0)) {
			mSelectedEntryRowId = -1;
			SetPage(mCurrentPage - 1);
		}

		ImGui::SameLine();
		// +1 to convert from 0-based indices to 1-based, for human legibility
		ImGui::Text("%d/%d", mCurrentPage + 1, mLastPage + 1);

		ImGui::SameLine();
		if (ImGui::Button(ICON_FA_ARROW_RIGHT, mCurrentPage == mLastPage)) {
			mSelectedEntryRowId = -1;
			SetPage(mCurrentPage + 1);
		}

		ImGui::SameLine();
		if (ImGui::Button(ls->Edit.Get(), mSelectedEntryRowId == -1)) {
			ImGui::OpenPopup(mEditDialogTitle);
		}
		if (ImGui::BeginPopupModal(mEditDialogTitle, &dummy, ImGuiWindowFlags_AlwaysAutoResize)) {
			EditEntry(mSelectedEntryRowId);
			ImGui::EndPopup();
		}

		ImGui::SameLine();
		if (ImGui::Button(ls->Add.Get())) {
			// TODO
		}

		if (mSelectedEntryRowId == -1) {
			DrawMainTable();
		} else {
			// TODO better layout
			DrawMainTable();
			ImGui::SameLine();
			DrawDeliveriesTable();
		}
	}

	void DrawMainTable()
	{
		if (ImGui::BeginTable("DataTable", GetTableColumnCount(), ImGuiTableFlags_ScrollX)) {
			SetupTableColumns();
			ImGui::TableHeadersRow();

			auto [begin, end] = CalcRangeForPage(mCurrentPage);
			if (mActiveFilter) {
				end = std::min(end, (int64_t)mActiveEntries.size() - 1);
				for (int i = begin; i < end; ++i) {
					int rowId = mActiveEntries[i];
					DisplayEntry(rowId);
				}
			} else {
				end = std::min(end, mLastCachedRowId);
				for (int rowId = begin; rowId < end; ++rowId) {
					DisplayEntry(rowId);
				}
			}

			ImGui::EndTable();
		}
	}

	void DrawDeliveriesTable()
	{
		if (ImGui::BeginTable("DeliveriesTable", 2)) {

			ImGui::TableSetupColumn("Shipment time");
			ImGui::TableSetupColumn("Arrival time");
			ImGui::TableHeadersRow();

			auto& deliveries = GetEntryAssociatedDeliveries(mSelectedEntryRowId);
			for (auto& delivery : deliveries) {
				ImGui::TableNextRow();

				ImGui::TableNextColumn();
				ImGui::TextUnformatted(delivery.ShipmentTime.c_str());

				ImGui::TableNextColumn();
				ImGui::TextUnformatted(delivery.ArriveTime.c_str());
			}

			ImGui::EndTable();
		}
	}

	void SetPage(int page)
	{
		mCurrentPage = page;
		EnsureCacheCoversPage(page);
	}

	int RowIdToIndex(int64_t rowId) const
	{
		return rowId - mFirstCachedRowId;
	}

	int64_t IndexToRowId(int index) const
	{
		return index + mFirstCachedRowId;
	}

	std::vector<DeliveryEntry> LoadDeliveriesEntries(int64_t orderRowId, DeliveryDirection type)
	{
		bool outgoingFlag;
		switch (type) {
			case DeliveryDirection::FactoryToWarehouse: outgoingFlag = false; break;
			case DeliveryDirection::WarehouseToCustomer: outgoingFlag = true; break;
		}

		auto& stmt = mProject->GetTransactionsModel().GetDeliveries().FilterByTypeAndId;
		DEFER
		{
			stmt.reset();
		};

		stmt.bind(1, orderRowId);
		stmt.bind(2, static_cast<int>(type));

		std::vector<DeliveryEntry> entries;
		int sendTimeCol = stmt.getColumnIndex("ShipmentTime");
		int arrivalTimeCol = stmt.getColumnIndex("ArrivalTime");
		while (stmt.executeStep()) {
			entries.push_back(DeliveryEntry{
				.ShipmentTime = StringifyTimeStamp(stmt.getColumn(arrivalTimeCol).getInt64()),
				.ArriveTime = StringifyTimeStamp(stmt.getColumn(sendTimeCol).getInt64()),
				.Direction = type,
			});
		}

		return entries;
	}

protected:
	virtual int GetTableColumnCount() const = 0;
	virtual void SetupTableColumns() = 0;

	virtual const std::vector<DeliveryEntry>& GetEntryAssociatedDeliveries(int rowId) = 0;
	virtual void DisplayEntry(int rowId) = 0;
	virtual void EditEntry(int rowId) = 0;

	virtual void ClearEntries() = 0;

	void EnsureCacheCoversPage(int page)
	{
		auto [begin, end] = CalcRangeForPage(page);
		EnsureCacheCovers(begin, end - 1);
	}

	void EnsureCacheCovers(int64_t firstRow, int64_t lastRow)
	{
		if (firstRow > lastRow) {
			std::swap(firstRow, lastRow);
		}

		int newFirst = mFirstCachedRowId;
		int newLast = mLastCachedRowId;

		bool doRebuild = false;
		if (firstRow < mFirstCachedRowId) {
			newFirst = (CalcPageForRowId(firstRow) + 1) * kMaxEntriesPerPage;
			doRebuild = true;
		}
		if (lastRow > mLastCachedRowId) {
			newLast = (CalcPageForRowId(lastRow) + 1) * kMaxEntriesPerPage;
			doRebuild = true;
		}
		if (!doRebuild) return;

		EnsureCacheCoversImpl(newFirst, newLast);
	}

	/// To be implemented by child classes, presumable calling LoadRange() to get the front and back new contents.
	/// \param newFirst The first rowid the new cache should cover
	/// \param newLast The last rowid the new cache should cover
	virtual void EnsureCacheCoversImpl(int newFirst, int newLast) = 0;

	template <class TEntry, class TCollector>
	void LoadExtraEntries(std::vector<TEntry>& entries, int newFirst, int newLast, TCollector&& collector)
	{
		auto front = LoadRange<TEntry>(newFirst, mFirstCachedRowId, collector);
		auto back = LoadRange<TEntry>(mLastCachedRowId + 1, newLast + 1, collector);

		mFirstCachedRowId -= front.size();
		mLastCachedRowId += back.size();

		entries.insert(entries.begin(), std::make_move_iterator(front.begin()), std::make_move_iterator(front.end()));
		entries.insert(entries.end(), std::make_move_iterator(back.begin()), std::make_move_iterator(back.end()));
	}

	template <class TEntry, class TCollector>
	std::vector<TEntry> LoadRange(int64_t begin, int64_t end, TCollector&& collector)
	{
		std::vector<TEntry> result;

		size_t size = end - begin;
		if (size == 0) {
			return result;
		}

		result.reserve(size);

		DEFER
		{
			mGetRowsStatement->reset();
		};
		mGetRowsStatement->bind(1, begin);
		mGetRowsStatement->bind(2, end);

		collector(result);
		return result;
	}

private:
	void UpdateLastPage()
	{
		mLastPage = mActiveEntries.empty()
			? CalcPageForRowId(mRowCount)
			: CalcPageForRowId(mActiveEntries.back());
	}
};

class SaleEntry
{
public:
	std::vector<DeliveryEntry> AssociatedDeliveries;
	std::string Customer;
	std::string Deadline;
	std::string DeliveryTime;
	bool DeliveriesCached = false;
};

class SalesTableView : public GenericTableView
{
private:
	/// A cached, contiguous (row id of each entry is monotonically increasing, but not necessarily starts at 0) list ready-to-be-presented entries. May be incomplete.
	std::vector<SaleEntry> mEntries;

public:
	SalesTableView()
	{
		auto ls = LocaleStrings::Instance.get();
		mEditDialogTitle = ls->EditSaleEntryDialogTitle.Get();
	}

	virtual void OnProjectChanged(Project* newProject) override
	{
		auto& sales = newProject->GetTransactionsModel().GetSales();
		mGetRowCountStatement = &sales.GetRowCount;
		mGetRowsStatement = &sales.GetRows;
		//		mFilterRowsStatement = &sales.FilterRows;

		GenericTableView::OnProjectChanged(newProject);
	}

protected:
	virtual int GetTableColumnCount() const override
	{
		return 3;
	}

	virtual void SetupTableColumns() override
	{
		auto ls = LocaleStrings::Instance.get();
		ImGui::TableSetupColumn(ls->DatabaseCustomerColumn.Get());
		ImGui::TableSetupColumn(ls->DatabaseDeadlineColumn.Get());
		ImGui::TableSetupColumn(ls->DatabaseDeliveryTimeColumn.Get());
	}

	virtual const std::vector<DeliveryEntry>& GetEntryAssociatedDeliveries(int rowId) override
	{
		auto& entry = mEntries[RowIdToIndex(rowId)];
		if (!entry.DeliveriesCached) {
			entry.AssociatedDeliveries = LoadDeliveriesEntries(rowId, DeliveryDirection::FactoryToWarehouse);
			entry.DeliveriesCached = true;
		}
		return entry.AssociatedDeliveries;
	}

	virtual void DisplayEntry(int rowId) override
	{
		auto& entry = mEntries[RowIdToIndex(rowId)];
		auto ls = LocaleStrings::Instance.get();

		ImGui::PushID(rowId);
		ImGui::TableNextRow();

		ImGui::TableNextColumn();
		if (ImGui::Selectable(entry.Customer.c_str(), mSelectedEntryRowId == rowId, ImGuiSelectableFlags_SpanAllColumns)) {
			mSelectedEntryRowId = rowId;
		}

		ImGui::TableNextColumn();
		ImGui::TextUnformatted(entry.Deadline.c_str());

		ImGui::TableNextColumn();
		if (entry.DeliveryTime.empty()) {
			ImGui::TextUnformatted(ls->NotDelievered.Get());
		} else {
			ImGui::TextUnformatted(entry.DeliveryTime.c_str());
		}

		ImGui::PopID();
	}

	virtual void EditEntry(int rowId) override
	{
		// `TODO`
	}

	virtual void ClearEntries() override
	{
		mEntries.clear();
	}

	virtual void EnsureCacheCoversImpl(int newFirst, int newLast) override
	{
		auto CollectRows = [&](std::vector<SaleEntry>& result) {
			auto& stmt = *mGetRowsStatement;
			int customerCol = stmt.getColumnIndex("Customer");
			int deadlineCol = stmt.getColumnIndex("Deadline");
			int deliveryTimeCol = stmt.getColumnIndex("DeliveryTime");

			while (stmt.executeStep()) {
				auto customer = stmt.getColumn(customerCol).getInt();
				auto deadline = stmt.getColumn(deadlineCol).getInt64();
				auto deliveryTime = stmt.getColumn(deliveryTimeCol).getInt64();
				result.push_back(SaleEntry{
					.Customer = mProject->Customers.Find(customer)->GetName(),
					.Deadline = StringifyTimeStamp(deadline),
					.DeliveryTime = StringifyTimeStamp(deliveryTime),
				});
			}
		};

		LoadExtraEntries<SaleEntry>(mEntries, newFirst, newLast, CollectRows);
	}
};

class PurchaseEntry
{
public:
	std::vector<DeliveryEntry> AssociatedDeliveries;
	std::string Factory;
	std::string OrderTime;
	std::string DeliveryTime;
	bool DeliveriesCached;
};

class PurchasesTableView : public GenericTableView
{
private:
	std::vector<PurchaseEntry> mEntries;

public:
	PurchasesTableView()
	{
		auto ls = LocaleStrings::Instance.get();
		mEditDialogTitle = ls->EditPurchaseEntryDialogTitle.Get();
	}

	virtual void OnProjectChanged(Project* newProject) override
	{
		auto& purchases = newProject->GetTransactionsModel().GetPurchases();
		mGetRowCountStatement = &purchases.GetRowCount;
		mGetRowsStatement = &purchases.GetRows;
		//		mFilterRowsStatement = &purchases.FilterRowsStatement;

		GenericTableView::OnProjectChanged(newProject);
	}

protected:
	virtual int GetTableColumnCount() const override
	{
		return 3;
	}

	virtual void SetupTableColumns() override
	{
		auto ls = LocaleStrings::Instance.get();
		ImGui::TableSetupColumn(ls->DatabaseFactoryColumn.Get());
		ImGui::TableSetupColumn(ls->DatabaseOrderTimeColumn.Get());
		ImGui::TableSetupColumn(ls->DatabaseDeliveryTimeColumn.Get());
	}

	virtual const std::vector<DeliveryEntry>& GetEntryAssociatedDeliveries(int rowId) override
	{
		auto& entry = mEntries[RowIdToIndex(rowId)];
		if (!entry.DeliveriesCached) {
			entry.AssociatedDeliveries = LoadDeliveriesEntries(rowId, DeliveryDirection::FactoryToWarehouse);
			entry.DeliveriesCached = true;
		}
		return entry.AssociatedDeliveries;
	}

	virtual void DisplayEntry(int rowId) override
	{
		auto& entry = mEntries[RowIdToIndex(rowId)];
		auto ls = LocaleStrings::Instance.get();

		ImGui::PushID(rowId);
		ImGui::TableNextRow();

		ImGui::TableNextColumn();
		if (ImGui::Selectable(entry.Factory.c_str(), mSelectedEntryRowId == rowId, ImGuiSelectableFlags_SpanAllColumns)) {
			mSelectedEntryRowId = rowId;
		}

		ImGui::TableNextColumn();
		if (entry.OrderTime.empty()) {
			ImGui::TextUnformatted(ls->NotDelievered.Get());
		} else {
			ImGui::TextUnformatted(entry.OrderTime.c_str());
		}

		ImGui::TableNextColumn();
		if (entry.DeliveryTime.empty()) {
			ImGui::TextUnformatted(ls->NotDelievered.Get());
		} else {
			ImGui::TextUnformatted(entry.DeliveryTime.c_str());
		}

		ImGui::PopID();
	}

	virtual void EditEntry(int rowId) override
	{
		// TODO
	}

	virtual void ClearEntries() override
	{
		mEntries.clear();
	}

	virtual void EnsureCacheCoversImpl(int newFirst, int newLast) override
	{
		auto CollectRows = [&](std::vector<PurchaseEntry>& result) {
			auto& stmt = *mGetRowsStatement;
			int factoryCol = stmt.getColumnIndex("Factory");
			int orderTimeCol = stmt.getColumnIndex("OrderTime");
			int deliveryTimeCol = stmt.getColumnIndex("DeliveryTime");

			while (stmt.executeStep()) {
				auto factory = stmt.getColumn(factoryCol).getInt();
				auto orderTime = stmt.getColumn(orderTimeCol).getInt64();
				auto deliveryTime = stmt.getColumn(deliveryTimeCol).getInt64();
				result.push_back(PurchaseEntry{
					.Factory = mProject->Factories.Find(factory)->GetName(),
					.OrderTime = StringifyTimeStamp(orderTime),
					.DeliveryTime = StringifyTimeStamp(deliveryTime),
				});
			}
		};

		LoadExtraEntries<PurchaseEntry>(mEntries, newFirst, newLast, CollectRows);
	}
};
} // namespace

void UI::DatabaseViewTab()
{
	auto ls = LocaleStrings::Instance.get();
	auto& uis = UIState::GetInstance();

	static Project* currentProject = nullptr;
	static SalesTableView sales;
	static PurchasesTableView purchases;

	if (currentProject != uis.CurrentProject.get()) {
		currentProject = uis.CurrentProject.get();
		sales.OnProjectChanged(currentProject);
		purchases.OnProjectChanged(currentProject);
	}

	if (ImGui::BeginTabBar("##DatabaseViewTabs")) {
		if (ImGui::BeginTabItem(ls->SalesViewTab.Get())) {
			sales.Draw();
			ImGui::EndTabItem();
		}
		if (ImGui::BeginTabItem(ls->PurchasesViewTab.Get())) {
			purchases.Draw();
			ImGui::EndTabItem();
		}
		ImGui::EndTabBar();
	}
}