121288f5b532d17b13edf568d020674e62b9ef35
[platform/upstream/nodejs.git] / deps / v8 / tools / release / auto_push.py
1 #!/usr/bin/env python
2 # Copyright 2013 the V8 project authors. All rights reserved.
3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are
5 # met:
6 #
7 #     * Redistributions of source code must retain the above copyright
8 #       notice, this list of conditions and the following disclaimer.
9 #     * Redistributions in binary form must reproduce the above
10 #       copyright notice, this list of conditions and the following
11 #       disclaimer in the documentation and/or other materials provided
12 #       with the distribution.
13 #     * Neither the name of Google Inc. nor the names of its
14 #       contributors may be used to endorse or promote products derived
15 #       from this software without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29 import argparse
30 import json
31 import os
32 import re
33 import sys
34 import urllib
35
36 from common_includes import *
37 import push_to_candidates
38
39
40 class Preparation(Step):
41   MESSAGE = "Preparation."
42
43   def RunStep(self):
44     self.InitialEnvironmentChecks(self.default_cwd)
45     self.CommonPrepare()
46
47
48 class FetchCandidate(Step):
49   MESSAGE = "Fetching V8 roll ref."
50
51   def RunStep(self):
52     # The roll ref points to the candidate to be rolled.
53     self.Git("fetch origin +refs/heads/roll:refs/heads/roll")
54     self["candidate"] = self.Git("show-ref -s refs/heads/roll").strip()
55
56
57 class LastReleaseBailout(Step):
58   MESSAGE = "Checking last V8 release base."
59
60   def RunStep(self):
61     last_release = self.GetLatestReleaseBase()
62     commits = self.GitLog(
63         format="%H", git_hash="%s..%s" % (last_release, self["candidate"]))
64
65     if not commits:
66       print "Already pushed current candidate %s" % self["candidate"]
67       return True
68
69
70 class PushToCandidates(Step):
71   MESSAGE = "Pushing to candidates if specified."
72
73   def RunStep(self):
74     print "Pushing candidate %s to candidates." % self["candidate"]
75
76     args = [
77       "--author", self._options.author,
78       "--reviewer", self._options.reviewer,
79       "--revision", self["candidate"],
80       "--force",
81     ]
82
83     if self._options.work_dir:
84       args.extend(["--work-dir", self._options.work_dir])
85
86     # TODO(machenbach): Update the script before calling it.
87     if self._options.push:
88       self._side_effect_handler.Call(
89           push_to_candidates.PushToCandidates().Run, args)
90
91
92 class AutoPush(ScriptsBase):
93   def _PrepareOptions(self, parser):
94     parser.add_argument("-p", "--push",
95                         help="Push to candidates. Dry run if unspecified.",
96                         default=False, action="store_true")
97
98   def _ProcessOptions(self, options):
99     if not options.author or not options.reviewer:  # pragma: no cover
100       print "You need to specify author and reviewer."
101       return False
102     options.requires_editor = False
103     return True
104
105   def _Config(self):
106     return {
107       "PERSISTFILE_BASENAME": "/tmp/v8-auto-push-tempfile",
108     }
109
110   def _Steps(self):
111     return [
112       Preparation,
113       FetchCandidate,
114       LastReleaseBailout,
115       PushToCandidates,
116     ]
117
118
119 if __name__ == "__main__":  # pragma: no cover
120   sys.exit(AutoPush().Run())