1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 """Utilies and constants specific to Chromium C++ code.
9 from datetime
import datetime
10 from model
import PropertyType
15 """// Copyright (c) %d The Chromium Authors. All rights reserved.
16 // Use of this source code is governed by a BSD-style license that can be
17 // found in the LICENSE file.""" % datetime
.now().year
19 GENERATED_FILE_MESSAGE
= """// GENERATED FROM THE API DEFINITION IN
23 GENERATED_BUNDLE_FILE_MESSAGE
= """// GENERATED FROM THE API DEFINITIONS IN
27 GENERATED_FEATURE_MESSAGE
= """// GENERATED FROM THE FEATURE DEFINITIONS IN
33 """Translates a namespace name or function name into something more
36 eg experimental.downloads -> Experimental_Downloads
37 updateAll -> UpdateAll.
39 return '_'.join([x
[0].upper() + x
[1:] for x
in re
.split('\W', s
)])
42 def GetAsFundamentalValue(type_
, src
, dst
):
43 """Returns the C++ code for retrieving a fundamental type from a
44 Value into a variable.
50 PropertyType
.BOOLEAN
: '%s->GetAsBoolean(%s)',
51 PropertyType
.DOUBLE
: '%s->GetAsDouble(%s)',
52 PropertyType
.INTEGER
: '%s->GetAsInteger(%s)',
53 PropertyType
.STRING
: '%s->GetAsString(%s)',
54 }[type_
.property_type
] % (src
, dst
)
57 def GetValueType(type_
):
58 """Returns the Value::Type corresponding to the model.Type.
61 PropertyType
.ARRAY
: 'base::Value::TYPE_LIST',
62 PropertyType
.BINARY
: 'base::Value::TYPE_BINARY',
63 PropertyType
.BOOLEAN
: 'base::Value::TYPE_BOOLEAN',
64 # PropertyType.CHOICES can be any combination of types.
65 PropertyType
.DOUBLE
: 'base::Value::TYPE_DOUBLE',
66 PropertyType
.ENUM
: 'base::Value::TYPE_STRING',
67 PropertyType
.FUNCTION
: 'base::Value::TYPE_DICTIONARY',
68 PropertyType
.INTEGER
: 'base::Value::TYPE_INTEGER',
69 PropertyType
.OBJECT
: 'base::Value::TYPE_DICTIONARY',
70 PropertyType
.STRING
: 'base::Value::TYPE_STRING',
71 }[type_
.property_type
]
74 def GetParameterDeclaration(param
, type_
):
75 """Gets a parameter declaration of a given model.Property and its C++
78 if param
.type_
.property_type
in (PropertyType
.ANY
,
84 arg
= 'const %(type)s& %(name)s'
86 arg
= '%(type)s %(name)s'
89 'name': param
.unix_name
,
93 def GenerateIfndefName(path
, filename
):
94 """Formats a path and filename as a #define name.
96 e.g chrome/extensions/gen, file.h becomes CHROME_EXTENSIONS_GEN_FILE_H__.
98 return (('%s_%s_H__' % (path
, filename
))
99 .upper().replace(os
.sep
, '_').replace('/', '_'))
102 def PadForGenerics(var
):
103 """Appends a space to |var| if it ends with a >, so that it can be compiled
104 within generic types.
106 return ('%s ' % var
) if var
.endswith('>') else var
109 def OpenNamespace(namespace
):
110 """Get opening root namespace declarations.
113 # In lieu of GYP supporting None for the namespace variable the '' namespace
114 # implies there is no root namespace.
117 for component
in namespace
.split('::'):
118 c
.Append('namespace %s {' % component
)
122 def CloseNamespace(namespace
):
123 """Get closing root namespace declarations.
126 # In lieu of GYP supporting None for the namespace variable the '' namespace
127 # implies there is no root namespace.
130 for component
in reversed(namespace
.split('::')):
131 c
.Append('} // namespace %s' % component
)
135 def ConstantName(feature_name
):
136 """Returns a kName for a feature's name.
138 return ('k' + ''.join(word
[0].upper() + word
[1:]
139 for word
in feature_name
.replace('.', ' ').split()))
142 def CamelCase(unix_name
):
143 return ''.join(word
.capitalize() for word
in unix_name
.split('_'))
146 def ClassName(filepath
):
147 return CamelCase(os
.path
.split(filepath
)[1])