7 ## so we can call directly as buildscripts/output-distance.py
8 me_path
= os
.path
.abspath (os
.path
.split (sys
.argv
[0])[0])
9 sys
.path
.insert (0, me_path
+ '/../python/')
10 sys
.path
.insert (0, me_path
+ '/../python/out/')
17 OUTPUT_EXPRESSION_PENALTY
= 1
18 ORPHAN_GROB_PENALTY
= 1
21 ################################################################
27 self
.dir = tempfile
.mkdtemp ()
28 print 'dir is', self
.dir
30 print 'rm -rf %s' % self
.dir
31 os
.system ('rm -rf %s' % self
.dir)
39 temp_dir
= TempDirectory ()
44 return os
.popen (c
).read ()
50 raise Exception ("failed")
53 def shorten_string (s
):
55 if len (s
) > 2*threshold
:
56 s
= s
[:threshold
] + '..' + s
[-threshold
:]
59 def max_distance (x1
, x2
):
62 for (p
,q
) in zip (x1
, x2
):
63 dist
= max (abs (p
-q
), dist
)
68 def compare_png_images (old
, new
, dest_dir
):
70 m
= re
.search ('([0-9]+) x ([0-9]+)', read_pipe ('file %s' % f
))
72 return tuple (map (int, m
.groups ()))
74 dest
= os
.path
.join (dest_dir
, new
.replace ('.png', '.compare.jpeg'))
76 dims1
= png_dims (old
)
77 dims2
= png_dims (new
)
78 except AttributeError:
80 system ('touch %(dest)s' % locals ())
83 dims
= (min (dims1
[0], dims2
[0]),
84 min (dims1
[1], dims2
[1]))
87 system ('convert -depth 8 -crop %dx%d+0+0 %s %s/crop1.png' % (dims
+ (old
, dir)))
88 system ('convert -depth 8 -crop %dx%d+0+0 %s %s/crop2.png' % (dims
+ (new
, dir)))
90 system ('compare -depth 8 %(dir)s/crop1.png %(dir)s/crop2.png %(dir)s/diff.png' % locals ())
92 system ("convert -depth 8 %(dir)s/diff.png -blur 0x3 -negate -channel alpha,blue -type TrueColorMatte -fx 'intensity' %(dir)s/matte.png" % locals ())
94 system ("composite -compose atop -quality 65 %(dir)s/matte.png %(new)s %(dest)s" % locals ())
97 ################################################################
98 # interval/bbox arithmetic.
100 empty_interval
= (INFTY
, -INFTY
)
101 empty_bbox
= (empty_interval
, empty_interval
)
103 def interval_is_empty (i
):
106 def interval_length (i
):
107 return max (i
[1]-i
[0], 0)
109 def interval_union (i1
, i2
):
110 return (min (i1
[0], i2
[0]),
113 def interval_intersect (i1
, i2
):
114 return (max (i1
[0], i2
[0]),
117 def bbox_is_empty (b
):
118 return (interval_is_empty (b
[0])
119 or interval_is_empty (b
[1]))
121 def bbox_union (b1
, b2
):
122 return (interval_union (b1
[X_AXIS
], b2
[X_AXIS
]),
123 interval_union (b2
[Y_AXIS
], b2
[Y_AXIS
]))
125 def bbox_intersection (b1
, b2
):
126 return (interval_intersect (b1
[X_AXIS
], b2
[X_AXIS
]),
127 interval_intersect (b2
[Y_AXIS
], b2
[Y_AXIS
]))
130 return interval_length (b
[X_AXIS
]) * interval_length (b
[Y_AXIS
])
132 def bbox_diameter (b
):
133 return max (interval_length (b
[X_AXIS
]),
134 interval_length (b
[Y_AXIS
]))
137 def difference_area (a
, b
):
138 return bbox_area (a
) - bbox_area (bbox_intersection (a
,b
))
141 def __init__ (self
, exp_list
):
142 (self
.name
, self
.origin
, bbox_x
,
143 bbox_y
, self
.output_expression
) = tuple (exp_list
)
145 self
.bbox
= (bbox_x
, bbox_y
)
146 self
.centroid
= (bbox_x
[0] + bbox_x
[1], bbox_y
[0] + bbox_y
[1])
149 return '%s: (%.2f,%.2f), (%.2f,%.2f)\n' % (self
.name
,
155 def axis_centroid (self
, axis
):
156 return apply (sum, self
.bbox
[axis
]) / 2
158 def centroid_distance (self
, other
, scale
):
159 return max_distance (self
.centroid
, other
.centroid
) / scale
161 def bbox_distance (self
, other
):
162 divisor
= bbox_area (self
.bbox
) + bbox_area (other
.bbox
)
165 return (difference_area (self
.bbox
, other
.bbox
) +
166 difference_area (other
.bbox
, self
.bbox
)) / divisor
170 def expression_distance (self
, other
):
171 if self
.output_expression
== other
.output_expression
:
176 ################################################################
179 class SystemSignature
:
180 def __init__ (self
, grob_sigs
):
183 val
= d
.setdefault (g
.name
, [])
187 self
.set_all_bbox (grob_sigs
)
189 def set_all_bbox (self
, grobs
):
190 self
.bbox
= empty_bbox
192 self
.bbox
= bbox_union (g
.bbox
, self
.bbox
)
194 def closest (self
, grob_name
, centroid
):
198 grobs
= self
.grob_dict
[grob_name
]
201 d
= max_distance (g
.centroid
, centroid
)
212 return reduce (lambda x
,y
: x
+y
, self
.grob_dict
.values(), [])
214 ################################################################
215 ## comparison of systems.
218 def __init__ (self
, system1
, system2
):
219 self
.system1
= system1
220 self
.system2
= system2
222 self
.link_list_dict
= {}
223 self
.back_link_dict
= {}
230 self
.geo_distances
= {}
233 self
.expression_changed
= []
235 self
._geometric
_distance
= None
236 self
._expression
_change
_count
= None
237 self
._orphan
_count
= None
239 for g
in system1
.grobs ():
241 ## skip empty bboxes.
242 if bbox_is_empty (g
.bbox
):
245 closest
= system2
.closest (g
.name
, g
.centroid
)
247 self
.link_list_dict
.setdefault (closest
, [])
248 self
.link_list_dict
[closest
].append (g
)
249 self
.back_link_dict
[g
] = closest
252 def calc_geometric_distance (self
):
254 for (g1
,g2
) in self
.back_link_dict
.items ():
256 d
= g1
.bbox_distance (g2
)
258 self
.geo_distances
[(g1
,g2
)] = d
262 self
._geometric
_distance
= total
264 def calc_orphan_count (self
):
266 for (g1
, g2
) in self
.back_link_dict
.items ():
268 self
.orphans
.append ((g1
, None))
272 self
._orphan
_count
= count
274 def calc_output_exp_distance (self
):
276 for (g1
,g2
) in self
.back_link_dict
.items ():
278 d
+= g1
.expression_distance (g2
)
280 self
._expression
_change
_count
= d
282 def output_expression_details_string (self
):
283 return ', '.join ([g1
.name
for g1
in self
.expression_changed
])
285 def geo_details_string (self
):
286 results
= [(d
, g1
,g2
) for ((g1
, g2
), d
) in self
.geo_distances
.items()]
290 return ', '.join (['%s: %f' % (g1
.name
, d
) for (d
, g1
, g2
) in results
])
292 def orphan_details_string (self
):
293 return ', '.join (['%s-None' % g1
.name
for (g1
,g2
) in self
.orphans
if g2
==None])
295 def geometric_distance (self
):
296 if self
._geometric
_distance
== None:
297 self
.calc_geometric_distance ()
298 return self
._geometric
_distance
300 def orphan_count (self
):
301 if self
._orphan
_count
== None:
302 self
.calc_orphan_count ()
304 return self
._orphan
_count
306 def output_expression_change_count (self
):
307 if self
._expression
_change
_count
== None:
308 self
.calc_output_exp_distance ()
309 return self
._expression
_change
_count
312 return (self
.output_expression_change_count (),
313 self
.orphan_count (),
314 self
.geometric_distance ())
316 def read_signature_file (name
):
317 print 'reading', name
319 entries
= open (name
).read ().split ('\n')
320 def string_to_tup (s
):
321 return tuple (map (float, s
.split (' ')))
323 def string_to_entry (s
):
324 fields
= s
.split('@')
325 fields
[2] = string_to_tup (fields
[2])
326 fields
[3] = string_to_tup (fields
[3])
328 return tuple (fields
)
330 entries
= [string_to_entry (e
) for e
in entries
331 if e
and not e
.startswith ('#')]
333 grob_sigs
= [GrobSignature (e
) for e
in entries
]
334 sig
= SystemSignature (grob_sigs
)
338 ################################################################
339 # different systems of a .ly file.
341 hash_to_original_name
= {}
344 def __init__ (self
, f1
, f2
):
345 self
._distance
= None
346 self
.file_names
= (f1
, f2
)
348 def text_record_string (self
):
349 return '%-30f %-20s\n' % (self
.distance (),
351 + os
.path
.splitext (self
.file_names
[1])[1]
354 def calc_distance (self
):
358 if self
._distance
== None:
359 self
._distance
= self
.calc_distance ()
361 return self
._distance
363 def source_file (self
):
364 for ext
in ('.ly', '.ly.txt'):
365 base
= os
.path
.splitext (self
.file_names
[1])[0]
367 if os
.path
.exists (f
):
373 base
= os
.path
.basename (self
.file_names
[1])
374 base
= os
.path
.splitext (base
)[0]
375 base
= hash_to_original_name
.get (base
, base
)
376 base
= os
.path
.splitext (base
)[0]
379 def extension (self
):
380 return os
.path
.splitext (self
.file_names
[1])[1]
382 def link_files_for_html (self
, dest_dir
):
383 for f
in self
.file_names
:
384 link_file (f
, os
.path
.join (dest_dir
, f
))
386 def get_distance_details (self
):
389 def get_cell (self
, oldnew
):
392 def get_file (self
, oldnew
):
393 return self
.file_names
[oldnew
]
395 def html_record_string (self
, dest_dir
):
396 dist
= self
.distance()
398 details
= self
.get_distance_details ()
400 details_base
= os
.path
.splitext (self
.file_names
[1])[0]
401 details_base
+= '.details.html'
402 fn
= dest_dir
+ '/' + details_base
403 open_write_file (fn
).write (details
)
405 details
= '<br>(<a href="%(details_base)s">details</a>)' % locals ()
407 cell1
= self
.get_cell (0)
408 cell2
= self
.get_cell (1)
410 name
= self
.name () + self
.extension ()
411 file1
= self
.get_file (0)
412 file2
= self
.get_file (1)
419 <td>%(cell1)s<br><font size=-2><a href="%(file1)s"><tt>%(name)s</tt></font></td>
420 <td>%(cell2)s<br><font size=-2><a href="%(file2)s"><tt>%(name)s</tt></font></td>
424 class FileCompareLink (FileLink
):
425 def __init__ (self
, f1
, f2
):
426 FileLink
.__init
__ (self
, f1
, f2
)
427 self
.contents
= (self
.get_content (self
.file_names
[0]),
428 self
.get_content (self
.file_names
[1]))
431 def calc_distance (self
):
432 ## todo: could use import MIDI to pinpoint
433 ## what & where changed.
435 if self
.contents
[0] == self
.contents
[1]:
440 def get_content (self
, f
):
446 class GitFileCompareLink (FileCompareLink
):
447 def get_cell (self
, oldnew
):
448 str = self
.contents
[oldnew
]
450 # truncate long lines
451 str = '\n'.join ([l
[:80] for l
in str.split ('\n')])
454 str = '<font size="-2"><pre>%s</pre></font>' % str
457 def calc_distance (self
):
458 if self
.contents
[0] == self
.contents
[1]:
461 d
= 1.0001 *options
.threshold
466 class TextFileCompareLink (FileCompareLink
):
467 def calc_distance (self
):
469 diff
= difflib
.unified_diff (self
.contents
[0].strip().split ('\n'),
470 self
.contents
[1].strip().split ('\n'),
471 fromfiledate
= self
.file_names
[0],
472 tofiledate
= self
.file_names
[1]
475 self
.diff_lines
= [l
for l
in diff
]
476 self
.diff_lines
= self
.diff_lines
[2:]
478 return math
.sqrt (float (len ([l
for l
in self
.diff_lines
if l
[0] in '-+'])))
480 def get_cell (self
, oldnew
):
483 str = '\n'.join ([d
.replace ('\n','') for d
in self
.diff_lines
])
484 str = '<font size="-2"><pre>%s</pre></font>' % str
487 class LogFileCompareLink (TextFileCompareLink
):
488 def get_content (self
, f
):
489 c
= TextFileCompareLink
.get_content (self
, f
)
490 c
= re
.sub ("\nProcessing `[^\n]+'\n", '', c
)
493 class ProfileFileLink (FileCompareLink
):
494 def __init__ (self
, f1
, f2
):
495 FileCompareLink
.__init
__ (self
, f1
, f2
)
496 self
.results
= [{}, {}]
498 def get_cell (self
, oldnew
):
500 for k
in ('time', 'cells'):
502 str += '%-8s: %d\n' % (k
, int (self
.results
[oldnew
][k
]))
504 str += '%-8s: %8d (%5.3f)\n' % (k
, int (self
.results
[oldnew
][k
]),
507 return '<pre>%s</pre>' % str
509 def get_ratio (self
, key
):
510 (v1
,v2
) = (self
.results
[0].get (key
, -1),
511 self
.results
[1].get (key
, -1))
513 if v1
<= 0 or v2
<= 0:
516 return (v1
- v2
) / float (v1
+v2
)
518 def calc_distance (self
):
521 self
.results
[oldnew
][m
.group(1)] = float (m
.group (2))
523 re
.sub ('([a-z]+): ([-0-9.]+)\n',
524 note_info
, self
.contents
[oldnew
])
532 for k
in ('time', 'cells'):
533 real_val
= math
.tan (self
.get_ratio (k
) * 0.5 * math
.pi
)
534 dist
+= math
.exp (math
.fabs (real_val
) * factor
[k
]) - 1
536 dist
= min (dist
, 100)
540 class MidiFileLink (TextFileCompareLink
):
541 def get_content (self
, oldnew
):
544 data
= FileCompareLink
.get_content (self
, oldnew
)
545 midi
= midi
.parse (data
)
551 str += 'track %d' % j
556 if re
.search ('LilyPond [0-9.]+', ev_str
):
559 str += ' ev %s\n' % `e`
564 class SignatureFileLink (FileLink
):
565 def __init__ (self
, f1
, f2
):
566 FileLink
.__init
__ (self
, f1
, f2
)
567 self
.system_links
= {}
569 def add_system_link (self
, link
, number
):
570 self
.system_links
[number
] = link
572 def calc_distance (self
):
575 orphan_distance
= 0.0
576 for l
in self
.system_links
.values ():
577 d
= max (d
, l
.geometric_distance ())
578 orphan_distance
+= l
.orphan_count ()
580 return d
+ orphan_distance
582 def add_file_compare (self
, f1
, f2
):
585 def note_system_index (m
):
586 system_index
.append (int (m
.group (1)))
589 base1
= re
.sub ("-([0-9]+).signature", note_system_index
, f1
)
590 base2
= re
.sub ("-([0-9]+).signature", note_system_index
, f2
)
592 self
.base_names
= (os
.path
.normpath (base1
),
593 os
.path
.normpath (base2
))
595 s1
= read_signature_file (f1
)
596 s2
= read_signature_file (f2
)
598 link
= SystemLink (s1
, s2
)
600 self
.add_system_link (link
, system_index
[0])
603 def create_images (self
, dest_dir
):
605 files_created
= [[], []]
606 for oldnew
in (0, 1):
607 pat
= self
.base_names
[oldnew
] + '.eps'
609 for f
in glob
.glob (pat
):
611 outfile
= (dest_dir
+ '/' + f
).replace ('.eps', '.png')
613 if options
.local_data_dir
:
614 data_option
= ('-slilypond-datadir=%s/../share/lilypond/current '
615 % os
.path
.dirname(infile
))
617 mkdir (os
.path
.split (outfile
)[0])
618 cmd
= ('gs -sDEVICE=png16m -dGraphicsAlphaBits=4 -dTextAlphaBits=4 '
621 ' -sOutputFile=%(outfile)s -dNOSAFER -dEPSCrop -q -dNOPAUSE '
622 ' %(infile)s -c quit ') % locals ()
624 files_created
[oldnew
].append (outfile
)
629 def link_files_for_html (self
, dest_dir
):
630 FileLink
.link_files_for_html (self
, dest_dir
)
631 to_compare
= [[], []]
634 if options
.create_images
:
635 to_compare
= self
.create_images (dest_dir
)
637 exts
+= ['.png', '-page*png']
641 for f
in glob
.glob (self
.base_names
[oldnew
] + ext
):
642 dst
= dest_dir
+ '/' + f
645 if f
.endswith ('.png'):
646 to_compare
[oldnew
].append (f
)
648 if options
.compare_images
:
649 for (old
, new
) in zip (to_compare
[0], to_compare
[1]):
650 compare_png_images (old
, new
, dest_dir
)
653 def get_cell (self
, oldnew
):
654 def img_cell (ly
, img
, name
):
658 name
= '<tt>%s</tt>' % name
662 <img src="%(img)s" style="border-style: none; max-width: 500px;">
665 def multi_img_cell (ly
, imgs
, name
):
669 name
= '<tt>%s</tt>' % name
671 imgs_str
= '\n'.join (['''<a href="%s">
672 <img src="%s" style="border-style: none; max-width: 500px;">
673 </a><br>''' % (img
, img
)
683 def cell (base
, name
):
684 pat
= base
+ '-page*.png'
685 pages
= glob
.glob (pat
)
688 return multi_img_cell (base
+ '.ly', sorted (pages
), name
)
690 return img_cell (base
+ '.ly', base
+ '.png', name
)
694 str = cell (os
.path
.splitext (self
.file_names
[oldnew
])[0], self
.name ())
695 if options
.compare_images
and oldnew
== 1:
696 str = str.replace ('.png', '.compare.jpeg')
701 def get_distance_details (self
):
702 systems
= self
.system_links
.items ()
706 for (c
, link
) in systems
:
707 e
= '<td>%d</td>' % c
708 for d
in link
.distance ():
709 e
+= '<td>%f</td>' % d
711 e
= '<tr>%s</tr>' % e
715 e
= '<td>%d</td>' % c
716 for s
in (link
.output_expression_details_string (),
717 link
.orphan_details_string (),
718 link
.geo_details_string ()):
719 e
+= "<td>%s</td>" % s
722 e
= '<tr>%s</tr>' % e
725 original
= self
.name ()
728 <title>comparison details for %(original)s</title>
748 ################################################################
754 def compare_signature_files (f1
, f2
):
755 s1
= read_signature_file (f1
)
756 s2
= read_signature_file (f2
)
758 return SystemLink (s1
, s2
).distance ()
760 def paired_files (dir1
, dir2
, pattern
):
762 Search DIR1 and DIR2 for PATTERN.
764 Return (PAIRED, MISSING-FROM-2, MISSING-FROM-1)
769 for d
in (dir1
,dir2
):
770 found
= [os
.path
.split (f
)[1] for f
in glob
.glob (d
+ '/' + pattern
)]
771 found
= dict ((f
, 1) for f
in found
)
783 return (pairs
, files
[1].keys (), missing
)
785 class ComparisonData
:
787 self
.result_dict
= {}
792 def read_sources (self
):
794 ## ugh: drop the .ly.txt
795 for (key
, val
) in self
.file_links
.items ():
797 def note_original (match
, ln
=val
):
799 hash_to_original_name
[key
] = match
.group (1)
802 sf
= val
.source_file ()
804 re
.sub (r
'\\sourcefilename "([^"]+)"',
805 note_original
, open (sf
).read ())
807 print 'no source for', val
809 def compare_trees (self
, dir1
, dir2
):
810 self
.compare_directories (dir1
, dir2
)
812 (root
, dirs
, files
) = os
.walk (dir1
).next ()
814 d1
= os
.path
.join (dir1
, d
)
815 d2
= os
.path
.join (dir2
, d
)
817 if os
.path
.islink (d1
) or os
.path
.islink (d2
):
820 if os
.path
.isdir (d2
):
821 self
.compare_trees (d1
, d2
)
823 def compare_directories (self
, dir1
, dir2
):
824 for ext
in ['signature',
829 (paired
, m1
, m2
) = paired_files (dir1
, dir2
, '*.' + ext
)
831 self
.missing
+= [(dir1
, m
) for m
in m1
]
832 self
.added
+= [(dir2
, m
) for m
in m2
]
835 if (options
.max_count
836 and len (self
.file_links
) > options
.max_count
):
841 self
.compare_files (f1
, f2
)
843 def compare_files (self
, f1
, f2
):
844 if f1
.endswith ('signature'):
845 self
.compare_signature_files (f1
, f2
)
847 ext
= os
.path
.splitext (f1
)[1]
849 '.midi': MidiFileLink
,
850 '.log' : LogFileCompareLink
,
851 '.profile': ProfileFileLink
,
852 '.gittxt': GitFileCompareLink
,
855 if klasses
.has_key (ext
):
856 self
.compare_general_files (klasses
[ext
], f1
, f2
)
858 def compare_general_files (self
, klass
, f1
, f2
):
859 name
= os
.path
.split (f1
)[1]
861 file_link
= klass (f1
, f2
)
862 self
.file_links
[name
] = file_link
864 def compare_signature_files (self
, f1
, f2
):
865 name
= os
.path
.split (f1
)[1]
866 name
= re
.sub ('-[0-9]+.signature', '', name
)
870 file_link
= self
.file_links
[name
]
872 generic_f1
= re
.sub ('-[0-9]+.signature', '.ly', f1
)
873 generic_f2
= re
.sub ('-[0-9]+.signature', '.ly', f2
)
874 file_link
= SignatureFileLink (generic_f1
, generic_f2
)
875 self
.file_links
[name
] = file_link
877 file_link
.add_file_compare (f1
, f2
)
879 def write_changed (self
, dest_dir
, threshold
):
880 (changed
, below
, unchanged
) = self
.thresholded_results (threshold
)
882 str = '\n'.join ([os
.path
.splitext (link
.file_names
[1])[0]
883 for link
in changed
])
884 fn
= dest_dir
+ '/changed.txt'
886 open_write_file (fn
).write (str)
888 def thresholded_results (self
, threshold
):
889 ## todo: support more scores.
890 results
= [(link
.distance(), link
)
891 for link
in self
.file_links
.values ()]
895 unchanged
= [r
for (d
,r
) in results
if d
== 0.0]
896 below
= [r
for (d
,r
) in results
if threshold
>= d
> 0.0]
897 changed
= [r
for (d
,r
) in results
if d
> threshold
]
899 return (changed
, below
, unchanged
)
901 def write_text_result_page (self
, filename
, threshold
):
906 print 'writing "%s"' % filename
907 out
= open_write_file (filename
)
909 (changed
, below
, unchanged
) = self
.thresholded_results (threshold
)
913 out
.write (link
.text_record_string ())
916 out
.write ('%d below threshold\n' % len (below
))
917 out
.write ('%d unchanged\n' % len (unchanged
))
919 def create_text_result_page (self
, dir1
, dir2
, dest_dir
, threshold
):
920 self
.write_text_result_page (dest_dir
+ '/index.txt', threshold
)
922 def create_html_result_page (self
, dir1
, dir2
, dest_dir
, threshold
):
923 dir1
= dir1
.replace ('//', '/')
924 dir2
= dir2
.replace ('//', '/')
926 (changed
, below
, unchanged
) = self
.thresholded_results (threshold
)
930 old_prefix
= os
.path
.split (dir1
)[1]
932 html
+= link
.html_record_string (dest_dir
)
935 short_dir1
= shorten_string (dir1
)
936 short_dir2
= shorten_string (dir2
)
938 <table rules="rows" border bordercolor="blue">
941 <th>%(short_dir1)s</th>
942 <th>%(short_dir2)s</th>
946 </html>''' % locals()
949 below_count
= len (below
)
952 html
+= ('<p>%d below threshold</p>' % below_count
)
954 html
+= ('<p>%d unchanged</p>' % len (unchanged
))
956 dest_file
= dest_dir
+ '/index.html'
957 open_write_file (dest_file
).write (html
)
961 link
.link_files_for_html (dest_dir
)
964 def print_results (self
, threshold
):
965 self
.write_text_result_page ('', threshold
)
967 def compare_trees (dir1
, dir2
, dest_dir
, threshold
):
968 data
= ComparisonData ()
969 data
.compare_trees (dir1
, dir2
)
973 data
.print_results (threshold
)
975 if os
.path
.isdir (dest_dir
):
976 system ('rm -rf %s '% dest_dir
)
978 data
.write_changed (dest_dir
, threshold
)
979 data
.create_html_result_page (dir1
, dir2
, dest_dir
, threshold
)
980 data
.create_text_result_page (dir1
, dir2
, dest_dir
, threshold
)
982 ################################################################
986 if not os
.path
.isdir (x
):
990 def link_file (x
, y
):
991 mkdir (os
.path
.split (y
)[0])
996 print 'OSError', x
, y
, z
999 def open_write_file (x
):
1000 d
= os
.path
.split (x
)[0]
1002 return open (x
, 'w')
1008 stat
= os
.system (x
)
1012 def test_paired_files ():
1013 print paired_files (os
.environ
["HOME"] + "/src/lilypond/scripts/",
1014 os
.environ
["HOME"] + "/src/lilypond-stable/buildscripts/", '*.py')
1017 def test_compare_trees ():
1018 system ('rm -rf dir1 dir2')
1019 system ('mkdir dir1 dir2')
1020 system ('cp 20{-*.signature,.ly,.png,.eps,.log,.profile} dir1')
1021 system ('cp 20{-*.signature,.ly,.png,.eps,.log,.profile} dir2')
1022 system ('cp 20expr{-*.signature,.ly,.png,.eps,.log,.profile} dir1')
1023 system ('cp 19{-*.signature,.ly,.png,.eps,.log,.profile} dir2/')
1024 system ('cp 19{-*.signature,.ly,.png,.eps,.log,.profile} dir1/')
1025 system ('cp 19-1.signature 19.sub-1.signature')
1026 system ('cp 19.ly 19.sub.ly')
1027 system ('cp 19.profile 19.sub.profile')
1028 system ('cp 19.log 19.sub.log')
1029 system ('cp 19.png 19.sub.png')
1030 system ('cp 19.eps 19.sub.eps')
1032 system ('cp 20multipage* dir1')
1033 system ('cp 20multipage* dir2')
1034 system ('cp 19multipage-1.signature dir2/20multipage-1.signature')
1037 system ('mkdir -p dir1/subdir/ dir2/subdir/')
1038 system ('cp 19.sub{-*.signature,.ly,.png,.eps,.log,.profile} dir1/subdir/')
1039 system ('cp 19.sub{-*.signature,.ly,.png,.eps,.log,.profile} dir2/subdir/')
1040 system ('cp 20grob{-*.signature,.ly,.png,.eps,.log,.profile} dir2/')
1041 system ('cp 20grob{-*.signature,.ly,.png,.eps,.log,.profile} dir1/')
1042 system ('echo HEAD is 1 > dir1/tree.gittxt')
1043 system ('echo HEAD is 2 > dir2/tree.gittxt')
1045 ## introduce differences
1046 system ('cp 19-1.signature dir2/20-1.signature')
1047 system ('cp 19.profile dir2/20.profile')
1048 system ('cp 19.png dir2/20.png')
1049 system ('cp 19multipage-page1.png dir2/20multipage-page1.png')
1050 system ('cp 20-1.signature dir2/subdir/19.sub-1.signature')
1051 system ('cp 20.png dir2/subdir/19.sub.png')
1052 system ("sed 's/: /: 1/g' 20.profile > dir2/subdir/19.sub.profile")
1055 system ('cp 19-1.signature dir2/20grob-1.signature')
1056 system ('cp 19-1.signature dir2/20grob-2.signature')
1057 system ('cp 19multipage.midi dir1/midi-differ.midi')
1058 system ('cp 20multipage.midi dir2/midi-differ.midi')
1059 system ('cp 19multipage.log dir1/log-differ.log')
1060 system ('cp 19multipage.log dir2/log-differ.log && echo different >> dir2/log-differ.log && echo different >> dir2/log-differ.log')
1062 compare_trees ('dir1', 'dir2', 'compare-dir1dir2', options
.threshold
)
1065 def test_basic_compare ():
1069 #(define default-toplevel-book-handler
1070 print-book-with-defaults-as-systems )
1072 #(ly:set-option (quote no-point-and-click))
1074 \sourcefilename "my-source.ly"
1077 \header { tagline = ##f }
1080 \new Staff \relative c {
1081 c4^"%(userstring)s" %(extragrob)s
1083 \new Staff \relative c {
1084 c4^"%(userstring)s" %(extragrob)s
1092 dicts
= [{ 'papermod' : '',
1095 'userstring': 'test' },
1096 { 'papermod' : '#(set-global-staff-size 19.5)',
1099 'userstring': 'test' },
1103 'userstring': 'blabla' },
1106 'extragrob': 'r2. \\break c1',
1107 'userstring': 'test' },
1111 open (d
['name'] + '.ly','w').write (ly_template
% d
)
1113 names
= [d
['name'] for d
in dicts
]
1115 system ('lilypond -ddump-profile -dseparate-log-files -ddump-signatures --png -dbackend=eps ' + ' '.join (names
))
1118 multipage_str
= r
'''
1119 #(set-default-paper-size "a6")
1121 \relative {c1 \pageBreak c1 }
1127 open ('20multipage.ly', 'w').write (multipage_str
.replace ('c1', 'd1'))
1128 open ('19multipage.ly', 'w').write ('#(set-global-staff-size 19.5)\n' + multipage_str
)
1129 system ('lilypond -dseparate-log-files -ddump-signatures --png 19multipage 20multipage ')
1131 test_compare_signatures (names
)
1133 def test_compare_signatures (names
, timing
=False):
1143 for t
in range (0, times
):
1144 sigs
= dict ((n
, read_signature_file ('%s-1.signature' % n
)) for n
in names
)
1148 print 'elapsed', (time
.clock() - t0
)/count
1154 for (n1
, s1
) in sigs
.items():
1155 for (n2
, s2
) in sigs
.items():
1156 combinations
['%s-%s' % (n1
, n2
)] = SystemLink (s1
,s2
).distance ()
1160 print 'elapsed', (time
.clock() - t0
)/count
1162 results
= combinations
.items ()
1165 print '%-20s' % k
, v
1167 assert combinations
['20-20'] == (0.0,0.0,0.0)
1168 assert combinations
['20-20expr'][0] > 0.0
1169 assert combinations
['20-19'][2] < 10.0
1170 assert combinations
['20-19'][2] > 0.0
1174 dir = 'test-output-distance'
1176 do_clean
= not os
.path
.exists (dir)
1178 print 'test results in ', dir
1180 system ('rm -rf ' + dir)
1181 system ('mkdir ' + dir)
1185 test_basic_compare ()
1187 test_compare_trees ()
1189 ################################################################
1193 p
= optparse
.OptionParser ("output-distance - compare LilyPond formatting runs")
1194 p
.usage
= 'output-distance.py [options] tree1 tree2'
1196 p
.add_option ('', '--test-self',
1198 action
="store_true",
1199 help='run test method')
1201 p
.add_option ('--max-count',
1207 help='only analyze COUNT signature pairs')
1209 p
.add_option ('', '--threshold',
1214 help='threshold for geometric distance')
1216 p
.add_option ('--no-compare-images',
1217 dest
="compare_images",
1219 action
="store_false",
1220 help="Don't run graphical comparisons")
1222 p
.add_option ('--create-images',
1223 dest
="create_images",
1225 action
="store_true",
1226 help="Create PNGs from EPSes")
1229 p
.add_option ('--local-datadir',
1230 dest
="local_data_dir",
1232 action
="store_true",
1233 help='whether to use the share/lilypond/ directory in the test directory')
1235 p
.add_option ('-o', '--output-dir',
1240 help='where to put the test results [tree2/compare-tree1tree2]')
1243 (options
, args
) = p
.parse_args ()
1245 if options
.run_test
:
1253 name
= options
.output_dir
1255 name
= args
[0].replace ('/', '')
1256 name
= os
.path
.join (args
[1], 'compare-' + shorten_string (name
))
1258 compare_trees (args
[0], args
[1], name
, options
.threshold
)
1260 if __name__
== '__main__':