Welcome to mirror list, hosted at ThFree Co, Russian Federation.

xml_output.py « outputs « extensions_framework « modules - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b1102c1888b95caf3194b84db24281632791ac8 (plain)
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
# -*- coding: utf8 -*-
#
# ***** BEGIN GPL LICENSE BLOCK *****
#
# --------------------------------------------------------------------------
# Blender 2.5 Extensions Framework
# --------------------------------------------------------------------------
#
# Authors:
# Doug Hammond
#
# This program 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.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
#
# ***** END GPL LICENCE BLOCK *****
#
import xml.etree.cElementTree as ET
import xml.dom.minidom as MD

class xml_output(object):
	"""This class serves to describe an XML output, it uses
	cElementTree and minidom to construct and format the XML
	data.
	
	"""
	
	"""The format dict describes the XML structure that this class
	should generate, and which properties should be used to fill
	the XML data structure
	
	"""
	format = {}
	
	def __str__(self):
		return ET.tostring(self.root)
	
	def write_pretty(self, file):
		"""Write a formatted XML string to file"""
		xml_dom = MD.parseString(ET.tostring(self.root, encoding='utf-8'))
		xml_dom.writexml(file, addindent=' ', newl='\n', encoding='utf-8')
	
	def pretty(self):
		"""Return a formatted XML string"""
		xml_str = MD.parseString(ET.tostring(self.root))
		return xml_str.toprettyxml()
	
	def get_format(self):
		"""This should be overridden in classes that produce XML
		conditionally
		
		"""
		return self.format
	
	def compute(self, context):
		"""Compute the XML output from the input format"""
		self.context = context
		
		self.root = ET.Element(self.root_element)
		self.parse_dict(self.get_format(), self.root)
		
		return self.root
	
	"""Formatting functions for various data types"""
	format_types = {
		'bool': lambda c,x: str(x).lower(),
		'collection': lambda c,x: x,
		'enum': lambda c,x: x,
		'float': lambda c,x: x,
		'int': lambda c,x: x,
		'pointer': lambda c,x: x,
		'string': lambda c,x: x,
	}
	
	def parse_dict(self, d, elem):
		"""Parse the values in the format dict and collect the
		formatted data into XML structure starting at self.root
		
		"""
		for key in d.keys():
			# tuple provides multiple child elements
			if type(d[key]) is tuple:
				for cd in d[key]:
					self.parse_dict({key:cd}, elem)
				continue # don't create empty element for tuple child
			
			x = ET.SubElement(elem, key)
			
			# dictionary provides nested elements
			if type(d[key]) is dict:
				self.parse_dict(d[key], x)
				
			# list provides direct value insertion
			elif type(d[key]) is list:
				x.text = ' '.join([str(i) for i in d[key]])
			
			# else look up property
			else:
				for p in self.properties:
					if d[key] == p['attr']:
						if 'compute' in p.keys():
							x.text = str(p['compute'](self.context, self))
						else:
							x.text = str(
								self.format_types[p['type']](self.context,
									getattr(self, d[key]))
							)