Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1011)

Side by Side Diff: tools/json_schema_compiler/cpp_util.py

Issue 10198005: Implement handling of binary data in JSON schema compiler (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/json_schema_compiler/cpp_type_generator.py ('k') | tools/json_schema_compiler/model.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 """Utilies and constants specific to Chromium C++ code. 4 """Utilies and constants specific to Chromium C++ code.
5 """ 5 """
6 6
7 from datetime import datetime 7 from datetime import datetime
8 from model import PropertyType 8 from model import PropertyType
9 import os 9 import os
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 """Returns the Value::Type corresponding to the model.PropertyType. 49 """Returns the Value::Type corresponding to the model.PropertyType.
50 """ 50 """
51 return { 51 return {
52 PropertyType.STRING: 'Value::TYPE_STRING', 52 PropertyType.STRING: 'Value::TYPE_STRING',
53 PropertyType.INTEGER: 'Value::TYPE_INTEGER', 53 PropertyType.INTEGER: 'Value::TYPE_INTEGER',
54 PropertyType.BOOLEAN: 'Value::TYPE_BOOLEAN', 54 PropertyType.BOOLEAN: 'Value::TYPE_BOOLEAN',
55 PropertyType.DOUBLE: 'Value::TYPE_DOUBLE', 55 PropertyType.DOUBLE: 'Value::TYPE_DOUBLE',
56 PropertyType.ENUM: 'Value::TYPE_STRING', 56 PropertyType.ENUM: 'Value::TYPE_STRING',
57 PropertyType.OBJECT: 'Value::TYPE_DICTIONARY', 57 PropertyType.OBJECT: 'Value::TYPE_DICTIONARY',
58 PropertyType.ARRAY: 'Value::TYPE_LIST', 58 PropertyType.ARRAY: 'Value::TYPE_LIST',
59 PropertyType.BINARY: 'Value::TYPE_BINARY',
59 }[type_] 60 }[type_]
60 61
61 def GetParameterDeclaration(param, type_): 62 def GetParameterDeclaration(param, type_):
62 """Gets a parameter declaration of a given model.Property and its C++ 63 """Gets a parameter declaration of a given model.Property and its C++
63 type. 64 type.
64 """ 65 """
65 if param.type_ in (PropertyType.REF, PropertyType.OBJECT, PropertyType.ARRAY, 66 if param.type_ in (PropertyType.REF, PropertyType.OBJECT, PropertyType.ARRAY,
66 PropertyType.STRING): 67 PropertyType.STRING):
67 arg = '%(type)s& %(name)s' 68 arg = '%(type)s& %(name)s'
68 else: 69 else:
69 arg = '%(type)s %(name)s' 70 arg = '%(type)s %(name)s'
70 return arg % { 71 return arg % {
71 'type': type_, 72 'type': type_,
72 'name': param.unix_name, 73 'name': param.unix_name,
73 } 74 }
74 75
75 def GenerateIfndefName(path, filename): 76 def GenerateIfndefName(path, filename):
76 """Formats a path and filename as a #define name. 77 """Formats a path and filename as a #define name.
77 78
78 e.g chrome/extensions/gen, file.h becomes CHROME_EXTENSIONS_GEN_FILE_H__. 79 e.g chrome/extensions/gen, file.h becomes CHROME_EXTENSIONS_GEN_FILE_H__.
79 """ 80 """
80 return (('%s_%s_H__' % (path, filename)) 81 return (('%s_%s_H__' % (path, filename))
81 .upper().replace(os.sep, '_').replace('/', '_')) 82 .upper().replace(os.sep, '_').replace('/', '_'))
OLDNEW
« no previous file with comments | « tools/json_schema_compiler/cpp_type_generator.py ('k') | tools/json_schema_compiler/model.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698