-
Notifications
You must be signed in to change notification settings - Fork 9
/
xpath.py
1146 lines (958 loc) · 53.7 KB
/
xpath.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
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import sublime
import sublime_plugin
import os
from lxml import etree
from xml.sax import SAXParseException
import re
from .lxml_parser import *
from .sublime_lxml import *
from .sublime_input_quickpanel import QuickPanelFromInputCommand
import traceback
change_counters = {}
xml_roots = {}
xml_elements = {}
previous_first_selection = {}
settings = None
parse_error = 'XPath - error parsing XML at '
html_cleaning_answer = {}
def settingsChanged():
"""Clear change counters and cached xpath regions for all views, and reparse xml regions for the current view."""
global change_counters
global xml_roots
global xml_elements
global previous_first_selection
change_counters.clear()
xml_roots.clear()
xml_elements.clear()
previous_first_selection.clear()
updateStatusToCurrentXPathIfSGML(sublime.active_window().active_view())
def getSGMLRegions(view):
"""Find all xml and html scopes in the specified view."""
global settings
return view.find_by_selector(settings.get('sgml_selector', 'text.xml'))
def containsSGML(view):
"""Return True if the view contains XML or HTML syntax."""
return len(getSGMLRegions(view)) > 0
def getSGMLRegionsContainingCursors(view):
"""Find the SGML region(s) that the cursor(s) are in for the specified view."""
cursors = [cursor for cursor in view.sel()] # can't use `view.sel()[:]` because it gives an error `TypeError: an integer is required`
regions = getSGMLRegions(view)
for region_index, region in enumerate(regions):
cursors_to_remove = []
for cursor in cursors:
if region.contains(cursor):
yield (region, region_index, cursor)
cursors_to_remove.append(cursor)
elif region.begin() > cursor.end(): # cursor before this region
cursors_to_remove.append(cursor)
elif cursor.begin() > region.end(): # found all cursors in this region
break
if region_index < len(regions) - 1: # no point removing cursors from those left to find if no regions left to search through
for cursor in cursors_to_remove:
cursors.remove(cursor)
if len(cursors) == 0:
break
def isCursorInsideSGML(view):
"""Return True if at least one cursor is within XML or HTML syntax."""
return next(getSGMLRegionsContainingCursors(view), None) is not None
def buildTreesForView(view):
"""Create an xml tree for each XML region in the specified view."""
trees = []
for region in getSGMLRegions(view):
trees.append(buildTreeForViewRegion(view, region))
return trees
def buildTreeForViewRegion(view, region_scope):
"""Create an xml tree for the XML in the specified view region."""
tree = None
all_elements = None
change_count = view.change_count()
stop = lambda: change_count < view.change_count() # stop parsing if the document is modified
if view.is_read_only():
stop = None # no need to check for modifications if the view is read only
try:
tree, all_elements = lxml_etree_parse_xml_string_with_location(region_chunks(view, region_scope, 8096), region_scope.begin(), stop)
except etree.XMLSyntaxError as e:
global settings
show_parse_errors = settings.get('show_xml_parser_errors', True)
if show_parse_errors:
global parse_error
offset = view.rowcol(region_scope.begin())
log_entry = e.error_log[0]
text = 'line ' + str(log_entry.line + offset[0]) + ', column ' + str(log_entry.column + offset[1]) + ' - ' + log_entry.message
view.set_status('xpath_error', parse_error + text)
return (tree, all_elements)
def ensureTreeCacheIsCurrent(view):
"""If the document has been modified since the xml was parsed, parse it again to recreate the trees."""
global change_counters
new_count = view.change_count()
old_count = change_counters.get(view.id(), None)
global xml_roots
global xml_elements
if old_count is None or new_count > old_count:
change_counters[view.id()] = new_count
view.set_status('xpath', 'XML being parsed...')
view.erase_status('xpath_error')
xml_roots[view.id()] = []
xml_elements[view.id()] = []
for tree, all_elements in buildTreesForView(view):
root = None
if tree is not None:
root = tree.getroot()
xml_roots[view.id()].append(root)
xml_elements[view.id()].append(all_elements)
view.erase_status('xpath')
global previous_first_selection
previous_first_selection[view.id()] = None
return xml_roots[view.id()]
class GotoXmlParseErrorCommand(sublime_plugin.TextCommand):
def run(self, edit, **args):
view = self.view
global parse_error
detail = view.get_status('xpath_error')[len(parse_error + 'line '):].split(' - ')[0].split(', column ')
point = view.text_point(int(detail[0]) - 1, int(detail[1]) - 1)
view.sel().clear()
view.sel().add(point)
view.show_at_center(point)
def is_enabled(self, **args):
global parse_error
return containsSGML(self.view) and self.view.get_status('xpath_error').startswith(parse_error)
def is_visible(self, **args):
return containsSGML(self.view)
def getXPathOfNodes(nodes, args):
include_indexes = not getBoolValueFromArgsOrSettings('show_hierarchy_only', args, False)
unique = getBoolValueFromArgsOrSettings('copy_unique_path_only', args, True)
include_attributes = include_indexes or getBoolValueFromArgsOrSettings('show_attributes_in_hierarchy', args, False)
show_namespace_prefixes_from_query = getBoolValueFromArgsOrSettings('show_namespace_prefixes_from_query', args, True)
case_sensitive = getBoolValueFromArgsOrSettings('case_sensitive', args, True)
all_attributes = getBoolValueFromArgsOrSettings('show_all_attributes', args, False)
global settings
wanted_attributes = settings.get('attributes_to_include', [])
if not case_sensitive:
wanted_attributes = [attrib.lower() for attrib in wanted_attributes]
def getTagNameWithMappedPrefix(node, namespaces):
tag = getTagName(node)
if show_namespace_prefixes_from_query and tag[0] is not None: # if the element belongs to a namespace
unique_prefix = next((prefix for prefix in namespaces.keys() if namespaces[prefix] == (tag[0], node.prefix or '')), None) # find the first prefix in the map that relates to this uri
if unique_prefix is not None:
tag = (tag[0], tag[1], unique_prefix + ':' + tag[1]) # ensure that the path we display can be used to query the element
if not case_sensitive:
tag = (tag[0], tag[1].lower(), tag[2].lower())
return tag
def getNodePathPart(node, namespaces):
tag = getTagNameWithMappedPrefix(node, namespaces)
output = tag[2]
if include_indexes:
siblings = node.itersiblings(preceding = True)
index = 1
def compare(sibling):
if not isinstance(sibling, LocationAwareElement): # skip comments
return False
sibling_tag = getTagNameWithMappedPrefix(sibling, namespaces)
return sibling_tag == tag # namespace uri, prefix and tag name must all match
for sibling in siblings:
if compare(sibling):
index += 1
# if there are no previous sibling matches, check next siblings to see if we should index this node
multiple = index > 1
if not multiple:
siblings = node.itersiblings()
for sibling in siblings:
if compare(sibling):
multiple = True
break
if multiple:
output += '[' + str(index) + ']'
if include_attributes:
attributes_to_show = []
for attr_name in node.attrib:
include_attribue = False
if all_attributes:
include_attribute = True
else:
if not case_sensitive:
attr_name = attr_name.lower()
attr = attr_name.split(':')
include_attribute = attr_name in wanted_attributes
if not include_attribue and len(attr) == 2:
include_attribue = attr[0] + ':*' in wanted_attributes or '*:' + attr[1] in wanted_attributes
if include_attribute:
attributes_to_show.append('@' + attr_name + ' = "' + node.get(attr_name) + '"')
if len(attributes_to_show) > 0:
output += '[' + ' and '.join(attributes_to_show) + ']'
return output
def getNodePathSegments(node, namespaces, root):
if isinstance(node, etree.CommentBase):
node = node.getparent()
while node != root:
yield getNodePathPart(node, namespaces)
node = node.getparent()
yield getNodePathPart(node, namespaces)
yield ''
def getNodePath(node, namespaces, root):
return '/'.join(reversed(list(getNodePathSegments(node, namespaces, root))))
roots = {}
for node in nodes:
tree = node.getroottree()
root = tree.getroot()
roots.setdefault(root, []).append(node)
paths = []
for root in roots.keys():
for node in roots[root]:
namespaces = None
if show_namespace_prefixes_from_query:
namespaces = namespace_map_for_tree(root.getroottree())
paths.append(getNodePath(node, namespaces, root))
if unique:
paths = list(getUniqueItems(paths))
return paths
def getExactXPathOfNodes(nodes):
args = { 'show_namespace_prefixes_from_query': True, 'show_hierarchy_only': False, 'case_sensitive': True } # ensure the exact node path is returned
return getXPathOfNodes(nodes, args)
def updateStatusToCurrentXPathIfSGML(view):
"""Update the status bar with the relevant xpath at the first cursor."""
status = None
if isCursorInsideSGML(view):
if not getBoolValueFromArgsOrSettings('only_show_xpath_if_saved', None, False) or not view.is_dirty() or view.is_read_only():
trees = ensureTreeCacheIsCurrent(view)
if trees is None: # don't hide parse errors by overwriting status
return
else:
# use cache of previous first selection if it exists
global previous_first_selection
prev = previous_first_selection.get(view.id(), None)
current_first_sel = view.sel()[0]
nodes = []
if prev is not None and regionIntersects(prev[0], sublime.Region(current_first_sel.begin(), current_first_sel.begin()), False): # current first selection matches xpath region from previous first selection
nodes.append(prev[1])
else: # current first selection doesn't match xpath region from previous first selection or is not cached
results = getNodesAtPositions(view, trees, [current_first_sel]) # get nodes at first selection
if len(results) > 0:
result = results[0]
previous_first_selection[view.id()] = (sublime.Region(result[2], result[3]), result[0]) # cache node and xpath region
nodes.append(result[0])
# calculate xpath of node
xpaths = getXPathOfNodes(nodes, None)
if len(xpaths) == 1:
xpath = xpaths[0]
intro = 'XPath'
if len(view.sel()) > 1:
intro = intro + ' (at first selection)'
text = intro + ': ' + xpath
maxLength = 234 # if status message is longer than this, sublime text 3 shows nothing in the status bar at all, so unfortunately we have to truncate it...
if len(text) > maxLength:
append = ' (truncated)'
text = text[0:maxLength - len(append)] + append
status = text
if status is None:
view.erase_status('xpath')
else:
view.set_status('xpath', status)
def copyXPathsToClipboard(view, args):
"""Copy the XPath(s) at the cursor(s) to the clipboard."""
if isCursorInsideSGML(view):
roots = ensureTreeCacheIsCurrent(view)
if roots is not None:
cursors = []
for result in getSGMLRegionsContainingCursors(view):
cursors.append(result[2])
results = getNodesAtPositions(view, roots, cursors)
paths = getXPathOfNodes([result[0] for result in results], args)
if len(paths) > 0:
sublime.set_clipboard(os.linesep.join(paths))
message = str(len(paths)) + ' xpath(s) copied to clipboard'
else:
message = 'no xpath at cursor to copy to clipboard'
else:
message = 'xml is not valid, unable to copy xpaths to clipboard'
else:
message = 'xpath not copied to clipboard - ensure syntax is set to xml or html'
sublime.status_message(message)
class CopyXpathCommand(sublime_plugin.TextCommand): # example usage from python console: sublime.active_window().active_view().run_command('copy_xpath', { 'show_hierarchy_only': True })
def run(self, edit, **args):
"""Copy XPath(s) at cursor(s) to clipboard."""
view = self.view
copyXPathsToClipboard(view, args)
def is_enabled(self, **args):
return isCursorInsideSGML(self.view)
def is_visible(self, **args):
return containsSGML(self.view)
class XpathCommand(CopyXpathCommand):
"""To retain legacy use of this command. It has now been renamed to CopyXpathCommand, to make it's purpose more clear."""
pass
class GotoRelativeCommand(sublime_plugin.TextCommand):
def run(self, edit, **kwargs): # example usage from python console: sublime.active_window().active_view().run_command('goto_relative', {'direction': 'prev', 'goto_element': 'names'})
"""Move cursor(s) to specified relative tag(s)."""
view = self.view
roots = ensureTreeCacheIsCurrent(view)
if roots is not None:
cursors = []
for result in getSGMLRegionsContainingCursors(view):
cursors.append(result[2])
results = getNodesAtPositions(view, roots, cursors)
new_nodes_under_cursors = []
allFound = True
for result in results:
desired_node = getRelativeNode(result[0], kwargs['direction'])
if desired_node is None:
allFound = False
break
else:
new_nodes_under_cursors.append(desired_node)
if not allFound:
message = kwargs['direction'] + ' node not found'
if len(cursors) > 1:
message += ' for at least one selection'
sublime.status_message(message)
else:
goto_element = settings.get('goto_element', 'open')
if goto_element == 'none':
goto_element = 'open'
if 'goto_element' in kwargs:
goto_element = kwargs['goto_element']
move_cursors_to_nodes(view, getUniqueItems(new_nodes_under_cursors), goto_element, None)
def is_enabled(self, **kwargs):
return isCursorInsideSGML(self.view)
def is_visible(self):
return containsSGML(self.view)
def description(self, args):
if args['direction'] == 'self':
descr = 'tag'
elif args['direction'] in ('prev', 'previous', 'next'):
descr = 'sibling'
elif args['direction'] in ('parent'):
descr = 'element'
else:
return None
return 'Goto ' + args['direction'] + ' ' + descr
def getBoolValueFromArgsOrSettings(key, args, default):
"""Retrieve the value for the given key from the args if present, otherwise the settings if present, otherwise use the supplied default."""
if args is None or not key in args:
global settings
return bool(settings.get(key, default))
else:
return args[key]
def getUniqueItems(items):
"""Return the items without any duplicates, preserving order."""
unique = []
for item in items:
if item not in unique:
unique.append(item)
yield item
class XpathListener(sublime_plugin.EventListener):
def on_selection_modified_async(self, view):
updateStatusToCurrentXPathIfSGML(view)
def on_activated_async(self, view):
updateStatusToCurrentXPathIfSGML(view)
def on_post_save_async(self, view):
if getBoolValueFromArgsOrSettings('only_show_xpath_if_saved', None, False):
updateStatusToCurrentXPathIfSGML(view)
def on_pre_close(self, view):
global change_counters
global xml_roots
global xml_elements
global previous_first_selection
change_counters.pop(view.id(), None)
xml_roots.pop(view.id(), None)
xml_elements.pop(view.id(), None)
previous_first_selection.pop(view.id(), None)
if view.file_name() is None: # if the file has no filename associated with it
if view.settings().get('xpath_test_file', None):
return
#if not getBoolValueFromArgsOrSettings('global_query_history', None, True): # if global history isn't enabled
# remove_key_from_xpath_query_history(get_history_key_for_view(view))
#else:
change_key_for_xpath_query_history(get_history_key_for_view(view), 'global')
def register_xpath_extensions():
# http://lxml.de/extensions.html
ns = etree.FunctionNamespace(None)
def applyFuncToTextForItem(item, func):
if isinstance(item, etree._Element):
return func(item.xpath('string(.)'))
else:
return func(str(item))
# TODO: xpath 1 functions deal with lists by just taking the first node
# - maybe we can provide optional arg to return nodeset by applying to all
def applyTransformFuncToTextForItems(nodes, func):
"""If a nodeset is given, apply the transformation function to each item."""
if isinstance(nodes, list):
return [applyFuncToTextForItem(item, func) for item in nodes]
else:
return applyFuncToTextForItem(nodes, func)
def applyFilterFuncToTextForItems(nodes, func):
"""If a nodeset is given, filter out items whose transformation function returns False. Otherwise, return the value from the predicate."""
if isinstance(nodes, list):
return [item for item in nodes if applyFuncToTextForItem(item, func)]
else:
return applyFuncToTextForItem(nodes, func)
def printValueAndReturnUnchanged(context, nodes, title = None):
print_value = nodes
if isinstance(nodes, list):
if len(nodes) > 0 and isinstance(nodes[0], etree._Element):
paths = getExactXPathOfNodes(nodes)
print_value = paths
if title is None:
title = ''
else:
title = title + ':'
print('XPath:', title, 'context_node', getExactXPathOfNodes([context.context_node])[0], 'eval_context', context.eval_context, 'values', print_value)
return nodes
ns['upper-case'] = lambda context, nodes: applyTransformFuncToTextForItems(nodes, str.upper)
ns['lower-case'] = lambda context, nodes: applyTransformFuncToTextForItems(nodes, str.lower)
ns['ends-with'] = lambda context, nodes, ending: applyFilterFuncToTextForItems(nodes, lambda item: item.endswith(ending))
#ns['trim'] = lambda context, nodes: applyTransformFuncToTextForItems(nodes, str.strip) # according to the XPath 1.0 spec, the built in normalize-space function will trim the text on both sides, making this unnecessary http://www.w3.org/TR/xpath/#function-normalize-space
ns['print'] = printValueAndReturnUnchanged
def xpathRegexFlagsToPythonRegexFlags(xpath_regex_flags):
flags = 0
if 's' in xpath_regex_flags:
flags = flags | re.DOTALL
if 'm' in xpath_regex_flags:
flags = flags | re.MULTILINE
if 'i' in xpath_regex_flags:
flags = flags | re.IGNORECASE
if 'x' in xpath_regex_flags:
flags = flags | re.VERBOSE
return flags
ns['tokenize'] = lambda context, item, pattern, xpath_regex_flags = None: applyFuncToTextForItem(item, lambda text: re.split(pattern, text, maxsplit = 0, flags = xpathRegexFlagsToPythonRegexFlags(xpath_regex_flags)))
ns['matches'] = lambda context, item, pattern, xpath_regex_flags = None: applyFuncToTextForItem(item, lambda text: re.search(pattern, text, flags = xpathRegexFlagsToPythonRegexFlags(xpath_regex_flags)) is not None)
# replace
# avg
# min
# max
# abs
# ? adjust-dateTime-to-timezone, current-dateTime, day-from-dateTime, month-from-dateTime, days-from-duration, months-from-duration, etc.
# insert-before, remove, subsequence, index-of, distinct-values, reverse, unordered, empty, exists
def plugin_loaded():
"""When the plugin is loaded, clear all variables and cache xpaths for current view if applicable."""
global settings
settings = sublime.load_settings('xpath.sublime-settings')
settings.clear_on_change('reparse')
settings.add_on_change('reparse', settingsChanged)
sublime.set_timeout_async(settingsChanged, 10)
register_xpath_extensions()
def plugin_unloaded():
for view in sublime.active_window().views():
view.erase_status('xpath')
view.erase_status('xpath_error')
global settings
settings.clear_on_change('reparse')
def get_results_for_xpath_query_multiple_trees(query, tree_contexts, root_namespaces, **additional_variables):
"""Given a query string and a dictionary of document trees and their context elements, compile the xpath query and execute it for each document."""
matches = []
global settings
variables = settings.get('variables', {})
for key in additional_variables:
variables[key] = additional_variables[key]
for tree in tree_contexts.keys():
namespaces = root_namespaces.get(tree.getroot(), {})
variables['contexts'] = tree_contexts[tree]
context = None
if len(tree_contexts[tree]) > 0:
context = tree_contexts[tree][0]
matches += get_results_for_xpath_query(query, tree, context, namespaces, **variables)
return matches
def get_xpath_query_history_for_keys(keys):
"""Return all previously used xpath queries with any of the given keys, in order. If keys is None, return history across all keys."""
history_settings = sublime.load_settings('xpath_query_history.sublime-settings')
history = [item[0] for item in history_settings.get('history', []) if keys is None or item[1] in keys]
return list(reversed(list(getUniqueItems(reversed(history))))) # get the latest unique items
def remove_item_from_xpath_query_history(key, query):
"""If the given query exists in the history for the given key, remove it."""
history_settings = sublime.load_settings('xpath_query_history.sublime-settings')
history = history_settings.get('history', [])
item = [query, key]
if item in history:
history.remove(item)
history_settings.set('history', history)
#sublime.save_settings('xpath_query_history.sublime-settings')
# def remove_key_from_xpath_query_history(key):
# view_history = get_xpath_query_history_for_keys([key])
# for item in view_history:
# remove_item_from_xpath_query_history(key, item)
# return view_history
def add_to_xpath_query_history_for_key(key, query):
"""Add the specified query to the history for the given key."""
# if it exists in the history for the view already, move the item to the bottom (i.e. make it the most recent item in the history) by removing and re-adding it
remove_item_from_xpath_query_history(key, query)
history_settings = sublime.load_settings('xpath_query_history.sublime-settings')
history = history_settings.get('history', [])
history.append([query, key])
# if there are more than the specified maximum number of history items, remove the excess
global settings
max_history = settings.get('max_query_history', 100)
history = history[-max_history:]
history_settings.set('history', history)
sublime.save_settings('xpath_query_history.sublime-settings')
def change_key_for_xpath_query_history(oldkey, newkey):
"""For all items in the history with the given oldkey, change the key to the specified newkey."""
history_settings = sublime.load_settings('xpath_query_history.sublime-settings')
history = history_settings.get('history', [])
items_changed = 0
for item in history:
if item[1] == oldkey:
item[1] = newkey
items_changed += 1
if items_changed > 0:
history_settings.set('history', history)
sublime.save_settings('xpath_query_history.sublime-settings')
def get_history_key_for_view(view):
"""Return the key used to store history items that relate to the specified view."""
key = view.file_name()
if key is None:
key = 'buffer_' + str(view.id())
return key
class ShowXpathQueryHistoryCommand(sublime_plugin.TextCommand):
history = None
def run(self, edit, **args):
global_history = getBoolValueFromArgsOrSettings('global_query_history', args, True)
keys = None
if not global_history:
keys = [get_history_key_for_view(self.view)]
self.history = get_xpath_query_history_for_keys(keys)
if len(self.history) == 0:
sublime.status_message('no query history to show')
else:
self.view.window().show_quick_panel(self.history, self.history_selection_done, 0, len(self.history) - 1, self.history_selection_changed)
def history_selection_done(self, selected_index):
if selected_index > -1:
#add_to_xpath_query_history_for_key(get_history_key_for_view(self.view), self.history[selected_index])
sublime.active_window().active_view().run_command('query_xpath', { 'prefill_path_at_cursor': False, 'prefill_query': self.history[selected_index] })
def history_selection_changed(self, selected_index):
if not getBoolValueFromArgsOrSettings('live_mode', None, True):
self.history_selection_done(selected_index)
def is_enabled(self, **args):
return isCursorInsideSGML(self.view)
def is_visible(self):
return containsSGML(self.view)
def namespace_map_from_contexts(contexts):
root_namespaces = {}
for node in contexts:
root = None
if isinstance(node, etree._ElementTree):
root = node.getroot()
else:
root = node.getroottree().getroot()
if root not in root_namespaces.keys():
root_namespaces[root] = namespace_map_for_tree(root.getroottree())
return root_namespaces
def namespace_map_for_tree(tree):
root = tree.getroot()
if not hasattr(root, 'unique_namespaces'):
global settings
defaultNamespacePrefix = settings.get('default_namespace_prefix', 'default')
root.unique_namespaces = unique_namespace_prefixes(root.all_namespaces, defaultNamespacePrefix)
return root.unique_namespaces
class SelectResultsFromXpathQueryCommand(sublime_plugin.TextCommand): # example usage from python console: sublime.active_window().active_view().run_command('select_results_from_xpath_query', { 'xpath': '//*', 'goto_element': 'names' })
def run(self, edit, **kwargs):
contexts = get_context_nodes_from_cursors(self.view)
nodes = get_results_for_xpath_query_multiple_trees(kwargs['xpath'], contexts, namespace_map_from_contexts(contexts))
global settings
goto_element = settings.get('goto_element', 'open')
goto_attribute = settings.get('goto_attribute', 'value')
if goto_element == 'none':
goto_element = 'open'
if goto_attribute == 'none':
goto_attribute = 'value'
if 'goto_element' in kwargs:
goto_element = kwargs['goto_element']
if 'goto_attribute' in kwargs:
goto_attribute = kwargs['goto_attribute']
total_selectable_results, total_results = move_cursors_to_nodes(self.view, nodes, goto_element, goto_attribute)
if total_selectable_results == total_results:
sublime.status_message(str(total_results) + ' nodes selected')
else:
sublime.status_message(str(total_selectable_results) + ' nodes selected out of ' + str(total_results))
add_to_xpath_query_history_for_key(get_history_key_for_view(self.view), kwargs['xpath'])
class RerunLastXpathQueryAndSelectResultsCommand(sublime_plugin.TextCommand): # example usage from python console: sublime.active_window().active_view().run_command('rerun_last_xpath_query_and_select_results', { 'global_query_history': False })
def run(self, edit, **args):
global_history = getBoolValueFromArgsOrSettings('global_query_history', args, True)
keys = [get_history_key_for_view(self.view)]
if global_history:
keys = None
# TODO: preserve original $contexts variable (xpaths of all context nodes) with history, and restore here?
history = get_xpath_query_history_for_keys(keys)
if len(history) == 0:
sublime.status_message('no previous query to re-run')
else:
if args is None:
args = dict()
args['xpath'] = history[-1]
self.view.run_command('select_results_from_xpath_query', args)
def is_enabled(self, **args):
return isCursorInsideSGML(self.view)
def is_visible(self):
return containsSGML(self.view)
class CleanTagSoupCommand(sublime_plugin.TextCommand):
def run(self, edit, **args):
self.view.set_status('xpath_clean', 'Cleaning tag soup...')
# if no arguments are supplied, find the first SGML region containing a cursor that is invalid and clean that.
if args is None or 'regions' not in args:
found = False
roots = ensureTreeCacheIsCurrent(self.view)
for result in getSGMLRegionsContainingCursors(self.view):
if roots[result[1]] is None:
args = { 'regions': [(result[0].begin(), result[0].end())] }
found = True
break
if not found:
self.view.erase_status('xpath_clean')
sublime.status_message('Unable to find any SGML tag soup regions to fix.')
return
# clean all html regions specified, in reverse order, because otherwise the offsets will change after tidying the region before it! i.e. args['regions'] must be in ascending position order
for region_tuple in reversed(args['regions']):
region_scope = sublime.Region(region_tuple[0], region_tuple[1])
tag_soup = self.view.substr(region_scope)
xml_string = clean_html(tag_soup)
self.view.replace(edit, region_scope, xml_string)
self.view.erase_status('xpath_clean')
sublime.status_message('Tag soup cleaned successfully.')
def is_enabled(self, **args):
return isCursorInsideSGML(self.view)
def is_visible(self):
return containsSGML(self.view)
def get_context_nodes_from_cursors(view):
"""Get nodes under the cursors for the specified view."""
roots = ensureTreeCacheIsCurrent(view)
invalid_trees = []
regions_cursors = {}
for result in getSGMLRegionsContainingCursors(view):
if roots[result[1]] is None:
invalid_trees.append(result[0])
node = result[2]
if isinstance(node, etree.CommentBase):
node = node.getparent()
regions_cursors.setdefault(result[1], []).append(node)
if len(invalid_trees) > 0:
invalid_trees = [region_scope for region_scope in invalid_trees if view.match_selector(region_scope.begin(), 'text.html - text.html.markdown')]
if len(invalid_trees) > 0:
print('XPath: Asking about cleaning HTML for view', 'id', view.id(), 'file_name', view.file_name(), 'regions', invalid_trees)
if sublime.ok_cancel_dialog('XPath: The HTML is not well formed, and cannot be parsed by the XML parser. Would you like it to be cleaned?', 'Yes'):
view.run_command('clean_tag_soup', { 'regions': [(region.begin(), region.end()) for region in invalid_trees] })
roots = ensureTreeCacheIsCurrent(view)
updateStatusToCurrentXPathIfSGML(view)
invalid_trees = []
contexts = {}
if len(invalid_trees) > 0: # show error if any of the XML regions containing the cursor is invalid
sublime.error_message('The XML cannot be parsed, therefore it is not currently possible to execute XPath queries on the document. Please see the status bar for parsing errors.')
else:
for region_index in regions_cursors.keys():
root = roots[region_index]
if root is not None:
contexts[root.getroottree()] = [item[0] for item in getNodesAtPositions(view, [root], regions_cursors[region_index])]
return contexts
class QueryXpathCommand(QuickPanelFromInputCommand): # example usage from python console: sublime.active_window().active_view().run_command('query_xpath', { 'prefill_query': '//prefix:LocalName', 'live_mode': True })
max_results_to_show = None
contexts = None
previous_input = None # remember previous query so that when the user next runs this command, it will be prepopulated
def cache_context_nodes(self):
"""Cache context nodes to allow live mode to work with them."""
context_nodes = get_context_nodes_from_cursors(self.view)
change_count = self.view.change_count()
different_tree = self.contexts is None or self.contexts[0] != change_count # if the document has changed since the context nodes were cached
self.contexts = (change_count, context_nodes, namespace_map_from_contexts(context_nodes))
tree_count = 0
for root in context_nodes:
tree_count += 1
print('XPath: context nodes: ', getExactXPathOfNodes(context_nodes[root]))
if tree_count == 1: # if there is exactly one xml tree
tree = next(iter(context_nodes.keys())) # get the tree
if len(context_nodes[tree]) == 0: # if there are no context nodes
context_nodes[tree].append(tree.getroot()) # use the root element as the context node
# if the document has changed, attempt to highlight the context node in the quick panel by default so that the cursor doesn't move (far). If the document hasn't changed, keep the previously selected result.
# TODO: make a setting to define a preference for whether to try to show the previously selected node, or the context node. If the document has changed, the previously selected node can possibly be retained by it's exact XPath
# - also attempt to fallback to the other when the specified one can't be found in the results
if different_tree and isinstance(self.highlighted_result, LocationAwareElement):
self.highlighted_result = context_nodes[tree][0]
self.highlighted_index = 0
def run(self, edit, **args):
self.cache_context_nodes()
if len(self.contexts[1].keys()) == 0: # if there are no context nodes, don't proceed to show the xpath input panel
return
super().run(edit, **args)
def parse_args(self):
self.arguments['initial_value'] = self.get_value_from_args('prefill_query', self.previous_input)
if self.arguments['initial_value'] is None:
global_history = getBoolValueFromArgsOrSettings('global_query_history', self.arguments, True)
keys = [get_history_key_for_view(self.view)]
if global_history:
keys = None
history = get_xpath_query_history_for_keys(keys)
if len(history) > 0:
self.arguments['initial_value'] = history[-1]
# if previous input is blank, or specifically told to, use path of first cursor. even if live mode enabled, cursor won't move much when activating this command
if getBoolValueFromArgsOrSettings('prefill_path_at_cursor', self.arguments, False) or not self.arguments['initial_value']:
global previous_first_selection
prev = previous_first_selection.get(self.view.id(), None)
if prev is not None:
xpaths = getExactXPathOfNodes([prev[1]]) # ensure the path matches this node and only this node
self.arguments['initial_value'] = xpaths[0]
self.arguments['label'] = 'enter xpath'
self.arguments['syntax'] = 'xpath.sublime-syntax'
global settings
self.max_results_to_show = int(self.get_value_from_args('max_results_to_show', settings.get('max_results_to_show', 1000)))
self.arguments['async'] = getBoolValueFromArgsOrSettings('live_query_async', self.arguments, True)
self.arguments['delay'] = int(settings.get('live_query_delay', 0))
self.arguments['live_mode'] = getBoolValueFromArgsOrSettings('live_mode', self.arguments, True)
self.arguments['normalize_whitespace_in_preview'] = getBoolValueFromArgsOrSettings('normalize_whitespace_in_preview', self.arguments, False)
self.arguments['auto_completion_triggers'] = settings.get('auto_completion_triggers', '/')
self.arguments['intelligent_auto_complete'] = getBoolValueFromArgsOrSettings('intelligent_auto_complete', self.arguments, True)
if 'goto_element' not in self.arguments:
self.arguments['goto_element'] = settings.get('goto_element', 'open')
if 'goto_attribute' not in self.arguments:
self.arguments['goto_attribute'] = settings.get('goto_attribute', 'value')
super().parse_args()
def get_query_results(self, query):
results = None
status_text = None
if len(query.strip()) == 0:
status_text = 'No query entered'
else:
if self.contexts[0] != self.view.change_count(): # if the document has changed since the context nodes were cached
self.cache_context_nodes()
try:
results = list((result for result in get_results_for_xpath_query_multiple_trees(query, self.contexts[1], self.contexts[2])))# if not isinstance(result, etree.CommentBase)))
except (ValueError, etree.XPathError) as e:
last_char = query.rstrip()[-1]
if not last_char in ('/', ':', '@', '[', '(', ','): # log exception to console only if might be useful
print('XPath: exception evaluating results for "' + query + '": ' + repr(e))
#print(e.error_log)
#traceback.print_tb(e.__traceback__)
status_text = e.__class__.__name__ + ': ' + str(e)
if status_text is None: # if there was no error
status_text = str(len(results)) + ' result'
if len(results) != 1:
status_text += 's'
status_text += ' from query'
if self.max_results_to_show > 0 and len(results) > self.max_results_to_show:
status_text += ' (showing first ' + str(self.max_results_to_show) + ')'
results = results[0:self.max_results_to_show]
self.view.set_status('xpath_query', status_text or '')
return results
def get_items_from_input(self):
return self.get_query_results(self.current_value)
def get_items_to_show_in_quickpanel(self):
results = self.items
if results is None:
return None
# truncate each xml result at 70 chars so that it appears (more) correctly in the quick panel
maxlen = 70
show_text_preview = None
if self.arguments['normalize_whitespace_in_preview']:
show_text_preview = lambda result: collapseWhitespace(str(result), maxlen)
else:
show_text_preview = lambda result: str(result)[0:maxlen]
unique_types_in_result = getUniqueItems((type(item) for item in results))
next(unique_types_in_result, None)
muliple_types_in_result = next(unique_types_in_result, None) is not None
show_element_preview = lambda e: [getTagName(e)[2], collapseWhitespace(e.text, maxlen), getElementXMLPreview(self.view, e, maxlen)]
def show_preview(item):
if isinstance(item, etree.ElementBase) and not isinstance(item, etree.CommentBase):
return show_element_preview(item)
else:
show = show_text_preview(item)
if muliple_types_in_result: # if some items are elements (where we show 3 lines) and some are other node types (where we show 1 line), we need to return 3 lines to ensure Sublime will show the results correctly
show = [show, '', '']
return show
return [show_preview(item) for item in results]
def quickpanel_selection_changed(self, selected_index):
super().quickpanel_selection_changed(selected_index)
if selected_index > -1: # quick panel wasn't cancelled
move_cursors_to_nodes(self.view, [self.items[selected_index]], self.arguments['goto_element'], self.arguments['goto_attribute'])
self.refresh_selection_bug_work_around()
#self.view.window().focus_view(self.view) # focus the view to try getting the cursor positions to update while the quick panel is open
#if self.input_panel is not None:
# self.input_panel.window().focus_view(self.input_panel)
def commit_input(self):
self.previous_input = self.current_value
add_to_xpath_query_history_for_key(get_history_key_for_view(self.view), self.current_value)
def command_complete(self, cancelled):
self.view.erase_status('xpath_query')
super().command_complete(cancelled)
def show_input_panel(self, initial_value):
super().show_input_panel(initial_value)
settings = self.input_panel.settings()
settings.set('auto_complete', True)
settings.set('auto_complete_include_snippets_when_typing', False)
if len(self.arguments['auto_completion_triggers'] or '') > 0:
settings.set('auto_complete_triggers', [ {'selector': 'query.xml.xpath - string', 'characters': self.arguments['auto_completion_triggers']} ])
def on_query_completions(self, prefix, locations): # moved from .sublime-completions file here - https://github.com/SublimeTextIssues/Core/issues/819
flags = sublime.INHIBIT_WORD_COMPLETIONS
if not self.arguments['intelligent_auto_complete']:
flags = 0
return (completions_for_xpath_query(self.input_panel, prefix, locations, self.contexts[1], self.contexts[2], settings.get('variables', {}), self.arguments['intelligent_auto_complete']), flags)
def on_completion_committed(self):
# show the auto complete popup again if the item that was autocompleted ended in a character that is an auto completion trigger
for cursor in self.input_panel.sel():
prev_char = self.input_panel.substr(cursor.begin() - 1)
if prev_char not in self.arguments['auto_completion_triggers']:
return
self.input_panel.run_command('auto_complete')
self.input_panel.window().focus_view(self.input_panel)
def is_enabled(self, **args):
return isCursorInsideSGML(self.view)
def is_visible(self):
return containsSGML(self.view)
def completions_for_xpath_query(view, prefix, locations, contexts, namespaces, variables, intelligent):
def completions_axis_specifiers():
completions = ['ancestor', 'ancestor-or-self', 'attribute', 'child', 'descendant', 'descendant-or-self', 'following', 'following-sibling', 'namespace', 'parent', 'preceding', 'preceding-sibling', 'self']
return [
sublime.CompletionItem.snippet_completion(
completion,
completion + '::',
annotation='axis',
kind=sublime.KIND_NAVIGATION
) for completion in completions]
def completions_node_types():
completions = ['text', 'node', 'comment', 'processing-instruction']
return [
sublime.CompletionItem.snippet_completion(
completion,
completion + '()',
annotation='node type',
kind=sublime.KIND_TYPE
) for completion in completions]
def completions_functions():
funcs = {
'nodeset': ['last', 'position', 'count', 'local-name', 'namespace-uri', 'name'],
'string': ['string', 'concat', 'starts-with', 'contains', 'substring-before', 'substring-after', 'substring', 'string-length', 'normalize-space', 'translate'],
'boolean': ['boolean', 'not', 'true', 'false', 'lang'],
'number': ['number', 'sum', 'floor', 'ceiling', 'round'],
'XPath 2.0': ['upper-case', 'lower-case', 'ends-with', 'tokenize', 'matches'],
'Custom': ['print']
}
for key in funcs.keys():
for completion in funcs[key]:
yield sublime.CompletionItem.snippet_completion(
completion,
completion + '($1)',
annotation=key,
kind=sublime.KIND_FUNCTION
)
completions = []