roundTrip.py :  » GUI » TTX-FontTools » fonttools-2.3 » MetaTools » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » GUI » TTX FontTools 
TTX FontTools » fonttools 2.3 » MetaTools » roundTrip.py
#! /usr/bin/env python

"""usage: ttroundtrip [options] font1 ... fontN

    Dump each TT/OT font as a TTX file, compile again to TTF or OTF
    and dump again. Then do a diff on the two TTX files. Append problems
    and diffs to a file called "report.txt" in the current directory.
    This is only for testing FontTools/TTX, the resulting files are
    deleted afterwards.

    This tool supports some of ttx's command line options (-i, -t
    and -x). Specifying -t or -x implies ttx -m <originalfile> on
    the way back.
"""


import sys
import os
import tempfile
import getopt
import traceback
from fontTools import ttx

class Error(Exception): pass


def usage():
  print __doc__
  sys.exit(2)


def roundTrip(ttFile1, options, report):
  fn = os.path.basename(ttFile1)
  xmlFile1 = tempfile.mktemp(".%s.ttx1" % fn)
  ttFile2 = tempfile.mktemp(".%s" % fn)
  xmlFile2 = tempfile.mktemp(".%s.ttx2" % fn)
  
  try:
    ttx.ttDump(ttFile1, xmlFile1, options)
    if options.onlyTables or options.skipTables:
      options.mergeFile = ttFile1
    ttx.ttCompile(xmlFile1, ttFile2, options)
    options.mergeFile = None
    ttx.ttDump(ttFile2, xmlFile2, options)
    
    diffcmd = 'diff -U2 -I ".*modified value\|checkSumAdjustment.*" "%s" "%s"' % (xmlFile1, xmlFile2)
    output = os.popen(diffcmd, "r", 1)
    lines = []
    while 1:
      line = output.readline()
      if not line:
        break
      sys.stdout.write(line)
      lines.append(line)
    if lines:
      report.write("=============================================================\n")
      report.write("  \"%s\" differs after round tripping\n" % ttFile1)
      report.write("-------------------------------------------------------------\n")
      report.writelines(lines)
    else:
      print "(TTX files are the same)"
  finally:
    for tmpFile in (xmlFile1, ttFile2, xmlFile2):
      if os.path.exists(tmpFile):
        os.remove(tmpFile)


def main(args):
  try:
    rawOptions, files = getopt.getopt(args, "it:x:")
  except getopt.GetoptError:
    usage()
  
  if not files:
    usage()
  
  report = open("report.txt", "a+")
  options = ttx.Options(rawOptions, len(files))
  for ttFile in files:
    try:
      roundTrip(ttFile, options, report)
    except KeyboardInterrupt:
      print "(Cancelled)"
      break
    except:
      print "*** round tripping aborted ***"
      traceback.print_exc()
      report.write("=============================================================\n")
      report.write("  An exception occurred while round tripping")
      report.write("  \"%s\"\n" % ttFile)
      traceback.print_exc(file=report)
      report.write("-------------------------------------------------------------\n")
  report.close()

  
main(sys.argv[1:])
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.