OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 import in_generator |
| 7 from name_utilities import lower_first |
| 8 |
| 9 |
| 10 class CSSProperties(in_generator.Writer): |
| 11 defaults = { |
| 12 'alias_for': None, |
| 13 'longhands': '', |
| 14 'font': False, |
| 15 'svg': False, |
| 16 'name_for_methods': None, |
| 17 'getter': None, |
| 18 'setter': None, |
| 19 'initial': None, |
| 20 'type_name': None, |
| 21 'sb_converter': None, |
| 22 'sb_custom_all': False, |
| 23 'sb_custom_initial': False, |
| 24 'sb_custom_inherit': False, |
| 25 'sb_custom_value': False, |
| 26 'sb_skip': False, |
| 27 'sb_unreachable': False, |
| 28 } |
| 29 |
| 30 valid_values = { |
| 31 'font': (True, False), |
| 32 'svg': (True, False), |
| 33 'sb_custom_all': (True, False), |
| 34 'sb_custom_initial': (True, False), |
| 35 'sb_custom_inherit': (True, False), |
| 36 'sb_custom_value': (True, False), |
| 37 'sb_skip': (True, False), |
| 38 'sb_unreachable': (True, False), |
| 39 } |
| 40 |
| 41 def __init__(self, file_paths): |
| 42 in_generator.Writer.__init__(self, file_paths) |
| 43 |
| 44 properties = self.in_file.name_dictionaries |
| 45 |
| 46 self._aliases = {property['name']: property['alias_for'] for property in
properties if property['alias_for']} |
| 47 properties = [property for property in properties if not property['alias
_for']] |
| 48 |
| 49 assert len(properties) <= 1024, 'There are more than 1024 CSS Properties
, you need to update CSSProperty.h/StylePropertyMetadata m_propertyID accordingl
y.' |
| 50 # We currently assign 0 to CSSPropertyInvalid |
| 51 self._first_enum_value = 1 |
| 52 for offset, property in enumerate(properties): |
| 53 property['property_id'] = css_name_to_enum(property['name']) |
| 54 property['upper_camel_name'] = camelcase_css_name(property['name']) |
| 55 property['lower_camel_name'] = lower_first(property['upper_camel_nam
e']) |
| 56 property['enum_value'] = self._first_enum_value + offset |
| 57 property['is_internal'] = property['name'].startswith('-internal-') |
| 58 if property['sb_custom_all']: |
| 59 property['sb_custom_initial'] = True |
| 60 property['sb_custom_inherit'] = True |
| 61 property['sb_custom_value'] = True |
| 62 |
| 63 self._properties_list = properties |
| 64 self._properties = {property['property_id']: property for property in pr
operties} |
| 65 |
| 66 |
| 67 def camelcase_css_name(css_name): |
| 68 """Convert hyphen-separated-name to UpperCamelCase. |
| 69 |
| 70 E.g., '-foo-bar' becomes 'FooBar'. |
| 71 """ |
| 72 return ''.join(word.capitalize() for word in css_name.split('-')) |
| 73 |
| 74 |
| 75 def css_name_to_enum(css_name): |
| 76 return 'CSSProperty' + camelcase_css_name(css_name) |
OLD | NEW |