- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试了各种逻辑和方法,甚至用谷歌搜索了很多,但仍然无法为我的问题想出任何令人满意的答案。我编写了一个如下所示的程序来突出显示我遇到一些问题的特定 xml 代码。抱歉让这篇文章有点长。我只是想清楚地解释我的问题。
编辑:要运行下面给定的程序,您将需要两个 xml 文件,它们位于:sample1和 sample2 。保存此文件,然后在下面的代码中编辑要在 C:/Users/editThisLocation/Desktop/sample1.xml
中保存文件的位置
from lxml import etree
from collections import defaultdict
from collections import OrderedDict
from distutils.filelist import findall
from lxml._elementpath import findtext
from Tkinter import *
import Tkinter as tk
import ttk
root = Tk()
class CustomText(tk.Text):
def __init__(self, *args, **kwargs):
tk.Text.__init__(self, *args, **kwargs)
def highlight_pattern(self, pattern, tag, start, end,
regexp=True):
start = self.index(start)
end = self.index(end)
self.mark_set("matchStart", start)
self.mark_set("matchEnd", start)
self.mark_set("searchLimit", end)
count = tk.IntVar()
while True:
index = self.search(pattern, "matchEnd","searchLimit",
count=count, regexp=regexp)
if index == "": break
self.mark_set("matchStart", index)
self.mark_set("matchEnd", "%s+%sc" % (index, count.get()))
self.tag_add(tag, "matchStart", "matchEnd")
def Remove_pattern(self, pattern, tag, start="1.0", end="end",
regexp=True):
start = self.index(start)
end = self.index(end)
self.mark_set("matchStart", start)
self.mark_set("matchEnd", start)
self.mark_set("searchLimit", end)
count = tk.IntVar()
while True:
index = self.search(pattern, "matchEnd","searchLimit",
count=count, regexp=regexp)
if index == "": break
self.mark_set("matchStart", index)
self.mark_set("matchEnd", "%s+%sc" % (index, count.get()))
self.tag_remove(tag, start, end)
recovering_parser = etree.XMLParser(recover=True)
sample1File = open('C:/Users/editThisLocation/Desktop/sample1.xml', 'r')
contents_sample1 = sample1File.read()
sample2File = open('C:/Users/editThisLocation/Desktop/sample2.xml', 'r')
contents_sample2 = sample2File.read()
frame1 = Frame(width=768, height=25, bg="#000000", colormap="new")
frame1.pack()
Label(frame1, text="sample 1 below - scroll to see more").pack()
textbox = CustomText(root)
textbox.insert(END,contents_sample1)
textbox.pack(expand=1, fill=BOTH)
frame2 = Frame(width=768, height=25, bg="#000000", colormap="new")
frame2.pack()
Label(frame2, text="sample 2 below - scroll to see more").pack()
textbox1 = CustomText(root)
textbox1.insert(END,contents_sample2)
textbox1.pack(expand=1, fill=BOTH)
sample1 = etree.parse("C:/Users/editThisLocation/Desktop/sample1.xml", parser=recovering_parser).getroot()
sample2 = etree.parse("C:/Users/editThisLocation/Desktop/sample2.xml", parser=recovering_parser).getroot()
ToStringsample1 = etree.tostring(sample1)
sample1String = etree.fromstring(ToStringsample1, parser=recovering_parser)
ToStringsample2 = etree.tostring(sample2)
sample2String = etree.fromstring(ToStringsample2, parser=recovering_parser)
timesample1 = sample1String.findall('{http://www.example.org/eHorizon}time')
timesample2 = sample2String.findall('{http://www.example.org/eHorizon}time')
for i,j in zip(timesample1,timesample2):
for k,l in zip(i.findall("{http://www.example.org/eHorizon}feature"), j.findall("{http://www.example.org/eHorizon}feature")):
if [k.attrib.get('color'), k.attrib.get('type')] != [l.attrib.get('color'), l.attrib.get('type')]:
faultyLine = [k.attrib.get('color'), k.attrib.get('type'), k.text]
def high(event):
textbox.tag_configure("yellow", background="yellow")
limit_1 = '<p1:time nTimestamp="{0}">'.format(5) #limit my search between timestamp 5 and timestamp 6
limit_2 = '<p1:time nTimestamp="{0}">'.format((5+1)) # timestamp 6
highlightString = '<p1:feature color="{0}" type="{1}">{2}</p1:feature>'.format(faultyLine[0],faultyLine[1],faultyLine[2]) #string to be highlighted
textbox.highlight_pattern(limit_1, "yellow", start=textbox.search(limit_1, '1.0', stopindex=END), end=textbox.search(limit_2, '1.0', stopindex=END))
textbox.highlight_pattern(highlightString, "yellow", start=textbox.search(limit_1, '1.0', stopindex=END), end=textbox.search(limit_2, '1.0', stopindex=END))
button = 'press here to highlight error line'
c = ttk.Label(root, text=button)
c.bind("<Button-1>",high)
c.pack()
root.mainloop()
我想要什么
如果您运行上面的代码,它将显示以下输出:
正如您在图片中看到的,我只想突出显示标有绿色勾号的代码。你们中的一些人可能会考虑限制开始和结束索引以突出显示该模式。但是,如果您在我的程序中看到我已经在使用开始和结束索引来将我的输出限制为仅 nTimestamp="5"
,为此我正在使用 limit_1
和 limit_2
变量。
那么在这种类型的数据中,如何正确突出显示多个内部单个nTimestamp
中的一种模式?
编辑:在这里,我特别想突出显示 nTimestamp="5"
中的第三项,因为该项目不存在于 sample2.xml
中正如您在两个 xml 文件中看到的那样,当程序运行时,它也会对此进行区分。唯一的问题是突出显示正确的项目,在我的例子中是第三个。
我正在使用 Bryan Oakley 代码 here 中的突出显示类
编辑最近
根据 kobejohn 在下面的评论中提出的问题,目标文件永远不会为空。目标文件总是有可能含有额外或缺失的元素。最后,我当前的目的是仅突出显示不同或缺失的深层元素以及它们所在的时间戳。然而,时间戳的突出显示是正确的,但突出显示上面解释的深层元素的问题仍然是一个问题。感谢 kobejohn 澄清这一点。
注意:
我知道并且您可能建议正确工作的一种方法是提取绿色标记图案的索引并简单地在其上运行突出显示标记,但这种方法是非常硬编码的,并且在您必须处理的大数据中有很多变化,它是完全无效的。我正在寻找另一个更好的选择。
最佳答案
此解决方案的工作原理是根据您提供的描述在 base.xml
和 test.xml
之间执行简化的比较。差异结果是结合了原始树的第三个 XML 树。输出是差异,并用颜色编码突出显示文件之间不匹配的行。
我希望您可以使用它或根据您的需要进行调整。
复制粘贴脚本
import copy
from lxml import etree
import Tkinter as tk
# assumption: the root element of both trees is the same
# note: missing subtrees will only have the parent element highlighted
def element_content_equal(e1, e2):
# starting point here: http://stackoverflow.com/a/24349916/377366
try:
if e1.tag != e1.tag:
return False
elif e1.text != e2.text:
return False
elif e1.tail != e2.tail:
return False
elif e1.attrib != e2.attrib:
return False
except AttributeError:
# e.g. None is passed in for an element
return False
return True
def element_is_in_sequence(element, sequence):
for e in sequence:
if element_content_equal(e, element):
return True
return False
def copy_element_without_children(element):
e_copy = etree.Element(element.tag, attrib=element.attrib, nsmap=element.nsmap)
e_copy.text = element.text
e_copy.tail = element.tail
return e_copy
# start at the root of both xml trees
parser = etree.XMLParser(recover=True, remove_blank_text=True)
base_root = etree.parse('base.xml', parser=parser).getroot()
test_root = etree.parse('test.xml', parser=parser).getroot()
# each element from the original xml trees will be placed into a merge tree
merge_root = copy_element_without_children(base_root)
# additionally each merge tree element will be tagged with its source
DIFF_ATTRIB = 'diff'
FROM_BASE_ONLY = 'base'
FROM_TEST_ONLY = 'test'
# process the pair of trees, one set of parents at a time
parent_stack = [(base_root, test_root, merge_root)]
while parent_stack:
base_parent, test_parent, merge_parent = parent_stack.pop()
base_children = base_parent.getchildren()
test_children = test_parent.getchildren()
# compare children and transfer to merge tree
base_children_iter = iter(base_children)
test_children_iter = iter(test_children)
base_child = next(base_children_iter, None)
test_child = next(test_children_iter, None)
while (base_child is not None) or (test_child is not None):
# first handle the case of a unique base child
if (base_child is not None) and (not element_is_in_sequence(base_child, test_children)):
# base_child is unique: deep copy with base only tag
merge_child = copy.deepcopy(base_child)
merge_child.attrib[DIFF_ATTRIB] = FROM_BASE_ONLY
merge_parent.append(merge_child)
# this unique child has already been fully copied to the merge tree so it doesn't go on the stack
# only move the base child since test child hasn't been handled yet
base_child = next(base_children_iter, None)
elif (test_child is not None) and (not element_is_in_sequence(test_child, base_children)):
# test_child is unique: deep copy with base only tag
merge_child = copy.deepcopy(test_child)
merge_child.attrib[DIFF_ATTRIB] = FROM_TEST_ONLY
merge_parent.append(merge_child)
# this unique child has already been fully copied to the merge tree so it doesn't go on the stack
# only move test child since base child hasn't been handled yet
test_child = next(test_children_iter, None)
elif element_content_equal(base_child, test_child):
# both trees share the same element: shallow copy either child with shared tag
merge_child = copy_element_without_children(base_child)
merge_parent.append(merge_child)
# put pair of children on stack as parents to be tested since their children may differ
parent_stack.append((base_child, test_child, merge_child))
# move on to next children in both trees since this was a shared element
base_child = next(base_children_iter, None)
test_child = next(test_children_iter, None)
else:
raise RuntimeError # there is something wrong - element should be unique or shared.
# display merge_tree with highlighting to indicate source of each line
# no highlight: common element in both trees
# green: line that exists only in test tree (i.e. additional)
# red: line that exists only in the base tree (i.e. missing)
root = tk.Tk()
textbox = tk.Text(root)
textbox.pack(expand=1, fill=tk.BOTH)
textbox.tag_config(FROM_BASE_ONLY, background='#ff5555')
textbox.tag_config(FROM_TEST_ONLY, background='#55ff55')
# find diff lines to highlight within merge_tree string that includes kludge attributes
merge_tree_string = etree.tostring(merge_root, pretty_print=True)
diffs_by_line = []
for line, line_text in enumerate(merge_tree_string.split('\n')):
for diff_type in (FROM_BASE_ONLY, FROM_TEST_ONLY):
if diff_type in line_text:
diffs_by_line.append((line+1, diff_type))
# remove kludge attributes
for element in merge_root.iter():
try:
del(element.attrib[DIFF_ATTRIB])
except KeyError:
pass
merge_tree_string = etree.tostring(merge_root, pretty_print=True)
# highlight final lines
textbox.insert(tk.END, merge_tree_string)
for line, diff_type in diffs_by_line:
textbox.tag_add(diff_type, '{}.0'.format(line), '{}.0'.format(int(line)+1))
root.mainloop()
请注意,我清理了 xml,因为我的行为与原始 XML 不一致。原始版本基本上使用反斜杠而不是正斜杠,并且在开始标签上也有错误的结束斜杠。
<小时/>base.xml
(与此脚本位于同一位置)
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<p1:sample1 xmlns:p1="http://www.example.org/eHorizon">
<p1:time nTimestamp="5">
<p1:location hours = "1" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="2" type="a">564</p1:feature>
<p1:feature color="3" type="b">570</p1:feature>
<p1:feature color="4" type="c">570</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="7" type="b">570</p1:feature>
<p1:feature color="8" type="c">580</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
</p1:location>
</p1:time>
<p1:time nTimestamp="6">
<p1:location hours = "1" path = '1'>
<p1:feature color="2" type="a">564</p1:feature>
<p1:feature color="3" type="b">570</p1:feature>
<p1:feature color="4" type="c">570</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="9" type="b">590</p1:feature>
<p1:feature color="10" type="c">600</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="7" type="b">570</p1:feature>
<p1:feature color="8" type="c">580</p1:feature>
</p1:location>
</p1:time>
</p1:sample1>
<小时/>
test.xml
(与此脚本位于同一位置)
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<p1:sample1 xmlns:p1="http://www.example.org/eHorizon">
<p1:time nTimestamp="5">
<p1:location hours = "1" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="2" type="a">564</p1:feature>
<p1:feature color="3" type="b">570</p1:feature>
<p1:feature color="4" type="c">570</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="7" type="b">570</p1:feature>
<p1:feature color="8" type="c">580</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="9" type="b">1111</p1:feature>
<p1:feature color="10" type="c">2222</p1:feature>
</p1:location>
</p1:time>
<p1:time nTimestamp="6">
<p1:location hours = "1" path = '1'>
<p1:feature color="2" type="a">564</p1:feature>
<p1:feature color="3" type="b">570</p1:feature>
<p1:feature color="4" type="c">570</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="9" type="b">590</p1:feature>
<p1:feature color="10" type="c">600</p1:feature>
</p1:location>
<p1:location hours = "5" path = '1'>
<p1:feature color="6" type="a">560</p1:feature>
<p1:feature color="7" type="b">570</p1:feature>
<p1:feature color="8" type="c">580</p1:feature>
</p1:location>
</p1:time>
</p1:sample1>
关于python - 在 Tkinter 文本框中突出显示两个 xml 文件之间的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32097428/
我从NVIDIA手册Eg中复制了以下代码:__threadfence()。他们为什么有 在以下代码中使用了__threadfence()。我认为使用__syncthreads()而不是__thread
我在使用 SVN 更改列表和 svn diff 时遇到了一些麻烦.特别是我想获取特定修订范围的特定文件列表的更改历史记录。 SVN 变更列表似乎是完美的解决方案,所以我的方法是: svn change
我有两个 IP 地址列表。我需要将它们合并到三个文件中,交集,仅来自 list1 的文件和仅来自 list2 的文件。 我可以用 awk/diff 或任何其他简单的 unix 命令来做到这一点吗?如何
假设自上次更新(恢复)到我的 a.b 文件以来我做了一些更改。 此 a.b 文件也在存储库中更改。 现在我想将我所做的更改与 repos 更改进行比较。 如果我 svn revert 文件,我可以看到
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我使用的是 openssl 1.0.1c , linux x86_64 我正在创建包含“hello”的文件(没有换行符) openssl dgst -sha256 hello_file i get :
假设我们有几个库。 有什么区别核心和 普通 图书馆?他们应该如何被认可,我们是否组织了两者的职责? +Common -Class1 +Core -Class2 +Lib1 has : Comm
如何在 SQLite 中计算以毫秒为单位的最小时间间隔? 好的,提供一些背景信息, 这是我的 table 的样子: link_budget table 所以有这个时间列,我想发出一个请求,以毫秒为单位
我想知道,乐观并发控制 (OCC) 和多版本并发控制 (MVCC) 之间的区别是什么? 到目前为止,我知道两者都是基于更新的版本检查。 在 OCC 中,我读到了没有获取读取访问锁的事务,仅适用于以后的
说到 SignalR,我有点菜鸟。刚刚开始四处探索和谷歌搜索它,我想知道是否有人可以向我解释完成的事情之间的一些差异。 在我见过的一些示例中,人们需要创建一个 Startup 类并定义 app.Map
我在 Ogre 工作,但这是一个一般的四元数问题。 我有一个对象,我最初对其应用旋转四元数 Q1。后来,我想让它看起来好像我最初通过不同的四元数 Q2 旋转了对象。 我如何计算四元数,该四元数将采用已
我了解 javascript 模块模式,但我使用两种类型的模块模式,并且想从架构 Angular 了解它们之间的区别。 // PATTERN ONE var module = (function()
我有两个具有完全相同键的 JSON。 val json1 = """{ 'name': 'Henry', 'age' : 26, 'activities' : {
我发现使用 VBA 在 Excel 中复制单个文件有两种不同的方法。一是文件复制: FileCopy (originalPath), (pathToCopyTo) 另一个是名称: Name (orig
我想知道查找两个 float 组之间差异的绝对值的最有效方法是什么? 是否是以下内容: private float absDifference(float[] vector1, float[] vec
我有一个关于 wicket getApplication 的问题。 getApplication() 和 getSession().getApplication 有什么区别? 部署 wicket 应用
我刚刚开始使用activemq,我有一个关于追溯消费者的问题,为了启用这个功能,你需要有一个持久的订阅。但是在主题上启用和不启用追溯的持久订阅有什么区别? activemq 文档说。 http://a
我有两个具有完全相同键的 JSON。 val json1 = """{ 'name': 'Henry', 'age' : 26, 'activities' : {
得到另一个 Erlang 二进制表示查询('因为这就是我最近正在阅读的内容,并且需要二进制协议(protocol)实现)。 如果我正确理解了类型说明符,那么对于“浮点”类型值,8 字节表示似乎很好(这
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
我是一名优秀的程序员,十分优秀!