forked from giuspen/cherrytree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathctdb.py
638 lines (608 loc) · 32 KB
/
ctdb.py
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
# -*- coding: UTF-8 -*-
#
# ctdb.py
#
# Copyright 2009-2019 Giuseppe Penone <[email protected]>
#
# 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 3 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., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
import gtk
import os, sqlite3, xml.dom.minidom, re, time
import cons, machines, support, exports
class CTDBHandler:
"""Handler of the CherryTree DataBase"""
def __init__(self, dad):
"""CherryTree DataBase boot"""
self.dad = dad
self.nodes_to_write_dict = {}
self.nodes_to_rm_set = set()
self.bookmarks_to_write = False
self.remove_at_quit_set = set()
self.is_vacuum = False
self.db_tables_check_done = False
def reset(self):
"""Reset Variables"""
self.nodes_to_write_dict = {}
self.nodes_to_rm_set.clear()
self.bookmarks_to_write = False
self.remove_at_quit_set.clear()
def pending_data_write(self, db):
"""Write pending data"""
need_to_commit = False
if self.bookmarks_to_write:
self.write_db_bookmarks(db)
need_to_commit = True
self.bookmarks_to_write = False
for node_id_to_write in self.nodes_to_write_dict:
#print "node_id_to_write", node_id_to_write
write_dict = self.nodes_to_write_dict[node_id_to_write]
tree_iter = self.dad.get_tree_iter_from_node_id(node_id_to_write)
node_sequence = self.dad.treestore[tree_iter][5]
father_iter = self.dad.treestore.iter_parent(tree_iter)
node_father_id = 0 if not father_iter else self.dad.treestore[father_iter][3]
self.write_db_node(db, tree_iter, node_sequence, node_father_id, write_dict)
need_to_commit = True
self.nodes_to_write_dict.clear()
for node_to_rm in self.nodes_to_rm_set:
self.remove_db_node_n_children(db, node_to_rm)
need_to_commit = True
self.nodes_to_rm_set.clear()
if need_to_commit: db.commit()
elif not self.is_vacuum: print "Writing DB Data but No Updates Found"
if self.is_vacuum:
print "vacuum"
db.execute('VACUUM')
db.execute('REINDEX')
def get_image_db_tuple(self, image_element, node_id):
"""From image element to db tuple"""
offset = image_element[0]
pixbuf = image_element[1]
justification = image_element[2]
pixbuf_attrs = dir(pixbuf)
if "anchor" in pixbuf_attrs:
filename = ""
link = ""
anchor = (pixbuf.anchor).decode(cons.STR_UTF8)
png_blob = None
time = 0
elif "filename" in pixbuf_attrs:
filename = (pixbuf.filename).decode(cons.STR_UTF8)
link = ""
anchor = ""
png_blob = buffer(pixbuf.embfile)
time = pixbuf.time
else:
filename = ""
try: link = (pixbuf.link).decode(cons.STR_UTF8)
except: link = ""
anchor = ""
png_blob = machines.get_blob_buffer_from_pixbuf(pixbuf)
time = 0
return (node_id, offset, justification, anchor, png_blob, filename, link, time)
def get_table_db_tuple(self, table_element, node_id):
"""From table element to db tuple"""
offset = table_element[0]
table_dict = table_element[1]
justification = table_element[2]
col_min = table_dict['col_min']
col_max = table_dict['col_max']
table_dom = xml.dom.minidom.Document()
dom_iter = table_dom.createElement("table")
table_dom.appendChild(dom_iter)
for row in table_dict['matrix']:
dom_row = table_dom.createElement("row")
dom_iter.appendChild(dom_row)
for cell in row:
dom_cell = table_dom.createElement("cell")
dom_row.appendChild(dom_cell)
text_iter = table_dom.createTextNode(cell)
dom_cell.appendChild(text_iter)
txt = (table_dom.toxml()).decode(cons.STR_UTF8)
return (node_id, offset, justification, txt, col_min, col_max)
def get_codebox_db_tuple(self, codebox_element, node_id):
"""From codebox element to db tuple"""
offset = codebox_element[0]
codebox_dict = codebox_element[1]
justification = codebox_element[2]
txt = codebox_dict['fill_text'].decode(cons.STR_UTF8)
syntax = codebox_dict['syntax_highlighting']
width = codebox_dict['frame_width']
height = codebox_dict['frame_height']
is_width_pix = codebox_dict['width_in_pixels']
do_highl_bra = codebox_dict['highlight_brackets']
do_show_linenum = codebox_dict['show_line_numbers']
return (node_id, offset, justification, txt, syntax,
width, height, is_width_pix, do_highl_bra, do_show_linenum)
def get_connected_db_from_dbpath(self, dbpath):
"""Returns DB connection descriptor given the dbpath"""
db = sqlite3.connect(dbpath)
db.row_factory = sqlite3.Row
return db
def new_db(self, dbpath, exporting="", sel_range=None):
"""Create a new DataBase"""
if os.path.isfile(dbpath): os.remove(dbpath)
db = self.get_connected_db_from_dbpath(dbpath)
db.execute(cons.TABLE_NODE_CREATE)
db.execute(cons.TABLE_CODEBOX_CREATE)
db.execute(cons.TABLE_TABLE_CREATE)
db.execute(cons.TABLE_IMAGE_CREATE)
db.execute(cons.TABLE_CHILDREN_CREATE)
db.execute(cons.TABLE_BOOKMARK_CREATE)
self.write_db_full(db, exporting, sel_range)
db.commit()
return db
def write_db_bookmarks(self, db):
"""Write all the bookmarks in DB"""
db.execute('DELETE FROM bookmark')
sequence = 0
for bookmark_str in self.dad.bookmarks:
sequence += 1
bookmark_tuple = (int(bookmark_str), sequence)
db.execute('INSERT INTO bookmark VALUES(?,?)', bookmark_tuple)
def pending_edit_db_bookmarks(self):
"""Pending Bookmarks Update"""
if self.dad.filetype not in ["b", "x", ""]: return
if not self.dad.user_active: return
print "pending_edit_db_bookmarks"
self.bookmarks_to_write = True
def pending_edit_db_node_prop(self, node_id):
"""Pending Node Needs 'prop' Update"""
if self.dad.filetype not in ["b", "x", ""]: return
if not self.dad.user_active: return
print "pending_edit_db_node_prop", node_id
if node_id in self.nodes_to_write_dict:
self.nodes_to_write_dict[node_id]['prop'] = True
else:
write_dict = {'upd': True, 'prop': True, 'buff': False, 'hier': False, 'child': False}
self.nodes_to_write_dict[node_id] = write_dict
def pending_edit_db_node_buff(self, node_id, force_user_active=False):
"""Pending Node Needs 'buff' Update"""
if self.dad.filetype not in ["b", "x", ""]: return
if not self.dad.user_active and not force_user_active: return
print "pending_edit_db_node_buff", node_id
if node_id in self.nodes_to_write_dict:
self.nodes_to_write_dict[node_id]['buff'] = True
else:
write_dict = {'upd': True, 'prop': False, 'buff': True, 'hier': False, 'child': False}
self.nodes_to_write_dict[node_id] = write_dict
def pending_edit_db_node_hier(self, node_id):
"""Pending Node Needs 'hier' Update"""
if self.dad.filetype not in ["b", "x", ""]: return
if not self.dad.user_active: return
print "pending_edit_db_node_hier", node_id
if node_id in self.nodes_to_write_dict:
self.nodes_to_write_dict[node_id]['hier'] = True
else:
write_dict = {'upd': True, 'prop': False, 'buff': False, 'hier': True, 'child': False}
self.nodes_to_write_dict[node_id] = write_dict
def pending_new_db_node(self, node_id):
"""Pending Add a Node to DB"""
if self.dad.filetype not in ["b", "x", ""]: return
print "pending_new_db_node", node_id
write_dict = {'upd': False, 'prop': True, 'buff': True, 'hier': True, 'child': False}
self.nodes_to_write_dict[node_id] = write_dict
def pending_rm_db_node(self, node_id):
"""Pending RM a Node from DB"""
if self.dad.filetype not in ["b", "x", ""]: return
if not self.dad.user_active: return
print "pending_rm_db_node", node_id
if node_id in self.nodes_to_write_dict:
# no need to write changes to a node that got to be removed
del self.nodes_to_write_dict[node_id]
self.nodes_to_rm_set.add(node_id)
#print self.nodes_to_rm_set
def remove_db_node_n_children(self, db, node_id):
"""Remove a Node and his children from DB"""
db.execute('DELETE FROM codebox WHERE node_id=?', (node_id,))
db.execute('DELETE FROM grid WHERE node_id=?', (node_id,))
db.execute('DELETE FROM image WHERE node_id=?', (node_id,))
db.execute('DELETE FROM node WHERE node_id=?', (node_id,))
db.execute('DELETE FROM children WHERE node_id=?', (node_id,))
children_node_ids = self.get_children_node_ids_from_father_id(db, node_id)
for child_node_id in children_node_ids:
self.remove_db_node_n_children(db, child_node_id)
def db_tables_execute_check(self, db):
curr_cols_num_node = len(db.execute('PRAGMA table_info(node)').fetchall())
if curr_cols_num_node == 11:
db.execute('ALTER TABLE node ADD COLUMN ts_creation INTEGER')
db.execute('ALTER TABLE node ADD COLUMN ts_lastsave INTEGER')
print "table 'node' alter from 11"
curr_cols_num_image = len(db.execute('PRAGMA table_info(image)').fetchall())
if curr_cols_num_image == 5:
db.execute('ALTER TABLE image ADD COLUMN filename TEXT')
db.execute('ALTER TABLE image ADD COLUMN link TEXT')
db.execute('ALTER TABLE image ADD COLUMN time INTEGER')
print "table 'image' alter from 5"
elif curr_cols_num_image == 7:
db.execute('ALTER TABLE image ADD COLUMN time INTEGER')
print "table 'image' alter from 7"
def write_db_node(self, db, tree_iter, sequence, node_father_id, write_dict, exporting="", sel_range=None):
"""Write a node in DB"""
node_id = self.dad.treestore[tree_iter][3]
print "write node content, node_id", node_id, ", write_dict", write_dict
name = self.dad.treestore[tree_iter][1].decode(cons.STR_UTF8)
syntax = self.dad.treestore[tree_iter][4]
tags = self.dad.treestore[tree_iter][6].decode(cons.STR_UTF8)
# is_ro (bitfield)
is_ro = self.dad.treestore[tree_iter][9] << 1
if self.dad.treestore[tree_iter][7]:
is_ro |= 0x01
# is_richtxt (bitfield)
is_richtxt = 0x01 if syntax == cons.RICH_TEXT_ID else 0x00
if support.get_pango_is_bold(self.dad.treestore[tree_iter][10]):
is_richtxt |= 0x02
foreground = self.dad.treestore[tree_iter][11]
if foreground:
is_richtxt |= 0x04
is_richtxt |= exports.rgb_int24bit_from_str(foreground[1:]) << 3
ts_creation = self.dad.treestore[tree_iter][12]
ts_lastsave = self.dad.treestore[tree_iter][13]
if not self.db_tables_check_done:
self.db_tables_execute_check(db)
self.db_tables_check_done = True
if write_dict['buff']:
if not self.dad.treestore[tree_iter][2]:
# we are using db storage and the buffer was not created yet
if exporting: self.read_db_node_content(tree_iter, self.dad.db)
else: self.read_db_node_content(tree_iter, self.dad.db_old)
curr_buffer = self.dad.treestore[tree_iter][2]
if not sel_range:
start_iter = curr_buffer.get_start_iter()
end_iter = curr_buffer.get_end_iter()
else:
start_iter = curr_buffer.get_iter_at_offset(sel_range[0])
end_iter = curr_buffer.get_iter_at_offset(sel_range[1])
if (is_richtxt & 0x01):
# prepare xml dom node
if "dom" in dir(self): del self.dom
self.dom = xml.dom.minidom.Document()
dom_iter = self.dom.createElement("node")
self.dom.appendChild(dom_iter)
# init attributes
self.curr_attributes = {}
for tag_property in cons.TAG_PROPERTIES: self.curr_attributes[tag_property] = ""
# go!
curr_iter = start_iter.copy()
self.dad.xml_handler.rich_text_attributes_update(curr_iter, self.curr_attributes)
tag_found = curr_iter.forward_to_tag_toggle(None)
while tag_found:
self.dad.xml_handler.rich_txt_serialize(dom_iter, start_iter, curr_iter, self.curr_attributes, dom=self.dom)
if curr_iter.compare(end_iter) >= 0: break
else:
self.dad.xml_handler.rich_text_attributes_update(curr_iter, self.curr_attributes)
offset_old = curr_iter.get_offset()
start_iter.set_offset(offset_old)
tag_found = curr_iter.forward_to_tag_toggle(None)
if curr_iter.get_offset() == offset_old: break
else: self.dad.xml_handler.rich_txt_serialize(dom_iter, start_iter, curr_iter, self.curr_attributes, dom=self.dom)
# time for the objects
if write_dict['upd']:
db.execute('DELETE FROM codebox WHERE node_id=?', (node_id,))
db.execute('DELETE FROM grid WHERE node_id=?', (node_id,))
db.execute('DELETE FROM image WHERE node_id=?', (node_id,))
pixbuf_table_codebox_vector = self.dad.state_machine.get_embedded_pixbufs_tables_codeboxes(curr_buffer, sel_range=sel_range)
# pixbuf_table_codebox_vector is [ [ "pixbuf"/"table"/"codebox", [offset, pixbuf, alignment] ],... ]
codeboxes_tuples = []
tables_tuples = []
images_tuples = []
for element in pixbuf_table_codebox_vector:
if sel_range: element[1][0] -= sel_range[0]
if element[0] == "pixbuf": images_tuples.append(self.get_image_db_tuple(element[1], node_id))
elif element[0] == "table": tables_tuples.append(self.get_table_db_tuple(element[1], node_id))
elif element[0] == "codebox": codeboxes_tuples.append(self.get_codebox_db_tuple(element[1], node_id))
if codeboxes_tuples:
has_codebox = 1
db.executemany('INSERT INTO codebox VALUES(?,?,?,?,?,?,?,?,?,?)', codeboxes_tuples)
else: has_codebox = 0
if tables_tuples:
has_table = 1
db.executemany('INSERT INTO grid VALUES(?,?,?,?,?,?)', tables_tuples)
else: has_table = 0
if images_tuples:
has_image = 1
db.executemany('INSERT INTO image VALUES(?,?,?,?,?,?,?,?)', images_tuples)
else: has_image = 0
# retrieve xml text
txt = (self.dom.toxml()).decode(cons.STR_UTF8)
else:
# not richtext
has_codebox = 0
has_table = 0
has_image = 0
txt = (start_iter.get_text(end_iter)).decode(cons.STR_UTF8)
if write_dict['prop'] and write_dict['buff']:
if write_dict['upd']:
db.execute('DELETE FROM node WHERE node_id=?', (node_id,))
node_tuple = (node_id, name, txt, syntax, tags,
is_ro, is_richtxt, has_codebox, has_table, has_image,
0, ts_creation, ts_lastsave) # TODO remove the column 'level'
db.execute('INSERT INTO node VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)', node_tuple)
elif write_dict['buff']:
db.execute('UPDATE node SET txt=?, syntax=?, is_richtxt=?, has_codebox=?, has_table=?, has_image=?, ts_lastsave=? WHERE node_id=?', (txt, syntax, is_richtxt, has_codebox, has_table, has_image, ts_lastsave, node_id))
elif write_dict['prop']:
db.execute('UPDATE node SET name=?, syntax=?, tags=?, is_ro=?, is_richtxt=? WHERE node_id=?', (name, syntax, tags, is_ro, is_richtxt, node_id))
if write_dict['hier']:
if write_dict['upd']:
db.execute('DELETE FROM children WHERE node_id=?', (node_id,))
db.execute('INSERT INTO children VALUES(?,?,?)', (node_id, node_father_id, sequence))
if not write_dict['child']: return
# let's take care about the children
child_tree_iter = self.dad.treestore.iter_children(tree_iter)
child_sequence = 0
while child_tree_iter != None:
child_sequence += 1
self.write_db_node(db, child_tree_iter, child_sequence, node_id, write_dict, exporting)
child_tree_iter = self.dad.treestore.iter_next(child_tree_iter)
def write_db_full(self, db, exporting="", sel_range=None):
"""Write the whole DB"""
if not exporting or exporting == "a": tree_iter = self.dad.treestore.get_iter_first()
else: tree_iter = self.dad.curr_tree_iter
sequence = 0
node_father_id = 0
write_dict = {'upd': False, 'prop': True, 'buff': True, 'hier': True, 'child': exporting != "n"}
while tree_iter != None:
sequence += 1
self.write_db_node(db, tree_iter, sequence, node_father_id, write_dict, exporting, sel_range)
if not exporting or exporting == "a": tree_iter = self.dad.treestore.iter_next(tree_iter)
else: break
if not exporting or exporting == "a": self.write_db_bookmarks(db)
if not exporting:
self.bookmarks_to_write = False
self.nodes_to_rm_set.clear()
self.nodes_to_write_dict.clear()
self.dad.objects_buffer_refresh()
def add_node_codebox(self, codebox_row, text_buffer):
"""Add Codebox to Text Buffer"""
iter_insert = text_buffer.get_iter_at_offset(codebox_row['offset'])
codebox_dict = {
'frame_width': codebox_row['width'],
'frame_height': codebox_row['height'],
'width_in_pixels': bool(codebox_row['is_width_pix']),
'syntax_highlighting': codebox_row['syntax'],
'highlight_brackets': bool(codebox_row['do_highl_bra']),
'show_line_numbers': bool(codebox_row['do_show_linenum']),
'fill_text': codebox_row['txt']
}
self.dad.codeboxes_handler.codebox_insert(iter_insert,
codebox_dict,
codebox_justification=codebox_row['justification'],
text_buffer=text_buffer)
def add_node_table(self, table_row, text_buffer):
"""Add Table to Text Buffer"""
iter_insert = text_buffer.get_iter_at_offset(table_row['offset'])
table_dict = {
'matrix': [],
'col_min': table_row['col_min'],
'col_max': table_row["col_max"]
}
try: dom = xml.dom.minidom.parseString(table_row['txt'])
except:
print "** failed to parse **"
print table_row['txt']
return
dom_node = dom.firstChild
if not dom_node or dom_node.nodeName != "table":
print "** table name != 'table' **"
print table_row['txt']
return
child_dom_iter = dom_node.firstChild
while child_dom_iter != None:
if child_dom_iter.nodeName == "row":
table_dict['matrix'].append([])
nephew_dom_iter = child_dom_iter.firstChild
while nephew_dom_iter != None:
if nephew_dom_iter.nodeName == "cell":
if nephew_dom_iter.firstChild != None:
table_dict['matrix'][-1].append(nephew_dom_iter.firstChild.data)
else: table_dict['matrix'][-1].append("")
nephew_dom_iter = nephew_dom_iter.nextSibling
child_dom_iter = child_dom_iter.nextSibling
self.dad.tables_handler.table_insert(iter_insert,
table_dict,
table_justification=table_row['justification'],
text_buffer=text_buffer)
def add_node_image(self, image_row, text_buffer):
"""Add Image to Text Buffer"""
iter_insert = text_buffer.get_iter_at_offset(image_row['offset'])
if image_row['anchor']:
pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(cons.ANCHOR_CHAR, self.dad.anchor_size, self.dad.anchor_size)
pixbuf.anchor = image_row['anchor']
elif 'filename' in image_row.keys() and image_row['filename']:
pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(cons.FILE_CHAR, self.dad.embfile_size, self.dad.embfile_size)
pixbuf.filename = image_row['filename']
pixbuf.embfile = image_row['png']
pixbuf.time = image_row['time'] if 'time' in image_row.keys() else 0
else:
pixbuf = machines.get_pixbuf_from_png_blob_buffer(image_row['png'])
pixbuf.link = image_row['link'] if 'link' in image_row.keys() else ""
if pixbuf:
self.dad.image_insert(iter_insert,
pixbuf,
image_justification=image_row['justification'],
text_buffer=text_buffer)
def read_db_node_content(self, tree_iter, db, original_id=None, discard_ids=None):
"""Read a node content from DB"""
if self.dad.user_active:
self.dad.user_active = False
user_active_restore = True
else: user_active_restore = False
syntax_highlighting = self.dad.treestore[tree_iter][4]
if original_id is not None: node_id = original_id
else: node_id = self.dad.treestore[tree_iter][3]
#print "read node content, node_id", node_id
self.dad.treestore[tree_iter][2] = self.dad.buffer_create(syntax_highlighting)
curr_buffer = self.dad.treestore[tree_iter][2]
node_row = db.execute('SELECT txt, has_codebox, has_table, has_image FROM node WHERE node_id=?', (node_id,)).fetchone()
if syntax_highlighting != cons.RICH_TEXT_ID:
curr_buffer.begin_not_undoable_action()
curr_buffer.set_text(node_row['txt'])
curr_buffer.end_not_undoable_action()
else:
# first we go for the rich text
rich_text_xml = re.sub(cons.BAD_CHARS, "", node_row['txt'])
try: dom = xml.dom.minidom.parseString(rich_text_xml)
except:
print "** failed to parse **"
print node_row['txt']
if user_active_restore: self.dad.user_active = True
return
dom_node = dom.firstChild
if not dom_node or dom_node.nodeName != "node":
print "** node name != 'node' **"
print node_row['txt']
if user_active_restore: self.dad.user_active = True
return
child_dom_iter = dom_node.firstChild
while child_dom_iter != None:
if child_dom_iter.nodeName == "rich_text":
self.dad.xml_handler.rich_text_deserialize(curr_buffer, child_dom_iter, discard_ids)
child_dom_iter = child_dom_iter.nextSibling
# then we go for the objects
objects_index_list = []
if node_row['has_codebox']:
codeboxes_rows = db.execute('SELECT * FROM codebox WHERE node_id=? ORDER BY offset ASC', (node_id,)).fetchall()
for i, c_row in enumerate(codeboxes_rows):
objects_index_list.append(['c', i, c_row['offset']])
if node_row['has_table']:
tables_rows = db.execute('SELECT * FROM grid WHERE node_id=? ORDER BY offset ASC', (node_id,)).fetchall()
for i, t_row in enumerate(tables_rows):
new_obj_idx_elem = ['t', i, t_row['offset']]
for j, obj_idx in enumerate(objects_index_list):
if new_obj_idx_elem[2] < obj_idx[2]:
objects_index_list.insert(j, new_obj_idx_elem)
break
else: objects_index_list.append(new_obj_idx_elem)
if node_row['has_image']:
images_rows = db.execute('SELECT * FROM image WHERE node_id=? ORDER BY offset ASC', (node_id,)).fetchall()
for i, i_row in enumerate(images_rows):
new_obj_idx_elem = ['i', i, i_row['offset']]
for j, obj_idx in enumerate(objects_index_list):
if new_obj_idx_elem[2] < obj_idx[2]:
objects_index_list.insert(j, new_obj_idx_elem)
break
else: objects_index_list.append(new_obj_idx_elem)
if objects_index_list:
self.dad.sourceview.set_buffer(curr_buffer)
for obj_idx in objects_index_list:
if obj_idx[0] == 'c': self.add_node_codebox(codeboxes_rows[obj_idx[1]], curr_buffer)
elif obj_idx[0] == 't': self.add_node_table(tables_rows[obj_idx[1]], curr_buffer)
else: self.add_node_image(images_rows[obj_idx[1]], curr_buffer)
self.dad.sourceview.set_buffer(self.dad.curr_buffer)
curr_buffer.set_modified(False)
if user_active_restore: self.dad.user_active = True
def get_children_node_ids_from_father_id(self, db, father_id):
"""Returns the children node_ids given the father_id"""
children_rows = db.execute('SELECT node_id FROM children WHERE father_id=? ORDER BY sequence ASC', (father_id,)).fetchall()
return [child_row['node_id'] for child_row in children_rows]
def get_node_row_partial_from_id(self, db, node_id):
"""Returns the (partial) node row given the node_id"""
try:
node_row = db.execute('SELECT name, syntax, tags, is_ro, is_richtxt, ts_creation, ts_lastsave FROM node WHERE node_id=?', (node_id,)).fetchone()
except:
node_row = db.execute('SELECT name, syntax, tags, is_ro, is_richtxt FROM node WHERE node_id=?', (node_id,)).fetchone()
return node_row
def read_db_node_n_children(self, db, original_id, node_row, tree_father, discard_ids, node_sequence):
"""Read a node and his children from DB"""
if discard_ids is None:
unique_id = original_id
else:
unique_id = self.dad.node_id_get(original_id, discard_ids)
node_tags = node_row['tags']
if node_tags: self.dad.tags_add_from_node(node_tags)
# is_ro (bitfield)
readonly_n_custom_icon_id = node_row['is_ro']
readonly = readonly_n_custom_icon_id & 0x01
custom_icon_id = readonly_n_custom_icon_id >> 1
# is_richtxt (bitfield)
richtxt_bold_foreground = node_row['is_richtxt']
is_bold = (richtxt_bold_foreground >> 1) & 0x01
fg_override = (richtxt_bold_foreground >> 2) & 0x01
if fg_override:
foreground = exports.rgb_str_from_int24bit((richtxt_bold_foreground >> 3) & 0xffffff)
else:
foreground = None
syntax_highlighting = node_row['syntax']
if syntax_highlighting not in [cons.RICH_TEXT_ID, cons.PLAIN_TEXT_ID]\
and syntax_highlighting not in self.dad.available_languages:
syntax_highlighting = syntax_highlighting.lower().replace("C++", "cpp")
if syntax_highlighting not in self.dad.available_languages:
syntax_highlighting = cons.RICH_TEXT_ID
node_level = self.dad.treestore.iter_depth(tree_father)+1 if tree_father else 0
cherry = self.dad.get_node_icon(node_level, syntax_highlighting, custom_icon_id)
try:
ts_creation = node_row['ts_creation']
ts_lastsave = node_row['ts_lastsave']
except IndexError:
ts_creation = None
ts_lastsave = None
if not ts_creation: ts_creation = 0
if not ts_lastsave: ts_lastsave = 0
#print "added node with unique_id", unique_id
# insert the node containing the buffer into the tree
tree_iter = self.dad.treestore.append(tree_father, [cherry,
node_row['name'],
None, # no buffer for now
unique_id,
syntax_highlighting,
node_sequence,
node_tags,
readonly,
None,
custom_icon_id,
support.get_pango_weight(is_bold),
foreground,
ts_creation,
ts_lastsave])
self.dad.update_node_aux_icon(tree_iter)
self.dad.nodes_names_dict[self.dad.treestore[tree_iter][3]] = self.dad.treestore[tree_iter][1]
if discard_ids is not None:
# we are importing (=> adding) a node
self.pending_new_db_node(unique_id)
self.read_db_node_content(tree_iter, db, original_id, discard_ids)
# loop for child nodes
child_sequence = 0
children_node_ids = self.get_children_node_ids_from_father_id(db, original_id)
for child_node_id in children_node_ids:
child_node_row = self.get_node_row_partial_from_id(db, child_node_id)
if child_node_row:
child_sequence += 1
self.read_db_node_n_children(db,
child_node_id,
child_node_row,
tree_iter,
discard_ids,
child_sequence)
def read_db_full(self, db, discard_ids, tree_father=None):
"""Read the whole DB"""
self.db_tables_check_done = False
# bookmarks
bookmarks_rows = db.execute('SELECT * FROM bookmark ORDER BY sequence ASC').fetchall()
for bookmark_row in bookmarks_rows:
node_id = bookmark_row['node_id']
self.dad.bookmarks.append(str(node_id))
# tree nodes
node_sequence = 0
children_node_ids = self.get_children_node_ids_from_father_id(db, 0)
for child_node_id in children_node_ids:
child_node_row = self.get_node_row_partial_from_id(db, child_node_id)
if child_node_row:
node_sequence += 1
self.read_db_node_n_children(db,
child_node_id,
child_node_row,
tree_father,
discard_ids,
node_sequence)
self.dad.nodes_sequences_fix(tree_father, False)