summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/templatelayout.h
blob: 2f2c728d6eec5fc0346f0dab6fa726d28f254608 (plain) (blame)
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
// SPDX-License-Identifier: GPL-2.0
#ifndef TEMPLATELAYOUT_H
#define TEMPLATELAYOUT_H

#include <QStringList>
#include "mainwindow.h"
#include "printoptions.h"
#include "core/statistics.h"
#include "core/qthelper.h"
#include "core/subsurface-qt/diveobjecthelper.h"
#include "core/subsurface-qt/cylinderobjecthelper.h" // TODO: remove once grantlee supports Q_GADGET objects

int getTotalWork(const print_options &printOptions);
void find_all_templates();
void set_bundled_templates_as_read_only();
void copy_bundled_templates(QString src, QString dst, QStringList *templateBackupList);

enum token_t {LITERAL, FORSTART, FORSTOP, BLOCKSTART, BLOCKSTOP, IFSTART, IFSTOP, PARSERERROR};

struct token {
	enum token_t type;
	QString contents;
};

extern QList<QString> grantlee_templates, grantlee_statistics_templates;

struct YearInfo {
	stats_t *year;
};

class TemplateLayout : public QObject {
	Q_OBJECT
public:
	TemplateLayout(const print_options &printOptions, const template_options &templateOptions);
	QString generate();
	QString generateStatistics();
	static QString readTemplate(QString template_name);
	static void writeTemplate(QString template_name, QString grantlee_template);

private:
	struct State {
		QList<DiveObjectHelperGrantlee> dives;
		QList<YearInfo> years;
		QMap<QString, QString> types;
		int forloopiterator = -1;
		const DiveObjectHelperGrantlee *currentDive = nullptr;
		const YearInfo *currentYear = nullptr;
		const QString *currentCylinder = nullptr;
		const CylinderObjectHelper *currentCylinderObject = nullptr;
	};
	const print_options &printOptions;
	const template_options &templateOptions;
	QList<token> lexer(QString input);
	void parser(QList<token> tokenList, int from, int to, QTextStream &out, State &state);
	template<typename V, typename T>
	void parser_for(QList<token> tokenList, int from, int to, QTextStream &out, State &state, const V &data, const T *&act);
	QVariant getValue(QString list, QString property, const State &state);
	QString translate(QString s, State &state);

signals:
	void progressUpdated(int value);
};

#endif