Reverting core/ and drivers/ directories before change 15514
This reverts commit 23fb21617769f4320de93b5b1805c6ec3ca9b809.
Change-Id: I0c116f8d7195c75c7ef17f296843924d3e2a0961
diff --git a/TestON/core/xmldict.py b/TestON/core/xmldict.py
index a85c9ad..808b365 100644
--- a/TestON/core/xmldict.py
+++ b/TestON/core/xmldict.py
@@ -1,17 +1,17 @@
-"""
+'''
Created on 03-Dec-2012
-Copyright 2012 Open Networking Foundation ( ONF )
+Copyright 2012 Open Networking Foundation (ONF)
Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
-author:: Anil Kumar ( anilkumar.s@paxterrasolutions.com )
+@author: Anil Kumar (anilkumar.s@paxterrasolutions.com)
TestON is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
- ( at your option ) any later version.
+ (at your option) any later version.
TestON is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -21,7 +21,8 @@
You should have received a copy of the GNU General Public License
along with TestON. If not, see <http://www.gnu.org/licenses/>.
-"""
+'''
+
"""
xmldict
~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -30,153 +31,141 @@
"""
import datetime
-
-def xml_to_dict( root_or_str, strict=True ):
+def xml_to_dict(root_or_str, strict=True):
"""
Converts `root_or_str` which can be parsed xml or a xml string to dict.
"""
root = root_or_str
- if isinstance( root, str ):
+ if isinstance(root, str):
import xml.etree.cElementTree as ElementTree
- root = ElementTree.XML( root_or_str )
- try:
- return { root.tag: _from_xml( root, strict ) }
- except Exception:
+ root = ElementTree.XML(root_or_str)
+ try :
+ return {root.tag: _from_xml(root, strict)}
+ except StandardError:
return None
-
-def dict_to_xml( dict_xml ):
+def dict_to_xml(dict_xml):
"""
Converts `dict_xml` which is a python dict to corresponding xml.
"""
- return _to_xml( dict_xml )
+ return _to_xml(dict_xml)
-
-def _to_xml( el ):
+def _to_xml(el):
"""
Converts `el` to its xml representation.
"""
val = None
- if isinstance( el, dict ):
- val = _dict_to_xml( el )
- elif isinstance( el, bool ):
- val = str( el ).lower()
+ if isinstance(el, dict):
+ val = _dict_to_xml(el)
+ elif isinstance(el, bool):
+ val = str(el).lower()
else:
val = el
- if val is None:
- val = 'null'
+ if val is None: val = 'null'
return val
-
-def _extract_attrs( els ):
+def _extract_attrs(els):
"""
Extracts attributes from dictionary `els`. Attributes are keys which start
with '@'
"""
- if not isinstance( els, dict ):
+ if not isinstance(els, dict):
return ''
- return ''.join( ' %s="%s"' % ( key[ 1: ], value ) for key, value in els.iteritems()
- if key.startswith( '@' ) )
+ return ''.join(' %s="%s"' % (key[1:], value) for key, value in els.iteritems()
+ if key.startswith('@'))
-
-def _dict_to_xml( els ):
+def _dict_to_xml(els):
"""
Converts `els` which is a python dict to corresponding xml.
"""
- def process_content( tag, content ):
- attrs = _extract_attrs( content )
- text = isinstance( content, dict ) and content.get( '#text', '' ) or ''
- return '<%s%s>%s%s</%s>' % ( tag, attrs, _to_xml( content ), text, tag )
+ def process_content(tag, content):
+ attrs = _extract_attrs(content)
+ text = isinstance(content, dict) and content.get('#text', '') or ''
+ return '<%s%s>%s%s</%s>' % (tag, attrs, _to_xml(content), text, tag)
tags = []
for tag, content in els.iteritems():
# Text and attributes
- if tag.startswith( '@' ) or tag == '#text':
+ if tag.startswith('@') or tag == '#text':
continue
- elif isinstance( content, list ):
+ elif isinstance(content, list):
for el in content:
- tags.append( process_content( tag, el ) )
- elif isinstance( content, dict ):
- tags.append( process_content( tag, content ) )
+ tags.append(process_content(tag, el))
+ elif isinstance(content, dict):
+ tags.append(process_content(tag, content))
else:
- tags.append( '<%s>%s</%s>' % ( tag, _to_xml( content ), tag ) )
- return ''.join( tags )
+ tags.append('<%s>%s</%s>' % (tag, _to_xml(content), tag))
+ return ''.join(tags)
-
-def _is_xml_el_dict( el ):
+def _is_xml_el_dict(el):
"""
Returns true if `el` is supposed to be a dict.
This function makes sense only in the context of making dicts out of xml.
"""
- if len( el ) == 1 or el[ 0 ].tag != el[ 1 ].tag:
+ if len(el) == 1 or el[0].tag != el[1].tag:
return True
return False
-
-def _is_xml_el_list( el ):
+def _is_xml_el_list(el):
"""
Returns true if `el` is supposed to be a list.
This function makes sense only in the context of making lists out of xml.
"""
- if len( el ) > 1 and el[ 0 ].tag == el[ 1 ].tag:
+ if len(el) > 1 and el[0].tag == el[1].tag:
return True
return False
-
-def _str_to_datetime( date_str ):
+def _str_to_datetime(date_str):
try:
- val = datetime.datetime.strptime( date_str, "%Y-%m-%dT%H:%M:%SZ" )
+ val = datetime.datetime.strptime(date_str, "%Y-%m-%dT%H:%M:%SZ")
except ValueError:
val = date_str
return val
-
-def _str_to_boolean( bool_str ):
- if bool_str.lower() != 'false' and bool( bool_str ):
+def _str_to_boolean(bool_str):
+ if bool_str.lower() != 'false' and bool(bool_str):
return True
return False
-
-def _from_xml( el, strict ):
+def _from_xml(el, strict):
"""
Extracts value of xml element element `el`.
"""
val = None
# Parent node.
if el:
- if _is_xml_el_dict( el ):
- val = _dict_from_xml( el, strict )
- elif _is_xml_el_list( el ):
- val = _list_from_xml( el, strict )
+ if _is_xml_el_dict(el):
+ val = _dict_from_xml(el, strict)
+ elif _is_xml_el_list(el):
+ val = _list_from_xml(el, strict)
# Simple node.
else:
attribs = el.items()
# An element with attributes.
if attribs and strict:
- val = dict( ( '@%s' % k, v ) for k, v in dict( attribs ).iteritems() )
+ val = dict(('@%s' % k, v) for k, v in dict(attribs).iteritems())
if el.text:
- converted = _val_and_maybe_convert( el )
- val[ '#text' ] = el.text
+ converted = _val_and_maybe_convert(el)
+ val['#text'] = el.text
if converted != el.text:
- val[ '#value' ] = converted
+ val['#value'] = converted
elif el.text:
# An element with no subelements but text.
- val = _val_and_maybe_convert( el )
+ val = _val_and_maybe_convert(el)
elif attribs:
- val = dict( attribs )
+ val = dict(attribs)
return val
-
-def _val_and_maybe_convert( el ):
+def _val_and_maybe_convert(el):
"""
Converts `el.text` if `el` has attribute `type` with valid value.
"""
text = el.text.strip()
- data_type = el.get( 'type' )
- convertor = _val_and_maybe_convert.convertors.get( data_type )
+ data_type = el.get('type')
+ convertor = _val_and_maybe_convert.convertors.get(data_type)
if convertor:
- return convertor( text )
+ return convertor(text)
else:
return text
_val_and_maybe_convert.convertors = {
@@ -185,24 +174,23 @@
'integer': int
}
-
-def _list_from_xml( els, strict ):
+def _list_from_xml(els, strict):
"""
Converts xml elements list `el_list` to a python list.
"""
+
temp = {}
for el in els:
- tag = el.attrib[ "name" ]
- temp[ tag ] = ( _from_xml( el, strict ) )
+ tag = el.attrib["name"]
+ temp[tag] = (_from_xml(el, strict))
return temp
-
-def _dict_from_xml( els, strict ):
+def _dict_from_xml(els, strict):
"""
Converts xml doc with root `root` to a python dict.
"""
# An element with subelements.
res = {}
for el in els:
- res[ el.tag ] = _from_xml( el, strict )
+ res[el.tag] = _from_xml(el, strict)
return res