summaryrefslogtreecommitdiff
path: root/src/backend/db_sqlite.h
blob: fb04c0062fad4698fb939898d92e23bb5771e129 (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
#ifndef BACKEND_DB_SQLITE_H
#define BACKEND_DB_SQLITE_H

#include <QString>
#include <QStringList>

#include "../entry.h"
#include "../group.h"
#include "../rule.h"

// TODO rewrite to be a class (see difference between ::addDatabase and ::database)

namespace BackendDB {
	const QStringList create_table_queries = {
		"CREATE TABLE groups ("
			"id INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE NOT NULL,"
			"name VARCHAR(255) NOT NULL,"
			"column TINYINT(1) DEFAULT FALSE,"
			"link VARCHAR(255) NOT NULL,"
			"hidden TINYINT(1) DEFAULT FALSE"
			")",
		"CREATE TABLE entries ("
			"id INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE NOT NULL,"
			"parent_id REFERENCES groups (id),"
			"description VARCHAR(255) NOT NULL,"
			"due_date TEXT DEFAULT NULL,"
			"alt_due_date VARCHAR(255) DEFAULT NULL,"
			"link VARCHAR(255) DEFAULT NULL,"
			"color VARCHAR(255) DEFAULT NULL,"
			"highlight VARCHAR(255) DEFAULT NULL,"
			"done TINYINT(1) DEFAULT FALSE,"
			"hidden TINYINT(1) DEFAULT FALSE"
			")",
		"CREATE TABLE rules ("
			"id INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE NOT NULL,"
			"entry_id REFERENCES entries (id),"
			"before_after TINYINT(1) DEFAULT TRUE,"
			"date TEXT NOT NULL,"
			"color VARCHAR(255) DEFAULT NULL,"
			"highlight VARCHAR(255) DEFAULT NULL"
			")"
	};

	void init();
	QList<Group *> loadGroups();
	QList<Entry *> loadEntries();
	QList<Rule *> loadRules();
	int insertGroup(const Group &new_group); // param datatype TBD
	int insertEntry(int new_entry); // param datatype TBD
	int insertRule(int new_rule); // param datatype TBD
	void updateGroup(int group); // param datatype TBD
	void updateEntry(int entry); // param datatype TBD
	void updateRule(int rule); // param datatype TBD
	void removeGroup(int group); // param datatype TBD
	void removeEntry(int entry); // param datatype TBD
	void removeRule(int rule); // param datatype TBD
	void cleanHidden();
};

#endif