0

我正在开发一个 python 实用程序来搜索并显示一个非常大的配置文件中记录的完整路径,存储为 xml 文件。文件大小可以是 12M,可以容纳 294460 行,并且可以增长到更大的大小。

这是一个示例(简化):

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<root version="1.1.1">
  <record path="">
    <record path="path1">
      <field name="some_name1" value="1234"/>
      <record path="path2">
        <field name="0" value="abcd0"/>
        <field name="1" value="abcd1"/>
        <field name="2" value="abcd2"/>
        <field name="28" value="abcd28"/>
        <field name="29" value="abcd29"/>
      </record>
    </record>
    <record path="pathx">
      <record path="pathy">
        <record path="pathz">
        </record>
        <record path="pathv">
          <record path="pathw">
            <field name="some_name1" value="yes"/>
            <field name="some_name2" value="2084"/>
            <field name="some_buffer_name" value="14"/>
            <record path="cache_value">
              <field name="some_name7000" value="12"/>
            </record>
    </record>
        <record path="path_something">
          <field name="key_word1" value="8"/>
          <field name="key_word2" value="9"/>
          <field name="key_word3" value="10"/>
          <field name="key5" value="1"/>
          <field name="key6" value="1"/>
          <field name="key7" value="yes"/>
    </record>
  </record>
</root>

我有兴趣在文件上运行并将所有在节点的路径或字段属性中保存搜索字符串的节点归档。因为节点“类型”(或节点名称)可以是记录或字段,因此属性的名称可以从路径更改为名称。

我使用 minidom 在 xml 中解析和搜索,但是我的代码占用了太多资源和太多时间。

这就是我写的: xml_file_location 是文件的位置 string_to_search 是我在 XML 文件中搜索的字符串,我找到的那个节点的路径存储在 type: record 的节点中,在一个名为: path 的属性中,这就是我打印给用户的内容。

with open(xml_file_location, 'r') as inF:
# search the xml file for lines with the string for search
    for line in inF:
        if string_to_search in line:
            found_counter = found_counter + 1
            node_type = line.strip(" ").split(" ")[0]
            node_type = re.sub('[^A-Za-z0-9]+', '', node_type)
            node_attr = line.strip(" ").split(" ")[1]
            node_value = re.sub('[^A-Za-z0-9_]+', '', node_attr.split("=")[1])
            node_attr = re.sub('[^A-Za-z0-9]+', '', node_attr.split("=")[0])
            #print node_type
            #print node_attr
            #print node_value
            if node_type in lines_dict:
                if not node_attr in lines_dict[node_type]:
                    lines_dict[node_type][node_attr] = [nome_value]
                elif not node_value in lines_dict[node_type][node_attr]:
                        lines_dict[node_type][node_attr].append(node_value)
            else:
                lines_dict[node_type] = {}
                lines_dict[node_type][node_attr] = [node_value]

print "Found: %s strings in the xml file" %found_counter

#pp = pprint.PrettyPrinter(indent=4)
#pp.pprint(lines_dict)

print "Parsing the xml file"
dom = parse(xml_file_location)

print "Locating the full path"

for node_type in lines_dict:
# for all types of node
    elements = dom.getElementsByTagName(node_type)
    # create the elements for those nodes
    for node in elements:
    # go over all nodes in the elements
        if node.hasAttribute(node_attr):
            if node.getAttribute(node_attr) in lines_dict[node_type][node_attr]:
            # check if the attribute appears in the lines dict 
                result = node.getAttribute(node_attr) # holds the path
                parent = node.parentNode       # create a pointer to point on the parent node
                while parent.getAttribute("path") != "":
                # while didn't reach the root of the conf - a record that has an empty path attribute
                    result = parent.getAttribute("path") + "." + result     # add the path of the parent to the full path
                    parent = parent.parentNode                              # advance the parent pointer
                print
                print "Found: %s" %node.toprettyxml().split("\n")[0]
                print "Path:  %s" %result

例如:我将搜索:abcd1 该实用程序将打印完整路径:path1.path2 或者我将搜索:pathw,该实用程序将返回:pathx.pathy.pathv

我知道这是非常低效的,我检查了配置中的所有节点,并将它们与我在简单字符串搜索中放入 list_dic 的内容进行比较。

我尝试使用外部模块来做到这一点,但没有成功

我正在寻找一种更有效的方法来进行这种搜索,我非常感谢您的帮助。

4

2 回答 2

2

正如@Martijn Pieters 所说,使用自 Python 2.5 起就在 stdlib 中的 ElementTree——您使用的是“with”,所以我假设您使用的是 2.6+。它很容易学习,并且它的心智模型非常接近 DOM。

老式的替代方案是 SAX 解析,它一直在 stdlib 中有一个模块:基本上,您指定在解析器遇到开始或结束标记时执行的回调。这有点不自然(它迫使您考虑文本处理,而不是 XML 逻辑结构),但可能非常有效。

于 2013-09-17T08:06:15.970 回答
0

这是我使用 xpath 和 lxml 得到的解决方案:

root = LXML.parse(xml_file_location) elements_list = root.xpath(".//*[@*[contains(., $text)]]", text = string_to_search )

元素列表将捕获其属性包含该字符串的所有节点。

使用 lxmlgetpaerent()方法我问每个节点“谁是你的父母”

这是代码:

root = LXML.parse(xml_file_location)
elements_list = root.xpath(".//*[@*[contains(., $text)]]", text = string_to_search )
print "Found: %s strings in the xml file" %len(elements_list)
for node in elements_list:
    print "\nFound:\n%s" %LXML.tostring(node).split("\n")[0]
    parent = node.getparent()
    if node.tag == "record":
        path = node.get("path") # nodes of type: "record" hold the attribute: "path"
    elif node.tag == "field":
        path = node.get("name") # nodes of type: "field" hold the attribute: "name"
    else:
        print "unclear node type adding empty string"
        path = ""
    full_path = path
    while parent.get("path") != "":
        parent_path = parent.get("path")
        full_path = parent_path + "." + full_path
        parent = parent.getparent()
    print "Full path: %s" %full_path
于 2013-09-22T07:33:45.103 回答