]> git.donarmstrong.com Git - lilypond.git/blob - scripts/musicxml2ly.py
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / scripts / musicxml2ly.py
1 #!@TARGET_PYTHON@
2
3 import optparse
4 import sys
5 import re
6 import os
7 import string
8 import codecs
9 import zipfile
10 import StringIO
11 from gettext import gettext as _
12
13 """
14 @relocate-preamble@
15 """
16
17 import lilylib as ly
18
19 import musicxml
20 import musicexp
21
22 from rational import Rational
23
24 # Store command-line options in a global variable, so we can access them everythwere
25 options = None
26
27 def progress (str):
28     ly.stderr_write (str + '\n')
29     sys.stderr.flush ()
30
31 def error_message (str):
32     ly.stderr_write (str + '\n')
33     sys.stderr.flush ()
34
35 needed_additional_definitions = []
36 additional_definitions = {
37   "snappizzicato": """#(define-markup-command (snappizzicato layout props) ()
38   (interpret-markup layout props
39     (markup #:stencil
40       (ly:stencil-translate-axis
41         (ly:stencil-add
42           (make-circle-stencil 0.7 0.1 #f)
43           (ly:make-stencil
44             (list 'draw-line 0.1 0 0.1 0 1)
45             '(-0.1 . 0.1) '(0.1 . 1)
46           )
47         )
48         0.7 X
49       )
50     )
51   )
52 )"""
53 }
54
55 def round_to_two_digits (val):
56     return round (val * 100) / 100
57
58 def extract_layout_information (tree):
59     paper = musicexp.Paper ()
60     defaults = tree.get_maybe_exist_named_child ('defaults')
61     if not defaults:
62         return None
63     tenths = -1
64     scaling = defaults.get_maybe_exist_named_child ('scaling')
65     if scaling:
66         mm = scaling.get_named_child ('millimeters')
67         mm = string.atof (mm.get_text ())
68         tn = scaling.get_maybe_exist_named_child ('tenths')
69         tn = string.atof (tn.get_text ())
70         tenths = mm / tn
71         paper.global_staff_size = mm * 72.27 / 25.4
72     # We need the scaling (i.e. the size of staff tenths for everything!
73     if tenths < 0:
74         return None
75
76     def from_tenths (txt):
77         return round_to_two_digits (string.atof (txt) * tenths / 10)
78     def set_paper_variable (varname, parent, element_name):
79         el = parent.get_maybe_exist_named_child (element_name)
80         if el: # Convert to cm from tenths
81             setattr (paper, varname, from_tenths (el.get_text ()))
82
83     pagelayout = defaults.get_maybe_exist_named_child ('page-layout')
84     if pagelayout:
85         # TODO: How can one have different margins for even and odd pages???
86         set_paper_variable ("page_height", pagelayout, 'page-height')
87         set_paper_variable ("page_width", pagelayout, 'page-width')
88
89         pmargins = pagelayout.get_named_children ('page-margins')
90         for pm in pmargins:
91             set_paper_variable ("left_margin", pm, 'left-margin')
92             set_paper_variable ("right_margin", pm, 'right-margin')
93             set_paper_variable ("bottom_margin", pm, 'bottom-margin')
94             set_paper_variable ("top_margin", pm, 'top-margin')
95
96     systemlayout = defaults.get_maybe_exist_named_child ('system-layout')
97     if systemlayout:
98         sl = systemlayout.get_maybe_exist_named_child ('system-margins')
99         if sl:
100             set_paper_variable ("system_left_margin", sl, 'left-margin')
101             set_paper_variable ("system_right_margin", sl, 'right-margin')
102         set_paper_variable ("system_distance", systemlayout, 'system-distance')
103         set_paper_variable ("top_system_distance", systemlayout, 'top-system-distance')
104
105     stafflayout = defaults.get_named_children ('staff-layout')
106     for sl in stafflayout:
107         nr = getattr (sl, 'number', 1)
108         dist = sl.get_named_child ('staff-distance')
109         #TODO: the staff distance needs to be set in the Staff context!!!
110
111     # TODO: Finish appearance?, music-font?, word-font?, lyric-font*, lyric-language*
112     appearance = defaults.get_named_child ('appearance')
113     if appearance:
114         lws = appearance.get_named_children ('line-width')
115         for lw in lws:
116             # Possible types are: beam, bracket, dashes,
117             #    enclosure, ending, extend, heavy barline, leger,
118             #    light barline, octave shift, pedal, slur middle, slur tip,
119             #    staff, stem, tie middle, tie tip, tuplet bracket, and wedge
120             tp = lw.type
121             w = from_tenths (lw.get_text  ())
122             # TODO: Do something with these values!
123         nss = appearance.get_named_children ('note-size')
124         for ns in nss:
125             # Possible types are: cue, grace and large
126             tp = ns.type
127             sz = from_tenths (ns.get_text ())
128             # TODO: Do something with these values!
129         # <other-appearance> elements have no specified meaning
130
131     rawmusicfont = defaults.get_named_child ('music-font')
132     if rawmusicfont:
133         # TODO: Convert the font
134         pass
135     rawwordfont = defaults.get_named_child ('word-font')
136     if rawwordfont:
137         # TODO: Convert the font
138         pass
139     rawlyricsfonts = defaults.get_named_children ('lyric-font')
140     for lyricsfont in rawlyricsfonts:
141         # TODO: Convert the font
142         pass
143
144     return paper
145
146
147
148 # score information is contained in the <work>, <identification> or <movement-title> tags
149 # extract those into a hash, indexed by proper lilypond header attributes
150 def extract_score_information (tree):
151     header = musicexp.Header ()
152     def set_if_exists (field, value):
153         if value:
154             header.set_field (field, musicxml.escape_ly_output_string (value))
155
156     work = tree.get_maybe_exist_named_child ('work')
157     if work:
158         set_if_exists ('title', work.get_work_title ())
159         set_if_exists ('worknumber', work.get_work_number ())
160         set_if_exists ('opus', work.get_opus ())
161     else:
162         movement_title = tree.get_maybe_exist_named_child ('movement-title')
163         if movement_title:
164             set_if_exists ('title', movement_title.get_text ())
165     
166     identifications = tree.get_named_children ('identification')
167     for ids in identifications:
168         set_if_exists ('copyright', ids.get_rights ())
169         set_if_exists ('composer', ids.get_composer ())
170         set_if_exists ('arranger', ids.get_arranger ())
171         set_if_exists ('editor', ids.get_editor ())
172         set_if_exists ('poet', ids.get_poet ())
173             
174         set_if_exists ('tagline', ids.get_encoding_software ())
175         set_if_exists ('encodingsoftware', ids.get_encoding_software ())
176         set_if_exists ('encodingdate', ids.get_encoding_date ())
177         set_if_exists ('encoder', ids.get_encoding_person ())
178         set_if_exists ('encodingdescription', ids.get_encoding_description ())
179
180     return header
181
182 class PartGroupInfo:
183     def __init__ (self):
184         self.start = {}
185         self.end = {}
186     def is_empty (self):
187         return len (self.start) + len (self.end) == 0
188     def add_start (self, g):
189         self.start[getattr (g, 'number', "1")] = g
190     def add_end (self, g):
191         self.end[getattr (g, 'number', "1")] = g
192     def print_ly (self, printer):
193         error_message ("Unprocessed PartGroupInfo %s encountered" % self)
194     def ly_expression (self):
195         error_message ("Unprocessed PartGroupInfo %s encountered" % self)
196         return ''
197
198 def staff_attributes_to_string_tunings (mxl_attr):
199     details = mxl_attr.get_maybe_exist_named_child ('staff-details')
200     if not details:
201         return []
202     lines = 6
203     staff_lines = details.get_maybe_exist_named_child ('staff-lines')
204     if staff_lines:
205         lines = string.atoi (staff_lines.get_text ())
206
207     tunings = [0]*lines
208     staff_tunings = details.get_named_children ('staff-tuning')
209     for i in staff_tunings:
210         p = musicexp.Pitch()
211         line = 0
212         try:
213             line = string.atoi (i.line) - 1
214         except ValueError:
215             pass
216         tunings[line] = p
217
218         step = i.get_named_child (u'tuning-step')
219         step = step.get_text ().strip ()
220         p.step = musicxml_step_to_lily (step)
221
222         octave = i.get_named_child (u'tuning-octave')
223         octave = octave.get_text ().strip ()
224         p.octave = int (octave) - 4
225
226         alter = i.get_named_child (u'tuning-alter')
227         if alter:
228             p.alteration = int (alter.get_text ().strip ())
229     # lilypond seems to use the opposite ordering than MusicXML...
230     tunings.reverse ()
231
232     return tunings
233
234
235 def staff_attributes_to_lily_staff (mxl_attr):
236     if not mxl_attr:
237         return musicexp.Staff ()
238
239     (staff_id, attributes) = mxl_attr.items ()[0]
240
241     # distinguish by clef:
242     # percussion (percussion and rhythmic), tab, and everything else
243     clef_sign = None
244     clef = attributes.get_maybe_exist_named_child ('clef')
245     if clef:
246         sign = clef.get_maybe_exist_named_child ('sign')
247         if sign:
248             clef_sign = {"percussion": "percussion", "TAB": "tab"}.get (sign.get_text (), None)
249
250     lines = 5
251     details = attributes.get_maybe_exist_named_child ('staff-details')
252     if details:
253         staff_lines = details.get_maybe_exist_named_child ('staff-lines')
254         if staff_lines:
255             lines = string.atoi (staff_lines.get_text ())
256
257     staff = None
258     if clef_sign == "percussion" and lines == 1:
259         staff = musicexp.RhythmicStaff ()
260     elif clef_sign == "percussion":
261         staff = musicexp.DrumStaff ()
262         # staff.drum_style_table = ???
263     elif clef_sign == "tab":
264         staff = musicexp.TabStaff ()
265         staff.string_tunings = staff_attributes_to_string_tunings (attributes)
266         # staff.tablature_format = ???
267     else:
268         # TODO: Handle case with lines <> 5!
269         staff = musicexp.Staff ()
270
271     return staff
272
273
274 def extract_score_layout (part_list, staffinfo):
275     layout = musicexp.StaffGroup (None)
276     if not part_list:
277         return layout
278
279     def read_score_part (el):
280         if not isinstance (el, musicxml.Score_part):
281             return
282         # Depending on the attributes of the first measure, we create different
283         # types of staves (Staff, RhythmicStaff, DrumStaff, TabStaff, etc.)
284         staff = staff_attributes_to_lily_staff (staffinfo.get (el.id, None))
285         if not staff:
286             return None
287         staff.id = el.id
288         partname = el.get_maybe_exist_named_child ('part-name')
289         # Finale gives unnamed parts the name "MusicXML Part" automatically!
290         if partname and partname.get_text() != "MusicXML Part":
291             staff.instrument_name = partname.get_text ()
292         if el.get_maybe_exist_named_child ('part-abbreviation'):
293             staff.short_instrument_name = el.get_maybe_exist_named_child ('part-abbreviation').get_text ()
294         # TODO: Read in the MIDI device / instrument
295         return staff
296
297     def read_score_group (el):
298         if not isinstance (el, musicxml.Part_group):
299             return
300         group = musicexp.StaffGroup ()
301         if hasattr (el, 'number'):
302             id = el.number
303             group.id = id
304             #currentgroups_dict[id] = group
305             #currentgroups.append (id)
306         if el.get_maybe_exist_named_child ('group-name'):
307             group.instrument_name = el.get_maybe_exist_named_child ('group-name').get_text ()
308         if el.get_maybe_exist_named_child ('group-abbreviation'):
309             group.short_instrument_name = el.get_maybe_exist_named_child ('group-abbreviation').get_text ()
310         if el.get_maybe_exist_named_child ('group-symbol'):
311             group.symbol = el.get_maybe_exist_named_child ('group-symbol').get_text ()
312         if el.get_maybe_exist_named_child ('group-barline'):
313             group.spanbar = el.get_maybe_exist_named_child ('group-barline').get_text ()
314         return group
315
316
317     parts_groups = part_list.get_all_children ()
318
319     # the start/end group tags are not necessarily ordered correctly and groups
320     # might even overlap, so we can't go through the children sequentially!
321
322     # 1) Replace all Score_part objects by their corresponding Staff objects,
323     #    also collect all group start/stop points into one PartGroupInfo object
324     staves = []
325     group_info = PartGroupInfo ()
326     for el in parts_groups:
327         if isinstance (el, musicxml.Score_part):
328             if not group_info.is_empty ():
329                 staves.append (group_info)
330                 group_info = PartGroupInfo ()
331             staff = read_score_part (el)
332             if staff:
333                 staves.append (staff)
334         elif isinstance (el, musicxml.Part_group):
335             if el.type == "start":
336                 group_info.add_start (el)
337             elif el.type == "stop":
338                 group_info.add_end (el)
339     if not group_info.is_empty ():
340         staves.append (group_info)
341
342     # 2) Now, detect the groups:
343     group_starts = []
344     pos = 0
345     while pos < len (staves):
346         el = staves[pos]
347         if isinstance (el, PartGroupInfo):
348             prev_start = 0
349             if len (group_starts) > 0:
350                 prev_start = group_starts[-1]
351             elif len (el.end) > 0: # no group to end here
352                 el.end = {}
353             if len (el.end) > 0: # closes an existing group
354                 ends = el.end.keys ()
355                 prev_started = staves[prev_start].start.keys ()
356                 grpid = None
357                 intersection = filter(lambda x:x in ends, prev_started)
358                 if len (intersection) > 0:
359                     grpid = intersection[0]
360                 else:
361                     # Close the last started group
362                     grpid = staves[prev_start].start.keys () [0]
363                     # Find the corresponding closing tag and remove it!
364                     j = pos + 1
365                     foundclosing = False
366                     while j < len (staves) and not foundclosing:
367                         if isinstance (staves[j], PartGroupInfo) and staves[j].end.has_key (grpid):
368                             foundclosing = True
369                             del staves[j].end[grpid]
370                             if staves[j].is_empty ():
371                                 del staves[j]
372                         j += 1
373                 grpobj = staves[prev_start].start[grpid]
374                 group = read_score_group (grpobj)
375                 # remove the id from both the start and end
376                 if el.end.has_key (grpid):
377                     del el.end[grpid]
378                 del staves[prev_start].start[grpid]
379                 if el.is_empty ():
380                     del staves[pos]
381                 # replace the staves with the whole group
382                 for j in staves[(prev_start + 1):pos]:
383                     if j.is_group:
384                         j.stafftype = "InnerStaffGroup"
385                     group.append_staff (j)
386                 del staves[(prev_start + 1):pos]
387                 staves.insert (prev_start + 1, group)
388                 # reset pos so that we continue at the correct position
389                 pos = prev_start
390                 # remove an empty start group
391                 if staves[prev_start].is_empty ():
392                     del staves[prev_start]
393                     group_starts.remove (prev_start)
394                     pos -= 1
395             elif len (el.start) > 0: # starts new part groups
396                 group_starts.append (pos)
397         pos += 1
398
399     if len (staves) == 1:
400         return staves[0]
401     for i in staves:
402         layout.append_staff (i)
403     return layout
404
405
406
407 def musicxml_duration_to_lily (mxl_note):
408     d = musicexp.Duration ()
409     # if the note has no Type child, then that method spits out a warning and 
410     # returns 0, i.e. a whole note
411     d.duration_log = mxl_note.get_duration_log ()
412
413     d.dots = len (mxl_note.get_typed_children (musicxml.Dot))
414     # Grace notes by specification have duration 0, so no time modification 
415     # factor is possible. It even messes up the output with *0/1
416     if not mxl_note.get_maybe_exist_typed_child (musicxml.Grace):
417         d.factor = mxl_note._duration / d.get_length ()
418
419     return d
420
421 def rational_to_lily_duration (rational_len):
422     d = musicexp.Duration ()
423     d.duration_log = {1: 0, 2: 1, 4:2, 8:3, 16:4, 32:5, 64:6, 128:7, 256:8, 512:9}.get (rational_len.denominator (), -1)
424     d.factor = Rational (rational_len.numerator ())
425     if d.duration_log < 0:
426         error_message (_ ("Encountered rational duration with denominator %s, "
427                        "unable to convert to lilypond duration") %
428                        rational_len.denominator ())
429         # TODO: Test the above error message
430         return None
431     else:
432         return d
433
434 def musicxml_partial_to_lily (partial_len):
435     if partial_len > 0:
436         p = musicexp.Partial ()
437         p.partial = rational_to_lily_duration (partial_len)
438         return p
439     else:
440         return Null
441
442 # Detect repeats and alternative endings in the chord event list (music_list)
443 # and convert them to the corresponding musicexp objects, containing nested
444 # music
445 def group_repeats (music_list):
446     repeat_replaced = True
447     music_start = 0
448     i = 0
449     # Walk through the list of expressions, looking for repeat structure
450     # (repeat start/end, corresponding endings). If we find one, try to find the
451     # last event of the repeat, replace the whole structure and start over again.
452     # For nested repeats, as soon as we encounter another starting repeat bar,
453     # treat that one first, and start over for the outer repeat.
454     while repeat_replaced and i < 100:
455         i += 1
456         repeat_start = -1  # position of repeat start / end
457         repeat_end = -1 # position of repeat start / end
458         repeat_times = 0
459         ending_start = -1 # position of current ending start
460         endings = [] # list of already finished endings
461         pos = 0
462         last = len (music_list) - 1
463         repeat_replaced = False
464         final_marker = 0
465         while pos < len (music_list) and not repeat_replaced:
466             e = music_list[pos]
467             repeat_finished = False
468             if isinstance (e, RepeatMarker):
469                 if not repeat_times and e.times:
470                     repeat_times = e.times
471                 if e.direction == -1:
472                     if repeat_end >= 0:
473                         repeat_finished = True
474                     else:
475                         repeat_start = pos
476                         repeat_end = -1
477                         ending_start = -1
478                         endings = []
479                 elif e.direction == 1:
480                     if repeat_start < 0:
481                         repeat_start = 0
482                     if repeat_end < 0:
483                         repeat_end = pos
484                     final_marker = pos
485             elif isinstance (e, EndingMarker):
486                 if e.direction == -1:
487                     if repeat_start < 0:
488                         repeat_start = 0
489                     if repeat_end < 0:
490                         repeat_end = pos
491                     ending_start = pos
492                 elif e.direction == 1:
493                     if ending_start < 0:
494                         ending_start = 0
495                     endings.append ([ending_start, pos])
496                     ending_start = -1
497                     final_marker = pos
498             elif not isinstance (e, musicexp.BarLine):
499                 # As soon as we encounter an element when repeat start and end
500                 # is set and we are not inside an alternative ending,
501                 # this whole repeat structure is finished => replace it
502                 if repeat_start >= 0 and repeat_end > 0 and ending_start < 0:
503                     repeat_finished = True
504
505             # Finish off all repeats without explicit ending bar (e.g. when
506             # we convert only one page of a multi-page score with repeats)
507             if pos == last and repeat_start >= 0:
508                 repeat_finished = True
509                 final_marker = pos
510                 if repeat_end < 0:
511                     repeat_end = pos
512                 if ending_start >= 0:
513                     endings.append ([ending_start, pos])
514                     ending_start = -1
515
516             if repeat_finished:
517                 # We found the whole structure replace it!
518                 r = musicexp.RepeatedMusic ()
519                 if repeat_times <= 0:
520                     repeat_times = 2
521                 r.repeat_count = repeat_times
522                 # don't erase the first element for "implicit" repeats (i.e. no
523                 # starting repeat bars at the very beginning)
524                 start = repeat_start+1
525                 if repeat_start == music_start:
526                     start = music_start
527                 r.set_music (music_list[start:repeat_end])
528                 for (start, end) in endings:
529                     s = musicexp.SequentialMusic ()
530                     s.elements = music_list[start+1:end]
531                     r.add_ending (s)
532                 del music_list[repeat_start:final_marker+1]
533                 music_list.insert (repeat_start, r)
534                 repeat_replaced = True
535             pos += 1
536         # TODO: Implement repeats until the end without explicit ending bar
537     return music_list
538
539
540
541 def group_tuplets (music_list, events):
542
543
544     """Collect Musics from
545     MUSIC_LIST demarcated by EVENTS_LIST in TimeScaledMusic objects.
546     """
547
548     
549     indices = []
550
551     j = 0
552     for (ev_chord, tuplet_elt, fraction) in events:
553         while (j < len (music_list)):
554             if music_list[j] == ev_chord:
555                 break
556             j += 1
557         if tuplet_elt.type == 'start':
558             indices.append ((j, None, fraction))
559         elif tuplet_elt.type == 'stop':
560             indices[-1] = (indices[-1][0], j, indices[-1][2])
561
562     new_list = []
563     last = 0
564     for (i1, i2, frac) in indices:
565         if i1 >= i2:
566             continue
567
568         new_list.extend (music_list[last:i1])
569         seq = musicexp.SequentialMusic ()
570         last = i2 + 1
571         seq.elements = music_list[i1:last]
572
573         tsm = musicexp.TimeScaledMusic ()
574         tsm.element = seq
575
576         tsm.numerator = frac[0]
577         tsm.denominator  = frac[1]
578
579         new_list.append (tsm)
580
581     new_list.extend (music_list[last:])
582     return new_list
583
584
585 def musicxml_clef_to_lily (attributes):
586     change = musicexp.ClefChange ()
587     (change.type, change.position, change.octave) = attributes.get_clef_information ()
588     return change
589     
590 def musicxml_time_to_lily (attributes):
591     (beats, type) = attributes.get_time_signature ()
592
593     change = musicexp.TimeSignatureChange()
594     change.fraction = (beats, type)
595     
596     return change
597
598 def musicxml_key_to_lily (attributes):
599     start_pitch  = musicexp.Pitch ()
600     (fifths, mode) = attributes.get_key_signature () 
601     try:
602         (n,a) = {
603             'major' : (0,0),
604             'minor' : (5,0),
605             }[mode]
606         start_pitch.step = n
607         start_pitch.alteration = a
608     except  KeyError:
609         error_message ('unknown mode %s' % mode)
610
611     fifth = musicexp.Pitch()
612     fifth.step = 4
613     if fifths < 0:
614         fifths *= -1
615         fifth.step *= -1
616         fifth.normalize ()
617     
618     for x in range (fifths):
619         start_pitch = start_pitch.transposed (fifth)
620
621     start_pitch.octave = 0
622
623     change = musicexp.KeySignatureChange()
624     change.mode = mode
625     change.tonic = start_pitch
626     return change
627     
628 def musicxml_attributes_to_lily (attrs):
629     elts = []
630     attr_dispatch =  {
631         'clef': musicxml_clef_to_lily,
632         'time': musicxml_time_to_lily,
633         'key': musicxml_key_to_lily
634     }
635     for (k, func) in attr_dispatch.items ():
636         children = attrs.get_named_children (k)
637         if children:
638             elts.append (func (attrs))
639     
640     return elts
641
642 class Marker (musicexp.Music):
643     def __init__ (self):
644         self.direction = 0
645         self.event = None
646     def print_ly (self, printer):
647         ly.stderr_write (_ ("Encountered unprocessed marker %s\n") % self)
648         pass
649     def ly_expression (self):
650         return ""
651 class RepeatMarker (Marker):
652     def __init__ (self):
653         Marker.__init__ (self)
654         self.times = 0
655 class EndingMarker (Marker):
656     pass
657
658 # Convert the <barline> element to musicxml.BarLine (for non-standard barlines)
659 # and to RepeatMarker and EndingMarker objects for repeat and
660 # alternatives start/stops
661 def musicxml_barline_to_lily (barline):
662     # retval contains all possible markers in the order:
663     # 0..bw_ending, 1..bw_repeat, 2..barline, 3..fw_repeat, 4..fw_ending
664     retval = {}
665     bartype_element = barline.get_maybe_exist_named_child ("bar-style")
666     repeat_element = barline.get_maybe_exist_named_child ("repeat")
667     ending_element = barline.get_maybe_exist_named_child ("ending")
668
669     bartype = None
670     if bartype_element:
671         bartype = bartype_element.get_text ()
672
673     if repeat_element and hasattr (repeat_element, 'direction'):
674         repeat = RepeatMarker ()
675         repeat.direction = {"forward": -1, "backward": 1}.get (repeat_element.direction, 0)
676
677         if ( (repeat_element.direction == "forward" and bartype == "heavy-light") or
678              (repeat_element.direction == "backward" and bartype == "light-heavy") ):
679             bartype = None
680         if hasattr (repeat_element, 'times'):
681             try:
682                 repeat.times = int (repeat_element.times)
683             except ValueError:
684                 repeat.times = 2
685         repeat.event = barline
686         if repeat.direction == -1:
687             retval[3] = repeat
688         else:
689             retval[1] = repeat
690
691     if ending_element and hasattr (ending_element, 'type'):
692         ending = EndingMarker ()
693         ending.direction = {"start": -1, "stop": 1, "discontinue": 1}.get (ending_element.type, 0)
694         ending.event = barline
695         if ending.direction == -1:
696             retval[4] = ending
697         else:
698             retval[0] = ending
699
700     if bartype:
701         b = musicexp.BarLine ()
702         b.type = bartype
703         retval[2] = b
704
705     return retval.values ()
706
707 spanner_event_dict = {
708     'beam' : musicexp.BeamEvent,
709     'dashes' : musicexp.TextSpannerEvent,
710     'bracket' : musicexp.BracketSpannerEvent,
711     'glissando' : musicexp.GlissandoEvent,
712     'octave-shift' : musicexp.OctaveShiftEvent,
713     'pedal' : musicexp.PedalEvent,
714     'slur' : musicexp.SlurEvent,
715     'wavy-line' : musicexp.TrillSpanEvent,
716     'wedge' : musicexp.HairpinEvent
717 }
718 spanner_type_dict = {
719     'start': -1,
720     'begin': -1,
721     'crescendo': -1,
722     'decreschendo': -1,
723     'diminuendo': -1,
724     'continue': 0,
725     'change': 0,
726     'up': -1,
727     'down': -1,
728     'stop': 1,
729     'end' : 1
730 }
731
732 def musicxml_spanner_to_lily_event (mxl_event):
733     ev = None
734     
735     name = mxl_event.get_name()
736     func = spanner_event_dict.get (name)
737     if func:
738         ev = func()
739     else:
740         error_message (_ ('unknown span event %s') % mxl_event)
741
742
743     type = mxl_event.get_type ()
744     span_direction = spanner_type_dict.get (type)
745     # really check for None, because some types will be translated to 0, which
746     # would otherwise also lead to the unknown span warning
747     if span_direction != None:
748         ev.span_direction = span_direction
749     else:
750         error_message (_ ('unknown span type %s for %s') % (type, name))
751
752     ev.set_span_type (type)
753     ev.line_type = getattr (mxl_event, 'line-type', 'solid')
754
755     # assign the size, which is used for octave-shift, etc.
756     ev.size = mxl_event.get_size ()
757
758     return ev
759
760 def musicxml_direction_to_indicator (direction):
761     return { "above": 1, "upright": 1, "up":1, "below": -1, "downright": -1, "down": -1, "inverted": -1 }.get (direction, 0)
762
763 def musicxml_fermata_to_lily_event (mxl_event):
764     ev = musicexp.ArticulationEvent ()
765     txt = mxl_event.get_text ()
766     # The contents of the element defined the shape, possible are normal, angled and square
767     ev.type = { "angled": "shortfermata", "square": "longfermata" }.get (txt, "fermata")
768     if hasattr (mxl_event, 'type'):
769       dir = musicxml_direction_to_indicator (mxl_event.type)
770       if dir and options.convert_directions:
771         ev.force_direction = dir
772     return ev
773
774 def musicxml_arpeggiate_to_lily_event (mxl_event):
775     ev = musicexp.ArpeggioEvent ()
776     ev.direction = musicxml_direction_to_indicator (getattr (mxl_event, 'direction', None))
777     return ev
778
779 def musicxml_tremolo_to_lily_event (mxl_event):
780     ev = musicexp.TremoloEvent ()
781     txt = mxl_event.get_text ()
782     if txt:
783       ev.bars = txt
784     else:
785       ev.bars = "3"
786     return ev
787
788 def musicxml_falloff_to_lily_event (mxl_event):
789     ev = musicexp.BendEvent ()
790     ev.alter = -4
791     return ev
792
793 def musicxml_doit_to_lily_event (mxl_event):
794     ev = musicexp.BendEvent ()
795     ev.alter = 4
796     return ev
797
798 def musicxml_bend_to_lily_event (mxl_event):
799     ev = musicexp.BendEvent ()
800     ev.alter = mxl_event.bend_alter ()
801     return ev
802
803 def musicxml_caesura_to_lily_event (mxl_event):
804     ev = musicexp.MarkupEvent ()
805     # FIXME: default to straight or curved caesura?
806     ev.contents = "\\musicglyph #\"scripts.caesura.straight\""
807     ev.force_direction = 1
808     return ev
809
810 def musicxml_fingering_event (mxl_event):
811     ev = musicexp.ShortArticulationEvent ()
812     ev.type = mxl_event.get_text ()
813     return ev
814
815 def musicxml_snappizzicato_event (mxl_event):
816     needed_additional_definitions.append ("snappizzicato")
817     ev = musicexp.MarkupEvent ()
818     ev.contents = "\\snappizzicato"
819     return ev
820
821 def musicxml_string_event (mxl_event):
822     ev = musicexp.NoDirectionArticulationEvent ()
823     ev.type = mxl_event.get_text ()
824     return ev
825
826 def musicxml_accidental_mark (mxl_event):
827     ev = musicexp.MarkupEvent ()
828     contents = { "sharp": "\\sharp",
829       "natural": "\\natural",
830       "flat": "\\flat",
831       "double-sharp": "\\doublesharp",
832       "sharp-sharp": "\\sharp\\sharp",
833       "flat-flat": "\\flat\\flat",
834       "flat-flat": "\\doubleflat",
835       "natural-sharp": "\\natural\\sharp",
836       "natural-flat": "\\natural\\flat",
837       "quarter-flat": "\\semiflat",
838       "quarter-sharp": "\\semisharp",
839       "three-quarters-flat": "\\sesquiflat",
840       "three-quarters-sharp": "\\sesquisharp",
841     }.get (mxl_event.get_text ())
842     if contents:
843         ev.contents = contents
844         return ev
845     else:
846         return None
847
848 # translate articulations, ornaments and other notations into ArticulationEvents
849 # possible values:
850 #   -) string  (ArticulationEvent with that name)
851 #   -) function (function(mxl_event) needs to return a full ArticulationEvent-derived object
852 #   -) (class, name)  (like string, only that a different class than ArticulationEvent is used)
853 # TODO: Some translations are missing!
854 articulations_dict = {
855     "accent": (musicexp.ShortArticulationEvent, ">"), # or "accent"
856     "accidental-mark": musicxml_accidental_mark,
857     "bend": musicxml_bend_to_lily_event,
858     "breath-mark": (musicexp.NoDirectionArticulationEvent, "breathe"),
859     "caesura": musicxml_caesura_to_lily_event,
860     #"delayed-turn": "?",
861     "detached-legato": (musicexp.ShortArticulationEvent, "_"), # or "portato"
862     "doit": musicxml_doit_to_lily_event,
863     #"double-tongue": "",
864     "down-bow": "downbow",
865     "falloff": musicxml_falloff_to_lily_event,
866     "fingering": musicxml_fingering_event,
867     #"fingernails": "",
868     #"fret": "",
869     #"hammer-on": "",
870     "harmonic": "flageolet",
871     #"heel": "",
872     "inverted-mordent": "prall",
873     "inverted-turn": "reverseturn",
874     "mordent": "mordent",
875     "open-string": "open",
876     #"plop": "",
877     #"pluck": "",
878     #"pull-off": "",
879     #"schleifer": "?",
880     #"scoop": "",
881     #"shake": "?",
882     "snap-pizzicato": musicxml_snappizzicato_event,
883     #"spiccato": "",
884     "staccatissimo": (musicexp.ShortArticulationEvent, "|"), # or "staccatissimo"
885     "staccato": (musicexp.ShortArticulationEvent, "."), # or "staccato"
886     "stopped": (musicexp.ShortArticulationEvent, "+"), # or "stopped"
887     #"stress": "",
888     "string": musicxml_string_event,
889     "strong-accent": (musicexp.ShortArticulationEvent, "^"), # or "marcato"
890     #"tap": "",
891     "tenuto": (musicexp.ShortArticulationEvent, "-"), # or "tenuto"
892     "thumb-position": "thumb",
893     #"toe": "",
894     "turn": "turn",
895     "tremolo": musicxml_tremolo_to_lily_event,
896     "trill-mark": "trill",
897     #"triple-tongue": "",
898     #"unstress": ""
899     "up-bow": "upbow",
900     #"wavy-line": "?",
901 }
902 articulation_spanners = [ "wavy-line" ]
903
904 def musicxml_articulation_to_lily_event (mxl_event):
905     # wavy-line elements are treated as trill spanners, not as articulation ornaments
906     if mxl_event.get_name () in articulation_spanners:
907         return musicxml_spanner_to_lily_event (mxl_event)
908
909     tmp_tp = articulations_dict.get (mxl_event.get_name ())
910     if not tmp_tp:
911         return
912
913     if isinstance (tmp_tp, str):
914         ev = musicexp.ArticulationEvent ()
915         ev.type = tmp_tp
916     elif isinstance (tmp_tp, tuple):
917         ev = tmp_tp[0] ()
918         ev.type = tmp_tp[1]
919     else:
920         ev = tmp_tp (mxl_event)
921
922     # Some articulations use the type attribute, other the placement...
923     dir = None
924     if hasattr (mxl_event, 'type') and options.convert_directions:
925         dir = musicxml_direction_to_indicator (mxl_event.type)
926     if hasattr (mxl_event, 'placement') and options.convert_directions:
927         dir = musicxml_direction_to_indicator (mxl_event.placement)
928     if dir:
929         ev.force_direction = dir
930     return ev
931
932
933
934 def musicxml_dynamics_to_lily_event (dynentry):
935     dynamics_available = (
936         "ppppp", "pppp", "ppp", "pp", "p", "mp", "mf", 
937         "f", "ff", "fff", "ffff", "fp", "sf", "sff", "sp", "spp", "sfz", "rfz" )
938     dynamicsname = dynentry.get_name ()
939     if dynamicsname == "other-dynamics":
940         dynamicsname = dynentry.get_text ()
941     if not dynamicsname or dynamicsname=="#text":
942         return
943
944     if not dynamicsname in dynamics_available:
945         # Get rid of - in tag names (illegal in ly tags!)
946         dynamicstext = dynamicsname
947         dynamicsname = string.replace (dynamicsname, "-", "")
948         additional_definitions[dynamicsname] = dynamicsname + \
949               " = #(make-dynamic-script \"" + dynamicstext + "\")"
950         needed_additional_definitions.append (dynamicsname)
951     event = musicexp.DynamicsEvent ()
952     event.type = dynamicsname
953     return event
954
955 # Convert single-color two-byte strings to numbers 0.0 - 1.0
956 def hexcolorval_to_nr (hex_val):
957     try:
958         v = int (hex_val, 16)
959         if v == 255:
960             v = 256
961         return v / 256.
962     except ValueError:
963         return 0.
964
965 def hex_to_color (hex_val):
966     res = re.match (r'#([0-9a-f][0-9a-f]|)([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])$', hex_val, re.IGNORECASE)
967     if res:
968         return map (lambda x: hexcolorval_to_nr (x), res.group (2,3,4))
969     else:
970         return None
971
972 def musicxml_words_to_lily_event (words):
973     event = musicexp.TextEvent ()
974     text = words.get_text ()
975     text = re.sub ('^ *\n? *', '', text)
976     text = re.sub (' *\n? *$', '', text)
977     event.text = text
978
979     if hasattr (words, 'default-y') and options.convert_directions:
980         offset = getattr (words, 'default-y')
981         try:
982             off = string.atoi (offset)
983             if off > 0:
984                 event.force_direction = 1
985             else:
986                 event.force_direction = -1
987         except ValueError:
988             event.force_direction = 0
989
990     if hasattr (words, 'font-weight'):
991         font_weight = { "normal": '', "bold": '\\bold' }.get (getattr (words, 'font-weight'), '')
992         if font_weight:
993             event.markup += font_weight
994
995     if hasattr (words, 'font-size'):
996         size = getattr (words, 'font-size')
997         font_size = {
998             "xx-small": '\\teeny',
999             "x-small": '\\tiny',
1000             "small": '\\small',
1001             "medium": '',
1002             "large": '\\large',
1003             "x-large": '\\huge',
1004             "xx-large": '\\bigger\\huge'
1005         }.get (size, '')
1006         if font_size:
1007             event.markup += font_size
1008
1009     if hasattr (words, 'color'):
1010         color = getattr (words, 'color')
1011         rgb = hex_to_color (color)
1012         if rgb:
1013             event.markup += "\\with-color #(rgb-color %s %s %s)" % (rgb[0], rgb[1], rgb[2])
1014
1015     if hasattr (words, 'font-style'):
1016         font_style = { "italic": '\\italic' }.get (getattr (words, 'font-style'), '')
1017         if font_style:
1018             event.markup += font_style
1019
1020     # TODO: How should I best convert the font-family attribute?
1021
1022     # TODO: How can I represent the underline, overline and line-through
1023     #       attributes in Lilypond? Values of these attributes indicate
1024     #       the number of lines
1025
1026     return event
1027
1028
1029 # convert accordion-registration to lilypond.
1030 # Since lilypond does not have any built-in commands, we need to create
1031 # the markup commands manually and define our own variables.
1032 # Idea was taken from: http://lsr.dsi.unimi.it/LSR/Item?id=194
1033 def musicxml_accordion_to_markup (mxl_event):
1034     commandname = "accReg"
1035     command = ""
1036
1037     high = mxl_event.get_maybe_exist_named_child ('accordion-high')
1038     if high:
1039         commandname += "H"
1040         command += """\\combine
1041           \\raise #2.5 \\musicglyph #\"accordion.accDot\"
1042           """
1043     middle = mxl_event.get_maybe_exist_named_child ('accordion-middle')
1044     if middle:
1045         # By default, use one dot (when no or invalid content is given). The 
1046         # MusicXML spec is quiet about this case...
1047         txt = 1
1048         try:
1049           txt = string.atoi (middle.get_text ())
1050         except ValueError:
1051             pass
1052         if txt == 3:
1053             commandname += "MMM"
1054             command += """\\combine
1055           \\raise #1.5 \\musicglyph #\"accordion.accDot\"
1056           \\combine
1057           \\raise #1.5 \\translate #(cons 1 0) \\musicglyph #\"accordion.accDot\"
1058           \\combine
1059           \\raise #1.5 \\translate #(cons -1 0) \\musicglyph #\"accordion.accDot\"
1060           """
1061         elif txt == 2:
1062             commandname += "MM"
1063             command += """\\combine
1064           \\raise #1.5 \\translate #(cons 0.5 0) \\musicglyph #\"accordion.accDot\"
1065           \\combine
1066           \\raise #1.5 \\translate #(cons -0.5 0) \\musicglyph #\"accordion.accDot\"
1067           """
1068         elif not txt <= 0:
1069             commandname += "M"
1070             command += """\\combine
1071           \\raise #1.5 \\musicglyph #\"accordion.accDot\"
1072           """
1073     low = mxl_event.get_maybe_exist_named_child ('accordion-low')
1074     if low:
1075         commandname += "L"
1076         command += """\\combine
1077           \\raise #0.5 \musicglyph #\"accordion.accDot\"
1078           """
1079
1080     command += "\musicglyph #\"accordion.accDiscant\""
1081     command = "\\markup { \\normalsize %s }" % command
1082     # Define the newly built command \accReg[H][MMM][L]
1083     additional_definitions[commandname] = "%s = %s" % (commandname, command)
1084     needed_additional_definitions.append (commandname)
1085     return "\\%s" % commandname
1086
1087 def musicxml_accordion_to_ly (mxl_event):
1088     txt = musicxml_accordion_to_markup (mxl_event)
1089     if txt:
1090         ev = musicexp.MarkEvent (txt)
1091         return ev
1092     return
1093
1094
1095 def musicxml_rehearsal_to_ly_mark (mxl_event):
1096     text = mxl_event.get_text ()
1097     if not text:
1098         return
1099     # default is boxed rehearsal marks!
1100     encl = "box"
1101     if hasattr (mxl_event, 'enclosure'):
1102         encl = {"none": None, "square": "box", "circle": "circle" }.get (mxl_event.enclosure, None)
1103     if encl:
1104         text = "\\%s { %s }" % (encl, text)
1105     ev = musicexp.MarkEvent ("\\markup { %s }" % text)
1106     return ev
1107
1108 # translate directions into Events, possible values:
1109 #   -) string  (MarkEvent with that command)
1110 #   -) function (function(mxl_event) needs to return a full Event-derived object
1111 #   -) (class, name)  (like string, only that a different class than MarkEvent is used)
1112 directions_dict = {
1113     'accordion-registration' : musicxml_accordion_to_ly,
1114     'coda' : (musicexp.MusicGlyphMarkEvent, "coda"),
1115 #     'damp' : ???
1116 #     'damp-all' : ???
1117 #     'eyeglasses': ??????
1118 #     'harp-pedals' : 
1119 #     'image' : 
1120 #     'metronome' : 
1121     'rehearsal' : musicxml_rehearsal_to_ly_mark,
1122 #     'scordatura' : 
1123     'segno' : (musicexp.MusicGlyphMarkEvent, "segno"),
1124     'words' : musicxml_words_to_lily_event,
1125 }
1126 directions_spanners = [ 'octave-shift', 'pedal', 'wedge', 'dashes', 'bracket' ]
1127
1128 def musicxml_direction_to_lily (n):
1129     # TODO: Handle the <staff> element!
1130     res = []
1131     # placement applies to all children!
1132     dir = None
1133     if hasattr (n, 'placement') and options.convert_directions:
1134         dir = musicxml_direction_to_indicator (n.placement)
1135     dirtype_children = []
1136     # TODO: The direction-type is used for grouping (e.g. dynamics with text), 
1137     #       so we can't simply flatten them out!
1138     for dt in n.get_typed_children (musicxml.DirType):
1139         dirtype_children += dt.get_all_children ()
1140
1141     for entry in dirtype_children:
1142         # backets, dashes, octave shifts. pedal marks, hairpins etc. are spanners:
1143         if entry.get_name() in directions_spanners:
1144             event = musicxml_spanner_to_lily_event (entry)
1145             if event:
1146                 res.append (event)
1147             continue
1148
1149         # now treat all the "simple" ones, that can be translated using the dict
1150         ev = None
1151         tmp_tp = directions_dict.get (entry.get_name (), None)
1152         if isinstance (tmp_tp, str): # string means MarkEvent
1153             ev = musicexp.MarkEvent (tmp_tp)
1154         elif isinstance (tmp_tp, tuple): # tuple means (EventClass, "text")
1155             ev = tmp_tp[0] (tmp_tp[1])
1156         elif tmp_tp:
1157             ev = tmp_tp (entry)
1158         if ev:
1159             # TODO: set the correct direction! Unfortunately, \mark in ly does
1160             #       not seem to support directions!
1161             res.append (ev)
1162             continue
1163
1164         if entry.get_name () == "dynamics":
1165             for dynentry in entry.get_all_children ():
1166                 ev = musicxml_dynamics_to_lily_event (dynentry)
1167                 if ev:
1168                     res.append (ev)
1169
1170     return res
1171
1172 def musicxml_frame_to_lily_event (frame):
1173     ev = musicexp.FretEvent ()
1174     ev.strings = frame.get_strings ()
1175     ev.frets = frame.get_frets ()
1176     #offset = frame.get_first_fret () - 1
1177     barre = []
1178     for fn in frame.get_named_children ('frame-note'):
1179         fret = fn.get_fret ()
1180         if fret <= 0:
1181             fret = "o"
1182         el = [ fn.get_string (), fret ]
1183         fingering = fn.get_fingering ()
1184         if fingering >= 0:
1185             el.append (fingering)
1186         ev.elements.append (el)
1187         b = fn.get_barre ()
1188         if b == 'start':
1189             barre[0] = el[0] # start string
1190             barre[2] = el[1] # fret
1191         elif b == 'stop':
1192             barre[1] = el[0] # end string
1193     if barre:
1194         ev.barre = barre
1195     return ev
1196
1197 def musicxml_harmony_to_lily (n):
1198     res = []
1199     for f in n.get_named_children ('frame'):
1200         ev = musicxml_frame_to_lily_event (f)
1201         if ev:
1202             res.append (ev)
1203
1204     return res
1205
1206 instrument_drumtype_dict = {
1207     'Acoustic Snare Drum': 'acousticsnare',
1208     'Side Stick': 'sidestick',
1209     'Open Triangle': 'opentriangle',
1210     'Mute Triangle': 'mutetriangle',
1211     'Tambourine': 'tambourine',
1212     'Bass Drum': 'bassdrum',
1213 }
1214
1215 def musicxml_note_to_lily_main_event (n):
1216     pitch  = None
1217     duration = None
1218     event = None
1219
1220     mxl_pitch = n.get_maybe_exist_typed_child (musicxml.Pitch)
1221     if mxl_pitch:
1222         pitch = musicxml_pitch_to_lily (mxl_pitch)
1223         event = musicexp.NoteEvent ()
1224         event.pitch = pitch
1225
1226         acc = n.get_maybe_exist_named_child ('accidental')
1227         if acc:
1228             # let's not force accs everywhere. 
1229             event.cautionary = acc.editorial
1230
1231     elif n.get_maybe_exist_typed_child (musicxml.Unpitched):
1232         # Unpitched elements have display-step and can also have
1233         # display-octave.
1234         unpitched = n.get_maybe_exist_typed_child (musicxml.Unpitched)
1235         event = musicexp.NoteEvent ()
1236         event.pitch = musicxml_unpitched_to_lily (unpitched)
1237         
1238     elif n.get_maybe_exist_typed_child (musicxml.Rest):
1239         # rests can have display-octave and display-step, which are
1240         # treated like an ordinary note pitch
1241         rest = n.get_maybe_exist_typed_child (musicxml.Rest)
1242         event = musicexp.RestEvent ()
1243         pitch = musicxml_restdisplay_to_lily (rest)
1244         event.pitch = pitch
1245
1246     elif n.instrument_name:
1247         event = musicexp.NoteEvent ()
1248         drum_type = instrument_drumtype_dict.get (n.instrument_name)
1249         if drum_type:
1250             event.drum_type = drum_type
1251         else:
1252             n.message ("drum %s type unknown, please add to instrument_drumtype_dict" % n.instrument_name)
1253             event.drum_type = 'acousticsnare'
1254
1255     else:
1256         n.message ("cannot find suitable event")
1257
1258     if event:
1259         event.duration = musicxml_duration_to_lily (n)
1260
1261     return event
1262
1263
1264 ## TODO
1265 class NegativeSkip:
1266     def __init__ (self, here, dest):
1267         self.here = here
1268         self.dest = dest
1269
1270 class LilyPondVoiceBuilder:
1271     def __init__ (self):
1272         self.elements = []
1273         self.pending_dynamics = []
1274         self.end_moment = Rational (0)
1275         self.begin_moment = Rational (0)
1276         self.pending_multibar = Rational (0)
1277         self.ignore_skips = False
1278
1279     def _insert_multibar (self):
1280         r = musicexp.MultiMeasureRest ()
1281         r.duration = musicexp.Duration()
1282         r.duration.duration_log = 0
1283         r.duration.factor = self.pending_multibar
1284         self.elements.append (r)
1285         self.begin_moment = self.end_moment
1286         self.end_moment = self.begin_moment + self.pending_multibar
1287         self.pending_multibar = Rational (0)
1288         
1289     def add_multibar_rest (self, duration):
1290         self.pending_multibar += duration
1291
1292     def set_duration (self, duration):
1293         self.end_moment = self.begin_moment + duration
1294     def current_duration (self):
1295         return self.end_moment - self.begin_moment
1296         
1297     def add_music (self, music, duration):
1298         assert isinstance (music, musicexp.Music)
1299         if self.pending_multibar > Rational (0):
1300             self._insert_multibar ()
1301
1302         self.elements.append (music)
1303         self.begin_moment = self.end_moment
1304         self.set_duration (duration)
1305         
1306         # Insert all pending dynamics right after the note/rest:
1307         if isinstance (music, musicexp.ChordEvent) and self.pending_dynamics:
1308             for d in self.pending_dynamics:
1309                 music.append (d)
1310             self.pending_dynamics = []
1311
1312     # Insert some music command that does not affect the position in the measure
1313     def add_command (self, command):
1314         assert isinstance (command, musicexp.Music)
1315         if self.pending_multibar > Rational (0):
1316             self._insert_multibar ()
1317         self.elements.append (command)
1318     def add_barline (self, barline):
1319         # TODO: Implement merging of default barline and custom bar line
1320         self.add_music (barline, Rational (0))
1321     def add_partial (self, command):
1322         self.ignore_skips = True
1323         self.add_command (command)
1324
1325     def add_dynamics (self, dynamic):
1326         # store the dynamic item(s) until we encounter the next note/rest:
1327         self.pending_dynamics.append (dynamic)
1328
1329     def add_bar_check (self, number):
1330         b = musicexp.BarLine ()
1331         b.bar_number = number
1332         self.add_barline (b)
1333
1334     def jumpto (self, moment):
1335         current_end = self.end_moment + self.pending_multibar
1336         diff = moment - current_end
1337         
1338         if diff < Rational (0):
1339             error_message ('Negative skip %s' % diff)
1340             diff = Rational (0)
1341
1342         if diff > Rational (0) and not (self.ignore_skips and moment == 0):
1343             skip = musicexp.SkipEvent()
1344             duration_factor = 1
1345             duration_log = {1: 0, 2: 1, 4:2, 8:3, 16:4, 32:5, 64:6, 128:7, 256:8, 512:9}.get (diff.denominator (), -1)
1346             duration_dots = 0
1347             if duration_log > 0: # denominator is a power of 2...
1348                 if diff.numerator () == 3:
1349                     duration_log -= 1
1350                     duration_dots = 1
1351                 else:
1352                     duration_factor = Rational (diff.numerator ())
1353             else:
1354                 duration_log = 0
1355                 duration_factor = diff
1356             skip.duration.duration_log = duration_log
1357             skip.duration.factor = duration_factor
1358             skip.duration.dots = duration_dots
1359
1360             evc = musicexp.ChordEvent ()
1361             evc.elements.append (skip)
1362             self.add_music (evc, diff)
1363
1364         if diff > Rational (0) and moment == 0:
1365             self.ignore_skips = False
1366
1367     def last_event_chord (self, starting_at):
1368
1369         value = None
1370
1371         # if the position matches, find the last ChordEvent, do not cross a bar line!
1372         at = len( self.elements ) - 1
1373         while (at >= 0 and
1374                not isinstance (self.elements[at], musicexp.ChordEvent) and
1375                not isinstance (self.elements[at], musicexp.BarLine)):
1376             at -= 1
1377
1378         if (self.elements
1379             and at >= 0
1380             and isinstance (self.elements[at], musicexp.ChordEvent)
1381             and self.begin_moment == starting_at):
1382             value = self.elements[at]
1383         else:
1384             self.jumpto (starting_at)
1385             value = None
1386         return value
1387         
1388     def correct_negative_skip (self, goto):
1389         self.end_moment = goto
1390         self.begin_moment = goto
1391         evc = musicexp.ChordEvent ()
1392         self.elements.append (evc)
1393
1394
1395 class VoiceData:
1396     def __init__ (self):
1397         self.voicedata = None
1398         self.ly_voice = None
1399         self.lyrics_dict = {}
1400         self.lyrics_order = []
1401
1402 def musicxml_step_to_lily (step):
1403     if step:
1404         return (ord (step) - ord ('A') + 7 - 2) % 7
1405     else:
1406         return None
1407
1408 def musicxml_voice_to_lily_voice (voice):
1409     tuplet_events = []
1410     modes_found = {}
1411     lyrics = {}
1412     return_value = VoiceData ()
1413     return_value.voicedata = voice
1414     
1415     # First pitch needed for relative mode (if selected in command-line options)
1416     first_pitch = None
1417
1418     # Needed for melismata detection (ignore lyrics on those notes!):
1419     inside_slur = False
1420     is_tied = False
1421     is_chord = False
1422     ignore_lyrics = False
1423
1424     current_staff = None
1425
1426     # Make sure that the keys in the dict don't get reordered, since
1427     # we need the correct ordering of the lyrics stanzas! By default,
1428     # a dict will reorder its keys
1429     return_value.lyrics_order = voice.get_lyrics_numbers ()
1430     for k in return_value.lyrics_order:
1431         lyrics[k] = []
1432
1433     voice_builder = LilyPondVoiceBuilder()
1434
1435     for n in voice._elements:
1436         if n.get_name () == 'forward':
1437             continue
1438         staff = n.get_maybe_exist_named_child ('staff')
1439         if staff:
1440             staff = staff.get_text ()
1441             if current_staff and staff <> current_staff and not n.get_maybe_exist_named_child ('chord'):
1442                 voice_builder.add_command (musicexp.StaffChange (staff))
1443             current_staff = staff
1444
1445         if isinstance (n, musicxml.Partial) and n.partial > 0:
1446             a = musicxml_partial_to_lily (n.partial)
1447             if a:
1448                 voice_builder.add_partial (a)
1449             continue
1450
1451         if isinstance (n, musicxml.Direction):
1452             for a in musicxml_direction_to_lily (n):
1453                 if a.wait_for_note ():
1454                     voice_builder.add_dynamics (a)
1455                 else:
1456                     voice_builder.add_command (a)
1457             continue
1458
1459         if isinstance (n, musicxml.Harmony):
1460             for a in musicxml_harmony_to_lily (n):
1461                 if a.wait_for_note ():
1462                     voice_builder.add_dynamics (a)
1463                 else:
1464                     voice_builder.add_command (a)
1465             continue
1466
1467         is_chord = n.get_maybe_exist_named_child ('chord')
1468         if not is_chord:
1469             try:
1470                 voice_builder.jumpto (n._when)
1471             except NegativeSkip, neg:
1472                 voice_builder.correct_negative_skip (n._when)
1473                 n.message ("Negative skip? from %s to %s, diff %s" % (neg.here, neg.dest, neg.dest - neg.here))
1474             
1475         if isinstance (n, musicxml.Attributes):
1476             if n.is_first () and n._measure_position == Rational (0):
1477                 try:
1478                     number = int (n.get_parent ().number)
1479                 except ValueError:
1480                     number = 0
1481                 if number > 0:
1482                     voice_builder.add_bar_check (number)
1483
1484             for a in musicxml_attributes_to_lily (n):
1485                 voice_builder.add_command (a)
1486             continue
1487
1488         if isinstance (n, musicxml.Barline):
1489             barlines = musicxml_barline_to_lily (n)
1490             for a in barlines:
1491                 if isinstance (a, musicexp.BarLine):
1492                     voice_builder.add_barline (a)
1493                 elif isinstance (a, RepeatMarker) or isinstance (a, EndingMarker):
1494                     voice_builder.add_command (a)
1495             continue
1496
1497         if not n.__class__.__name__ == 'Note':
1498             error_message (_ ('unexpected %s; expected %s or %s or %s') % (n, 'Note', 'Attributes', 'Barline'))
1499             continue
1500
1501         rest = n.get_maybe_exist_typed_child (musicxml.Rest)
1502         if (rest
1503             and rest.is_whole_measure ()):
1504
1505             voice_builder.add_multibar_rest (n._duration)
1506             continue
1507
1508         if n.is_first () and n._measure_position == Rational (0):
1509             try: 
1510                 num = int (n.get_parent ().number)
1511             except ValueError:
1512                 num = 0
1513             if num > 0:
1514                 voice_builder.add_bar_check (num)
1515
1516         main_event = musicxml_note_to_lily_main_event (n)
1517         if main_event and not first_pitch:
1518             first_pitch = main_event.pitch
1519         ignore_lyrics = inside_slur or is_tied or is_chord
1520
1521         if main_event and hasattr (main_event, 'drum_type') and main_event.drum_type:
1522             modes_found['drummode'] = True
1523
1524         ev_chord = voice_builder.last_event_chord (n._when)
1525         if not ev_chord: 
1526             ev_chord = musicexp.ChordEvent()
1527             voice_builder.add_music (ev_chord, n._duration)
1528
1529         grace = n.get_maybe_exist_typed_child (musicxml.Grace)
1530         if grace:
1531             grace_chord = None
1532             if n.get_maybe_exist_typed_child (musicxml.Chord) and ev_chord.grace_elements:
1533                 grace_chord = ev_chord.grace_elements.get_last_event_chord ()
1534             if not grace_chord:
1535                 grace_chord = musicexp.ChordEvent ()
1536                 ev_chord.append_grace (grace_chord)
1537             if hasattr (grace, 'slash'):
1538                 # TODO: use grace_type = "appoggiatura" for slurred grace notes
1539                 if grace.slash == "yes":
1540                     ev_chord.grace_type = "acciaccatura"
1541             # now that we have inserted the chord into the grace music, insert
1542             # everything into that chord instead of the ev_chord
1543             ev_chord = grace_chord
1544             ev_chord.append (main_event)
1545             ignore_lyrics = True
1546         else:
1547             ev_chord.append (main_event)
1548             # When a note/chord has grace notes (duration==0), the duration of the
1549             # event chord is not yet known, but the event chord was already added
1550             # with duration 0. The following correct this when we hit the real note!
1551             if voice_builder.current_duration () == 0 and n._duration > 0:
1552                 voice_builder.set_duration (n._duration)
1553         
1554         notations_children = n.get_typed_children (musicxml.Notations)
1555         tuplet_event = None
1556         span_events = []
1557
1558         # The <notation> element can have the following children (+ means implemented, ~ partially, - not):
1559         # +tied | +slur | +tuplet | glissando | slide | 
1560         #    ornaments | technical | articulations | dynamics |
1561         #    +fermata | arpeggiate | non-arpeggiate | 
1562         #    accidental-mark | other-notation
1563         for notations in notations_children:
1564             for tuplet_event in notations.get_tuplets():
1565                 mod = n.get_maybe_exist_typed_child (musicxml.Time_modification)
1566                 frac = (1,1)
1567                 if mod:
1568                     frac = mod.get_fraction ()
1569                 
1570                 tuplet_events.append ((ev_chord, tuplet_event, frac))
1571
1572             slurs = [s for s in notations.get_named_children ('slur')
1573                 if s.get_type () in ('start','stop')]
1574             if slurs:
1575                 if len (slurs) > 1:
1576                     error_message (_ ('cannot have two simultaneous slurs'))
1577                 # record the slur status for the next note in the loop
1578                 if not grace:
1579                     if slurs[0].get_type () == 'start':
1580                         inside_slur = True
1581                     elif slurs[0].get_type () == 'stop':
1582                         inside_slur = False
1583                 lily_ev = musicxml_spanner_to_lily_event (slurs[0])
1584                 ev_chord.append (lily_ev)
1585
1586             if not grace:
1587                 mxl_tie = notations.get_tie ()
1588                 if mxl_tie and mxl_tie.type == 'start':
1589                     ev_chord.append (musicexp.TieEvent ())
1590                     is_tied = True
1591                 else:
1592                     is_tied = False
1593
1594             fermatas = notations.get_named_children ('fermata')
1595             for a in fermatas:
1596                 ev = musicxml_fermata_to_lily_event (a)
1597                 if ev: 
1598                     ev_chord.append (ev)
1599
1600             arpeggiate = notations.get_named_children ('arpeggiate')
1601             for a in arpeggiate:
1602                 ev = musicxml_arpeggiate_to_lily_event (a)
1603                 if ev:
1604                     ev_chord.append (ev)
1605
1606             glissandos = notations.get_named_children ('glissando')
1607             for a in glissandos:
1608                 ev = musicxml_spanner_to_lily_event (a)
1609                 if ev:
1610                     ev_chord.append (ev)
1611                 
1612             # Articulations can contain the following child elements:
1613             #         accent | strong-accent | staccato | tenuto |
1614             #         detached-legato | staccatissimo | spiccato |
1615             #         scoop | plop | doit | falloff | breath-mark | 
1616             #         caesura | stress | unstress
1617             # Technical can contain the following child elements:
1618             #         up-bow | down-bow | harmonic | open-string |
1619             #         thumb-position | fingering | pluck | double-tongue |
1620             #         triple-tongue | stopped | snap-pizzicato | fret |
1621             #         string | hammer-on | pull-off | bend | tap | heel |
1622             #         toe | fingernails | other-technical
1623             # Ornaments can contain the following child elements:
1624             #         trill-mark | turn | delayed-turn | inverted-turn |
1625             #         shake | wavy-line | mordent | inverted-mordent | 
1626             #         schleifer | tremolo | other-ornament, accidental-mark
1627             ornaments = notations.get_named_children ('ornaments')
1628             ornaments += notations.get_named_children ('articulations')
1629             ornaments += notations.get_named_children ('technical')
1630
1631             for a in ornaments:
1632                 for ch in a.get_all_children ():
1633                     ev = musicxml_articulation_to_lily_event (ch)
1634                     if ev: 
1635                         ev_chord.append (ev)
1636
1637             dynamics = notations.get_named_children ('dynamics')
1638             for a in dynamics:
1639                 for ch in a.get_all_children ():
1640                     ev = musicxml_dynamics_to_lily_event (ch)
1641                     if ev:
1642                         ev_chord.append (ev)
1643
1644         # Extract the lyrics
1645         if not rest and not ignore_lyrics:
1646             note_lyrics_processed = []
1647             note_lyrics_elements = n.get_typed_children (musicxml.Lyric)
1648             for l in note_lyrics_elements:
1649                 if l.get_number () < 0:
1650                     for k in lyrics.keys ():
1651                         lyrics[k].append (l.lyric_to_text ())
1652                         note_lyrics_processed.append (k)
1653                 else:
1654                     lyrics[l.number].append(l.lyric_to_text ())
1655                     note_lyrics_processed.append (l.number)
1656             for lnr in lyrics.keys ():
1657                 if not lnr in note_lyrics_processed:
1658                     lyrics[lnr].append ("\skip4")
1659
1660
1661         mxl_beams = [b for b in n.get_named_children ('beam')
1662                      if (b.get_type () in ('begin', 'end')
1663                          and b.is_primary ())] 
1664         if mxl_beams:
1665             beam_ev = musicxml_spanner_to_lily_event (mxl_beams[0])
1666             if beam_ev:
1667                 ev_chord.append (beam_ev)
1668             
1669         if tuplet_event:
1670             mod = n.get_maybe_exist_typed_child (musicxml.Time_modification)
1671             frac = (1,1)
1672             if mod:
1673                 frac = mod.get_fraction ()
1674                 
1675             tuplet_events.append ((ev_chord, tuplet_event, frac))
1676
1677     ## force trailing mm rests to be written out.   
1678     voice_builder.add_music (musicexp.ChordEvent (), Rational (0))
1679     
1680     ly_voice = group_tuplets (voice_builder.elements, tuplet_events)
1681     ly_voice = group_repeats (ly_voice)
1682
1683     seq_music = musicexp.SequentialMusic ()
1684
1685     if 'drummode' in modes_found.keys ():
1686         ## \key <pitch> barfs in drummode.
1687         ly_voice = [e for e in ly_voice
1688                     if not isinstance(e, musicexp.KeySignatureChange)]
1689     
1690     seq_music.elements = ly_voice
1691     for k in lyrics.keys ():
1692         return_value.lyrics_dict[k] = musicexp.Lyrics ()
1693         return_value.lyrics_dict[k].lyrics_syllables = lyrics[k]
1694     
1695     
1696     if len (modes_found) > 1:
1697        error_message (_ ('cannot simultaneously have more than one mode: %s') % modes_found.keys ())
1698        
1699     if options.relative:
1700         v = musicexp.RelativeMusic ()
1701         v.element = seq_music
1702         v.basepitch = first_pitch
1703         seq_music = v
1704
1705     return_value.ly_voice = seq_music
1706     for mode in modes_found.keys ():
1707         v = musicexp.ModeChangingMusicWrapper()
1708         v.element = seq_music
1709         v.mode = mode
1710         return_value.ly_voice = v
1711     
1712     return return_value
1713
1714 def musicxml_id_to_lily (id):
1715     digits = ['Zero', 'One', 'Two', 'Three', 'Four', 'Five',
1716               'Six', 'Seven', 'Eight', 'Nine', 'Ten']
1717     
1718     for digit in digits:
1719         d = digits.index (digit)
1720         id = re.sub ('%d' % d, digit, id)
1721
1722     id = re.sub  ('[^a-zA-Z]', 'X', id)
1723     return id
1724
1725 def musicxml_pitch_to_lily (mxl_pitch):
1726     p = musicexp.Pitch ()
1727     p.alteration = mxl_pitch.get_alteration ()
1728     p.step = musicxml_step_to_lily (mxl_pitch.get_step ())
1729     p.octave = mxl_pitch.get_octave () - 4
1730     return p
1731
1732 def musicxml_unpitched_to_lily (mxl_unpitched):
1733     p = None
1734     step = mxl_unpitched.get_step ()
1735     if step:
1736         p = musicexp.Pitch ()
1737         p.step = musicxml_step_to_lily (step)
1738     octave = mxl_unpitched.get_octave ()
1739     if octave and p:
1740         p.octave = octave - 4
1741     return p
1742
1743 def musicxml_restdisplay_to_lily (mxl_rest):
1744     p = None
1745     step = mxl_rest.get_step ()
1746     if step:
1747         p = musicexp.Pitch ()
1748         p.step = musicxml_step_to_lily (step)
1749     octave = mxl_rest.get_octave ()
1750     if octave and p:
1751         p.octave = octave - 4
1752     return p
1753
1754 def voices_in_part (part):
1755     """Return a Name -> Voice dictionary for PART"""
1756     part.interpret ()
1757     part.extract_voices ()
1758     voices = part.get_voices ()
1759     part_info = part.get_staff_attributes ()
1760
1761     return (voices, part_info)
1762
1763 def voices_in_part_in_parts (parts):
1764     """return a Part -> Name -> Voice dictionary"""
1765     return dict([(p.id, voices_in_part (p)) for p in parts])
1766
1767
1768 def get_all_voices (parts):
1769     all_voices = voices_in_part_in_parts (parts)
1770
1771     all_ly_voices = {}
1772     all_ly_staffinfo = {}
1773     for p, (name_voice, staff_info) in all_voices.items ():
1774
1775         part_ly_voices = {}
1776         for n, v in name_voice.items ():
1777             progress (_ ("Converting to LilyPond expressions..."))
1778             # musicxml_voice_to_lily_voice returns (lily_voice, {nr->lyrics, nr->lyrics})
1779             part_ly_voices[n] = musicxml_voice_to_lily_voice (v)
1780
1781         all_ly_voices[p] = part_ly_voices
1782         all_ly_staffinfo[p] = staff_info
1783
1784     return (all_ly_voices, all_ly_staffinfo)
1785
1786
1787 def option_parser ():
1788     p = ly.get_option_parser(usage=_ ("musicxml2ly [options] FILE.xml"),
1789                              version=('''%prog (LilyPond) @TOPLEVEL_VERSION@\n\n'''
1790                                       +
1791 _ ("""This program is free software.  It is covered by the GNU General Public
1792 License and you are welcome to change it and/or distribute copies of it
1793 under certain conditions.  Invoke as `%s --warranty' for more
1794 information.""") % 'lilypond'
1795 + """
1796 Copyright (c) 2005--2008 by
1797     Han-Wen Nienhuys <hanwen@xs4all.nl>,
1798     Jan Nieuwenhuizen <janneke@gnu.org> and
1799     Reinhold Kainhofer <reinhold@kainhofer.com>
1800 """),
1801                              description=_ ("Convert %s to LilyPond input.") % 'MusicXML' + "\n")
1802     p.add_option ('-v', '--verbose',
1803                   action="store_true",
1804                   dest='verbose',
1805                   help=_ ("be verbose"))
1806
1807     p.add_option ('', '--lxml',
1808                   action="store_true",
1809                   default=False,
1810                   dest="use_lxml",
1811                   help=_ ("Use lxml.etree; uses less memory and cpu time."))
1812
1813     p.add_option ('-z', '--compressed',
1814                   action = "store_true",
1815                   dest = 'compressed',
1816                   default = False,
1817                   help = _ ("Input file is a zip-compressed MusicXML file."))
1818
1819     p.add_option ('-r', '--relative',
1820                   action = "store_true",
1821                   dest = "relative",
1822                   help = _ ("Convert pitches in relative mode. (Default)"))
1823
1824     p.add_option ('-a', '--absolute',
1825                   action = "store_false",
1826                   dest = "relative",
1827                   help = _ ("Convert pitches in absolute mode."))
1828
1829     p.add_option ('-l', '--language',
1830                   metavar=_("LANG"),
1831                   action = "store",
1832                   help = _ ("Use a different language file 'LANG.ly' and corresponding pitch names, e.g. 'deutsch' for deutsch.ly."))
1833
1834     p.add_option ('--nd', '--no-articulation-directions', 
1835                   action = "store_false",
1836                   default = True,
1837                   dest = "convert_directions",
1838                   help = _ ("Do not convert directions (^, _ or -) for articulations, dynamics, etc."))
1839
1840     p.add_option ('-o', '--output',
1841                   metavar=_ ("FILE"),
1842                   action="store",
1843                   default=None,
1844                   type='string',
1845                   dest='output_name',
1846                   help=_ ("set output filename to FILE"))
1847     p.add_option_group ( _('Bugs'),
1848                         description=(_ ("Report bugs via")
1849                                      + ''' http://post.gmane.org/post.php'''
1850                                      '''?group=gmane.comp.gnu.lilypond.bugs\n'''))
1851     return p
1852
1853 def music_xml_voice_name_to_lily_name (part_id, name):
1854     str = "Part%sVoice%s" % (part_id, name)
1855     return musicxml_id_to_lily (str) 
1856
1857 def music_xml_lyrics_name_to_lily_name (part_id, name, lyricsnr):
1858     str = "Part%sVoice%sLyrics%s" % (part_id, name, lyricsnr)
1859     return musicxml_id_to_lily (str) 
1860
1861 def print_voice_definitions (printer, part_list, voices):
1862     for part in part_list:
1863         part_id = part.id
1864         nv_dict = voices.get (part_id, {})
1865         for (name, voice) in nv_dict.items ():
1866             k = music_xml_voice_name_to_lily_name (part_id, name)
1867             printer.dump ('%s = ' % k)
1868             voice.ly_voice.print_ly (printer)
1869             printer.newline()
1870             for l in voice.lyrics_order:
1871                 lname = music_xml_lyrics_name_to_lily_name (part_id, name, l)
1872                 printer.dump ('%s = ' %lname )
1873                 voice.lyrics_dict[l].print_ly (printer)
1874                 printer.newline()
1875
1876
1877 def uniq_list (l):
1878     return dict ([(elt,1) for elt in l]).keys ()
1879
1880 # format the information about the staff in the form 
1881 #     [staffid,
1882 #         [
1883 #            [voiceid1, [lyricsid11, lyricsid12,...] ...],
1884 #            [voiceid2, [lyricsid21, lyricsid22,...] ...],
1885 #            ...
1886 #         ]
1887 #     ]
1888 # raw_voices is of the form [(voicename, lyricsids)*]
1889 def format_staff_info (part_id, staff_id, raw_voices):
1890     voices = []
1891     for (v, lyricsids) in raw_voices:
1892         voice_name = music_xml_voice_name_to_lily_name (part_id, v)
1893         voice_lyrics = [music_xml_lyrics_name_to_lily_name (part_id, v, l)
1894                    for l in lyricsids]
1895         voices.append ([voice_name, voice_lyrics])
1896     return [staff_id, voices]
1897
1898 def update_score_setup (score_structure, part_list, voices):
1899
1900     for part_definition in part_list:
1901         part_id = part_definition.id
1902         nv_dict = voices.get (part_id)
1903         if not nv_dict:
1904             error_message ('unknown part in part-list: %s' % part_id)
1905             continue
1906
1907         staves = reduce (lambda x,y: x+ y,
1908                 [voice.voicedata._staves.keys ()
1909                  for voice in nv_dict.values ()],
1910                 [])
1911         staves_info = []
1912         if len (staves) > 1:
1913             staves_info = []
1914             staves = uniq_list (staves)
1915             staves.sort ()
1916             for s in staves:
1917                 thisstaff_raw_voices = [(voice_name, voice.lyrics_order) 
1918                     for (voice_name, voice) in nv_dict.items ()
1919                     if voice.voicedata._start_staff == s]
1920                 staves_info.append (format_staff_info (part_id, s, thisstaff_raw_voices))
1921         else:
1922             thisstaff_raw_voices = [(voice_name, voice.lyrics_order) 
1923                 for (voice_name, voice) in nv_dict.items ()]
1924             staves_info.append (format_staff_info (part_id, None, thisstaff_raw_voices))
1925         score_structure.set_part_information (part_id, staves_info)
1926
1927 def print_ly_preamble (printer, filename):
1928     printer.dump_version ()
1929     printer.print_verbatim ('%% automatically converted from %s\n' % filename)
1930
1931 def print_ly_additional_definitions (printer, filename):
1932     if needed_additional_definitions:
1933         printer.newline ()
1934         printer.print_verbatim ('%% additional definitions required by the score:')
1935         printer.newline ()
1936     for a in set(needed_additional_definitions):
1937         printer.print_verbatim (additional_definitions.get (a, ''))
1938         printer.newline ()
1939     printer.newline ()
1940
1941 # Read in the tree from the given I/O object (either file or string) and 
1942 # demarshall it using the classes from the musicxml.py file
1943 def read_xml (io_object, use_lxml):
1944     if use_lxml:
1945         import lxml.etree
1946         tree = lxml.etree.parse (io_object)
1947         mxl_tree = musicxml.lxml_demarshal_node (tree.getroot ())
1948         return mxl_tree
1949     else:
1950         from xml.dom import minidom, Node
1951         doc = minidom.parse(io_object)
1952         node = doc.documentElement
1953         return musicxml.minidom_demarshal_node (node)
1954     return None
1955
1956
1957 def read_musicxml (filename, compressed, use_lxml):
1958     raw_string = None
1959     if compressed:
1960         progress (_ ("Input file %s is compressed, extracting raw MusicXML data") % filename)
1961         z = zipfile.ZipFile (filename, "r")
1962         container_xml = z.read ("META-INF/container.xml")
1963         if not container_xml:
1964             return None
1965         container = read_xml (StringIO.StringIO (container_xml), use_lxml)
1966         if not container:
1967             return None
1968         rootfiles = container.get_maybe_exist_named_child ('rootfiles')
1969         if not rootfiles:
1970             return None
1971         rootfile_list = rootfiles.get_named_children ('rootfile')
1972         mxml_file = None
1973         if len (rootfile_list) > 0:
1974             mxml_file = getattr (rootfile_list[0], 'full-path', None)
1975         if mxml_file:
1976             raw_string = z.read (mxml_file)
1977
1978     io_object = filename
1979     if raw_string:
1980         io_object = StringIO.StringIO (raw_string)
1981
1982     return read_xml (io_object, use_lxml)
1983
1984
1985 def convert (filename, options):
1986     progress (_ ("Reading MusicXML from %s ...") % filename)
1987     
1988     tree = read_musicxml (filename, options.compressed, options.use_lxml)
1989     parts = tree.get_typed_children (musicxml.Part)
1990     (voices, staff_info) = get_all_voices (parts)
1991
1992     score_structure = None
1993     mxl_pl = tree.get_maybe_exist_typed_child (musicxml.Part_list)
1994     if mxl_pl:
1995         score_structure = extract_score_layout (mxl_pl, staff_info)
1996         part_list = mxl_pl.get_named_children ("score-part")
1997
1998     # score information is contained in the <work>, <identification> or <movement-title> tags
1999     score_information = extract_score_information (tree)
2000     layout_information = extract_layout_information (tree)
2001     update_score_setup (score_structure, part_list, voices)
2002
2003     if not options.output_name:
2004         options.output_name = os.path.basename (filename) 
2005         options.output_name = os.path.splitext (options.output_name)[0]
2006     elif re.match (".*\.ly", options.output_name):
2007         options.output_name = os.path.splitext (options.output_name)[0]
2008
2009
2010     defs_ly_name = options.output_name + '-defs.ly'
2011     driver_ly_name = options.output_name + '.ly'
2012
2013     printer = musicexp.Output_printer()
2014     progress (_ ("Output to `%s'") % defs_ly_name)
2015     printer.set_file (codecs.open (defs_ly_name, 'wb', encoding='utf-8'))
2016
2017     print_ly_preamble (printer, filename)
2018     print_ly_additional_definitions (printer, filename)
2019     if score_information:
2020         score_information.print_ly (printer)
2021     if layout_information:
2022         layout_information.print_ly (printer)
2023     print_voice_definitions (printer, part_list, voices)
2024     
2025     printer.close ()
2026     
2027     
2028     progress (_ ("Output to `%s'") % driver_ly_name)
2029     printer = musicexp.Output_printer()
2030     printer.set_file (codecs.open (driver_ly_name, 'wb', encoding='utf-8'))
2031     print_ly_preamble (printer, filename)
2032     printer.dump (r'\include "%s"' % os.path.basename (defs_ly_name))
2033     score_structure.print_ly (printer)
2034     printer.newline ()
2035
2036     return voices
2037
2038 def get_existing_filename_with_extension (filename, ext):
2039     if os.path.exists (filename):
2040         return filename
2041     newfilename = filename + "." + ext
2042     if os.path.exists (newfilename):
2043         return newfilename;
2044     newfilename = filename + ext
2045     if os.path.exists (newfilename):
2046         return newfilename;
2047     return ''
2048
2049 def main ():
2050     opt_parser = option_parser()
2051
2052     global options
2053     (options, args) = opt_parser.parse_args ()
2054     if not args:
2055         opt_parser.print_usage()
2056         sys.exit (2)
2057
2058     if options.language:
2059         musicexp.set_pitch_language (options.language)
2060         needed_additional_definitions.append (options.language)
2061         additional_definitions[options.language] = "\\include \"%s.ly\"\n" % options.language
2062
2063     # Allow the user to leave out the .xml or xml on the filename
2064     filename = get_existing_filename_with_extension (args[0], "xml")
2065     if not filename:
2066         filename = get_existing_filename_with_extension (args[0], "mxl")
2067         options.compressed = True
2068     if filename and os.path.exists (filename):
2069         voices = convert (filename, options)
2070     else:
2071         progress (_ ("Unable to find input file %s") % args[0])
2072
2073 if __name__ == '__main__':
2074     main()