File: musicxml.py

package info (click to toggle)
lilypond 2.8.7-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 13,932 kB
  • ctags: 9,802
  • sloc: cpp: 57,785; lisp: 18,180; python: 11,665; sh: 3,195; yacc: 2,392; lex: 982; perl: 373; ansic: 316; makefile: 131
file content (415 lines) | stat: -rw-r--r-- 9,239 bytes parent folder | download
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
import sys
import new
import re
import string
from rational import Rational

from xml.dom import minidom, Node


class Xml_node:
	def __init__ (self):
		self._children = []
		self._data = None
		self._original = None
		self._name = 'xml_node'
		self._parent = None

	def is_first (self):
        	return self._parent.get_typed_children (self.__class__)[0] == self

	def original (self):
		return self._original 
	def get_name (self):
		return self._name
	
	def get_text (self):
		if self._data:
			return self._data

		if not self._children:
			return ''
		
		return ''.join ([c.get_text () for c in self._children])

	def get_typed_children (self, klass):
		return [c for c in self._children if isinstance(c, klass)]
	
	def get_named_children (self, nm):
		return self.get_typed_children (class_dict[nm])

	def get_named_child (self, nm):
		return self.get_maybe_exist_named_child (nm)

	def get_children (self, predicate):
		return [c for c in self._children if predicate(c)]

	def get_all_children (self):
		return self._children

	def get_maybe_exist_named_child (self, name):
		return self.get_maybe_exist_typed_child (class_dict[name])
	
	def get_maybe_exist_typed_child (self, klass):
		cn = self.get_typed_children (klass)
		if len (cn)==0:
			return None
		elif len (cn) == 1:
			return cn[0]
		else:
			raise "More than 1 child", klass
		
	def get_unique_typed_child (self, klass):
		cn = self.get_typed_children(klass)
		if len (cn) <> 1:
			print self.__dict__ 
			raise 'Child is not unique for', (klass, 'found', cn)

		return cn[0]
	
class Music_xml_node (Xml_node):
	def __init__ (self):
		Xml_node.__init__ (self)
		self.duration = Rational (0)
		self.start = Rational (0)
		

class Duration (Music_xml_node):
	def get_length (self):
		dur = string.atoi (self.get_text ()) * Rational (1,4)
		return dur
		
class Hash_comment (Music_xml_node):
	pass
		
class Pitch (Music_xml_node):
	def get_step (self):
		ch = self.get_unique_typed_child (class_dict[u'step'])
		step = ch.get_text ().strip ()
		return step
	def get_octave (self):
		ch = self.get_unique_typed_child (class_dict[u'octave'])

		step = ch.get_text ().strip ()
		return string.atoi (step)
	
	def get_alteration (self):
		ch = self.get_maybe_exist_typed_child (class_dict[u'alter'])
		alter = 0
		if ch:
			alter = string.atoi (ch.get_text ().strip ())
		return alter

class Measure_element (Music_xml_node):
	def get_voice_id (self):
		voice_id = self.get_maybe_exist_named_child ('voice')
		if voice_id:
			return voice_id.get_text ()
		else:
			return None
		
	def is_first (self):
		cn = self._parent.get_typed_children (self.__class__)
		cn = [c for c in cn if c.get_voice_id () == self.get_voice_id ()]
		return cn[0] == self
	
class Attributes (Measure_element):
	def __init__ (self):
		Measure_element.__init__ (self)
		self._dict = {}
	
	def set_attributes_from_previous (self, dict):
		self._dict.update (dict)
	def read_self (self):
		for c in self.get_all_children ():
			self._dict[c.get_name()] = c

	def get_named_attribute (self, name):
		return self._dict[name]
		
class Note (Measure_element):
	def get_duration_log (self):
		ch = self.get_maybe_exist_typed_child (class_dict[u'type'])

		if ch:
			log = ch.get_text ().strip()
			return 	{'eighth': 3,
				 'quarter': 2,
				 'half': 1,
				 '16th': 4,
				 '32nd': 5,
				 'breve': -1,
				 'long': -2,
				 'whole': 0} [log]
		else:
			return 0
		
	def get_factor (self):
		return 1
	
	def get_pitches (self):
		return self.get_typed_children (class_dict[u'pitch'])

class Part_list (Music_xml_node):
	pass
		
class Measure(Music_xml_node):
	def get_notes (self):
		return self.get_typed_children (class_dict[u'note'])


class Musicxml_voice:
	def __init__ (self):
		self._elements = []
		self._staves = {}
		self._start_staff = None
		
	def add_element (self, e):
		self._elements.append (e)
		if (isinstance (e, Note)
		    and e.get_maybe_exist_typed_child (Staff)):
			name = e.get_maybe_exist_typed_child (Staff).get_text ()

			if not self._start_staff:
				self._start_staff = name
			self._staves[name] = True

	def insert (self, idx, e):
		self._elements.insert (idx, e)

	

class Part (Music_xml_node):
	def __init__ (self):
		self._voices = []
		
	def interpret (self):
		"""Set durations and starting points."""
		
		now = Rational (0)
		factor = Rational (1)
		attr_dict = {}
		measures = self.get_typed_children (Measure)

		for m in measures:
			for n in m.get_all_children ():
				dur = Rational (0)
				
				if n.__class__ == Attributes:
					n.set_attributes_from_previous (attr_dict)
					n.read_self ()
					attr_dict = n._dict.copy ()
					
					factor = Rational (1,
							   string.atoi (attr_dict['divisions']
									.get_text ()))
				elif (n.get_maybe_exist_typed_child (Duration)
				      and not n.get_maybe_exist_typed_child (Chord)):
					mxl_dur = n.get_maybe_exist_typed_child (Duration)
					dur = mxl_dur.get_length () * factor
					if n.get_name() == 'backup':
						dur = - dur
					if n.get_maybe_exist_typed_child (Grace):
						dur = Rational (0)
						
				n._when = now
				n._duration = dur
				now += dur

	def extract_voices (part):
		voices = {}
		measures = part.get_typed_children (Measure)
		elements = []
		for m in measures:
			elements.extend (m.get_all_children ())

		start_attr = None
		for n in elements:
			voice_id = n.get_maybe_exist_typed_child (class_dict['voice'])

			if not (voice_id or isinstance (n, Attributes)):
				continue

			if isinstance (n, Attributes) and not start_attr:
				start_attr = n
				continue

			if isinstance (n, Attributes):
				for v in voices.values ():
					v.add_element (n)
				continue
			
			id = voice_id.get_text ()
			if not voices.has_key (id):
				voices[id] = Musicxml_voice()

			voices[id].add_element (n)

		if start_attr:
			for (k,v) in voices.items ():
				v.insert (0, start_attr)
		
		part._voices = voices

	def get_voices (self):
		return self._voices

class Notations (Music_xml_node):
	def get_tie (self):
		ts = self.get_named_children ('tied')
		starts = [t for t in ts if t.type == 'start']
		if starts:
			return starts[0]
		else:
			return None
	
	def get_tuplet (self):
		return self.get_maybe_exist_typed_child (Tuplet)
	
class Time_modification(Music_xml_node):
	def get_fraction (self):
		b = self.get_maybe_exist_typed_child (class_dict['actual-notes'])
		a = self.get_maybe_exist_typed_child (class_dict['normal-notes'])
		return (string.atoi(a.get_text ()), string.atoi (b.get_text ()))

class Accidental (Music_xml_node):
	def __init__ (self):
		Music_xml_node.__init__ (self)
		self.editorial = False
		self.cautionary = False
		
		
class Tuplet(Music_xml_node):
	pass

class Slur (Music_xml_node):
	def get_type (self):
		return self.type

class Beam (Music_xml_node):
	def get_type (self):
		return self.get_text ()

class Chord (Music_xml_node):
	pass

class Dot (Music_xml_node):
	pass

class Alter (Music_xml_node):
	pass

class Rest (Music_xml_node):
	pass
class Mode (Music_xml_node):
	pass
class Tied (Music_xml_node):
	pass
	
class Type (Music_xml_node):
	pass
class Grace (Music_xml_node):
	pass
class Staff (Music_xml_node):
	pass

class_dict = {
	'#comment': Hash_comment,
	'accidental': Accidental,
	'alter': Alter,
	'attributes': Attributes,
	'beam' : Beam,
	'chord': Chord,
	'dot': Dot,
	'duration': Duration,
	'grace': Grace,
	'mode' : Mode,
	'measure': Measure,
	'notations': Notations,
	'note': Note,
	'part': Part,
	'pitch': Pitch,
	'rest':Rest,
	'slur': Slur,
	'tied': Tied,
	'time-modification': Time_modification,
	'tuplet': Tuplet,
	'type': Type,
	'part-list': Part_list,
	'staff': Staff,
}

def name2class_name (name):
	name = name.replace ('-', '_')
	name = name.replace ('#', 'hash_')
	name = name[0].upper() + name[1:].lower()
	
	return str (name)
	
def create_classes (names, dict):
	for n in names:
		if dict.has_key (n):
			continue

		class_name = name2class_name (n)
		klass = new.classobj (class_name, (Music_xml_node,) , {})
		dict[n] = klass
	
def element_names (node, dict):
	dict[node.nodeName] = 1
	for cn in node.childNodes:
		element_names (cn, dict)
	return dict

def demarshal_node (node):
	name = node.nodeName
	klass = class_dict[name]
	py_node = klass()
	py_node._name = name
	py_node._children = [demarshal_node (cn) for cn in node.childNodes]
	for c in py_node._children:
		c._parent = py_node
		
	if node.attributes:
		
		for (nm, value) in node.attributes.items():
			py_node.__dict__[nm] = value

	py_node._data = None
	if node.nodeType == node.TEXT_NODE and node.data:
		py_node._data = node.data 

	py_node._original = node
	return py_node
		
def strip_white_space (node):
	node._children = \
	[c for c in node._children
	 if not (c._original.nodeType == Node.TEXT_NODE and
		 re.match (r'^\s*$', c._data))]
	
	for c in node._children:
		strip_white_space (c)

def create_tree (name):
	doc = minidom.parse(name)
	node = doc.documentElement
	names = element_names (node, {}).keys()
	create_classes (names, class_dict)
    
	return demarshal_node (node)
	
def test_musicxml (tree):
	m = tree._children[-2]
	print m
	
def read_musicxml (name):
	tree = create_tree (name)
	strip_white_space (tree)
	return tree

if __name__  == '__main__':
	tree = read_musicxml ('BeetAnGeSample.xml')
	test_musicxml (tree)