transform.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #
  2. # Asterisk -- An open source telephony toolkit.
  3. #
  4. # Copyright (C) 2013, Digium, Inc.
  5. #
  6. # David M. Lee, II <dlee@digium.com>
  7. #
  8. # See http://www.asterisk.org for more information about
  9. # the Asterisk project. Please do not directly contact
  10. # any of the maintainers of this project for assistance;
  11. # the project provides a web site, mailing lists and IRC
  12. # channels for your use.
  13. #
  14. # This program is free software, distributed under the terms of
  15. # the GNU General Public License Version 2. See the LICENSE file
  16. # at the top of the source tree.
  17. #
  18. import filecmp
  19. import os.path
  20. import pystache
  21. import shutil
  22. import tempfile
  23. class Transform(object):
  24. """Transformation for template to code.
  25. """
  26. def __init__(self, template_file, dest_file_template_str, overwrite=True):
  27. """Ctor.
  28. @param template_file: Filename of the mustache template.
  29. @param dest_file_template_str: Destination file name. This is a
  30. mustache template, so each resource can write to a unique file.
  31. @param overwrite: If True, destination file is ovewritten if it exists.
  32. """
  33. template_str = unicode(open(template_file, "r").read())
  34. self.template = pystache.parse(template_str)
  35. dest_file_template_str = unicode(dest_file_template_str)
  36. self.dest_file_template = pystache.parse(dest_file_template_str)
  37. self.overwrite = overwrite
  38. def render(self, renderer, model, dest_dir):
  39. """Render a model according to this transformation.
  40. @param render: Pystache renderer.
  41. @param model: Model object to render.
  42. @param dest_dir: Destination directory to write generated code.
  43. """
  44. dest_file = pystache.render(self.dest_file_template, model)
  45. dest_file = os.path.join(dest_dir, dest_file)
  46. dest_exists = os.path.exists(dest_file)
  47. if dest_exists and not self.overwrite:
  48. return
  49. tmp_file = tempfile.mkstemp()
  50. with tempfile.NamedTemporaryFile() as out:
  51. out.write(renderer.render(self.template, model))
  52. out.flush()
  53. if not dest_exists or not filecmp.cmp(out.name, dest_file):
  54. print "Writing %s" % dest_file
  55. shutil.copyfile(out.name, dest_file)