OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 """Upload a cherry pick CL to rietveld.""" |
| 7 |
| 8 import argparse |
| 9 import md5 |
| 10 import subprocess2 |
| 11 import sys |
| 12 |
| 13 from git_cl import Changelist |
| 14 from git_common import config, run |
| 15 from third_party.upload import EncodeMultipartFormData, GitVCS |
| 16 from rietveld import Rietveld |
| 17 |
| 18 |
| 19 def cherry_pick(target_branch, commit): |
| 20 """Attempt to upload a cherry pick CL to rietveld. |
| 21 |
| 22 Args: |
| 23 target_branch: The branch to cherry pick onto. |
| 24 commit: The git hash of the commit to cherry pick. |
| 25 """ |
| 26 author = config('user.email') |
| 27 |
| 28 description = '%s\n\n(cherry picked from commit %s)\n' % ( |
| 29 run('show', '--pretty=%B', '--quiet', commit), commit) |
| 30 |
| 31 parent = run('show', '--pretty=%P', '--quiet', commit) |
| 32 print 'Found parent revision:', parent |
| 33 |
| 34 class Options(object): |
| 35 def __init__(self): |
| 36 self.emulate_svn_auto_props = False |
| 37 |
| 38 content_type, payload = EncodeMultipartFormData([ |
| 39 ('base', '%s@%s' % (Changelist().GetRemoteUrl(), target_branch)), |
| 40 ('cc', config('rietveld.cc')), |
| 41 ('content_upload', '1'), |
| 42 ('description', description), |
| 43 ('project', '%s@%s' % (config('rietveld.project'), target_branch)), |
| 44 ('subject', description.splitlines()[0]), |
| 45 ('user', author), |
| 46 ], [ |
| 47 ('data', 'data.diff', GitVCS(Options()).PostProcessDiff( |
| 48 run('diff', parent, commit))), |
| 49 ]) |
| 50 |
| 51 rietveld = Rietveld(config('rietveld.server'), author, None) |
| 52 output = rietveld._send( |
| 53 '/upload', |
| 54 payload=payload, |
| 55 content_type=content_type, |
| 56 ).splitlines() |
| 57 |
| 58 # If successful, output will look like: |
| 59 # Issue created. URL: https://codereview.chromium.org/1234567890 |
| 60 # 1 |
| 61 # 10001 some/path/first.file |
| 62 # 10002 some/path/second.file |
| 63 # 10003 some/path/third.file |
| 64 |
| 65 if output[0].startswith('Issue created. URL: '): |
| 66 print output[0] |
| 67 issue = output[0].rsplit('/', 1)[-1] |
| 68 patchset = output[1] |
| 69 files = output[2:] |
| 70 |
| 71 for f in files: |
| 72 file_id, filename = f.split() |
| 73 mode = 'M' |
| 74 |
| 75 try: |
| 76 content = run('show', '%s:%s' % (parent, filename)) |
| 77 except subprocess2.CalledProcessError: |
| 78 # File didn't exist in the parent revision. |
| 79 content = '' |
| 80 mode = 'A' |
| 81 |
| 82 content_type, payload = EncodeMultipartFormData([ |
| 83 ('checksum', md5.md5(content).hexdigest()), |
| 84 ('filename', filename), |
| 85 ('is_current', 'False'), |
| 86 ('status', mode), |
| 87 ], [ |
| 88 ('data', filename, content), |
| 89 ]) |
| 90 |
| 91 print ' Uploading base file for %s:' % filename, rietveld._send( |
| 92 '/%s/upload_content/%s/%s' % (issue, patchset, file_id), |
| 93 payload=payload, |
| 94 content_type=content_type, |
| 95 ) |
| 96 |
| 97 try: |
| 98 content = run('show', '%s:%s' % (commit, filename)) |
| 99 except subprocess2.CalledProcessError: |
| 100 # File no longer exists in the new commit. |
| 101 content = '' |
| 102 mode = 'D' |
| 103 |
| 104 content_type, payload = EncodeMultipartFormData([ |
| 105 ('checksum', md5.md5(content).hexdigest()), |
| 106 ('filename', filename), |
| 107 ('is_current', 'True'), |
| 108 ('status', mode), |
| 109 ], [ |
| 110 ('data', filename, content), |
| 111 ]) |
| 112 |
| 113 print ' Uploading %s:' % filename, rietveld._send( |
| 114 '/%s/upload_content/%s/%s' % (issue, patchset, file_id), |
| 115 payload=payload, |
| 116 content_type=content_type, |
| 117 ) |
| 118 |
| 119 print 'Finalizing upload:', rietveld._send('/%s/upload_complete/1' % issue) |
| 120 |
| 121 |
| 122 def main(): |
| 123 parser = argparse.ArgumentParser() |
| 124 parser.add_argument( |
| 125 '--branch', |
| 126 '-b', |
| 127 help='The upstream branch to cherry pick to.', |
| 128 metavar='<branch>', |
| 129 required=True, |
| 130 ) |
| 131 parser.add_argument( |
| 132 'commit', |
| 133 help='SHA to cherry pick.', |
| 134 metavar='<commit>', |
| 135 ) |
| 136 args = parser.parse_args() |
| 137 cherry_pick(args.branch, args.commit) |
| 138 |
| 139 if __name__ == '__main__': |
| 140 sys.exit(main()) |
OLD | NEW |