2008-12-10 05:08:54 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2019-10-23 18:09:41 +00:00
|
|
|
# Copyright 2008, Google Inc.
|
|
|
|
# All rights reserved.
|
2008-12-10 05:08:54 +00:00
|
|
|
#
|
2019-10-23 18:09:41 +00:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
2008-12-10 05:08:54 +00:00
|
|
|
#
|
2019-10-23 18:09:41 +00:00
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following disclaimer
|
|
|
|
# in the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
2008-12-10 05:08:54 +00:00
|
|
|
#
|
2019-10-23 18:09:41 +00:00
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2008-12-10 05:08:54 +00:00
|
|
|
|
2009-05-07 20:38:25 +00:00
|
|
|
"""Generate Google Mock classes from base classes.
|
2008-12-10 05:08:54 +00:00
|
|
|
|
2009-05-07 20:38:25 +00:00
|
|
|
This program will read in a C++ source file and output the Google Mock
|
|
|
|
classes for the specified classes. If no class is specified, all
|
|
|
|
classes in the source file are emitted.
|
2008-12-10 05:08:54 +00:00
|
|
|
|
|
|
|
Usage:
|
2009-05-07 20:38:25 +00:00
|
|
|
gmock_class.py header-file.h [ClassName]...
|
2008-12-10 05:08:54 +00:00
|
|
|
|
|
|
|
Output is sent to stdout.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from cpp import ast
|
|
|
|
from cpp import utils
|
|
|
|
|
2010-10-05 06:11:56 +00:00
|
|
|
# Preserve compatibility with Python 2.3.
|
|
|
|
try:
|
|
|
|
_dummy = set
|
|
|
|
except NameError:
|
|
|
|
import sets
|
|
|
|
set = sets.Set
|
|
|
|
|
2009-05-07 20:38:25 +00:00
|
|
|
_VERSION = (1, 0, 1) # The version of this script.
|
|
|
|
# How many spaces to indent. Can set me with the INDENT environment variable.
|
2008-12-10 05:08:54 +00:00
|
|
|
_INDENT = 2
|
|
|
|
|
|
|
|
|
2019-10-23 18:09:41 +00:00
|
|
|
def _RenderType(ast_type):
|
|
|
|
"""Renders the potentially recursively templated type into a string.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
ast_type: The AST of the type.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Rendered string and a boolean to indicate whether we have multiple args
|
|
|
|
(which is not handled correctly).
|
|
|
|
"""
|
|
|
|
has_multiarg_error = False
|
|
|
|
# Add modifiers like 'const'.
|
|
|
|
modifiers = ''
|
|
|
|
if ast_type.modifiers:
|
|
|
|
modifiers = ' '.join(ast_type.modifiers) + ' '
|
|
|
|
return_type = modifiers + ast_type.name
|
|
|
|
if ast_type.templated_types:
|
|
|
|
# Collect template args.
|
|
|
|
template_args = []
|
|
|
|
for arg in ast_type.templated_types:
|
|
|
|
rendered_arg, e = _RenderType(arg)
|
|
|
|
if e: has_multiarg_error = True
|
|
|
|
template_args.append(rendered_arg)
|
|
|
|
return_type += '<' + ', '.join(template_args) + '>'
|
|
|
|
# We are actually not handling multi-template-args correctly. So mark it.
|
|
|
|
if len(template_args) > 1:
|
|
|
|
has_multiarg_error = True
|
|
|
|
if ast_type.pointer:
|
|
|
|
return_type += '*'
|
|
|
|
if ast_type.reference:
|
|
|
|
return_type += '&'
|
|
|
|
return return_type, has_multiarg_error
|
|
|
|
|
|
|
|
|
|
|
|
def _GetNumParameters(parameters, source):
|
|
|
|
num_parameters = len(parameters)
|
|
|
|
if num_parameters == 1:
|
|
|
|
first_param = parameters[0]
|
|
|
|
if source[first_param.start:first_param.end].strip() == 'void':
|
|
|
|
# We must treat T(void) as a function with no parameters.
|
|
|
|
return 0
|
|
|
|
return num_parameters
|
|
|
|
|
|
|
|
|
2008-12-10 05:08:54 +00:00
|
|
|
def _GenerateMethods(output_lines, source, class_node):
|
2014-03-12 23:27:35 +00:00
|
|
|
function_type = (ast.FUNCTION_VIRTUAL | ast.FUNCTION_PURE_VIRTUAL |
|
|
|
|
ast.FUNCTION_OVERRIDE)
|
2008-12-10 05:08:54 +00:00
|
|
|
ctor_or_dtor = ast.FUNCTION_CTOR | ast.FUNCTION_DTOR
|
2010-10-05 06:11:56 +00:00
|
|
|
indent = ' ' * _INDENT
|
2008-12-10 05:08:54 +00:00
|
|
|
|
|
|
|
for node in class_node.body:
|
|
|
|
# We only care about virtual functions.
|
|
|
|
if (isinstance(node, ast.Function) and
|
|
|
|
node.modifiers & function_type and
|
|
|
|
not node.modifiers & ctor_or_dtor):
|
|
|
|
# Pick out all the elements we need from the original function.
|
|
|
|
const = ''
|
|
|
|
if node.modifiers & ast.FUNCTION_CONST:
|
|
|
|
const = 'CONST_'
|
2019-10-23 18:09:41 +00:00
|
|
|
num_parameters = _GetNumParameters(node.parameters, source)
|
2008-12-10 05:08:54 +00:00
|
|
|
return_type = 'void'
|
|
|
|
if node.return_type:
|
2019-10-23 18:09:41 +00:00
|
|
|
return_type, has_multiarg_error = _RenderType(node.return_type)
|
|
|
|
if has_multiarg_error:
|
|
|
|
for line in [
|
|
|
|
'// The following line won\'t really compile, as the return',
|
|
|
|
'// type has multiple template arguments. To fix it, use a',
|
|
|
|
'// typedef for the return type.']:
|
|
|
|
output_lines.append(indent + line)
|
2013-09-06 22:52:14 +00:00
|
|
|
tmpl = ''
|
|
|
|
if class_node.templated_types:
|
|
|
|
tmpl = '_T'
|
|
|
|
mock_method_macro = 'MOCK_%sMETHOD%d%s' % (const, num_parameters, tmpl)
|
|
|
|
|
2008-12-10 05:08:54 +00:00
|
|
|
args = ''
|
|
|
|
if node.parameters:
|
2011-05-20 21:44:14 +00:00
|
|
|
# Due to the parser limitations, it is impossible to keep comments
|
|
|
|
# while stripping the default parameters. When defaults are
|
|
|
|
# present, we choose to strip them and comments (and produce
|
|
|
|
# compilable code).
|
|
|
|
# TODO(nnorwitz@google.com): Investigate whether it is possible to
|
|
|
|
# preserve parameter name when reconstructing parameter text from
|
|
|
|
# the AST.
|
|
|
|
if len([param for param in node.parameters if param.default]) > 0:
|
|
|
|
args = ', '.join(param.type.name for param in node.parameters)
|
|
|
|
else:
|
|
|
|
# Get the full text of the parameters from the start
|
|
|
|
# of the first parameter to the end of the last parameter.
|
|
|
|
start = node.parameters[0].start
|
|
|
|
end = node.parameters[-1].end
|
|
|
|
# Remove // comments.
|
|
|
|
args_strings = re.sub(r'//.*', '', source[start:end])
|
|
|
|
# Condense multiple spaces and eliminate newlines putting the
|
|
|
|
# parameters together on a single line. Ensure there is a
|
|
|
|
# space in an argument which is split by a newline without
|
|
|
|
# intervening whitespace, e.g.: int\nBar
|
|
|
|
args = re.sub(' +', ' ', args_strings.replace('\n', ' '))
|
2008-12-10 05:08:54 +00:00
|
|
|
|
2010-10-05 06:11:56 +00:00
|
|
|
# Create the mock method definition.
|
|
|
|
output_lines.extend(['%s%s(%s,' % (indent, mock_method_macro, node.name),
|
|
|
|
'%s%s(%s));' % (indent*3, return_type, args)])
|
2008-12-10 05:08:54 +00:00
|
|
|
|
|
|
|
|
2009-05-07 20:38:25 +00:00
|
|
|
def _GenerateMocks(filename, source, ast_list, desired_class_names):
|
2010-10-05 06:11:56 +00:00
|
|
|
processed_class_names = set()
|
2008-12-10 05:08:54 +00:00
|
|
|
lines = []
|
|
|
|
for node in ast_list:
|
2009-05-07 20:38:25 +00:00
|
|
|
if (isinstance(node, ast.Class) and node.body and
|
|
|
|
# desired_class_names being None means that all classes are selected.
|
|
|
|
(not desired_class_names or node.name in desired_class_names)):
|
2009-05-06 05:57:09 +00:00
|
|
|
class_name = node.name
|
2013-09-06 22:52:14 +00:00
|
|
|
parent_name = class_name
|
2009-05-07 20:38:25 +00:00
|
|
|
processed_class_names.add(class_name)
|
2008-12-10 05:08:54 +00:00
|
|
|
class_node = node
|
|
|
|
# Add namespace before the class.
|
|
|
|
if class_node.namespace:
|
|
|
|
lines.extend(['namespace %s {' % n for n in class_node.namespace]) # }
|
|
|
|
lines.append('')
|
|
|
|
|
2013-09-06 22:52:14 +00:00
|
|
|
# Add template args for templated classes.
|
|
|
|
if class_node.templated_types:
|
|
|
|
# TODO(paulchang): The AST doesn't preserve template argument order,
|
|
|
|
# so we have to make up names here.
|
|
|
|
# TODO(paulchang): Handle non-type template arguments (e.g.
|
|
|
|
# template<typename T, int N>).
|
|
|
|
template_arg_count = len(class_node.templated_types.keys())
|
|
|
|
template_args = ['T%d' % n for n in range(template_arg_count)]
|
|
|
|
template_decls = ['typename ' + arg for arg in template_args]
|
|
|
|
lines.append('template <' + ', '.join(template_decls) + '>')
|
|
|
|
parent_name += '<' + ', '.join(template_args) + '>'
|
|
|
|
|
2008-12-10 05:08:54 +00:00
|
|
|
# Add the class prolog.
|
2013-09-06 22:52:14 +00:00
|
|
|
lines.append('class Mock%s : public %s {' # }
|
|
|
|
% (class_name, parent_name))
|
2008-12-10 05:08:54 +00:00
|
|
|
lines.append('%spublic:' % (' ' * (_INDENT // 2)))
|
|
|
|
|
|
|
|
# Add all the methods.
|
|
|
|
_GenerateMethods(lines, source, class_node)
|
|
|
|
|
|
|
|
# Close the class.
|
|
|
|
if lines:
|
|
|
|
# If there are no virtual methods, no need for a public label.
|
|
|
|
if len(lines) == 2:
|
|
|
|
del lines[-1]
|
|
|
|
|
|
|
|
# Only close the class if there really is a class.
|
|
|
|
lines.append('};')
|
|
|
|
lines.append('') # Add an extra newline.
|
|
|
|
|
|
|
|
# Close the namespace.
|
|
|
|
if class_node.namespace:
|
|
|
|
for i in range(len(class_node.namespace)-1, -1, -1):
|
|
|
|
lines.append('} // namespace %s' % class_node.namespace[i])
|
|
|
|
lines.append('') # Add an extra newline.
|
|
|
|
|
2009-05-07 20:38:25 +00:00
|
|
|
if desired_class_names:
|
2009-05-07 21:20:57 +00:00
|
|
|
missing_class_name_list = list(desired_class_names - processed_class_names)
|
|
|
|
if missing_class_name_list:
|
|
|
|
missing_class_name_list.sort()
|
2009-05-07 20:38:25 +00:00
|
|
|
sys.stderr.write('Class(es) not found in %s: %s\n' %
|
2009-05-07 21:20:57 +00:00
|
|
|
(filename, ', '.join(missing_class_name_list)))
|
2009-05-07 20:38:25 +00:00
|
|
|
elif not processed_class_names:
|
2009-06-02 20:41:21 +00:00
|
|
|
sys.stderr.write('No class found in %s\n' % filename)
|
|
|
|
|
|
|
|
return lines
|
2008-12-10 05:08:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main(argv=sys.argv):
|
2009-05-06 05:57:09 +00:00
|
|
|
if len(argv) < 2:
|
2009-05-07 20:38:25 +00:00
|
|
|
sys.stderr.write('Google Mock Class Generator v%s\n\n' %
|
|
|
|
'.'.join(map(str, _VERSION)))
|
|
|
|
sys.stderr.write(__doc__)
|
2008-12-10 05:08:54 +00:00
|
|
|
return 1
|
|
|
|
|
|
|
|
global _INDENT
|
|
|
|
try:
|
|
|
|
_INDENT = int(os.environ['INDENT'])
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
except:
|
|
|
|
sys.stderr.write('Unable to use indent of %s\n' % os.environ.get('INDENT'))
|
|
|
|
|
2009-05-06 05:57:09 +00:00
|
|
|
filename = argv[1]
|
2009-05-07 20:38:25 +00:00
|
|
|
desired_class_names = None # None means all classes in the source file.
|
2009-05-06 05:57:09 +00:00
|
|
|
if len(argv) >= 3:
|
2010-10-05 06:11:56 +00:00
|
|
|
desired_class_names = set(argv[2:])
|
2008-12-10 05:08:54 +00:00
|
|
|
source = utils.ReadFile(filename)
|
|
|
|
if source is None:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
builder = ast.BuilderFromSource(source, filename)
|
|
|
|
try:
|
|
|
|
entire_ast = filter(None, builder.Generate())
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
return
|
|
|
|
except:
|
|
|
|
# An error message was already printed since we couldn't parse.
|
2014-11-17 02:46:37 +00:00
|
|
|
sys.exit(1)
|
2008-12-10 05:08:54 +00:00
|
|
|
else:
|
2009-06-02 20:41:21 +00:00
|
|
|
lines = _GenerateMocks(filename, source, entire_ast, desired_class_names)
|
|
|
|
sys.stdout.write('\n'.join(lines))
|
2008-12-10 05:08:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main(sys.argv)
|