Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: Source/core/scripts/template_expander.py

Issue 14905002: Use jinja2 templating engine for Python code generators (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
4 # 2 #
5 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
7 # met: 5 # met:
8 # 6 #
9 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
11 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
12 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
13 # in the documentation and/or other materials provided with the 11 # in the documentation and/or other materials provided with the
14 # distribution. 12 # distribution.
15 # * Neither the name of Google Inc. nor the names of its 13 # * Neither the name of Google Inc. nor the names of its
16 # contributors may be used to endorse or promote products derived from 14 # contributors may be used to endorse or promote products derived from
17 # this software without specific prior written permission. 15 # this software without specific prior written permission.
18 # 16 #
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 28
31 """This file returns a list of all the IDL files that contain a partial interfac e.""" 29 import os.path
32
33 import re
34 import sys 30 import sys
35 31
36 partial_interface_regex = re.compile(r'partial\s+interface\s+(\w+).+\]', re.M | re.S) 32 def _setup():
33 autoinstallerpath = "../../../Tools/Scripts/webkitpy/common/system"
abarth-chromium 2013/05/06 18:27:32 Woah, we shouldn't have a dependency across the wo
34 sys.path.insert(0, autoinstallerpath)
35 from autoinstall import AutoInstaller
36 installer = AutoInstaller() # This won't re-download if the file already exi sts
37 installer.install(url="https://pypi.python.org/packages/source/J/Jinja2/Jinj a2-2.6.tar.gz#md5=1c49a8825c993bfdcf55bb36897d28a2", url_subpath="Jinja2-2.6/jin ja2")
abarth-chromium 2013/05/06 18:27:32 Can we just check jinja into third_party? We don'
38 sys.path.insert(0, os.path.join(autoinstallerpath, "autoinstalled"))
37 39
38 def DoMain(filenames): 40 def applytemplate(pathtotemplate, params):
39 partial_files = set() 41 try:
40 for filename in filenames: 42 import jinja2
41 with open(filename) as f: 43 except ImportError:
42 match = re.search(partial_interface_regex, f.read()) 44 _setup()
43 if match: 45 import jinja2
44 partial_files.add(filename) 46 dirname, basename = os.path.split(pathtotemplate)
45 return '\n'.join(partial_files) 47 env = jinja2.Environment(loader=jinja2.FileSystemLoader([dirname, "../script s/templates"]))
48 template = env.get_template(basename)
49 return template.render(params)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698