def processFile(self, file_fullpath, hostID, instanceID, rowsData):
rowNumber = 0
check_tags = ['LastModified', 'FilePath']
# the 'end' event signifies when the end of the XML node has been reached,
# and therefore when all values can be parsed
try:
xml_data = loadFile(file_fullpath)
for event, element in etree.iterparse(xml_data, events=("end",)):
skip_entry = False
tag_dict = {}
if element.tag == "PersistenceItem":
self._processElement(element, tag_dict)
# Check we have everything we need and ignore entries with critical XML errors on them
for tag in check_tags:
if tag in tag_dict:
if tag_dict[tag] is None:
if 'AppCompatPath' in tag_dict:
logger.warning("Malformed tag [%s: %s] in %s, entry: %s (skipping entry)" % (tag, tag_dict[tag], tag_dict['AppCompatPath'], file_fullpath))
else:
logger.warning(
"Malformed tag [%s: %s] in %s, entry: Unknown (skipping entry)" % (tag, tag_dict[tag], file_fullpath))
skip_entry = True
break
# If the entry is valid do some housekeeping:
if not skip_entry:
if tag_dict['ExecutionFlag'] == '1':
tmpExecFlag = True
elif tag_dict['ExecutionFlag'] == '0':
tmpExecFlag = False
else: tmpExecFlag = tag_dict['ExecutionFlag']
namedrow = settings.EntriesFields(HostID=hostID, EntryType=settings.__APPCOMPAT__,
RowNumber=rowNumber,
InstanceID=instanceID,
LastModified=(tag_dict['LastModified'].replace("T"," ").replace("Z","") if 'LastModified' in tag_dict else '0001-01-01 00:00:00'),
LastUpdate=(tag_dict['LastUpdate'].replace("T"," ").replace("Z","") if 'LastUpdate' in tag_dict else '0001-01-01 00:00:00'),
FileName=ntpath.basename(tag_dict['FilePath']),
FilePath=ntpath.dirname(tag_dict['FilePath']),
Size=(tag_dict['Size'] if 'Size' in tag_dict else 'N/A'),
ExecFlag=tmpExecFlag)
rowsData.append(namedrow)
rowNumber += 1
else:
pass
element.clear()
xml_data.close()
except Exception as e:
print e.message
print traceback.format_exc()
pass
appcompat_mirlua_v1.py 文件源码
python
阅读 30
收藏 0
点赞 0
评论 0
评论列表
文章目录