3 # Copyright (C) 2009, 2015 Apple Inc. All rights reserved.
4 # Copyright (C) 2012 Google Inc. All rights reserved.
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
10 # 1. Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 # 2. Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
16 # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
17 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
20 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 _buildDirectory = None
38 parser = optparse.OptionParser("usage: %prog [options] [action]")
39 parser.add_option("--platform", dest="platform")
40 parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
41 parser.add_option("--release", action="store_const", const="release", dest="configuration")
43 options, (action, ) = parser.parse_args()
44 if not options.platform:
45 parser.error("Platform is required")
47 if not options.configuration:
48 parser.error("Configuration is required")
50 if action not in ('archive', 'extract'):
51 parser.error("Action is required")
54 genericPlatform = options.platform.split('-', 1)[0]
55 if not determineWebKitBuildDirectory(genericPlatform, options.configuration):
56 print >> sys.stderr, "Could not determine build directory"
59 if action == 'archive':
60 return archiveBuiltProduct(options.configuration, genericPlatform, options.platform)
62 return extractBuiltProduct(options.configuration, genericPlatform)
65 def determineWebKitBuildDirectory(platform, configuration):
66 global _buildDirectory
67 _buildDirectory = subprocess.Popen(['perl', os.path.join(os.path.dirname(__file__), "..", "Scripts", "webkit-build-directory"),
68 "--" + platform, "--" + configuration, '--top-level'], stdout=subprocess.PIPE).communicate()[0].strip()
69 return _buildDirectory
72 def removeDirectoryIfExists(thinDirectory):
73 if os.path.isdir(thinDirectory):
74 shutil.rmtree(thinDirectory)
77 def copyBuildFiles(source, destination, patterns):
78 shutil.copytree(source, destination, ignore=shutil.ignore_patterns(*patterns))
81 def createZipManually(directoryToZip, archiveFile):
82 archiveZip = zipfile.ZipFile(archiveFile, "w")
84 for path, dirNames, fileNames in os.walk(directoryToZip):
85 relativePath = os.path.relpath(path, directoryToZip)
86 for fileName in fileNames:
87 archiveZip.write(os.path.join(path, fileName), os.path.join(relativePath, fileName))
92 def createZip(directoryToZip, configuration, archiveConfigurationOnMac=False):
93 archiveDir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "WebKitBuild"))
94 archiveFile = os.path.join(archiveDir, configuration + ".zip")
97 os.unlink(archiveFile)
102 if sys.platform == 'darwin':
103 if archiveConfigurationOnMac:
104 return subprocess.call(["ditto", "-c", "-k", "--keepParent", "--sequesterRsrc", directoryToZip, archiveFile])
105 return subprocess.call(["ditto", "-c", "-k", "--sequesterRsrc", directoryToZip, archiveFile])
106 elif sys.platform == 'cygwin':
107 return subprocess.call(["zip", "-r", archiveFile, "bin32"], cwd=directoryToZip)
108 elif sys.platform == 'win32':
109 createZipManually(directoryToZip, archiveFile)
111 elif sys.platform.startswith('linux'):
112 return subprocess.call(["zip", "-y", "-r", archiveFile, "."], cwd=directoryToZip)
115 def archiveBuiltProduct(configuration, platform, fullPlatform):
116 assert platform in ('mac', 'win', 'gtk', 'efl')
118 configurationBuildDirectory = os.path.join(_buildDirectory, configuration.title())
120 if platform == 'mac':
121 return createZip(configurationBuildDirectory, configuration, archiveConfigurationOnMac=True)
122 elif platform == 'win':
123 binDirectory = os.path.join(configurationBuildDirectory, "bin32")
124 thinDirectory = os.path.join(configurationBuildDirectory, "thin")
125 thinBinDirectory = os.path.join(thinDirectory, "bin32")
127 removeDirectoryIfExists(thinDirectory)
128 copyBuildFiles(binDirectory, thinBinDirectory, ['*.ilk'])
129 if createZip(thinDirectory, configuration):
132 shutil.rmtree(thinDirectory)
134 elif platform == 'gtk' or platform == 'efl':
135 thinDirectory = os.path.join(configurationBuildDirectory, "thin")
137 removeDirectoryIfExists(thinDirectory)
138 os.mkdir(thinDirectory)
140 neededDirectories = ["bin", "lib"]
142 # On GTK we need this for the WebKit GObject DOM bindings API break test
143 if platform == 'gtk':
144 neededDirectories.append("DerivedSources/webkitdom")
145 webkitdomFile = os.path.join(configurationBuildDirectory, "gtkdoc-webkitdom.cfg")
146 if subprocess.call('cp %s %s' % (webkitdomFile, thinDirectory), shell=True):
149 for dirname in neededDirectories:
150 fromDir = os.path.join(configurationBuildDirectory, dirname, ".")
151 toDir = os.path.join(thinDirectory, dirname)
153 if subprocess.call('cp -R %s %s' % (fromDir, toDir), shell=True):
156 for root, dirs, files in os.walk(thinDirectory, topdown=False):
158 if name.endswith(".o"):
159 os.remove(os.path.join(root, name))
161 if createZip(thinDirectory, configuration):
164 def unzipArchive(directoryToExtractTo, configuration):
165 archiveDir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "WebKitBuild"))
166 assert os.path.isdir(archiveDir)
167 archiveFile = os.path.join(archiveDir, configuration + ".zip")
169 if sys.platform == 'darwin':
170 if subprocess.call(["ditto", "-x", "-k", archiveFile, directoryToExtractTo]):
172 elif sys.platform == 'cygwin' or sys.platform.startswith('linux'):
173 if subprocess.call(["unzip", "-o", archiveFile], cwd=directoryToExtractTo):
175 elif sys.platform == 'win32':
176 archive = zipfile.ZipFile(archiveFile, "r")
177 archive.extractall(directoryToExtractTo)
180 os.unlink(archiveFile)
183 def extractBuiltProduct(configuration, platform):
184 assert platform in ('mac', 'win', 'gtk', 'efl')
186 archiveFile = os.path.join(_buildDirectory, configuration + ".zip")
187 configurationBuildDirectory = os.path.join(_buildDirectory, configuration.title())
189 removeDirectoryIfExists(configurationBuildDirectory)
190 os.makedirs(configurationBuildDirectory)
192 if platform == 'mac':
193 return unzipArchive(_buildDirectory, configuration)
194 elif platform == 'win' or platform == 'gtk' or platform == 'efl':
195 print "Extracting", configurationBuildDirectory
196 return unzipArchive(configurationBuildDirectory, configuration)
199 if __name__ == '__main__':