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

Side by Side Diff: Source/build/scripts/make_style_builder.py

Issue 371443003: Merge .in files for css/svg properties into a single file (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cascade
Patch Set: Created 6 years, 5 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/env python 1 #!/usr/bin/env python
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
11 # copyright notice, this list of conditions and the following disclaimer 11 # copyright notice, this list of conditions and the following disclaimer
12 # in the documentation and/or other materials provided with the 12 # in the documentation and/or other materials provided with the
13 # distribution. 13 # distribution.
14 # * Neither the name of Google Inc. nor the names of its 14 # * Neither the name of Google Inc. nor the names of its
15 # contributors may be used to endorse or promote products derived from 15 # contributors may be used to endorse or promote products derived from
16 # this software without specific prior written permission. 16 # this software without specific prior written permission.
17 # 17 #
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 import re
31 import sys 30 import sys
32 31
32 import css_properties
33 import in_generator 33 import in_generator
34 import name_utilities 34 from name_utilities import lower_first
35 from name_utilities import camelcase_property_name, lower_first
36 import template_expander 35 import template_expander
37 36
38 37
39 class StyleBuilderWriter(in_generator.Writer): 38 class StyleBuilderWriter(css_properties.CSSProperties):
40 class_name = 'StyleBuilder'
41 filters = { 39 filters = {
42 'lower_first': lower_first, 40 'lower_first': lower_first,
43 } 41 }
44 42
45 valid_values = { 43 def __init__(self, in_file_path):
46 'svg': [True, False], 44 super(StyleBuilderWriter, self).__init__(in_file_path)
47 'font': [True, False],
48 'custom_all': [True, False],
49 'custom_initial': [True, False],
50 'custom_inherit': [True, False],
51 'custom_value': [True, False],
52 'skip': [True, False],
53 }
54 defaults = {
55 'name_for_methods': None,
56 'use_handlers_for': None,
57 'svg': False,
58 'font': False,
59 'converter': None,
60 'skip': False,
61 # These depend on property name by default
62 'type_name': None,
63 'getter': None,
64 'setter': None,
65 'initial': None,
66 # Setting these stops default handlers being generated
67 # Setting custom_all is the same as setting the other three
68 'custom_all': False,
69 'custom_initial': False,
70 'custom_inherit': False,
71 'custom_value': False,
72 }
73
74 def __init__(self, in_files):
75 super(StyleBuilderWriter, self).__init__(in_files)
76 self._outputs = {('StyleBuilderFunctions.h'): self.generate_style_builde r_functions_h, 45 self._outputs = {('StyleBuilderFunctions.h'): self.generate_style_builde r_functions_h,
77 ('StyleBuilderFunctions.cpp'): self.generate_style_buil der_functions_cpp, 46 ('StyleBuilderFunctions.cpp'): self.generate_style_buil der_functions_cpp,
78 ('StyleBuilder.cpp'): self.generate_style_builder, 47 ('StyleBuilder.cpp'): self.generate_style_builder,
79 } 48 }
80 49
81 self._properties = self.in_file.name_dictionaries
82
83 def set_if_none(property, key, value): 50 def set_if_none(property, key, value):
84 if property[key] is None: 51 if property[key] is None:
85 property[key] = value 52 property[key] = value
86 53
87 for property in self._properties: 54 for property in self._properties.values():
88 cc = camelcase_property_name(property['name']) 55 upper_camel = property['upper_camel_name']
89 property['property_id'] = 'CSSProperty' + cc 56 set_if_none(property, 'name_for_methods', upper_camel.replace('Webki t', ''))
90 cc = property['name_for_methods'] or cc.replace('Webkit', '') 57 name = property['name_for_methods']
91 property['camel_case_name'] = cc 58 set_if_none(property, 'type_name', 'E' + name)
92 set_if_none(property, 'type_name', 'E' + cc) 59 set_if_none(property, 'getter', lower_first(name))
93 set_if_none(property, 'getter', lower_first(cc)) 60 set_if_none(property, 'setter', 'set' + name)
94 set_if_none(property, 'setter', 'set' + cc) 61 set_if_none(property, 'initial', 'initial' + name)
95 set_if_none(property, 'initial', 'initial' + cc) 62 if property['longhands']:
96 if property['custom_all']: 63 property['sb_unreachable'] = True
97 property['custom_initial'] = True 64 property['should_declare_functions'] = not property['sb_unreachable' ] and not property['sb_skip']
98 property['custom_inherit'] = True
99 property['custom_value'] = True
100 property['should_declare_functions'] = not property['use_handlers_fo r'] and not property['skip']
101 65
102 self._properties = dict((property['property_id'], property) for property in self._properties) 66 self._properties['CSSPropertyFont']['should_declare_functions'] = True
103 67
104 @template_expander.use_jinja('StyleBuilderFunctions.h.tmpl', 68 @template_expander.use_jinja('StyleBuilderFunctions.h.tmpl',
105 filters=filters) 69 filters=filters)
106 def generate_style_builder_functions_h(self): 70 def generate_style_builder_functions_h(self):
107 return { 71 return {
108 'properties': self._properties, 72 'properties': self._properties,
109 } 73 }
110 74
111 @template_expander.use_jinja('StyleBuilderFunctions.cpp.tmpl', 75 @template_expander.use_jinja('StyleBuilderFunctions.cpp.tmpl',
112 filters=filters) 76 filters=filters)
113 def generate_style_builder_functions_cpp(self): 77 def generate_style_builder_functions_cpp(self):
114 return { 78 return {
115 'properties': self._properties, 79 'properties': self._properties,
116 } 80 }
117 81
118 @template_expander.use_jinja('StyleBuilder.cpp.tmpl', filters=filters) 82 @template_expander.use_jinja('StyleBuilder.cpp.tmpl', filters=filters)
119 def generate_style_builder(self): 83 def generate_style_builder(self):
120 return { 84 return {
121 'properties': self._properties, 85 'properties': self._properties,
122 } 86 }
123 87
124 88
125 if __name__ == '__main__': 89 if __name__ == '__main__':
126 in_generator.Maker(StyleBuilderWriter).main(sys.argv) 90 in_generator.Maker(StyleBuilderWriter).main(sys.argv)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698