-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSnippetsDB.cpp
259 lines (213 loc) · 10.1 KB
/
SnippetsDB.cpp
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
/////////////////////////////////////////////////////////////////////////////
// //
// NppSnippets - Code Snippets plugin for Notepad++ //
// Copyright (C) 2013 Frank Fesevur //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program; if not, write to the Free Software //
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. //
// //
/////////////////////////////////////////////////////////////////////////////
#include <windows.h>
#include "NPP/PluginInterface.h"
#include "NppSnippets.h"
#include "SnippetsDB.h"
#include "Library.h"
#include "WaitCursor.h"
SnippetsDB* g_db = NULL;
/////////////////////////////////////////////////////////////////////////////
//
SnippetsDB::SnippetsDB() : SqliteDatabase()
{
SetValues();
}
SnippetsDB::SnippetsDB(LPCWSTR file) : SqliteDatabase(file)
{
SetValues();
}
/////////////////////////////////////////////////////////////////////////////
// Nothing is set yet
void SnippetsDB::SetValues()
{
}
/////////////////////////////////////////////////////////////////////////////
//
void SnippetsDB::Open()
{
if (_db == NULL)
SqliteDatabase::Open();
// Make sure the database has the right version
if (!CheckDBVersion())
{
throw SqliteException("Database has wrong version, please regenerate!");
return;
}
EnableForeignKeys();
}
/////////////////////////////////////////////////////////////////////////////
//
void SnippetsDB::ImportLibrary(LPCWSTR db, int orgLibID)
{
// Start with attaching the database
Attach(db, L"Import");
// Get requested library from that database
SqliteStatement stmt(this, "SELECT * FROM Import.Library WHERE LibraryID = @id");
stmt.Bind("@id", orgLibID);
if (stmt.GetNextRecord())
{
Library lib(&stmt);
lib.SetLibraryID(0);
lib.SaveToDB(false);
ImportSnippets(orgLibID, lib.GetLibraryID());
ImportLanguages(orgLibID, lib.GetLibraryID());
}
stmt.Finalize();
Detach(L"Import");
}
/////////////////////////////////////////////////////////////////////////////
//
void SnippetsDB::ImportSnippets(int orgLibID, int newLibID)
{
// Get all the snippets from the attached database
SqliteStatement stmt(g_db, "SELECT * FROM Import.Snippets WHERE LibraryID = @libid");
stmt.Bind("@libid", orgLibID);
// Go through the records and save them to the database
Snippet snip;
while (stmt.GetNextRecord())
{
snip.Set(&stmt);
snip.SetSnippetID(0);
snip.SetLibraryID(newLibID);
snip.SaveToDB(false);
}
stmt.Finalize();
}
/////////////////////////////////////////////////////////////////////////////
//
void SnippetsDB::ImportLanguages(int orgLibID, int newLibID)
{
// Get all the languages for this library from the attached database
SqliteStatement stmtSelect(g_db, "SELECT Lang FROM Import.LibraryLang WHERE LibraryID = @libid");
stmtSelect.Bind("@libid", orgLibID);
// Open a select stmt to store the new data in the table
SqliteStatement stmtInsert(g_db, "INSERT INTO LibraryLang(LibraryID, Lang) VALUES (@libid, @lang)");
// Go through the attached records and save them to the database
while (stmtSelect.GetNextRecord())
{
stmtInsert.Bind("@libid", newLibID);
stmtInsert.Bind("@lang", stmtSelect.GetIntColumn(0));
// Put the record in the database
stmtInsert.SaveRecord();
}
stmtSelect.Finalize();
stmtInsert.Finalize();
}
/////////////////////////////////////////////////////////////////////////////
// Create the export database
void SnippetsDB::CreateExportDB()
{
BeginTransaction();
Execute("CREATE TABLE IF NOT EXISTS Export.Library(LibraryID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, Name TEXT NOT NULL, CreatedBy TEXT, Comments TEXT, SortBy INTEGER NOT NULL DEFAULT 0);");
Execute("CREATE TABLE IF NOT EXISTS Export.LibraryLang(LibraryID INTEGER NOT NULL REFERENCES Library(LibraryID) ON DELETE CASCADE ON UPDATE CASCADE, Lang INTEGER NOT NULL, PRIMARY KEY (LibraryID, Lang));");
Execute("CREATE TABLE IF NOT EXISTS Export.Snippets(SnippetID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, LibraryID INTEGER NOT NULL REFERENCES Library(LibraryID) ON DELETE CASCADE ON UPDATE CASCADE, Name TEXT NOT NULL, BeforeSelection TEXT NOT NULL, AfterSelection TEXT, ReplaceSelection BOOL NOT NULL DEFAULT 0, NewDocument BOOL NOT NULL DEFAULT 0, NewDocumentLang INTEGER, Sort INTEGER);");
Execute("CREATE INDEX IF NOT EXISTS Export.SnipName ON Snippets(LibraryID, Name, Sort);");
Execute("CREATE INDEX IF NOT EXISTS Export.SnipSort ON Snippets(LibraryID, Sort, Name);");
Execute("CREATE TABLE IF NOT EXISTS Export.LangLastUsed(Lang INTEGER PRIMARY KEY NOT NULL, LibraryID INTEGER NOT NULL REFERENCES Library(LibraryID) ON DELETE CASCADE ON UPDATE CASCADE);");
CommitTransaction();
// We are at schema version 3
SetUserVersion(3, "Export");
}
/////////////////////////////////////////////////////////////////////////////
// Upgrade the database from schema version 1 to 2
void SnippetsDB::UpgradeDatabase_1_2()
{
// Create the LibraryLang table and fill it
BeginTransaction();
Execute("CREATE TABLE LibraryLang(LibraryID INTEGER NOT NULL REFERENCES Library(LibraryID) ON DELETE CASCADE ON UPDATE CASCADE,Lang INTEGER NOT NULL,LastUsed BOOL NOT NULL DEFAULT 0,PRIMARY KEY (LibraryID, Lang));");
Execute("INSERT INTO LibraryLang SELECT LibraryID, Lang, LastUsed FROM Library;");
CommitTransaction();
// Delete the "Lang" and "LastUsed" column from the Library table
BeginTransaction();
Execute("DROP INDEX LibLang;"); // Index not needed anymore
Execute("CREATE TEMPORARY TABLE Library_backup(LibraryID INTEGER,Name TEXT,CreatedBy TEXT,Comments TEXT,SortBy INTEGER);");
Execute("INSERT INTO Library_backup SELECT LibraryID,Name,CreatedBy,Comments,SortBy FROM Library;");
Execute("DROP TABLE Library;");
Execute("CREATE TABLE Library (LibraryID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,Name TEXT NOT NULL,CreatedBy TEXT,Comments TEXT,SortBy INTEGER NOT NULL DEFAULT 0);");
Execute("INSERT INTO Library SELECT LibraryID,Name,CreatedBy,Comments,SortBy FROM Library_backup;");
Execute("DROP TABLE Library_backup;");
CommitTransaction();
// Throw away these old indices. New ones will be created later
Execute("DROP INDEX SnipName;");
Execute("DROP INDEX SnipSort;");
// Add a primary key table to Snippets
BeginTransaction();
Execute("CREATE TEMPORARY TABLE Snippets_backup(LibraryID INTEGER,Name TEXT,BeforeSelection TEXT,AfterSelection TEXT,ReplaceSelection BOOL,NewDocument BOOL,NewDocumentLang INTEGER,Sort INTEGER);");
Execute("INSERT INTO Snippets_backup SELECT LibraryID,Name,BeforeSelection,AfterSelection,ReplaceSelection,NewDocument,NewDocumentLang,Sort FROM Snippets;");
Execute("DROP TABLE Snippets;");
Execute("CREATE TABLE Snippets(SnippetID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,LibraryID INTEGER NOT NULL REFERENCES Library(LibraryID) ON DELETE CASCADE ON UPDATE CASCADE,Name TEXT NOT NULL,BeforeSelection TEXT NOT NULL,AfterSelection TEXT,ReplaceSelection BOOL NOT NULL DEFAULT 0,NewDocument BOOL NOT NULL DEFAULT 0,NewDocumentLang INTEGER,Sort INTEGER);");
Execute("INSERT INTO Snippets(LibraryID,Name,BeforeSelection,AfterSelection,ReplaceSelection,NewDocument,NewDocumentLang,Sort) SELECT LibraryID,Name,BeforeSelection,AfterSelection,ReplaceSelection,NewDocument,NewDocumentLang,Sort FROM Snippets_backup;");
Execute("DROP TABLE Snippets_backup;");
CommitTransaction();
// Create new indices
Execute("CREATE INDEX SnipName ON Snippets(LibraryID, Name, Sort);");
Execute("CREATE INDEX SnipSort ON Snippets(LibraryID, Sort, Name);");
// We are at schema version 2
SetUserVersion(2);
}
/////////////////////////////////////////////////////////////////////////////
// Upgrade the database from schema version 2 to 3
void SnippetsDB::UpgradeDatabase_2_3()
{
// Add the new tabel to store which library is last used for with language
BeginTransaction();
Execute("CREATE TABLE LangLastUsed(Lang INTEGER PRIMARY KEY NOT NULL,LibraryID INTEGER NOT NULL REFERENCES Library(LibraryID) ON DELETE CASCADE ON UPDATE CASCADE);");
Execute("INSERT INTO LangLastUsed SELECT Lang,LibraryID FROM LibraryLang WHERE LastUsed = 1;");
CommitTransaction();
// Delete the LastUsed column from the LibraryLang table
BeginTransaction();
Execute("CREATE TEMPORARY TABLE LibraryLang_backup(LibraryID INTEGER,Lang INTEGER);");
Execute("INSERT INTO LibraryLang_backup SELECT LibraryID, Lang FROM LibraryLang;");
Execute("DROP TABLE LibraryLang;");
Execute("CREATE TABLE LibraryLang(LibraryID INTEGER NOT NULL REFERENCES Library(LibraryID) ON DELETE CASCADE ON UPDATE CASCADE,Lang INTEGER NOT NULL,PRIMARY KEY (LibraryID, Lang));");
Execute("INSERT INTO LibraryLang SELECT LibraryID, Lang FROM LibraryLang_backup;");
Execute("DROP TABLE LibraryLang_backup;");
CommitTransaction();
// We are at schema version 3
SetUserVersion(3);
}
/////////////////////////////////////////////////////////////////////////////
//
bool SnippetsDB::CheckDBVersion()
{
WaitCursor wait(false);
switch (GetUserVersion())
{
case 0:
// Database probably not found
return false;
case 1:
wait.Show();
UpgradeDatabase_1_2();
// fall through
case 2:
wait.Show();
UpgradeDatabase_2_3();
Vacuum();
// fall through
case 3:
// The right version!
return true;
}
// Running with an newer database!
return false;
}