Index: Source/bindings/scripts/code_generator_v8.py |
diff --git a/Source/bindings/scripts/code_generator_v8.py b/Source/bindings/scripts/code_generator_v8.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e386b505fced49ac187b4c4a086a957822109beb |
--- /dev/null |
+++ b/Source/bindings/scripts/code_generator_v8.py |
@@ -0,0 +1,56 @@ |
+# Copyright (C) 2013 Google Inc. All rights reserved. |
+# |
+# Redistribution and use in source and binary forms, with or without |
+# modification, are permitted provided that the following conditions are |
+# met: |
+# |
+# * Redistributions of source code must retain the above copyright |
+# notice, this list of conditions and the following disclaimer. |
+# * Redistributions in binary form must reproduce the above |
+# copyright notice, this list of conditions and the following disclaimer |
+# in the documentation and/or other materials provided with the |
+# distribution. |
+# * Neither the name of Google Inc. nor the names of its |
+# contributors may be used to endorse or promote products derived from |
+# this software without specific prior written permission. |
+# |
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+ |
+"""Generate Blink V8 bindings (.cpp and .h files). |
+ |
+Given an IR of the IDL files for an interface (produced by the frontend), |
haraken
2013/07/08 06:06:29
I'd avoid using the work "IR" and "frontend" since
Nils Barth (inactive)
2013/07/09 08:48:16
I've clarified above, where the terms are useful,
|
+generates the .cpp and .h files for the binding. |
+ |
+FIXME: Currently a stub, as part of landing the parser and code generator |
haraken
2013/07/08 06:06:29
Let's explain our working plan here. In other word
Nils Barth (inactive)
2013/07/09 08:48:16
Done!
(Please feel free to suggest rewordings.)
|
+incrementally. Only implements generation of dummy .cpp and .h files. |
+""" |
+ |
+import os.path |
+ |
+ |
+def generate_dummy_header_and_cpp(target_interface_name, output_directory): |
+ header_basename = 'V8%s.h' % target_interface_name |
+ cpp_basename = 'V8%s.cpp' % target_interface_name |
+ header_fullname = os.path.join(output_directory, header_basename) |
+ cpp_fullname = os.path.join(output_directory, cpp_basename) |
+ contents = """/* |
+ This file is generated just to tell build scripts that {header_basename} and |
+ {cpp_basename} are created for {target_interface_name}.idl, and thus |
+ prevent the build scripts from trying to generate {header_basename} and |
+ {cpp_basename} at every build. This file must not be tried to compile. |
+*/ |
haraken
2013/07/08 06:06:29
You might want to use the jinja template for this.
Nils Barth (inactive)
2013/07/09 08:48:16
That's a really good point – we don't want manual
|
+""".format(**locals()) |
+ with open(header_fullname, 'w') as header_file: |
+ header_file.write(contents) |
+ with open(cpp_fullname, 'w') as cpp_file: |
+ cpp_file.write(contents) |