Imported Upstream version 1.11.0
[platform/upstream/gtest.git] / googlemock / scripts / fuse_gmock_files.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2009, Google Inc.
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions are
8 # met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above
13 # copyright notice, this list of conditions and the following disclaimer
14 # in the documentation and/or other materials provided with the
15 # distribution.
16 #     * Neither the name of Google Inc. nor the names of its
17 # contributors may be used to endorse or promote products derived from
18 # this software without specific prior written permission.
19 #
20 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 """fuse_gmock_files.py v0.1.0.
32
33 Fuses Google Mock and Google Test source code into two .h files and a .cc file.
34
35 SYNOPSIS
36        fuse_gmock_files.py [GMOCK_ROOT_DIR] OUTPUT_DIR
37
38        Scans GMOCK_ROOT_DIR for Google Mock and Google Test source
39        code, assuming Google Test is in the GMOCK_ROOT_DIR/../googletest
40        directory, and generates three files:
41        OUTPUT_DIR/gtest/gtest.h, OUTPUT_DIR/gmock/gmock.h, and
42        OUTPUT_DIR/gmock-gtest-all.cc.  Then you can build your tests
43        by adding OUTPUT_DIR to the include search path and linking
44        with OUTPUT_DIR/gmock-gtest-all.cc.  These three files contain
45        everything you need to use Google Mock.  Hence you can
46        "install" Google Mock by copying them to wherever you want.
47
48        GMOCK_ROOT_DIR can be omitted and defaults to the parent
49        directory of the directory holding this script.
50
51 EXAMPLES
52        ./fuse_gmock_files.py fused_gmock
53        ./fuse_gmock_files.py path/to/unpacked/gmock fused_gmock
54
55 This tool is experimental.  In particular, it assumes that there is no
56 conditional inclusion of Google Mock or Google Test headers.  Please
57 report any problems to googlemock@googlegroups.com.  You can read
58 https://github.com/google/googletest/blob/master/docs/gmock_cook_book.md
59 for more
60 information.
61 """
62
63 from __future__ import print_function
64
65 import os
66 import re
67 import sys
68
69 __author__ = 'wan@google.com (Zhanyong Wan)'
70
71 # We assume that this file is in the scripts/ directory in the Google
72 # Mock root directory.
73 DEFAULT_GMOCK_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..')
74
75 # We need to call into googletest/scripts/fuse_gtest_files.py.
76 sys.path.append(os.path.join(DEFAULT_GMOCK_ROOT_DIR, '../googletest/scripts'))
77 import fuse_gtest_files as gtest  # pylint:disable=g-import-not-at-top
78
79 # Regex for matching
80 # '#include "gmock/..."'.
81 INCLUDE_GMOCK_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(gmock/.+)"')
82
83 # Where to find the source seed files.
84 GMOCK_H_SEED = 'include/gmock/gmock.h'
85 GMOCK_ALL_CC_SEED = 'src/gmock-all.cc'
86
87 # Where to put the generated files.
88 GTEST_H_OUTPUT = 'gtest/gtest.h'
89 GMOCK_H_OUTPUT = 'gmock/gmock.h'
90 GMOCK_GTEST_ALL_CC_OUTPUT = 'gmock-gtest-all.cc'
91
92
93 def GetGTestRootDir(gmock_root):
94   """Returns the root directory of Google Test."""
95
96   return os.path.join(gmock_root, '../googletest')
97
98
99 def ValidateGMockRootDir(gmock_root):
100   """Makes sure gmock_root points to a valid gmock root directory.
101
102   The function aborts the program on failure.
103
104   Args:
105     gmock_root: A string with the mock root directory.
106   """
107
108   gtest.ValidateGTestRootDir(GetGTestRootDir(gmock_root))
109   gtest.VerifyFileExists(gmock_root, GMOCK_H_SEED)
110   gtest.VerifyFileExists(gmock_root, GMOCK_ALL_CC_SEED)
111
112
113 def ValidateOutputDir(output_dir):
114   """Makes sure output_dir points to a valid output directory.
115
116   The function aborts the program on failure.
117
118   Args:
119     output_dir: A string representing the output directory.
120   """
121
122   gtest.VerifyOutputFile(output_dir, gtest.GTEST_H_OUTPUT)
123   gtest.VerifyOutputFile(output_dir, GMOCK_H_OUTPUT)
124   gtest.VerifyOutputFile(output_dir, GMOCK_GTEST_ALL_CC_OUTPUT)
125
126
127 def FuseGMockH(gmock_root, output_dir):
128   """Scans folder gmock_root to generate gmock/gmock.h in output_dir."""
129
130   output_file = open(os.path.join(output_dir, GMOCK_H_OUTPUT), 'w')
131   processed_files = set()  # Holds all gmock headers we've processed.
132
133   def ProcessFile(gmock_header_path):
134     """Processes the given gmock header file."""
135
136     # We don't process the same header twice.
137     if gmock_header_path in processed_files:
138       return
139
140     processed_files.add(gmock_header_path)
141
142     # Reads each line in the given gmock header.
143
144     with open(os.path.join(gmock_root, gmock_header_path), 'r') as fh:
145       for line in fh:
146         m = INCLUDE_GMOCK_FILE_REGEX.match(line)
147         if m:
148           # '#include "gmock/..."'
149           # - let's process it recursively.
150           ProcessFile('include/' + m.group(1))
151         else:
152           m = gtest.INCLUDE_GTEST_FILE_REGEX.match(line)
153           if m:
154             # '#include "gtest/foo.h"'
155             # We translate it to "gtest/gtest.h", regardless of what foo is,
156             # since all gtest headers are fused into gtest/gtest.h.
157
158             # There is no need to #include gtest.h twice.
159             if gtest.GTEST_H_SEED not in processed_files:
160               processed_files.add(gtest.GTEST_H_SEED)
161               output_file.write('#include "%s"\n' % (gtest.GTEST_H_OUTPUT,))
162           else:
163             # Otherwise we copy the line unchanged to the output file.
164             output_file.write(line)
165
166   ProcessFile(GMOCK_H_SEED)
167   output_file.close()
168
169
170 def FuseGMockAllCcToFile(gmock_root, output_file):
171   """Scans folder gmock_root to fuse gmock-all.cc into output_file."""
172
173   processed_files = set()
174
175   def ProcessFile(gmock_source_file):
176     """Processes the given gmock source file."""
177
178     # We don't process the same #included file twice.
179     if gmock_source_file in processed_files:
180       return
181
182     processed_files.add(gmock_source_file)
183
184     # Reads each line in the given gmock source file.
185
186     with open(os.path.join(gmock_root, gmock_source_file), 'r') as fh:
187       for line in fh:
188         m = INCLUDE_GMOCK_FILE_REGEX.match(line)
189         if m:
190           # '#include "gmock/foo.h"'
191           # We treat it as '#include  "gmock/gmock.h"', as all other gmock
192           # headers are being fused into gmock.h and cannot be
193           # included directly.  No need to
194           # #include "gmock/gmock.h"
195           # more than once.
196
197           if GMOCK_H_SEED not in processed_files:
198             processed_files.add(GMOCK_H_SEED)
199             output_file.write('#include "%s"\n' % (GMOCK_H_OUTPUT,))
200         else:
201           m = gtest.INCLUDE_GTEST_FILE_REGEX.match(line)
202           if m:
203             # '#include "gtest/..."'
204             # There is no need to #include gtest.h as it has been
205             # #included by gtest-all.cc.
206
207             pass
208           else:
209             m = gtest.INCLUDE_SRC_FILE_REGEX.match(line)
210             if m:
211               # It's '#include "src/foo"' - let's process it recursively.
212               ProcessFile(m.group(1))
213             else:
214               # Otherwise we copy the line unchanged to the output file.
215               output_file.write(line)
216
217   ProcessFile(GMOCK_ALL_CC_SEED)
218
219
220 def FuseGMockGTestAllCc(gmock_root, output_dir):
221   """Scans folder gmock_root to generate gmock-gtest-all.cc in output_dir."""
222
223   with open(os.path.join(output_dir, GMOCK_GTEST_ALL_CC_OUTPUT),
224             'w') as output_file:
225     # First, fuse gtest-all.cc into gmock-gtest-all.cc.
226     gtest.FuseGTestAllCcToFile(GetGTestRootDir(gmock_root), output_file)
227     # Next, append fused gmock-all.cc to gmock-gtest-all.cc.
228     FuseGMockAllCcToFile(gmock_root, output_file)
229
230
231 def FuseGMock(gmock_root, output_dir):
232   """Fuses gtest.h, gmock.h, and gmock-gtest-all.h."""
233
234   ValidateGMockRootDir(gmock_root)
235   ValidateOutputDir(output_dir)
236
237   gtest.FuseGTestH(GetGTestRootDir(gmock_root), output_dir)
238   FuseGMockH(gmock_root, output_dir)
239   FuseGMockGTestAllCc(gmock_root, output_dir)
240
241
242 def main():
243   argc = len(sys.argv)
244   if argc == 2:
245     # fuse_gmock_files.py OUTPUT_DIR
246     FuseGMock(DEFAULT_GMOCK_ROOT_DIR, sys.argv[1])
247   elif argc == 3:
248     # fuse_gmock_files.py GMOCK_ROOT_DIR OUTPUT_DIR
249     FuseGMock(sys.argv[1], sys.argv[2])
250   else:
251     print(__doc__)
252     sys.exit(1)
253
254
255 if __name__ == '__main__':
256   main()