-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatahandler.py
More file actions
384 lines (316 loc) · 12 KB
/
datahandler.py
File metadata and controls
384 lines (316 loc) · 12 KB
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
# !/usr/bin/env python3
# -*- coding: utf-8 -*-
""" A class for easier data access """
# Imports
import os # Miscellaneous operating system interfaces
import sqlite3 # DB-API 2.0 interface for SQLite databases
# A class for easier data access
class DataHandler(object):
# Initialization
def __init__(self):
# Declare variables
self.correctionmodes = ["All", "RegEx", "Replace", "Word"] # Modes
self.error = "" # String for errors
self.database = None # Database name
self.rowid = 0 # Row ID
# Open database
def open(self, filepath):
# Check file path
if not filepath:
self.error = "Unable to open database. File path is not valid."
return False
# Check if file path is empty
if filepath == "":
self.error = "Unable to open database. File path is empty."
return False
# File path should be an existing regular file
if not os.path.isfile(filepath):
self.error = "Unable to open database. File path is not a file."
return False
# Check file extension
ext = os.path.splitext(filepath)[1][1:].lower()
if ext != "db":
self.error = "Unable to open database. File extension is not valid."
return False
# Fetch appinfo
try:
connection = sqlite3.connect(filepath)
cursor = connection.cursor()
cursor.execute("SELECT name FROM appinfo WHERE id=1")
name = cursor.fetchone()
connection.close()
if name[0] != "bwReplacer":
self.database = None
self.error = "Not a valid database: " + filepath
return False
except:
self.database = None
self.error = "Unable to open database: " + filepath
return False
else:
self.database = filepath
return True
# Count rows
def count(self, table):
# Check for database
if not self.database:
self.error = "No database opened."
return False
try:
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
# Check if table exists
query = "SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND \
name='%s'" % (table)
cursor.execute(query)
tablecount = int(cursor.fetchone()[0])
if tablecount < 1:
self.error = "Table does not exist in database: " + table
return False
# Count table rows
query = "SELECT COUNT(*) FROM '%s'" % (table)
cursor.execute(query)
count = int(cursor.fetchone()[0])
connection.close()
except:
return False
else:
return count
# Create a new database
def create_database(self, name):
# Empty the error message string
self.error = ""
# Check against an empty name
if name == "":
self.error = "Database name cannot be empty."
return False
# Add extension if necessary
if not name.endswith(".db"):
name += ".db"
# Check if file already exists
if os.path.isfile(name):
self.error = "Database with that name already exists."
return False
self.database = None
# Try to create, connect and set up database
try:
connection = sqlite3.connect(name)
cursor = connection.cursor()
# Create tables
cursor.execute("CREATE TABLE appinfo (id INTEGER PRIMARY KEY \
AUTOINCREMENT, name TEXT)")
cursor.execute("CREATE TABLE lists (id INTEGER PRIMARY \
KEY AUTOINCREMENT, selected INT, name TEXT, \
comment TEXT)")
cursor.execute("CREATE TABLE corrections (id INTEGER PRIMARY KEY \
AUTOINCREMENT, mode INT, list INT, variations INT, error TEXT, \
correction TEXT, comment TEXT)")
cursor.execute("INSERT INTO appinfo (name) VALUES ('bwReplacer')")
connection.commit()
except:
self.database = None
self.error = "Unable to setup database tables."
return False
else:
self.database = name
connection.close()
return True
# Delete row
def delete(self, id, table):
# Check for database
if not self.database:
self.error = "No database opened."
return False
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
# Execute SQL-query based on table
if table == "lists":
cursor.execute("DELETE FROM lists WHERE id=?", \
(int(id),))
elif table == "corrections":
cursor.execute("DELETE FROM corrections WHERE id=?", (int(id),))
else:
self.error = "Unknow table: " + table
return False
# Check if any rows were affected
if cursor.rowcount < 1:
self.error = "Row does not exist. ID: " + str(id)
return False
# Commit changes and close connection
connection.commit()
connection.close()
return True
# Get correction
def get_correction(self, id=None, name=None):
# Check for database
if not self.database:
self.error = "No database opened."
return False
# Fetch list by id or name
try:
if id:
id = int(id)
query = "SELECT * FROM corrections WHERE id=%s" % (id)
elif name:
name = str(name)
query = "SELECT * FROM corrections WHERE name='%s'" % (name)
else:
return None
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
cursor.execute(query)
list = cursor.fetchone()
connection.close()
except:
return None
else:
return list
# Get corrections
def get_corrections(self, modes=[], lists=[], search=""):
# Check for database
if not self.database:
self.error = "No database opened."
return False
try:
query = "SELECT * FROM corrections"
useand = False
if modes or lists or search:
query += " WHERE"
if modes:
useand = True
modes = ",".join(map(str, modes))
query += " mode IN (%s)" % (modes)
if lists:
useand = True
if useand:
query += " AND"
lists = ",".join(map(str, lists))
query += " list IN (%s)" % (lists)
if search:
if useand:
query += " AND"
query += " (error LIKE '%" + search + "%' OR correction LIKE \
'%" + search + "%' OR comment LIKE '%" + search + "%')"
query += " ORDER BY mode,error"
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
cursor.execute(query)
rows = cursor.fetchall()
connection.close()
except:
return
else:
return rows
# Get list
def get_list(self, id=None, index=None):
# Check for database
if not self.database:
self.error = "No database opened."
return False
# Fetch list by id or name
try:
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
if id != None:
id = int(id)
query = "SELECT * FROM lists WHERE id=%s" % (id)
cursor.execute(query)
list = cursor.fetchone()
elif index != None:
index = int(index)
query = "SELECT * FROM lists ORDER BY id"
cursor.execute(query)
rows = cursor.fetchall()
list = None
for i, row in enumerate(rows):
if index == i:
list = row
else:
return None
except:
connection.close()
return None
else:
connection.close()
return list
# Get lists
def get_lists(self):
# Check for database
if not self.database:
self.error = "No database opened."
return False
try:
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
query = "SELECT * FROM lists ORDER BY id"
cursor.execute(query)
rows = cursor.fetchall()
connection.close()
except:
return None
else:
return rows
# Insert row
def insert(self, table, values):
self.error = ""
# Check for database
if not self.database:
self.error = "No database opened."
return False
try:
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
# Execute SQL-query based on table
if table == "lists":
cursor.execute("INSERT INTO lists (selected, name, comment) \
VALUES (?, ?, ?)", (int(values[0]), str(values[1]), \
str(values[2])))
elif table == "corrections":
cursor.execute("INSERT INTO corrections (mode, \
list, variations, error, correction, comment) VALUES \
(?, ?, ?, ?, ?, ?)", (int(values[0]), int(values[1]), \
int(values[2]), str(values[3]), str(values[4]), \
str(values[5])))
else:
self.error = "Unknow table: " + table
return False
self.rowid = int(cursor.lastrowid)
# Commit changes and close connection
connection.commit()
connection.close()
except:
self.message = "Unable to insert row to database table: " + table
return False
else:
return True
# Update row
def update(self, table, values):
# Check for database
if not self.database:
self.error = "No database opened."
return False
try:
connection = sqlite3.connect(self.database)
cursor = connection.cursor()
# Execute SQL-query based on table
if table == "lists":
cursor.execute("UPDATE lists SET selected=?, name=?, comment=? \
WHERE id=?", (int(values[1]), str(values[2]), \
str(values[3]), int(values[0])))
elif table == "corrections":
cursor.execute("UPDATE corrections SET mode=?, list=?, \
variations=?, error=?, correction=?, comment=? \
WHERE id=?", (int(values[1]), int(values[2]), \
int(values[3]), str(values[4]), str(values[5]), \
str(values[6]), int(values[0])))
else:
self.error = "Unknow table: " + table
return False
# Commit changes and close connection
connection.commit()
connection.close()
except:
self.message = "Unable to update row in database table: " + table
return False
else:
return True