| OLD | NEW |
| 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 'direction_aware': [True, False], | |
| 53 'skip': [True, False], | |
| 54 } | |
| 55 defaults = { | |
| 56 'name_for_methods': None, | |
| 57 'use_handlers_for': None, | |
| 58 'svg': False, | |
| 59 'font': False, | |
| 60 'converter': None, | |
| 61 'direction_aware': False, | |
| 62 'skip': False, | |
| 63 # These depend on property name by default | |
| 64 'type_name': None, | |
| 65 'getter': None, | |
| 66 'setter': None, | |
| 67 'initial': None, | |
| 68 # Setting these stops default handlers being generated | |
| 69 # Setting custom_all is the same as setting the other three | |
| 70 'custom_all': False, | |
| 71 'custom_initial': False, | |
| 72 'custom_inherit': False, | |
| 73 'custom_value': False, | |
| 74 } | |
| 75 | |
| 76 def __init__(self, in_files): | |
| 77 super(StyleBuilderWriter, self).__init__(in_files) | |
| 78 self._outputs = {('StyleBuilderFunctions.h'): self.generate_style_builde
r_functions_h, | 45 self._outputs = {('StyleBuilderFunctions.h'): self.generate_style_builde
r_functions_h, |
| 79 ('StyleBuilderFunctions.cpp'): self.generate_style_buil
der_functions_cpp, | 46 ('StyleBuilderFunctions.cpp'): self.generate_style_buil
der_functions_cpp, |
| 80 ('StyleBuilder.cpp'): self.generate_style_builder, | 47 ('StyleBuilder.cpp'): self.generate_style_builder, |
| 81 } | 48 } |
| 82 | 49 |
| 83 self._properties = self.in_file.name_dictionaries | |
| 84 | |
| 85 def set_if_none(property, key, value): | 50 def set_if_none(property, key, value): |
| 86 if property[key] is None: | 51 if property[key] is None: |
| 87 property[key] = value | 52 property[key] = value |
| 88 | 53 |
| 89 for property in self._properties: | 54 for property in self._properties.values(): |
| 90 cc = camelcase_property_name(property['name']) | 55 upper_camel = property['upper_camel_name'] |
| 91 property['property_id'] = 'CSSProperty' + cc | 56 set_if_none(property, 'name_for_methods', upper_camel.replace('Webki
t', '')) |
| 92 cc = property['name_for_methods'] or cc.replace('Webkit', '') | 57 name = property['name_for_methods'] |
| 93 property['camel_case_name'] = cc | 58 set_if_none(property, 'type_name', 'E' + name) |
| 94 set_if_none(property, 'type_name', 'E' + cc) | 59 set_if_none(property, 'getter', lower_first(name)) |
| 95 set_if_none(property, 'getter', lower_first(cc)) | 60 set_if_none(property, 'setter', 'set' + name) |
| 96 set_if_none(property, 'setter', 'set' + cc) | 61 set_if_none(property, 'initial', 'initial' + name) |
| 97 set_if_none(property, 'initial', 'initial' + cc) | |
| 98 if property['custom_all']: | 62 if property['custom_all']: |
| 99 property['custom_initial'] = True | 63 property['custom_initial'] = True |
| 100 property['custom_inherit'] = True | 64 property['custom_inherit'] = True |
| 101 property['custom_value'] = True | 65 property['custom_value'] = True |
| 102 property['should_declare_functions'] = not property['use_handlers_fo
r'] and not property['direction_aware'] and not property['skip'] | 66 property['should_declare_functions'] = not property['use_handlers_fo
r'] and not property['longhands'] \ |
| 67 and not property['direction_a
ware'] and not property['builder_skip'] |
| 103 | 68 |
| 104 self._properties = dict((property['property_id'], property) for property
in self._properties) | 69 self._properties['CSSPropertyFont']['should_declare_functions'] = True |
| 105 | 70 |
| 106 @template_expander.use_jinja('StyleBuilderFunctions.h.tmpl', | 71 @template_expander.use_jinja('StyleBuilderFunctions.h.tmpl', |
| 107 filters=filters) | 72 filters=filters) |
| 108 def generate_style_builder_functions_h(self): | 73 def generate_style_builder_functions_h(self): |
| 109 return { | 74 return { |
| 110 'properties': self._properties, | 75 'properties': self._properties, |
| 111 } | 76 } |
| 112 | 77 |
| 113 @template_expander.use_jinja('StyleBuilderFunctions.cpp.tmpl', | 78 @template_expander.use_jinja('StyleBuilderFunctions.cpp.tmpl', |
| 114 filters=filters) | 79 filters=filters) |
| 115 def generate_style_builder_functions_cpp(self): | 80 def generate_style_builder_functions_cpp(self): |
| 116 return { | 81 return { |
| 117 'properties': self._properties, | 82 'properties': self._properties, |
| 118 } | 83 } |
| 119 | 84 |
| 120 @template_expander.use_jinja('StyleBuilder.cpp.tmpl', filters=filters) | 85 @template_expander.use_jinja('StyleBuilder.cpp.tmpl', filters=filters) |
| 121 def generate_style_builder(self): | 86 def generate_style_builder(self): |
| 122 return { | 87 return { |
| 123 'properties': self._properties, | 88 'properties': self._properties, |
| 124 } | 89 } |
| 125 | 90 |
| 126 | 91 |
| 127 if __name__ == '__main__': | 92 if __name__ == '__main__': |
| 128 in_generator.Maker(StyleBuilderWriter).main(sys.argv) | 93 in_generator.Maker(StyleBuilderWriter).main(sys.argv) |
| OLD | NEW |