initial import
[vuplus_webkit] / Tools / Scripts / update-webkit
1 #!/usr/bin/perl -w
2
3 # Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
4 # Copyright (C) 2009 Google Inc. All rights reserved.
5 # Copyright (C) 2011 Brent Fulgham. All rights reserved.
6 #
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
10 #
11 # 1.  Redistributions of source code must retain the above copyright
12 #     notice, this list of conditions and the following disclaimer. 
13 # 2.  Redistributions in binary form must reproduce the above copyright
14 #     notice, this list of conditions and the following disclaimer in the
15 #     documentation and/or other materials provided with the distribution. 
16 # 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
17 #     its contributors may be used to endorse or promote products derived
18 #     from this software without specific prior written permission. 
19 #
20 # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
21 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
24 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 # Update script for WebKit Open Source Project.
32
33 use strict;
34 use FindBin;
35 use lib $FindBin::Bin;
36 use File::Basename;
37 use File::Path;
38 use File::Spec;
39 use Getopt::Long;
40 use VCSUtils;
41 use webkitdirs;
42
43 sub runSvnUpdate();
44 sub runGitUpdate();
45
46 # Handle options
47 my $quiet = '';
48 my $showHelp;
49 my $useGYP = 0;
50
51 determineIsChromium();
52 determineIsChromiumAndroid();
53
54 determineIsWinCairo();
55
56 chdirWebKit();
57
58 my $getOptionsResult = GetOptions(
59     'h|help'  => \$showHelp,
60     'q|quiet' => \$quiet,
61     'gyp' => \$useGYP,
62 ); 
63
64 if (!$getOptionsResult || $showHelp) {
65     print STDERR <<__END__;
66 Usage: @{[ basename($0) ]} [options]
67   --chromium          also update dependencies of the chromium port
68   --chromium-android  also update dependencies of the chromium port for Android
69   -h|--help           show the help message
70   -q|--quiet          pass -q to svn update for quiet updates
71   --gyp               generate project files from gyp after update
72   --wincairo          also update dependencies of the WinCairo port
73 __END__
74     exit 1;
75 }
76
77 my $startTime = time();
78
79 my @svnOptions = ();
80 push @svnOptions, '-q' if $quiet;
81
82 # Don't prompt when using svn-1.6 or newer.
83 push @svnOptions, qw(--accept postpone) if isSVNVersion16OrNewer();
84
85 print "Updating OpenSource\n" unless $quiet;
86 runSvnUpdate() if isSVN();
87 runGitUpdate() if isGit();
88
89 if (-d "../Internal") {
90     chdir("../Internal");
91     print "Updating Internal\n" unless $quiet;
92     runSvnUpdate() if isSVNDirectory(".");
93     runGitUpdate() if isGitDirectory(".");
94 } elsif (isChromium()) {
95     # Workaround for https://bugs.webkit.org/show_bug.cgi?id=38926
96     # We should remove the following "if" block when we find a right fix.
97     if ((isCygwin() || isWindows()) && (stat("WebKit/chromium/features.gypi"))[9] >= $startTime) {
98         print "features.gypi has been updated. Cleaning the build directories.\n";
99         rmtree(["WebKit/chromium/Debug", "WebKit/chromium/Release"]);
100     }
101
102     my @chromiumUpdateArgs = ("perl", "Tools/Scripts/update-webkit-chromium");
103     push @chromiumUpdateArgs, "--chromium-android" if isChromiumAndroid();
104     system(@chromiumUpdateArgs) == 0 or die $!;
105 } elsif (isAppleWinWebKit()) {
106     system("perl", "Tools/Scripts/update-webkit-auxiliary-libs") == 0 or die;
107     if (isWinCairo()) {
108         # WinCairo shares the auxiliary libs from the Apple port.
109         system("perl", "Tools/Scripts/update-webkit-wincairo-libs") == 0 or die;
110     }
111 }
112
113 setupAppleWinEnv() if isAppleWinWebKit();
114
115 if ($useGYP) {
116     print "Generating Project Files\n";
117     system("perl", "Tools/Scripts/generate-project-files") == 0 or die "Failed to run generate-project-files";
118 }
119
120 exit 0;
121
122 sub runSvnUpdate()
123 {
124     open UPDATE, "-|", "svn", "update", @svnOptions or die;
125     my @conflictedChangeLogs;
126     while (my $line = <UPDATE>) {
127         print $line;
128         $line =~ m/^C\s+(.+?)[\r\n]*$/;
129         if ($1) {
130           my $filename = normalizePath($1);
131           push @conflictedChangeLogs, $filename if basename($filename) eq "ChangeLog";
132         }
133     }
134     close UPDATE or die;
135
136     if (@conflictedChangeLogs) {
137         print "Attempting to merge conflicted ChangeLogs.\n";
138         my $resolveChangeLogsPath = File::Spec->catfile(dirname($0), "resolve-ChangeLogs");
139         (system($resolveChangeLogsPath, "--no-warnings", @conflictedChangeLogs) == 0)
140             or die "Could not open resolve-ChangeLogs script: $!.\n";
141     }
142 }
143
144 sub runGitUpdate()
145 {
146     # Doing a git fetch first allows setups with svn-remote.svn.fetch = trunk:refs/remotes/origin/master
147     # to perform the rebase much much faster.
148     system("git", "fetch") == 0 or die;
149     if (isGitSVN()) {
150         system("git", "svn", "rebase") == 0 or die;
151     } else {
152         # This will die if branch.$BRANCHNAME.merge isn't set, which is
153         # almost certainly what we want.
154         system("git", "pull") == 0 or die;
155     }
156 }