X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfatables%2Fxmlextension.py;h=4fc1ab5867629de98d4d338a8c18970e8a8ecaf4;hb=483772a0716028a34cb98012fbe252ffd445fedf;hp=b4b52cd7778d1aa3666a9c65c41e1b714effdb33;hpb=aab206b1b50c439c1697c2bbcfd9e540a6c416cd;p=sfa.git diff --git a/sfatables/xmlextension.py b/sfatables/xmlextension.py index b4b52cd7..4fc1ab58 100644 --- a/sfatables/xmlextension.py +++ b/sfatables/xmlextension.py @@ -1,30 +1,47 @@ +# Matches and targets are specified using XML files. +# They provide the following information: +# - The context required by the match +# - The processor that actually implements the match or target +# - The parameters that the processor needs to evaluate the context + import libxml2 +from sfatables.globals import * class Xmlextension: - context = "" - processor = "" - operand = "VALUE" - arguments = [] - - def __init__(filename): + def __init__(self, dir, component_name): + self.context = "" + self.processor = "" + self.operand = "VALUE" + self.arguments = [] + self.terminal = 0 + + filename = dir+"/"+component_name+".xml" self.xmldoc = libxml2.parseFile(filename) - # TODO: Check xmldoc against a schema - p = self.xmldoc.XPathNewContext() + # TODO: Check xmldoc against a schema + p = self.xmldoc.xpathNewContext() # # # context = p.xpathEval('//context/@select') - self.context = context[0].value + self.context = context[0].content + + processor = p.xpathEval('//processor/@filename') + self.context = processor[0].content - processor = p.xpathEval('//processor@name') - self.context = processor[0].value + name = p.xpathEval('//rule/argument/name') + help = p.xpathEval('//rule/argument/help') + target = p.xpathEval('//rule/argument/operand') - params = p.xpathEval('//rule/argument/@param') - self.arguments = [node.value for node in params] + context = p.xpathEval('//attributes/attribute[@terminal="yes"]') + self.terminal = (context != []) + self.arguments = map(lambda (name,help,target):{'name':name.content,'help':help.content,'target':target.content}, zip(name,help,target)) + + p.xpathFreeContext() + self.xmldoc.freeDoc() return