-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindreplace.py
executable file
·619 lines (593 loc) · 33.8 KB
/
findreplace.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
# -*- coding: UTF-8 -*-
#
# findreplace.py
#
# Copyright 2009-2014 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, gobject
import re
import cons, support, config
class FindReplace:
"""Handler of Bulleted and Numbered Lists"""
def __init__(self, dad):
"""Lists Handler boot"""
self.dad = dad
self.replace_active = False
self.replace_subsequent = False
self.curr_find = [None, ""] # [latest find type, latest find pattern]
self.from_find_iterated = False
self.from_find_back = False
self.newline_trick = False
self.allmatchesdialog_init()
self.iteratedfinddialog = None
def iterated_find_dialog_exist_or_create(self):
"""Exist or Create the Iterated Find Dialog"""
if self.iteratedfinddialog: return
dialog = gtk.Dialog(title=_("Iterate Latest Find/Replace"),
parent=self.dad.window,
flags=gtk.DIALOG_MODAL|gtk.DIALOG_DESTROY_WITH_PARENT,
buttons=(_("Close"), 0,
_("Find"), 4,
_("Find"), 1,
_("Replace"), 2,
_("Undo"), 3) )
dialog.set_position(gtk.WIN_POS_CENTER_ON_PARENT)
try:
button = dialog.get_widget_for_response(0)
button.set_image(gtk.image_new_from_stock(gtk.STOCK_CLOSE, gtk.ICON_SIZE_BUTTON))
button = dialog.get_widget_for_response(4)
button.set_image(gtk.image_new_from_stock("find_back", gtk.ICON_SIZE_BUTTON))
button = dialog.get_widget_for_response(1)
button.set_image(gtk.image_new_from_stock("find_again", gtk.ICON_SIZE_BUTTON))
button = dialog.get_widget_for_response(2)
button.set_image(gtk.image_new_from_stock("find_replace", gtk.ICON_SIZE_BUTTON))
button = dialog.get_widget_for_response(3)
button.set_image(gtk.image_new_from_stock(gtk.STOCK_UNDO, gtk.ICON_SIZE_BUTTON))
except: pass
def on_key_press_iterated_find_dialog(widget, event):
if gtk.gdk.keyval_name(event.keyval) == cons.STR_RETURN:
try: dialog.get_widget_for_response(1).clicked()
except: print cons.STR_PYGTK_222_REQUIRED
return True
return False
dialog.connect("key_press_event", on_key_press_iterated_find_dialog)
self.iteratedfinddialog = dialog
def iterated_find_dialog(self):
"""Iterated Find/Replace Dialog"""
self.iterated_find_dialog_exist_or_create()
response = self.iteratedfinddialog.run()
self.iteratedfinddialog.hide()
if response == 1:
# find forward
self.replace_active = False
self.find_again()
elif response == 2:
# replace
self.replace_active = True
self.replace_subsequent = True
self.find_again()
self.replace_subsequent = False
elif response == 3:
# undo replace
self.dad.requested_step_back()
self.iterated_find_dialog()
elif response == 4:
# find backward
self.find_back()
def find_in_selected_node(self):
"""Search for a pattern in the selected Node"""
entry_hint = ""
if not self.from_find_iterated:
iter_insert = self.dad.curr_buffer.get_iter_at_mark(self.dad.curr_buffer.get_insert())
iter_bound = self.dad.curr_buffer.get_iter_at_mark(self.dad.curr_buffer.get_selection_bound())
entry_predefined_text = self.dad.curr_buffer.get_text(iter_insert, iter_bound)
if entry_predefined_text:
self.dad.search_replace_dict['find'] = entry_predefined_text
if self.replace_active: title = _("Replace in Current Node...")
else: title = _("Search in Current Node...")
pattern = self.dad.dialog_search(title, self.replace_active)
if entry_predefined_text != "":
self.dad.curr_buffer.move_mark(self.dad.curr_buffer.get_insert(), iter_insert)
self.dad.curr_buffer.move_mark(self.dad.curr_buffer.get_selection_bound(), iter_bound)
if pattern != None: self.curr_find = ["in_selected_node", pattern]
else: return
else: pattern = self.curr_find[1]
forward = self.dad.search_replace_dict['fw']
if self.from_find_back:
forward = not forward
self.from_find_back = False
first_fromsel = self.dad.search_replace_dict['a_ff_fa'] == 1
all_matches = self.dad.search_replace_dict['a_ff_fa'] == 0
self.matches_num = 0
# searching start
if self.dad.user_active:
self.dad.user_active = False
user_active_restore = True
else: user_active_restore = False
if all_matches:
self.liststore.clear()
self.all_matches_first_in_node = True
while self.parse_current_node_content(pattern, forward, first_fromsel, all_matches, True):
self.matches_num += 1
elif self.parse_current_node_content(pattern, forward, first_fromsel, all_matches, True):
self.matches_num = 1
if self.matches_num == 0:
support.dialog_info(_("The pattern '%s' was not found") % pattern, self.dad.window)
elif all_matches:
self.allmatchesdialog.set_title(str(self.matches_num) + cons.CHAR_SPACE + _("Matches"))
self.allmatchesdialog.run()
self.allmatchesdialog.hide()
elif self.dad.search_replace_dict['idialog']:
self.iterated_find_dialog()
if user_active_restore: self.dad.user_active = True
def find_in_all_nodes(self):
"""Search for a pattern in all the Tree Nodes"""
if not self.from_find_iterated:
iter_insert = self.dad.curr_buffer.get_iter_at_mark(self.dad.curr_buffer.get_insert())
iter_bound = self.dad.curr_buffer.get_iter_at_mark(self.dad.curr_buffer.get_selection_bound())
entry_predefined_text = self.dad.curr_buffer.get_text(iter_insert, iter_bound)
if entry_predefined_text:
self.dad.search_replace_dict['find'] = entry_predefined_text
if self.replace_active: title = _("Replace in All Nodes...")
else: title = _("Search in All Nodes...")
pattern = self.dad.dialog_search(title, self.replace_active)
if entry_predefined_text != "":
self.dad.curr_buffer.move_mark(self.dad.curr_buffer.get_insert(), iter_insert)
self.dad.curr_buffer.move_mark(self.dad.curr_buffer.get_selection_bound(), iter_bound)
if pattern != None: self.curr_find = ["in_all_nodes", pattern]
else: return
else: pattern = self.curr_find[1]
starting_tree_iter = self.dad.curr_tree_iter.copy()
current_cursor_pos = self.dad.curr_buffer.get_property(cons.STR_CURSOR_POSITION)
forward = self.dad.search_replace_dict['fw']
if self.from_find_back:
forward = not forward
self.from_find_back = False
first_fromsel = self.dad.search_replace_dict['a_ff_fa'] == 1
all_matches = self.dad.search_replace_dict['a_ff_fa'] == 0
if first_fromsel:
self.first_useful_node = False # no one node content was parsed yet
node_iter = self.dad.curr_tree_iter.copy()
else:
self.first_useful_node = True # all range will be parsed so no matter
if forward: node_iter = self.dad.treestore.get_iter_first()
else: node_iter = self.dad.get_tree_iter_last_sibling(None)
self.matches_num = 0
if all_matches: self.liststore.clear()
config.get_tree_expanded_collapsed_string(self.dad)
# searching start
if self.dad.user_active:
self.dad.user_active = False
user_active_restore = True
else: user_active_restore = False
while node_iter:
self.all_matches_first_in_node = True
while self.parse_given_node_content(node_iter, pattern, forward, first_fromsel, all_matches):
self.matches_num += 1
if not all_matches: break
if self.matches_num == 1 and not all_matches: break
last_top_node_iter = node_iter.copy() # we need this if we start from a node that is not in top level
if forward: node_iter = self.dad.treestore.iter_next(node_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, node_iter)
# code that, in case we start from a node that is not top level, climbs towards the top
while not node_iter:
node_iter = self.dad.treestore.iter_parent(last_top_node_iter)
if node_iter:
last_top_node_iter = node_iter.copy()
# we do not check the father on purpose, only the uncles in the proper direction
if forward: node_iter = self.dad.treestore.iter_next(node_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, node_iter)
else: break
if user_active_restore: self.dad.user_active = True
config.set_tree_expanded_collapsed_string(self.dad)
if not self.matches_num or all_matches:
self.dad.treeview_safe_set_cursor(starting_tree_iter)
self.dad.sourceview.grab_focus()
self.dad.curr_buffer.place_cursor(self.dad.curr_buffer.get_iter_at_offset(current_cursor_pos))
self.dad.sourceview.scroll_to_mark(self.dad.curr_buffer.get_insert(), 0.3)
if not self.matches_num:
support.dialog_info(_("The pattern '%s' was not found") % pattern, self.dad.window)
else:
if all_matches:
self.allmatchesdialog.set_title(str(self.matches_num) + cons.CHAR_SPACE + _("Matches"))
self.allmatchesdialog.run()
self.allmatchesdialog.hide()
else:
self.dad.treeview_safe_set_cursor(self.dad.curr_tree_iter)
self.dad.sourceview.grab_focus()
self.dad.sourceview.scroll_to_mark(self.dad.curr_buffer.get_insert(), 0.3)
if self.dad.search_replace_dict['idialog']:
self.iterated_find_dialog()
def find_a_node(self, *args):
"""Search for a pattern between all the Node's Names"""
if not self.from_find_iterated:
if self.replace_active: title = _("Replace in Node Names...")
else: title = _("Search For a Node Name...")
pattern_clean = self.dad.dialog_search(title, self.replace_active)
if pattern_clean != None: self.curr_find = ["a_node", pattern_clean]
else: return
else: pattern_clean = self.curr_find[1]
if not self.dad.search_replace_dict['reg_exp']: # NOT REGULAR EXPRESSION
pattern_ready = re.escape(pattern_clean) # backslashes all non alphanum chars => to not spoil re
if self.dad.search_replace_dict['whole_word']: # WHOLE WORD
pattern_ready = r'\b' + pattern_ready + r'\b'
elif self.dad.search_replace_dict['start_word']: # START WORD
pattern_ready = r'\b' + pattern_ready
else: pattern_ready = pattern_clean
if self.dad.search_replace_dict['match_case']: # CASE SENSITIVE
pattern = re.compile(pattern_ready, re.UNICODE|re.MULTILINE)
else: pattern = re.compile(pattern_ready, re.IGNORECASE|re.UNICODE|re.MULTILINE)
forward = self.dad.search_replace_dict['fw']
if self.from_find_back:
forward = not forward
self.from_find_back = False
first_fromsel = self.dad.search_replace_dict['a_ff_fa'] == 1
all_matches = self.dad.search_replace_dict['a_ff_fa'] == 0
if first_fromsel:
if forward: node_iter = self.dad.treestore.iter_next(self.dad.curr_tree_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, self.dad.curr_tree_iter)
top_node_iter = self.dad.curr_tree_iter.copy()
while not node_iter:
node_iter = top_node_iter.copy()
if forward: node_iter = self.dad.treestore.iter_next(node_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, node_iter)
top_node_iter = self.dad.treestore.iter_parent(top_node_iter)
if not top_node_iter: break
else:
if forward: node_iter = self.dad.treestore.get_iter_first()
else: node_iter = self.dad.get_tree_iter_last_sibling(None)
self.matches_num = 0
if all_matches: self.liststore.clear()
# searching start
while node_iter != None:
if self.parse_node_name(node_iter, pattern, forward, all_matches):
self.matches_num += 1
if not all_matches: break
last_top_node_iter = node_iter.copy() # we need this if we start from a node that is not in top level
if forward: node_iter = self.dad.treestore.iter_next(node_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, node_iter)
# code that, in case we start from a node that is not top level, climbs towards the top
while node_iter == None:
node_iter = self.dad.treestore.iter_parent(last_top_node_iter)
if node_iter != None:
last_top_node_iter = node_iter.copy()
# we do not check the father on purpose, only the uncles in the proper direction
if forward: node_iter = self.dad.treestore.iter_next(node_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, node_iter)
else: break
if self.matches_num == 0:
support.dialog_info(_("The pattern '%s' was not found") % pattern_clean, self.dad.window)
elif all_matches:
self.allmatchesdialog.set_title(str(self.matches_num) + cons.CHAR_SPACE + _("Matches"))
self.allmatchesdialog.run()
self.allmatchesdialog.hide()
elif self.dad.search_replace_dict['idialog']:
self.iterated_find_dialog()
if self.matches_num and self.replace_active: self.dad.update_window_save_needed()
def find_pattern(self, pattern, start_iter, forward, all_matches):
"""Returns (start_iter, end_iter) or (None, None)"""
text = unicode(self.dad.curr_buffer.get_text(*self.dad.curr_buffer.get_bounds()), cons.STR_UTF8, cons.STR_IGNORE)
if not self.dad.search_replace_dict['reg_exp']: # NOT REGULAR EXPRESSION
pattern = re.escape(pattern) # backslashes all non alphanum chars => to not spoil re
if self.dad.search_replace_dict['whole_word']: # WHOLE WORD
pattern = r'\b' + pattern + r'\b'
elif self.dad.search_replace_dict['start_word']: # START WORD
pattern = r'\b' + pattern
if self.dad.search_replace_dict['match_case']: # CASE SENSITIVE
pattern = re.compile(pattern, re.UNICODE|re.MULTILINE)
else: pattern = re.compile(pattern, re.IGNORECASE|re.UNICODE|re.MULTILINE)
start_offset = start_iter.get_offset()
start_offset -= self.get_num_objs_before_offset(start_offset)
if forward:
match = pattern.search(text, start_offset)
else:
match = None
for temp_match in pattern.finditer(text, 0, start_offset): match = temp_match
if match:
if self.replace_active: obj_match_offsets = (None, None)
else: obj_match_offsets = self.check_pattern_in_object_between(pattern,
start_iter.get_offset(),
match.start(),
forward)
if obj_match_offsets[0] != None: match_offsets = (obj_match_offsets[0], obj_match_offsets[1])
else: match_offsets = (match.start(), match.end())
else:
if self.replace_active: obj_match_offsets = (None, None)
else: obj_match_offsets = self.check_pattern_in_object_between(pattern,
start_iter.get_offset(),
-1,
forward)
if obj_match_offsets[0] != None: match_offsets = (obj_match_offsets[0], obj_match_offsets[1])
else: match_offsets = (None, None)
if match_offsets[0] != None:
if obj_match_offsets[0] == None: num_objs = self.get_num_objs_before_offset(match_offsets[0])
else: num_objs = 0
final_start_offset = match_offsets[0] + num_objs
final_delta_offset = match_offsets[1] - match_offsets[0]
#print "IN", final_start_offset, final_delta_offset, self.dad.treestore[self.dad.curr_tree_iter][1]
#for count in range(final_delta_offset):
# print count, self.dad.curr_buffer.get_iter_at_offset(final_start_offset+count).get_char()
self.dad.set_selection_at_offset_n_delta(final_start_offset, final_delta_offset)
#print "OUT"
mark_insert = self.dad.curr_buffer.get_insert()
iter_insert = self.dad.curr_buffer.get_iter_at_mark(mark_insert)
self.dad.sourceview.scroll_to_mark(mark_insert, 0.25)
if all_matches:
if self.newline_trick: newline_trick_offset = 1
else: newline_trick_offset = 0
node_id = self.dad.treestore[self.dad.curr_tree_iter][3]
start_offset = match_offsets[0] + num_objs - newline_trick_offset
end_offset = match_offsets[1] + num_objs - newline_trick_offset
node_name = self.dad.treestore[self.dad.curr_tree_iter][1]
line_content = self.get_line_content(iter_insert) if obj_match_offsets[0] == None else obj_match_offsets[2]
line_num = self.dad.curr_buffer.get_iter_at_offset(start_offset).get_line()
if not self.newline_trick: line_num += 1
self.liststore.append([node_id, start_offset, end_offset, node_name, line_content, line_num])
if self.replace_active:
replacer_text = self.dad.search_replace_dict['replace']
self.dad.curr_buffer.delete_selection(interactive=False, default_editable=True)
self.dad.curr_buffer.insert_at_cursor(replacer_text)
if not all_matches:
self.dad.set_selection_at_offset_n_delta(match_offsets[0] + num_objs,
len(replacer_text))
self.dad.state_machine.update_state(self.dad.treestore[self.dad.curr_tree_iter][3])
self.dad.ctdb_handler.pending_edit_db_node_buff(self.dad.treestore[self.dad.curr_tree_iter][3], force_user_active=True)
return True
return False
def check_pattern_in_object(self, pattern, obj):
"""Search for the pattern in the given object"""
if obj[0] == "table":
for row in obj[1][1]['matrix']:
for col in row:
if pattern.search(col): return (True, "<table>")
elif obj[0] == "codebox":
if pattern.search(obj[1][1]['fill_text']): return (True, "<codebox>")
return (False, "")
def check_pattern_in_object_between(self, pattern, start_offset, end_offset, forward):
"""Search for the pattern in the given slice and direction"""
if not forward: start_offset -= 1
if end_offset < 0:
end_offset = self.dad.curr_buffer.get_end_iter().get_offset() if forward else 0
sel_range = (start_offset, end_offset) if forward else (end_offset, start_offset)
obj_vec = self.dad.state_machine.get_embedded_pixbufs_tables_codeboxes(self.dad.curr_buffer,
sel_range=sel_range)
if not obj_vec: return (None, None)
if forward:
for element in obj_vec:
patt_in_obj = self.check_pattern_in_object(pattern, element)
if patt_in_obj[0]:
return (element[1][0], element[1][0]+1, patt_in_obj[1])
else:
for element in reversed(obj_vec):
patt_in_obj = self.check_pattern_in_object(pattern, element)
if patt_in_obj[0]:
return (element[1][0], element[1][0]+1, patt_in_obj[1])
return (None, None)
def get_num_objs_before_offset(self, max_offset):
"""Returns the num of objects from buffer start to the given offset"""
num_objs = 0
local_limit_offset = max_offset
curr_iter = self.dad.curr_buffer.get_start_iter()
while curr_iter.get_offset() < local_limit_offset:
anchor = curr_iter.get_child_anchor()
if anchor:
num_objs += 1
local_limit_offset += 1
if not curr_iter.forward_char(): break
return num_objs
def parse_current_node_content(self, pattern, forward, first_fromsel, all_matches, first_node):
"""Returns True if pattern was find, False otherwise"""
buff_start_iter = self.dad.curr_buffer.get_start_iter()
if buff_start_iter.get_char() != cons.CHAR_NEWLINE:
self.newline_trick = True
if not self.dad.curr_buffer.get_modified(): restore_modified = True
else: restore_modified = False
self.dad.curr_buffer.insert(buff_start_iter, cons.CHAR_NEWLINE)
else:
self.newline_trick = False
restore_modified = False
if (first_fromsel and first_node)\
or (all_matches and not self.all_matches_first_in_node):
iter_insert = self.dad.curr_buffer.get_iter_at_mark(self.dad.curr_buffer.get_insert())
iter_bound = self.dad.curr_buffer.get_iter_at_mark(self.dad.curr_buffer.get_selection_bound())
if not self.replace_active or self.replace_subsequent:
# it's a find or subsequent replace, so we want, given a selected word, to find for the subsequent one
if forward:
if iter_bound != None and iter_insert.compare(iter_bound) < 0: start_iter = iter_bound
else: start_iter = iter_insert
else:
if iter_bound != None and iter_insert.compare(iter_bound) > 0: start_iter = iter_bound
else: start_iter = iter_insert
else:
# it's a first replace, so we want, given a selected word, to replace starting from this one
if forward:
if iter_bound != None and iter_insert.compare(iter_bound) > 0: start_iter = iter_bound
else: start_iter = iter_insert
else:
if iter_bound != None and iter_insert.compare(iter_bound) < 0: start_iter = iter_bound
else: start_iter = iter_insert
else:
if forward: start_iter = self.dad.curr_buffer.get_start_iter()
else: start_iter = self.dad.curr_buffer.get_end_iter()
if all_matches: self.all_matches_first_in_node = False
pattern_found = self.find_pattern(pattern, start_iter, forward, all_matches)
if self.newline_trick:
buff_start_iter = self.dad.curr_buffer.get_start_iter()
buff_step_iter = buff_start_iter.copy()
if buff_step_iter.forward_char(): self.dad.curr_buffer.delete(buff_start_iter, buff_step_iter)
if restore_modified: self.dad.curr_buffer.set_modified(False)
if self.replace_active and pattern_found:
self.dad.update_window_save_needed("nbuf")
return pattern_found
def parse_given_node_content(self, node_iter, pattern, forward, first_fromsel, all_matches):
"""Returns True if pattern was found, False otherwise"""
node_path = self.dad.treestore.get_path(node_iter)
if not self.first_useful_node:
# first_fromsel plus first_node not already parsed
if self.dad.curr_tree_iter == None or node_path == self.dad.treestore.get_path(self.dad.curr_tree_iter):
self.first_useful_node = True # a first_node was parsed
self.dad.treeview_safe_set_cursor(node_iter)
if self.parse_current_node_content(pattern, forward, first_fromsel, all_matches, True): return True # first_node node, first_fromsel
else:
# not first_fromsel or first_fromsel with first_node already parsed
self.dad.treeview_safe_set_cursor(node_iter)
if self.parse_current_node_content(pattern, forward, first_fromsel, all_matches, False): return True # not first_node node
node_iter = self.dad.treestore.iter_children(node_iter) # check for children
if node_iter != None and not forward: node_iter = self.dad.get_tree_iter_last_sibling(node_iter)
while node_iter != None:
self.all_matches_first_in_node = True
while self.parse_given_node_content(node_iter, pattern, forward, first_fromsel, all_matches):
self.matches_num += 1
if not all_matches: break
if self.matches_num == 1 and not all_matches: break
if forward: node_iter = self.dad.treestore.iter_next(node_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, node_iter)
return False
def parse_node_name(self, node_iter, pattern, forward, all_matches):
"""Recursive function that searchs for the given pattern"""
text_name = self.dad.treestore[node_iter][1].decode(cons.STR_UTF8)
match = pattern.search(text_name)
if not match:
text_tags = self.dad.treestore[node_iter][6].decode(cons.STR_UTF8)
match = pattern.search(text_tags)
if match:
if all_matches:
node_id = self.dad.treestore[node_iter][3]
node_name = self.dad.treestore[node_iter][1]
line_content = self.get_first_line_content(self.dad.get_textbuffer_from_tree_iter(node_iter))
self.liststore.append([node_id, 0, 0, node_name, line_content, 1])
if self.replace_active:
replacer_text = self.dad.search_replace_dict['replace']
text_name = text_name.replace(self.curr_find[1], replacer_text)
self.dad.treestore[node_iter][1] = text_name
self.dad.ctdb_handler.pending_edit_db_node_prop(self.dad.treestore[node_iter][3])
if not all_matches:
self.dad.treeview_safe_set_cursor(node_iter)
self.dad.sourceview.grab_focus()
return True
else: self.matches_num += 1
node_iter = self.dad.treestore.iter_children(node_iter) # check for children
if node_iter != None and not forward: node_iter = self.dad.get_tree_iter_last_sibling(node_iter)
while node_iter != None:
if self.parse_node_name(node_iter, pattern, forward, all_matches)\
and not all_matches: return True
if forward: node_iter = self.dad.treestore.iter_next(node_iter)
else: node_iter = self.dad.get_tree_iter_prev_sibling(self.dad.treestore, node_iter)
return False
def find_back(self):
"""Continue the previous search (a_node/in_selected_node/in_all_nodes) but in Opposite Direction"""
self.from_find_back = True
self.replace_active = False
self.find_again()
def replace_in_selected_node(self):
"""Replace a pattern in the selected Node"""
self.replace_active = True
self.find_in_selected_node()
self.replace_active = False
def replace_in_all_nodes(self):
"""Replace the pattern in all the Tree Nodes"""
self.replace_active = True
self.find_in_all_nodes()
self.replace_active = False
def replace_in_nodes_names(self):
"""Replace the pattern between all the Node's Names"""
self.replace_active = True
self.find_a_node()
self.replace_active = False
def find_again(self):
"""Continue the previous search (a_node/in_selected_node/in_all_nodes)"""
self.from_find_iterated = True
if self.curr_find[0] == None: support.dialog_warning(_("No Previous Search Was Performed During This Session"), self.dad.window)
elif self.curr_find[0] == "in_selected_node": self.find_in_selected_node()
elif self.curr_find[0] == "in_all_nodes": self.find_in_all_nodes()
elif self.curr_find[0] == "a_node": self.find_a_node()
self.from_find_iterated = False
def replace_again(self):
"""Continue the previous replace (a_node/in_selected_node/in_all_nodes)"""
self.replace_active = True
self.replace_subsequent = True
self.find_again()
self.replace_active = False
self.replace_subsequent = False
def get_line_content(self, text_iter):
"""Returns the Line Content Given the Text Iter"""
line_start = text_iter.copy()
line_end = text_iter.copy()
if not line_start.backward_char(): return ""
while line_start.get_char() != cons.CHAR_NEWLINE:
if not line_start.backward_char(): break
else: line_start.forward_char()
while line_end.get_char() != cons.CHAR_NEWLINE:
if not line_end.forward_char(): break
return self.dad.curr_buffer.get_text(line_start, line_end)
def get_first_line_content(self, text_buffer):
"""Returns the First Not Empty Line Content Given the Text Buffer"""
start_iter = text_buffer.get_start_iter()
while start_iter.get_char() == cons.CHAR_NEWLINE:
if not start_iter.forward_char(): return ""
end_iter = start_iter.copy()
while end_iter.get_char() != cons.CHAR_NEWLINE:
if not end_iter.forward_char(): break
return text_buffer.get_text(start_iter, end_iter)
def allmatchesdialog_init(self):
"""Create the All Matches Dialog"""
self.allmatchesdialog = gtk.Dialog(parent=self.dad.window,
flags=gtk.DIALOG_MODAL|gtk.DIALOG_DESTROY_WITH_PARENT,
buttons=(_("Hide (Restore with Ctrl+Shift+A)"), gtk.RESPONSE_CLOSE))
self.allmatchesdialog.set_default_size(700, 350)
self.allmatchesdialog.set_position(gtk.WIN_POS_CENTER_ON_PARENT)
try:
button = self.allmatchesdialog.get_widget_for_response(gtk.RESPONSE_CLOSE)
button.set_image(gtk.image_new_from_stock(gtk.STOCK_CLOSE, gtk.ICON_SIZE_BUTTON))
except: pass
# ROW: 0-node_id, 1-start_offset, 2-end_offset, 3-node_name, 4-line_content, 5-line_num
self.liststore = gtk.ListStore(long, long, long, str, str, int)
self.treeview = gtk.TreeView(self.liststore)
self.renderer_text_node = gtk.CellRendererText()
self.renderer_text_linenum = gtk.CellRendererText()
self.renderer_text_linecontent = gtk.CellRendererText()
self.node_column = gtk.TreeViewColumn(_("Node Name"), self.renderer_text_node, text=3)
self.treeview.append_column(self.node_column)
self.linenum_column = gtk.TreeViewColumn(_("Line"), self.renderer_text_linenum, text=5)
self.treeview.append_column(self.linenum_column)
self.linecontent_column = gtk.TreeViewColumn(_("Line Content"), self.renderer_text_linecontent, text=4)
self.treeview.append_column(self.linecontent_column)
self.treeviewselection = self.treeview.get_selection()
self.treeview.connect('event-after', self.on_treeview_event_after)
scrolledwindow_allmatches = gtk.ScrolledWindow()
scrolledwindow_allmatches.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
scrolledwindow_allmatches.add(self.treeview)
content_area = self.allmatchesdialog.get_content_area()
content_area.pack_start(scrolledwindow_allmatches)
content_area.show_all()
def on_treeview_event_after(self, treeview, event):
"""Catches mouse buttons clicks"""
if event.type not in [gtk.gdk.BUTTON_PRESS, gtk.gdk.KEY_PRESS]: return
model, list_iter = self.treeviewselection.get_selected()
tree_iter = self.dad.get_tree_iter_from_node_id(model[list_iter][0])
if not tree_iter:
support.dialog_error(_("The Link Refers to a Node that Does Not Exist Anymore (Id = %s)") % model[list_iter][0], self.dad.window)
self.liststore.remove(list_iter)
return
self.dad.treeview_safe_set_cursor(tree_iter)
if model[list_iter][1] != 0 and model[list_iter][2] != 0:
self.dad.curr_buffer.move_mark(self.dad.curr_buffer.get_insert(),
self.dad.curr_buffer.get_iter_at_offset(model[list_iter][1]))
self.dad.curr_buffer.move_mark(self.dad.curr_buffer.get_selection_bound(),
self.dad.curr_buffer.get_iter_at_offset(model[list_iter][2]))
self.dad.sourceview.scroll_to_mark(self.dad.curr_buffer.get_insert(), 0.25)
else: self.dad.sourceview.grab_focus()