1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
#!/usr/bin/env python
############################################################################
##
## Copyright (C) 2006-2008 University of Utah. All rights reserved.
##
## This file is part of VisTrails.
##
## This file may be used under the terms of the GNU General Public
## License version 2.0 as published by the Free Software Foundation
## and appearing in the file LICENSE.GPL included in the packaging of
## this file. Please review the following to ensure GNU General Public
## Licensing requirements will be met:
## http://www.opensource.org/licenses/gpl-license.php
##
## If you are unsure which license is appropriate for your use (for
## instance, you are interested in developing a commercial derivative
## of VisTrails), please contact us at contact@vistrails.org.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
############################################################################
from core.system import get_elementtree_library
ElementTree = get_elementtree_library()
from cdat_domain import CDATAction, CDATModule, CDATOption, CDATPort
class XMLNode:
def __init__(self):
pass
def has_attribute(self, node, attr):
return node.hasAttribute(attr)
def get_attribute(self, node, attr):
try:
attribute = node.attributes.get(attr)
if attribute is not None:
return attribute.value
except KeyError:
pass
return None
@staticmethod
def convert_from_str(value, type):
def bool_conv(x):
s = str(x).upper()
if s == 'TRUE':
return True
if s == 'FALSE':
return False
if value is not None:
if type == 'str':
return str(value)
elif value.strip() != '':
if type == 'long':
return long(value)
elif type == 'float':
return float(value)
elif type == 'int':
return int(value)
elif type == 'bool':
return bool_conv(value)
elif type == 'date':
return date(*strptime(value, '%Y-%m-%d')[0:3])
elif type == 'datetime':
return datetime(*strptime(value, '%Y-%m-%d %H:%M:%S')[0:6])
return None
class CDATOptionNode(XMLNode):
@staticmethod
def from_xml(node):
tag = node.tag
data = node.get('default', None)
default = CDATOptionNode.convert_from_str(data, 'str')
data = node.get('doc', None)
doc = CDATOptionNode.convert_from_str(data, 'str')
data = node.get('instance', None)
instance = CDATOptionNode.convert_from_str(data, 'str')
return CDATOption(tag=tag, default=default,doc=doc,instance=instance)
class CDATPortNode(XMLNode):
"""Represents Input or Output nodes"""
@staticmethod
def from_xml(node):
tag = node.tag
data = node.get('doc', None)
doc = CDATPortNode.convert_from_str(data, 'str')
data = node.get('instance', None)
instance = CDATPortNode.convert_from_str(data, 'str')
data = node.get('position', None)
position = CDATPortNode.convert_from_str(data, 'int')
data = node.get('required', None)
required = CDATPortNode.convert_from_str(data, 'bool')
return CDATPort(tag=tag, doc=doc, instance=instance,
position=position, required=required)
class CDATActionNode(XMLNode):
@staticmethod
def from_xml(node):
data = node.get('name', None)
name = CDATActionNode.convert_from_str(data,'str')
data = node.get('type', None)
type = CDATActionNode.convert_from_str(data,'str')
options = []
inputs = []
outputs = []
#read children
for child in node.getchildren():
if child.tag == 'options':
for optnode in child.getchildren():
option = CDATOptionNode.from_xml(optnode)
options.append(option)
elif child.tag == 'input':
for inode in child.getchildren():
port = CDATPortNode.from_xml(inode)
inputs.insert(port._position,port)
elif child.tag == 'output':
for onode in child.getchildren():
port = CDATPortNode.from_xml(onode)
outputs.insert(port._position,port)
elif child.tag == 'doc':
doc = child.text
return CDATAction(name=name, type=type, options=options, inputs=inputs,
outputs=outputs, doc=doc)
class CDATModuleNode(XMLNode):
@staticmethod
def from_xml(node):
data = node.get('author',None)
author = CDATModuleNode.convert_from_str(data,'str')
data = node.get('programminglanguage', None)
language = CDATModuleNode.convert_from_str(data,'str')
data = node.get('type', None)
type = CDATModuleNode.convert_from_str(data, 'str')
data = node.get('url', None)
url = CDATModuleNode.convert_from_str(data, 'str')
data = node.get('version', None)
version = CDATModuleNode.convert_from_str(data, 'str')
data = node.get('codepath', None)
codepath = CDATModuleNode.convert_from_str(data, 'str')
actions = []
#read actions
for child in node.getchildren():
if child.tag == 'action':
action = CDATActionNode.from_xml(child)
actions.append(action)
return CDATModule(author=author,
language=language,
type=type,
url=url,
codepath=codepath,
version=version,
actions=actions)
def parse_cdat_xml_file(filename):
""" parse_cdat_xml_file(filename:str) -> CDATDiagnostic
"""
tree = ElementTree.parse(filename)
module = CDATModuleNode.from_xml(tree.getroot())
return module
|