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.
6 from model
import PropertyType
10 from cpp_namespace_environment
import CppNamespaceEnvironment
12 class CCGenerator(object):
13 def __init__(self
, type_generator
):
14 self
._type
_generator
= type_generator
16 def Generate(self
, namespace
):
17 return _Generator(namespace
, self
._type
_generator
).Generate()
20 class _Generator(object):
21 """A .cc generator for a namespace.
23 def __init__(self
, namespace
, cpp_type_generator
):
24 assert type(namespace
.environment
) is CppNamespaceEnvironment
25 self
._namespace
= namespace
26 self
._type
_helper
= cpp_type_generator
27 self
._util
_cc
_helper
= (
28 util_cc_helper
.UtilCCHelper(self
._type
_helper
))
29 self
._generate
_error
_messages
= namespace
.compiler_options
.get(
30 'generate_error_messages', False)
33 """Generates a Code object with the .cc for a single namespace.
35 cpp_namespace
= cpp_util
.GetCppNamespace(
36 self
._namespace
.environment
.namespace_pattern
,
37 self
._namespace
.unix_name
)
40 (c
.Append(cpp_util
.CHROMIUM_LICENSE
)
42 .Append(cpp_util
.GENERATED_FILE_MESSAGE
% self
._namespace
.source_file
)
44 .Append(self
._util
_cc
_helper
.GetIncludePath())
45 .Append('#include "base/logging.h"')
46 .Append('#include "base/stl_util.h"')
47 .Append('#include "base/strings/string_number_conversions.h"')
48 .Append('#include "base/strings/utf_string_conversions.h"')
49 .Append('#include "%s/%s.h"' %
50 (self
._namespace
.source_file_dir
, self
._namespace
.short_filename
))
51 .Append('#include <set>')
52 .Cblock(self
._type
_helper
.GenerateIncludes(include_soft
=True))
54 .Append('using base::UTF8ToUTF16;')
56 .Concat(cpp_util
.OpenNamespace(cpp_namespace
))
58 if self
._namespace
.properties
:
60 .Append('// Properties')
64 for prop
in self
._namespace
.properties
.values():
65 property_code
= self
._type
_helper
.GeneratePropertyValues(
67 'const %(type)s %(name)s = %(value)s;',
70 c
.Cblock(property_code
)
71 if self
._namespace
.types
:
76 .Cblock(self
._GenerateTypes
(None, self
._namespace
.types
.values()))
78 if self
._namespace
.functions
:
80 .Append('// Functions')
84 for function
in self
._namespace
.functions
.values():
85 c
.Cblock(self
._GenerateFunction
(function
))
86 if self
._namespace
.events
:
92 for event
in self
._namespace
.events
.values():
93 c
.Cblock(self
._GenerateEvent
(event
))
94 c
.Cblock(cpp_util
.CloseNamespace(cpp_namespace
))
98 def _GenerateType(self
, cpp_namespace
, type_
):
99 """Generates the function definitions for a type.
101 classname
= cpp_util
.Classname(schema_util
.StripNamespace(type_
.name
))
105 # Wrap functions within types in the type's namespace.
106 (c
.Append('namespace %s {' % classname
)
108 for function
in type_
.functions
.values():
109 c
.Cblock(self
._GenerateFunction
(function
))
110 c
.Append('} // namespace %s' % classname
)
111 elif type_
.property_type
== PropertyType
.ARRAY
:
112 c
.Cblock(self
._GenerateType
(cpp_namespace
, type_
.item_type
))
113 elif type_
.property_type
in (PropertyType
.CHOICES
,
114 PropertyType
.OBJECT
):
115 if cpp_namespace
is None:
116 classname_in_namespace
= classname
118 classname_in_namespace
= '%s::%s' % (cpp_namespace
, classname
)
120 if type_
.property_type
== PropertyType
.OBJECT
:
121 c
.Cblock(self
._GeneratePropertyFunctions
(classname_in_namespace
,
122 type_
.properties
.values()))
124 c
.Cblock(self
._GenerateTypes
(classname_in_namespace
, type_
.choices
))
126 (c
.Append('%s::%s()' % (classname_in_namespace
, classname
))
127 .Cblock(self
._GenerateInitializersAndBody
(type_
))
128 .Append('%s::~%s() {}' % (classname_in_namespace
, classname
))
131 if type_
.origin
.from_json
:
132 c
.Cblock(self
._GenerateTypePopulate
(classname_in_namespace
, type_
))
133 if cpp_namespace
is None: # only generate for top-level types
134 c
.Cblock(self
._GenerateTypeFromValue
(classname_in_namespace
, type_
))
135 if type_
.origin
.from_client
:
136 c
.Cblock(self
._GenerateTypeToValue
(classname_in_namespace
, type_
))
137 elif type_
.property_type
== PropertyType
.ENUM
:
138 (c
.Cblock(self
._GenerateEnumToString
(cpp_namespace
, type_
))
139 .Cblock(self
._GenerateEnumFromString
(cpp_namespace
, type_
))
144 def _GenerateInitializersAndBody(self
, type_
):
146 for prop
in type_
.properties
.values():
149 real_t
= self
._type
_helper
.FollowRef(t
)
150 if real_t
.property_type
== PropertyType
.ENUM
:
151 namespace_prefix
= ('%s::' % real_t
.namespace
.unix_name
152 if real_t
.namespace
!= self
._namespace
154 items
.append('%s(%s%s)' % (prop
.unix_name
,
156 self
._type
_helper
.GetEnumNoneValue(t
)))
159 elif t
.property_type
== PropertyType
.INTEGER
:
160 items
.append('%s(0)' % prop
.unix_name
)
161 elif t
.property_type
== PropertyType
.DOUBLE
:
162 items
.append('%s(0.0)' % prop
.unix_name
)
163 elif t
.property_type
== PropertyType
.BOOLEAN
:
164 items
.append('%s(false)' % prop
.unix_name
)
165 elif (t
.property_type
== PropertyType
.ANY
or
166 t
.property_type
== PropertyType
.ARRAY
or
167 t
.property_type
== PropertyType
.BINARY
or
168 t
.property_type
== PropertyType
.CHOICES
or
169 t
.property_type
== PropertyType
.OBJECT
or
170 t
.property_type
== PropertyType
.FUNCTION
or
171 t
.property_type
== PropertyType
.REF
or
172 t
.property_type
== PropertyType
.STRING
):
173 # TODO(miket): It would be nice to initialize CHOICES, but we
174 # don't presently have the semantics to indicate which one of a set
175 # should be the default.
181 s
= ': %s' % (', '.join(items
))
185 return Code().Append(s
)
187 def _GenerateTypePopulate(self
, cpp_namespace
, type_
):
188 """Generates the function for populating a type given a pointer to it.
190 E.g for type "Foo", generates Foo::Populate()
192 classname
= cpp_util
.Classname(schema_util
.StripNamespace(type_
.name
))
194 (c
.Append('// static')
195 .Append('bool %(namespace)s::Populate(')
196 .Sblock(' %s) {' % self
._GenerateParams
(
197 ('const base::Value& value', '%(name)s* out'))))
199 if self
._generate
_error
_messages
:
200 c
.Append('DCHECK(error);')
202 if type_
.property_type
== PropertyType
.CHOICES
:
203 for choice
in type_
.choices
:
204 (c
.Sblock('if (%s) {' % self
._GenerateValueIsTypeExpression
('value',
206 .Concat(self
._GeneratePopulateVariableFromValue
(
209 'out->as_%s' % choice
.unix_name
,
212 .Append('return true;')
215 (c
.Concat(self
._GenerateError
(
216 '"expected %s, got " + %s' %
217 (" or ".join(choice
.name
for choice
in type_
.choices
),
218 self
._util
_cc
_helper
.GetValueTypeString('value'))))
219 .Append('return false;'))
220 elif type_
.property_type
== PropertyType
.OBJECT
:
221 (c
.Sblock('if (!value.IsType(base::Value::TYPE_DICTIONARY)) {')
222 .Concat(self
._GenerateError
(
223 '"expected dictionary, got " + ' +
224 self
._util
_cc
_helper
.GetValueTypeString('value')))
225 .Append('return false;')
228 if type_
.properties
or type_
.additional_properties
is not None:
229 c
.Append('const base::DictionaryValue* dict = '
230 'static_cast<const base::DictionaryValue*>(&value);')
231 if self
._generate
_error
_messages
:
232 c
.Append('std::set<std::string> keys;')
233 for prop
in type_
.properties
.itervalues():
234 c
.Concat(self
._InitializePropertyToDefault
(prop
, 'out'))
235 for prop
in type_
.properties
.itervalues():
236 if self
._generate
_error
_messages
:
237 c
.Append('keys.insert("%s");' % (prop
.name
))
238 c
.Concat(self
._GenerateTypePopulateProperty
(prop
, 'dict', 'out'))
239 # Check for extra values.
240 if self
._generate
_error
_messages
:
241 (c
.Sblock('for (base::DictionaryValue::Iterator it(*dict); '
242 '!it.IsAtEnd(); it.Advance()) {')
243 .Sblock('if (!keys.count(it.key())) {')
244 .Concat(self
._GenerateError
('"found unexpected key \'" + '
249 if type_
.additional_properties
is not None:
250 if type_
.additional_properties
.property_type
== PropertyType
.ANY
:
251 c
.Append('out->additional_properties.MergeDictionary(dict);')
253 cpp_type
= self
._type
_helper
.GetCppType(type_
.additional_properties
,
254 is_in_container
=True)
255 (c
.Append('for (base::DictionaryValue::Iterator it(*dict);')
256 .Sblock(' !it.IsAtEnd(); it.Advance()) {')
257 .Append('%s tmp;' % cpp_type
)
258 .Concat(self
._GeneratePopulateVariableFromValue
(
259 type_
.additional_properties
,
263 .Append('out->additional_properties[it.key()] = tmp;')
266 c
.Append('return true;')
268 .Substitute({'namespace': cpp_namespace
, 'name': classname
}))
271 def _GenerateValueIsTypeExpression(self
, var
, type_
):
272 real_type
= self
._type
_helper
.FollowRef(type_
)
273 if real_type
.property_type
is PropertyType
.CHOICES
:
274 return '(%s)' % ' || '.join(self
._GenerateValueIsTypeExpression
(var
,
276 for choice
in real_type
.choices
)
277 return '%s.IsType(%s)' % (var
, cpp_util
.GetValueType(real_type
))
279 def _GenerateTypePopulateProperty(self
, prop
, src
, dst
):
280 """Generate the code to populate a single property in a type.
282 src: base::DictionaryValue*
286 value_var
= prop
.unix_name
+ '_value'
287 c
.Append('const base::Value* %(value_var)s = NULL;')
290 'if (%(src)s->GetWithoutPathExpansion("%(key)s", &%(value_var)s)) {')
291 .Concat(self
._GeneratePopulatePropertyFromValue
(
292 prop
, value_var
, dst
, 'false')))
293 underlying_type
= self
._type
_helper
.FollowRef(prop
.type_
)
294 if underlying_type
.property_type
== PropertyType
.ENUM
:
295 namespace_prefix
= ('%s::' % underlying_type
.namespace
.unix_name
296 if underlying_type
.namespace
!= self
._namespace
298 (c
.Append('} else {')
299 .Append('%%(dst)s->%%(name)s = %s%s;' %
301 self
._type
_helper
.GetEnumNoneValue(prop
.type_
))))
305 'if (!%(src)s->GetWithoutPathExpansion("%(key)s", &%(value_var)s)) {')
306 .Concat(self
._GenerateError
('"\'%%(key)s\' is required"'))
307 .Append('return false;')
309 .Concat(self
._GeneratePopulatePropertyFromValue
(
310 prop
, value_var
, dst
, 'false'))
314 'value_var': value_var
,
318 'name': prop
.unix_name
322 def _GenerateTypeFromValue(self
, cpp_namespace
, type_
):
323 classname
= cpp_util
.Classname(schema_util
.StripNamespace(type_
.name
))
325 (c
.Append('// static')
326 .Append('scoped_ptr<%s> %s::FromValue(%s) {' % (classname
,
327 cpp_namespace
, self
._GenerateParams
(('const base::Value& value',))))
329 if self
._generate
_error
_messages
:
330 c
.Append('DCHECK(error);')
331 (c
.Append(' scoped_ptr<%s> out(new %s());' % (classname
, classname
))
332 .Append(' if (!Populate(%s))' % self
._GenerateArgs
(
333 ('value', 'out.get()')))
334 .Append(' return scoped_ptr<%s>();' % classname
)
335 .Append(' return out.Pass();')
340 def _GenerateTypeToValue(self
, cpp_namespace
, type_
):
341 """Generates a function that serializes the type into a base::Value.
342 E.g. for type "Foo" generates Foo::ToValue()
344 if type_
.property_type
== PropertyType
.OBJECT
:
345 return self
._GenerateObjectTypeToValue
(cpp_namespace
, type_
)
346 elif type_
.property_type
== PropertyType
.CHOICES
:
347 return self
._GenerateChoiceTypeToValue
(cpp_namespace
, type_
)
349 raise ValueError("Unsupported property type %s" % type_
.type_
)
351 def _GenerateObjectTypeToValue(self
, cpp_namespace
, type_
):
352 """Generates a function that serializes an object-representing type
353 into a base::DictionaryValue.
356 (c
.Sblock('scoped_ptr<base::DictionaryValue> %s::ToValue() const {' %
358 .Append('scoped_ptr<base::DictionaryValue> value('
359 'new base::DictionaryValue());')
363 for prop
in type_
.properties
.values():
364 prop_var
= 'this->%s' % prop
.unix_name
366 # Optional enum values are generated with a NONE enum value.
367 underlying_type
= self
._type
_helper
.FollowRef(prop
.type_
)
368 if underlying_type
.property_type
== PropertyType
.ENUM
:
369 c
.Sblock('if (%s != %s) {' %
371 self
._type
_helper
.GetEnumNoneValue(prop
.type_
)))
373 c
.Sblock('if (%s.get()) {' % prop_var
)
375 # ANY is a base::Value which is abstract and cannot be a direct member, so
376 # it will always be a pointer.
377 is_ptr
= prop
.optional
or prop
.type_
.property_type
== PropertyType
.ANY
378 c
.Cblock(self
._CreateValueFromType
(
379 'value->SetWithoutPathExpansion("%s", %%s);' % prop
.name
,
388 if type_
.additional_properties
is not None:
389 if type_
.additional_properties
.property_type
== PropertyType
.ANY
:
390 c
.Append('value->MergeDictionary(&additional_properties);')
392 # Non-copyable types will be wrapped in a linked_ptr for inclusion in
393 # maps, so we need to unwrap them.
395 not self
._type
_helper
.IsCopyable(type_
.additional_properties
))
396 (c
.Sblock('for (const auto& it : additional_properties) {')
397 .Cblock(self
._CreateValueFromType
(
398 'value->SetWithoutPathExpansion(it.first, %s);',
399 type_
.additional_properties
.name
,
400 type_
.additional_properties
,
401 '%sit.second' % ('*' if needs_unwrap
else '')))
406 .Append('return value.Pass();')
409 def _GenerateChoiceTypeToValue(self
, cpp_namespace
, type_
):
410 """Generates a function that serializes a choice-representing type
414 c
.Sblock('scoped_ptr<base::Value> %s::ToValue() const {' % cpp_namespace
)
415 c
.Append('scoped_ptr<base::Value> result;')
416 for choice
in type_
.choices
:
417 choice_var
= 'as_%s' % choice
.unix_name
418 (c
.Sblock('if (%s) {' % choice_var
)
419 .Append('DCHECK(!result) << "Cannot set multiple choices for %s";' %
421 .Cblock(self
._CreateValueFromType
('result.reset(%s);',
427 (c
.Append('DCHECK(result) << "Must set at least one choice for %s";' %
429 .Append('return result.Pass();')
434 def _GenerateFunction(self
, function
):
435 """Generates the definitions for function structs.
439 # TODO(kalman): use function.unix_name not Classname.
440 function_namespace
= cpp_util
.Classname(function
.name
)
441 # Windows has a #define for SendMessage, so to avoid any issues, we need
442 # to not use the name.
443 if function_namespace
== 'SendMessage':
444 function_namespace
= 'PassMessage'
445 (c
.Append('namespace %s {' % function_namespace
)
449 # Params::Populate function
451 c
.Concat(self
._GeneratePropertyFunctions
('Params', function
.params
))
452 (c
.Append('Params::Params() {}')
453 .Append('Params::~Params() {}')
455 .Cblock(self
._GenerateFunctionParamsCreate
(function
))
458 # Results::Create function
459 if function
.callback
:
460 c
.Concat(self
._GenerateCreateCallbackArguments
('Results',
463 c
.Append('} // namespace %s' % function_namespace
)
466 def _GenerateEvent(self
, event
):
467 # TODO(kalman): use event.unix_name not Classname.
469 event_namespace
= cpp_util
.Classname(event
.name
)
470 (c
.Append('namespace %s {' % event_namespace
)
472 .Cblock(self
._GenerateEventNameConstant
(event
))
473 .Cblock(self
._GenerateCreateCallbackArguments
(None, event
))
474 .Append('} // namespace %s' % event_namespace
)
478 def _CreateValueFromType(self
, code
, prop_name
, type_
, var
, is_ptr
=False):
479 """Creates a base::Value given a type. Generated code passes ownership
482 var: variable or variable*
484 E.g for std::string, generate new base::StringValue(var)
487 underlying_type
= self
._type
_helper
.FollowRef(type_
)
488 if underlying_type
.property_type
== PropertyType
.ARRAY
:
489 # Enums are treated specially because C++ templating thinks that they're
490 # ints, but really they're strings. So we create a vector of strings and
491 # populate it with the names of the enum in the array. The |ToString|
492 # function of the enum can be in another namespace when the enum is
493 # referenced. Templates can not be used here because C++ templating does
494 # not support passing a namespace as an argument.
495 item_type
= self
._type
_helper
.FollowRef(underlying_type
.item_type
)
496 if item_type
.property_type
== PropertyType
.ENUM
:
497 varname
= ('*' if is_ptr
else '') + '(%s)' % var
500 if type_
.item_type
.property_type
== PropertyType
.REF
:
501 maybe_namespace
= '%s::' % item_type
.namespace
.unix_name
503 enum_list_var
= '%s_list' % prop_name
504 # Scope the std::vector variable declaration inside braces.
506 .Append('std::vector<std::string> %s;' % enum_list_var
)
507 .Append('for (const auto& it : %s) {' % varname
)
508 .Append('%s.push_back(%sToString(it));' % (enum_list_var
,
512 # Because the std::vector above is always created for both required and
513 # optional enum arrays, |is_ptr| is set to false and uses the
514 # std::vector to create the values.
516 self
._GenerateCreateValueFromType
(type_
, enum_list_var
, False))
520 c
.Append(code
% self
._GenerateCreateValueFromType
(type_
, var
, is_ptr
))
523 def _GenerateCreateValueFromType(self
, type_
, var
, is_ptr
):
524 """Generates the statement to create a base::Value given a type.
526 type_: The type of the values being converted.
527 var: The name of the variable.
528 is_ptr: Whether |type_| is optional.
530 underlying_type
= self
._type
_helper
.FollowRef(type_
)
531 if (underlying_type
.property_type
== PropertyType
.CHOICES
or
532 underlying_type
.property_type
== PropertyType
.OBJECT
):
534 return '(%s)->ToValue().release()' % var
536 return '(%s).ToValue().release()' % var
537 elif (underlying_type
.property_type
== PropertyType
.ANY
or
538 underlying_type
.property_type
== PropertyType
.FUNCTION
):
540 vardot
= '(%s)->' % var
542 vardot
= '(%s).' % var
543 return '%sDeepCopy()' % vardot
544 elif underlying_type
.property_type
== PropertyType
.ENUM
:
546 if type_
.property_type
== PropertyType
.REF
:
547 maybe_namespace
= '%s::' % underlying_type
.namespace
.unix_name
548 return 'new base::StringValue(%sToString(%s))' % (maybe_namespace
, var
)
549 elif underlying_type
.property_type
== PropertyType
.BINARY
:
556 return ('base::BinaryValue::CreateWithCopiedBuffer(vector_as_array(%s),'
557 ' %ssize())' % (ref
, vardot
))
558 elif underlying_type
.property_type
== PropertyType
.ARRAY
:
559 return '%s.release()' % self
._util
_cc
_helper
.CreateValueFromArray(
562 elif underlying_type
.property_type
.is_fundamental
:
565 if underlying_type
.property_type
== PropertyType
.STRING
:
566 return 'new base::StringValue(%s)' % var
568 return 'new base::FundamentalValue(%s)' % var
570 raise NotImplementedError('Conversion of %s to base::Value not '
571 'implemented' % repr(type_
.type_
))
573 def _GenerateParamsCheck(self
, function
, var
):
574 """Generates a check for the correct number of arguments when creating
579 for param
in function
.params
:
580 if not param
.optional
:
582 if num_required
== len(function
.params
):
583 c
.Sblock('if (%(var)s.GetSize() != %(total)d) {')
584 elif not num_required
:
585 c
.Sblock('if (%(var)s.GetSize() > %(total)d) {')
587 c
.Sblock('if (%(var)s.GetSize() < %(required)d'
588 ' || %(var)s.GetSize() > %(total)d) {')
589 (c
.Concat(self
._GenerateError
(
590 '"expected %%(total)d arguments, got " '
591 '+ base::IntToString(%%(var)s.GetSize())'))
592 .Append('return scoped_ptr<Params>();')
596 'required': num_required
,
597 'total': len(function
.params
),
601 def _GenerateFunctionParamsCreate(self
, function
):
602 """Generate function to create an instance of Params. The generated
603 function takes a base::ListValue of arguments.
605 E.g for function "Bar", generate Bar::Params::Create()
608 (c
.Append('// static')
609 .Sblock('scoped_ptr<Params> Params::Create(%s) {' % self
._GenerateParams
(
610 ['const base::ListValue& args']))
612 if self
._generate
_error
_messages
:
613 c
.Append('DCHECK(error);')
614 (c
.Concat(self
._GenerateParamsCheck
(function
, 'args'))
615 .Append('scoped_ptr<Params> params(new Params());')
618 for param
in function
.params
:
619 c
.Concat(self
._InitializePropertyToDefault
(param
, 'params'))
621 for i
, param
in enumerate(function
.params
):
622 # Any failure will cause this function to return. If any argument is
623 # incorrect or missing, those following it are not processed. Note that
624 # for optional arguments, we allow missing arguments and proceed because
625 # there may be other arguments following it.
626 failure_value
= 'scoped_ptr<Params>()'
628 value_var
= param
.unix_name
+ '_value'
629 (c
.Append('const base::Value* %(value_var)s = NULL;')
630 .Append('if (args.Get(%(i)s, &%(value_var)s) &&')
631 .Sblock(' !%(value_var)s->IsType(base::Value::TYPE_NULL)) {')
632 .Concat(self
._GeneratePopulatePropertyFromValue
(
633 param
, value_var
, 'params', failure_value
))
636 if not param
.optional
:
638 .Concat(self
._GenerateError
('"\'%%(key)s\' is required"'))
639 .Append('return %s;' % failure_value
)
641 c
.Substitute({'value_var': value_var
, 'i': i
, 'key': param
.name
})
643 .Append('return params.Pass();')
650 def _GeneratePopulatePropertyFromValue(self
,
655 """Generates code to populate property |prop| of |dst_class_var| (a
656 pointer) from a Value*. See |_GeneratePopulateVariableFromValue| for
659 return self
._GeneratePopulateVariableFromValue
(prop
.type_
,
661 '%s->%s' % (dst_class_var
,
664 is_ptr
=prop
.optional
)
666 def _GeneratePopulateVariableFromValue(self
,
672 """Generates code to populate a variable |dst_var| of type |type_| from a
673 Value* at |src_var|. The Value* is assumed to be non-NULL. In the generated
674 code, if |dst_var| fails to be populated then Populate will return
679 underlying_type
= self
._type
_helper
.FollowRef(type_
)
681 if underlying_type
.property_type
.is_fundamental
:
683 (c
.Append('%(cpp_type)s temp;')
684 .Sblock('if (!%s) {' % cpp_util
.GetAsFundamentalValue(
685 self
._type
_helper
.FollowRef(type_
), src_var
, '&temp'))
686 .Concat(self
._GenerateError
(
687 '"\'%%(key)s\': expected ' + '%s, got " + %s' % (
689 self
._util
_cc
_helper
.GetValueTypeString(
690 '%%(src_var)s', True)))))
691 c
.Append('%(dst_var)s.reset();')
692 if not self
._generate
_error
_messages
:
693 c
.Append('return %(failure_value)s;')
696 .Append(' %(dst_var)s.reset(new %(cpp_type)s(temp));')
699 (c
.Sblock('if (!%s) {' % cpp_util
.GetAsFundamentalValue(
700 self
._type
_helper
.FollowRef(type_
),
703 .Concat(self
._GenerateError
(
704 '"\'%%(key)s\': expected ' + '%s, got " + %s' % (
706 self
._util
_cc
_helper
.GetValueTypeString(
707 '%%(src_var)s', True))))
708 .Append('return %(failure_value)s;')
711 elif underlying_type
.property_type
== PropertyType
.OBJECT
:
713 (c
.Append('const base::DictionaryValue* dictionary = NULL;')
714 .Sblock('if (!%(src_var)s->GetAsDictionary(&dictionary)) {')
715 .Concat(self
._GenerateError
(
716 '"\'%%(key)s\': expected dictionary, got " + ' +
717 self
._util
_cc
_helper
.GetValueTypeString('%%(src_var)s', True))))
718 # If an optional property fails to populate, the population can still
719 # succeed with a warning. If no error messages are generated, this
720 # warning is not set and we fail out instead.
721 if not self
._generate
_error
_messages
:
722 c
.Append('return %(failure_value)s;')
725 .Append('scoped_ptr<%(cpp_type)s> temp(new %(cpp_type)s());')
726 .Append('if (!%%(cpp_type)s::Populate(%s)) {' % self
._GenerateArgs
(
727 ('*dictionary', 'temp.get()')))
728 .Append(' return %(failure_value)s;')
732 .Append(' %(dst_var)s = temp.Pass();')
736 (c
.Append('const base::DictionaryValue* dictionary = NULL;')
737 .Sblock('if (!%(src_var)s->GetAsDictionary(&dictionary)) {')
738 .Concat(self
._GenerateError
(
739 '"\'%%(key)s\': expected dictionary, got " + ' +
740 self
._util
_cc
_helper
.GetValueTypeString('%%(src_var)s', True)))
741 .Append('return %(failure_value)s;')
743 .Append('if (!%%(cpp_type)s::Populate(%s)) {' % self
._GenerateArgs
(
744 ('*dictionary', '&%(dst_var)s')))
745 .Append(' return %(failure_value)s;')
748 elif underlying_type
.property_type
== PropertyType
.FUNCTION
:
750 c
.Append('%(dst_var)s.reset(new base::DictionaryValue());')
751 elif underlying_type
.property_type
== PropertyType
.ANY
:
752 c
.Append('%(dst_var)s.reset(%(src_var)s->DeepCopy());')
753 elif underlying_type
.property_type
== PropertyType
.ARRAY
:
754 # util_cc_helper deals with optional and required arrays
755 (c
.Append('const base::ListValue* list = NULL;')
756 .Sblock('if (!%(src_var)s->GetAsList(&list)) {')
757 .Concat(self
._GenerateError
(
758 '"\'%%(key)s\': expected list, got " + ' +
759 self
._util
_cc
_helper
.GetValueTypeString('%%(src_var)s', True)))
761 if is_ptr
and self
._generate
_error
_messages
:
762 c
.Append('%(dst_var)s.reset();')
764 c
.Append('return %(failure_value)s;')
767 item_type
= self
._type
_helper
.FollowRef(underlying_type
.item_type
)
768 if item_type
.property_type
== PropertyType
.ENUM
:
769 c
.Concat(self
._GenerateListValueToEnumArrayConversion
(
776 c
.Sblock('if (!%s) {' % self
._util
_cc
_helper
.PopulateArrayFromList(
780 c
.Concat(self
._GenerateError
(
781 '"unable to populate array \'%%(parent_key)s\'"'))
782 if is_ptr
and self
._generate
_error
_messages
:
783 c
.Append('%(dst_var)s.reset();')
785 c
.Append('return %(failure_value)s;')
788 elif underlying_type
.property_type
== PropertyType
.CHOICES
:
790 (c
.Append('scoped_ptr<%(cpp_type)s> temp(new %(cpp_type)s());')
791 .Append('if (!%%(cpp_type)s::Populate(%s))' % self
._GenerateArgs
(
792 ('*%(src_var)s', 'temp.get()')))
793 .Append(' return %(failure_value)s;')
794 .Append('%(dst_var)s = temp.Pass();')
797 (c
.Append('if (!%%(cpp_type)s::Populate(%s))' % self
._GenerateArgs
(
798 ('*%(src_var)s', '&%(dst_var)s')))
799 .Append(' return %(failure_value)s;'))
800 elif underlying_type
.property_type
== PropertyType
.ENUM
:
801 c
.Concat(self
._GenerateStringToEnumConversion
(underlying_type
,
805 elif underlying_type
.property_type
== PropertyType
.BINARY
:
806 (c
.Append('const base::BinaryValue* binary_value = NULL;')
807 .Sblock('if (!%(src_var)s->IsType(base::Value::TYPE_BINARY)) {')
808 .Concat(self
._GenerateError
(
809 '"\'%%(key)s\': expected binary, got " + ' +
810 self
._util
_cc
_helper
.GetValueTypeString('%%(src_var)s', True)))
812 if not self
._generate
_error
_messages
:
813 c
.Append('return %(failure_value)s;')
816 .Append(' binary_value =')
817 .Append(' static_cast<const base::BinaryValue*>(%(src_var)s);')
820 (c
.Append('%(dst_var)s.reset(new std::vector<char>(')
821 .Append(' binary_value->GetBuffer(),')
822 .Append(' binary_value->GetBuffer() + binary_value->GetSize()));')
825 (c
.Append('%(dst_var)s.assign(')
826 .Append(' binary_value->GetBuffer(),')
827 .Append(' binary_value->GetBuffer() + binary_value->GetSize());')
831 raise NotImplementedError(type_
)
834 return Code().Sblock('{').Concat(c
.Substitute({
835 'cpp_type': self
._type
_helper
.GetCppType(type_
),
838 'failure_value': failure_value
,
840 'parent_key': type_
.parent
.name
,
843 def _GenerateListValueToEnumArrayConversion(self
,
849 """Returns Code that converts a ListValue of string constants from
850 |src_var| into an array of enums of |type_| in |dst_var|. On failure,
851 returns |failure_value|.
857 cpp_type
= self
._type
_helper
.GetCppType(item_type
, is_in_container
=True)
858 c
.Append('%s.reset(new std::vector<%s>);' %
859 (dst_var
, cpp_util
.PadForGenerics(cpp_type
)))
860 (c
.Sblock('for (const auto& it : *(%s)) {' % src_var
)
861 .Append('%s tmp;' % self
._type
_helper
.GetCppType(item_type
))
862 .Concat(self
._GenerateStringToEnumConversion
(item_type
,
866 .Append('%s%spush_back(tmp);' % (dst_var
, accessor
))
871 def _GenerateStringToEnumConversion(self
,
876 """Returns Code that converts a string type in |src_var| to an enum with
877 type |type_| in |dst_var|. In the generated code, if |src_var| is not
878 a valid enum name then the function will return |failure_value|.
880 if type_
.property_type
!= PropertyType
.ENUM
:
881 raise TypeError(type_
)
883 enum_as_string
= '%s_as_string' % type_
.unix_name
884 cpp_type_namespace
= ''
885 if type_
.namespace
!= self
._namespace
:
886 cpp_type_namespace
= '%s::' % type_
.namespace
.unix_name
887 (c
.Append('std::string %s;' % enum_as_string
)
888 .Sblock('if (!%s->GetAsString(&%s)) {' % (src_var
, enum_as_string
))
889 .Concat(self
._GenerateError
(
890 '"\'%%(key)s\': expected string, got " + ' +
891 self
._util
_cc
_helper
.GetValueTypeString('%%(src_var)s', True)))
892 .Append('return %s;' % failure_value
)
894 .Append('%s = %sParse%s(%s);' % (dst_var
,
896 cpp_util
.Classname(type_
.name
),
898 .Sblock('if (%s == %s%s) {' % (dst_var
,
900 self
._type
_helper
.GetEnumNoneValue(type_
)))
901 .Concat(self
._GenerateError
(
902 '\"\'%%(key)s\': expected \\"' +
905 for enum_value
in self
._type
_helper
.FollowRef(type_
).enum_values
) +
906 '\\", got \\"" + %s + "\\""' % enum_as_string
))
907 .Append('return %s;' % failure_value
)
909 .Substitute({'src_var': src_var
, 'key': type_
.name
})
913 def _GeneratePropertyFunctions(self
, namespace
, params
):
914 """Generates the member functions for a list of parameters.
916 return self
._GenerateTypes
(namespace
, (param
.type_
for param
in params
))
918 def _GenerateTypes(self
, namespace
, types
):
919 """Generates the member functions for a list of types.
923 c
.Cblock(self
._GenerateType
(namespace
, type_
))
926 def _GenerateEnumToString(self
, cpp_namespace
, type_
):
927 """Generates ToString() which gets the string representation of an enum.
930 classname
= cpp_util
.Classname(schema_util
.StripNamespace(type_
.name
))
932 if cpp_namespace
is not None:
933 c
.Append('// static')
934 maybe_namespace
= '' if cpp_namespace
is None else '%s::' % cpp_namespace
936 c
.Sblock('std::string %sToString(%s enum_param) {' %
937 (maybe_namespace
, classname
))
938 c
.Sblock('switch (enum_param) {')
939 for enum_value
in self
._type
_helper
.FollowRef(type_
).enum_values
:
940 name
= enum_value
.name
941 if 'camel_case_enum_to_string' in self
._namespace
.compiler_options
:
942 name
= enum_value
.CamelName()
943 (c
.Append('case %s: ' % self
._type
_helper
.GetEnumValue(type_
, enum_value
))
944 .Append(' return "%s";' % name
))
945 (c
.Append('case %s:' % self
._type
_helper
.GetEnumNoneValue(type_
))
946 .Append(' return "";')
948 .Append('NOTREACHED();')
949 .Append('return "";')
954 def _GenerateEnumFromString(self
, cpp_namespace
, type_
):
955 """Generates FromClassNameString() which gets an enum from its string
959 classname
= cpp_util
.Classname(schema_util
.StripNamespace(type_
.name
))
961 if cpp_namespace
is not None:
962 c
.Append('// static')
963 maybe_namespace
= '' if cpp_namespace
is None else '%s::' % cpp_namespace
965 c
.Sblock('%s%s %sParse%s(const std::string& enum_string) {' %
966 (maybe_namespace
, classname
, maybe_namespace
, classname
))
967 for _
, enum_value
in enumerate(
968 self
._type
_helper
.FollowRef(type_
).enum_values
):
969 # This is broken up into all ifs with no else ifs because we get
970 # "fatal error C1061: compiler limit : blocks nested too deeply"
972 (c
.Append('if (enum_string == "%s")' % enum_value
.name
)
973 .Append(' return %s;' %
974 self
._type
_helper
.GetEnumValue(type_
, enum_value
)))
975 (c
.Append('return %s;' % self
._type
_helper
.GetEnumNoneValue(type_
))
980 def _GenerateCreateCallbackArguments(self
,
983 """Generate all functions to create Value parameters for a callback.
985 E.g for function "Bar", generate Bar::Results::Create
986 E.g for event "Baz", generate Baz::Create
988 function_scope: the function scope path, e.g. Foo::Bar for the function
989 Foo::Bar::Baz(). May be None if there is no function scope.
990 callback: the Function object we are creating callback arguments for.
993 params
= callback
.params
994 c
.Concat(self
._GeneratePropertyFunctions
(function_scope
, params
))
996 (c
.Sblock('scoped_ptr<base::ListValue> %(function_scope)s'
997 'Create(%(declaration_list)s) {')
998 .Append('scoped_ptr<base::ListValue> create_results('
999 'new base::ListValue());')
1001 declaration_list
= []
1002 for param
in params
:
1003 declaration_list
.append(cpp_util
.GetParameterDeclaration(
1004 param
, self
._type
_helper
.GetCppType(param
.type_
)))
1005 c
.Cblock(self
._CreateValueFromType
('create_results->Append(%s);',
1009 c
.Append('return create_results.Pass();')
1012 'function_scope': ('%s::' % function_scope
) if function_scope
else '',
1013 'declaration_list': ', '.join(declaration_list
),
1014 'param_names': ', '.join(param
.unix_name
for param
in params
)
1018 def _GenerateEventNameConstant(self
, event
):
1019 """Generates a constant string array for the event name.
1022 c
.Append('const char kEventName[] = "%s.%s";' % (
1023 self
._namespace
.name
, event
.name
))
1026 def _InitializePropertyToDefault(self
, prop
, dst
):
1027 """Initialize a model.Property to its default value inside an object.
1029 E.g for optional enum "state", generate dst->state = STATE_NONE;
1034 underlying_type
= self
._type
_helper
.FollowRef(prop
.type_
)
1035 if (underlying_type
.property_type
== PropertyType
.ENUM
and
1037 namespace_prefix
= ('%s::' % underlying_type
.namespace
.unix_name
1038 if underlying_type
.namespace
!= self
._namespace
1040 c
.Append('%s->%s = %s%s;' % (
1044 self
._type
_helper
.GetEnumNoneValue(prop
.type_
)))
1047 def _GenerateError(self
, body
):
1048 """Generates an error message pertaining to population failure.
1050 E.g 'expected bool, got int'
1053 if not self
._generate
_error
_messages
:
1055 (c
.Append('if (error->length())')
1056 .Append(' error->append(UTF8ToUTF16("; "));')
1057 .Append('error->append(UTF8ToUTF16(%s));' % body
))
1060 def _GenerateParams(self
, params
):
1061 """Builds the parameter list for a function, given an array of parameters.
1063 if self
._generate
_error
_messages
:
1064 params
= list(params
) + ['base::string16* error']
1065 return ', '.join(str(p
) for p
in params
)
1067 def _GenerateArgs(self
, args
):
1068 """Builds the argument list for a function, given an array of arguments.
1070 if self
._generate
_error
_messages
:
1071 args
= list(args
) + ['error']
1072 return ', '.join(str(a
) for a
in args
)