Следующий xml-файл (lieferungen.xml) содержит несколько несоответствий. Некоторые из элементов более чем один идентификатор (например, пункт «Apfel» имеет 3 различных идентификаторы):Python SAX Parser программа, вычисляющая неверные результаты
<?xml version="1.0" encoding="UTF-8"?>
<lieferungen xmlns="urn:myspace:lieferungen" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:myspace:lieferungen C:\xml\lieferungen.xsd">
<artikel id="3526">
<name>apfel</name>
<preis stueckpreis="true">8.97</preis>
<lieferant>Fa. Krause</lieferant>
</artikel>
<artikel id="7866">
<name>Kirschen</name>
<preis stueckpreis="false">10.45</preis>
<lieferant>Fa. Helbig</lieferant>
</artikel>
<artikel id="4444"> <!--DIFFERENT ID FOR apfel!! -->
<name>apfel</name>
<preis stueckpreis="true">12.67</preis>
<lieferant>Fa. Liebig</lieferant>
</artikel>
<artikel id="7866">
<name>Kirschen</name>
<preis stueckpreis="false">17.67</preis>
<lieferant>Fa. Krause</lieferant>
</artikel>
<artikel id="2345"> <!--DIFFERENT ID FOR apfel!! -->
<name>apfel</name>
<preis stueckpreis="true">9.54</preis>
<lieferant>Fa. Mertes</lieferant>
</artikel>
<artikel id="7116"> <!--DIFFERENT ID FOR Kirschen!! -->
<name>Kirschen</name>
<preis stueckpreis="false">16.45</preis>
<lieferant>Fa. Hoeller</lieferant>
</artikel>
<artikel id="7868">
<name>Kohl</name>
<preis stueckpreis="false">3.20</preis>
<lieferant>Fa. Hoeller</lieferant>
</artikel>
<artikel id="7866">
<name>Kirschen</name>
<preis stueckpreis="false">12.45</preis>
<lieferant>Fa. Richard</lieferant>
</artikel>
<artikel id="3245">
<name>Bananen</name>
<preis stueckpreis="false">15.67</preis>
<lieferant>Fa. Hoeller</lieferant>
</artikel>
<artikel id="6745"> <!--DIFFERENT ID FOR Kohl!! -->
<name>Kohl</name>
<preis stueckpreis="false">3.10</preis>
<lieferant>Fa. Reinhardt</lieferant>
</artikel>
<artikel id="7789">
<name>Ananas</name>
<preis stueckpreis="true">8.60</preis>
<lieferant>Fa. Richard</lieferant>
</artikel>
</lieferungen>
Для того, чтобы найти все несоответствия в файле, я написал следующий саксофон-парсер в питоне:
import xml.sax
import sys
class C_Handler(xml.sax.ContentHandler):
def __init__(self):
self.items = {}
self.items2 = {}
self.read = 0
self.id = 0
def startDocument(self):
print("Inconsistencies:\n")
def startElement(self, tag, attributes):
if tag=="name":
self.read = 1
if tag=="artikel":
self.id = attributes["id"]
def endElement(self, tag):
if tag=="name":
self.read = 0
def characters(self, content):
if self.read == 1:
item = content
#check whether the item is not yet part of the dictionaries
if item not in self.items:
#add item (e.g. "apfel") to both dictionary "items" and
#dictionary "items2". The value for the item is the id in the
#case of dictionary "items" and "0" in the case of dictionary
#"items2". The second dictionary contains the number of
#inconsistencies for each product. At the beginning, the
#number of inconsistencies for the product is zero.
self.items[item] = self.id
self.items2[item] = 0
else:
if self.items[item] == self.id:
#increase number of inconsistencies by 1:
self.items2[item] = self.items2[item] + 1
def endDocument(self):
for prod in self.items2:
if self.items2[prod]>0:
print("There are {} different IDs for item \"
{}\".".format(self.items2[prod] + 1, prod))
if (__name__ == "__main__"):
c = C_Handler()
xml.sax.parse("lieferungen.xml", c)
вывод этой программы выглядит следующим образом:
Inconsistencies:
There are 3 different IDs for item "Kirschen".
Как вы можете видеть, из файла (обратите внимание на комментарии маркировочные вхождений более одного ID), этот вывод является неправильным двумя способами:
- Имеются только два разных идентификатора товара «Киршен», а не три.
- Несколько пунктов с более чем одним ID не упоминаются вообще (например, пункт «Коле» имеет два различных идентификаторов)
Однако, я не понимаю, что происходит не так в моем коде.
спасибо! – Tommy