tizen beta release
[framework/web/webkit-efl.git] / 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 my $useMake = 0;
51
52 determineIsChromium();
53 determineIsChromiumAndroid();
54
55 determineIsWinCairo();
56
57 chdirWebKit();
58
59 my $getOptionsResult = GetOptions(
60     'h|help'  => \$showHelp,
61     'q|quiet' => \$quiet,
62     'gyp' => \$useGYP,
63     'make' => \$useMake,
64 ); 
65
66 if (!$getOptionsResult || $showHelp) {
67     print STDERR <<__END__;
68 Usage: @{[ basename($0) ]} [options]
69   --chromium          also update dependencies of the chromium port
70   --make              generate the Makefile-based build system (Chromium only)
71   --chromium-android  also update dependencies of the chromium port for Android
72   -h|--help           show the help message
73   -q|--quiet          pass -q to svn update for quiet updates
74   --gyp               generate project files from gyp after update
75   --wincairo          also update dependencies of the WinCairo port
76 __END__
77     exit 1;
78 }
79
80 if ($useMake) {
81     $ENV{"GYP_GENERATORS"} = "make";
82 }
83
84 my $startTime = time();
85
86 my @svnOptions = ();
87 push @svnOptions, '-q' if $quiet;
88
89 # Don't prompt when using svn-1.6 or newer.
90 push @svnOptions, qw(--accept postpone) if isSVNVersion16OrNewer();
91
92 print "Updating OpenSource\n" unless $quiet;
93 runSvnUpdate() if isSVN();
94 runGitUpdate() if isGit();
95
96 if (-d "../Internal") {
97     chdir("../Internal");
98     print "Updating Internal\n" unless $quiet;
99     runSvnUpdate() if isSVNDirectory(".");
100     runGitUpdate() if isGitDirectory(".");
101 } elsif (isChromium()) {
102     # Workaround for https://bugs.webkit.org/show_bug.cgi?id=38926
103     # We should remove the following "if" block when we find a right fix.
104     if ((isCygwin() || isWindows()) && (stat("WebKit/chromium/features.gypi"))[9] >= $startTime) {
105         print "features.gypi has been updated. Cleaning the build directories.\n";
106         rmtree(["WebKit/chromium/Debug", "WebKit/chromium/Release"]);
107     }
108
109     my @chromiumUpdateArgs = ("perl", "Tools/Scripts/update-webkit-chromium");
110     push @chromiumUpdateArgs, "--chromium-android" if isChromiumAndroid();
111     push @chromiumUpdateArgs, "--force" if forceChromiumUpdate();
112     system(@chromiumUpdateArgs) == 0 or die $!;
113 } elsif (isAppleWinWebKit()) {
114     system("perl", "Tools/Scripts/update-webkit-auxiliary-libs") == 0 or die;
115     if (isWinCairo()) {
116         # WinCairo shares the auxiliary libs from the Apple port.
117         system("perl", "Tools/Scripts/update-webkit-wincairo-libs") == 0 or die;
118     }
119 }
120
121 setupAppleWinEnv() if isAppleWinWebKit();
122
123 if ($useGYP) {
124     print "Generating Project Files\n";
125     system("perl", "Tools/Scripts/generate-project-files") == 0 or die "Failed to run generate-project-files";
126 }
127
128 exit 0;
129
130 sub runSvnUpdate()
131 {
132     open UPDATE, "-|", "svn", "update", @svnOptions or die;
133     my @conflictedChangeLogs;
134     while (my $line = <UPDATE>) {
135         print $line;
136         $line =~ m/^C\s+(.+?)[\r\n]*$/;
137         if ($1) {
138           my $filename = normalizePath($1);
139           push @conflictedChangeLogs, $filename if basename($filename) eq "ChangeLog";
140         }
141     }
142     close UPDATE or die;
143
144     if (@conflictedChangeLogs) {
145         print "Attempting to merge conflicted ChangeLogs.\n";
146         my $resolveChangeLogsPath = File::Spec->catfile(dirname($0), "resolve-ChangeLogs");
147         (system($resolveChangeLogsPath, "--no-warnings", @conflictedChangeLogs) == 0)
148             or die "Could not open resolve-ChangeLogs script: $!.\n";
149     }
150 }
151
152 sub runGitUpdate()
153 {
154     # Doing a git fetch first allows setups with svn-remote.svn.fetch = trunk:refs/remotes/origin/master
155     # to perform the rebase much much faster.
156     system("git", "fetch") == 0 or die;
157     if (isGitSVN()) {
158         system("git", "svn", "rebase") == 0 or die;
159     } else {
160         # This will die if branch.$BRANCHNAME.merge isn't set, which is
161         # almost certainly what we want.
162         system("git", "pull") == 0 or die;
163     }
164 }