| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 API_UTIL_NAMESPACE = 'json_schema_compiler::util' | 5 API_UTIL_NAMESPACE = 'json_schema_compiler::util' |
| 6 | 6 |
| 7 class UtilCCHelper(object): | 7 class UtilCCHelper(object): |
| 8 """A util class that generates code that uses | 8 """A util class that generates code that uses |
| 9 tools/json_schema_compiler/util.cc. | 9 tools/json_schema_compiler/util.cc. |
| 10 """ | 10 """ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'type': self._type_manager.GetType(prop), | 49 'type': self._type_manager.GetType(prop), |
| 50 } | 50 } |
| 51 | 51 |
| 52 if array_prop.optional: | 52 if array_prop.optional: |
| 53 val = '%(namespace)s::PopulateOptionalArrayFromList(*%(src)s, &%(dst)s)' | 53 val = '%(namespace)s::PopulateOptionalArrayFromList(*%(src)s, &%(dst)s)' |
| 54 else: | 54 else: |
| 55 val = '%(namespace)s::PopulateArrayFromList(*%(src)s, &%(dst)s)' | 55 val = '%(namespace)s::PopulateArrayFromList(*%(src)s, &%(dst)s)' |
| 56 | 56 |
| 57 return val % sub | 57 return val % sub |
| 58 | 58 |
| 59 def PopulateDictionaryFromArray(self, array_prop, src, name, dst): | 59 def CreateValueFromArray(self, array_prop, src): |
| 60 """Generates code to set dst.name to the array at src | 60 """Generates code to create a scoped_pt<Value> from the array at src. |
| 61 | 61 |
| 62 src: std::vector or scoped_ptr<std::vector> | 62 src: std::vector or scoped_ptr<std::vector> |
| 63 dst: scoped_ptr<DictionaryValue> | |
| 64 """ | 63 """ |
| 65 prop = array_prop.item_type | 64 prop = array_prop.item_type |
| 66 sub = { | 65 sub = { |
| 67 'namespace': API_UTIL_NAMESPACE, | 66 'namespace': API_UTIL_NAMESPACE, |
| 68 'src': src, | 67 'src': src, |
| 69 'name': name, | |
| 70 'dst': dst, | |
| 71 'type': self._type_manager.GetType(prop), | 68 'type': self._type_manager.GetType(prop), |
| 72 } | 69 } |
| 73 | 70 |
| 74 if array_prop.optional: | 71 if array_prop.optional: |
| 75 val = ('%(namespace)s::PopulateDictionaryFromOptionalArray' | 72 val = '%(namespace)s::CreateValueFromOptionalArray(%(src)s)' |
| 76 '(%(src)s, "%(name)s", %(dst)s.get())') | |
| 77 else: | 73 else: |
| 78 val = ('%(namespace)s::PopulateDictionaryFromArray' | 74 val = '%(namespace)s::CreateValueFromArray(%(src)s)' |
| 79 '(%(src)s, "%(name)s", %(dst)s.get())') | |
| 80 | 75 |
| 81 return val % sub | 76 return val % sub |
| 82 | 77 |
| 83 def PopulateListFromArray(self, array_prop, src, dst): | |
| 84 """Generates code to set dst to the array at src | |
| 85 | |
| 86 src: std::vector or scoped_ptr<std::vector> | |
| 87 dst: ListValue* | |
| 88 """ | |
| 89 prop = array_prop.item_type | |
| 90 sub = { | |
| 91 'namespace': API_UTIL_NAMESPACE, | |
| 92 'src': src, | |
| 93 'dst': dst, | |
| 94 'type': self._type_manager.GetType(prop), | |
| 95 } | |
| 96 | |
| 97 if array_prop.optional: | |
| 98 val = '%(namespace)s::PopulateListFromOptionalArray(%(src)s, %(dst)s)' | |
| 99 else: | |
| 100 val = '%(namespace)s::PopulateListFromArray(%(src)s, %(dst)s)' | |
| 101 | |
| 102 return val % sub | |
| 103 | |
| 104 def GetIncludePath(self): | 78 def GetIncludePath(self): |
| 105 return '#include "tools/json_schema_compiler/util.h"' | 79 return '#include "tools/json_schema_compiler/util.h"' |
| OLD | NEW |