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

Side by Side Diff: mojo/public/tools/bindings/pylib/mojom/generate/generator.py

Issue 1641163005: [Draft] try out the idea of adding export macros for C++ bindings. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Code shared by the various language-specific code generators.""" 5 """Code shared by the various language-specific code generators."""
6 6
7 from functools import partial 7 from functools import partial
8 import os.path 8 import os.path
9 import re 9 import re
10 10
(...skipping 19 matching lines...) Expand all
30 fileutil.EnsureDirectoryExists(full_dir) 30 fileutil.EnsureDirectoryExists(full_dir)
31 31
32 # Dump the data to disk. 32 # Dump the data to disk.
33 with open(full_path, "w+") as f: 33 with open(full_path, "w+") as f:
34 f.write(contents) 34 f.write(contents)
35 35
36 class Generator(object): 36 class Generator(object):
37 # Pass |output_dir| to emit files to disk. Omit |output_dir| to echo all 37 # Pass |output_dir| to emit files to disk. Omit |output_dir| to echo all
38 # files to stdout. 38 # files to stdout.
39 def __init__(self, module, output_dir=None, typemap=None, variant=None, 39 def __init__(self, module, output_dir=None, typemap=None, variant=None,
40 bytecode_path=None): 40 bytecode_path=None, dll_export_declaration=None,
41 dll_export_include=None):
41 self.module = module 42 self.module = module
42 self.output_dir = output_dir 43 self.output_dir = output_dir
43 self.typemap = typemap or {} 44 self.typemap = typemap or {}
44 self.variant = variant 45 self.variant = variant
45 self.bytecode_path = bytecode_path 46 self.bytecode_path = bytecode_path
47 self.dll_export_declaration = dll_export_declaration or ""
48 self.dll_export_include = dll_export_include or ""
46 49
47 def GetStructsFromMethods(self): 50 def GetStructsFromMethods(self):
48 result = [] 51 result = []
49 for interface in self.module.interfaces: 52 for interface in self.module.interfaces:
50 for method in interface.methods: 53 for method in interface.methods:
51 result.append(self._GetStructFromMethod(method)) 54 result.append(self._GetStructFromMethod(method))
52 if method.response_parameters != None: 55 if method.response_parameters != None:
53 result.append(self._GetResponseStructFromMethod(method)) 56 result.append(self._GetResponseStructFromMethod(method))
54 return result 57 return result
55 58
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 return self._AddStructComputedData(False, struct) 139 return self._AddStructComputedData(False, struct)
137 140
138 def _GetResponseStructFromMethod(self, method): 141 def _GetResponseStructFromMethod(self, method):
139 """Converts a method's response_parameters into the fields of a struct.""" 142 """Converts a method's response_parameters into the fields of a struct."""
140 params_class = "%s_%s_ResponseParams" % (method.interface.name, method.name) 143 params_class = "%s_%s_ResponseParams" % (method.interface.name, method.name)
141 struct = mojom.Struct(params_class, module=method.interface.module) 144 struct = mojom.Struct(params_class, module=method.interface.module)
142 for param in method.response_parameters: 145 for param in method.response_parameters:
143 struct.AddField(param.name, param.kind, param.ordinal, 146 struct.AddField(param.name, param.kind, param.ordinal,
144 attributes=param.attributes) 147 attributes=param.attributes)
145 return self._AddStructComputedData(False, struct) 148 return self._AddStructComputedData(False, struct)
OLDNEW
« no previous file with comments | « mojo/public/tools/bindings/mojom_bindings_generator.py ('k') | third_party/mojo/src/mojo/edk/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698