OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Client-side script to send a try job to the try server. It communicates to | 6 """Client-side script to send a try job to the try server. It communicates to |
7 the try server by either writting to a svn/git repository or by directly | 7 the try server by either writting to a svn/git repository or by directly |
8 connecting to the server by HTTP. | 8 connecting to the server by HTTP. |
9 """ | 9 """ |
10 | 10 |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
504 path = os.path.join(temp_dir, name) | 504 path = os.path.join(temp_dir, name) |
505 if contents is not None: | 505 if contents is not None: |
506 with open(path, 'wb') as f: | 506 with open(path, 'wb') as f: |
507 f.write(contents) | 507 f.write(contents) |
508 yield path | 508 yield path |
509 finally: | 509 finally: |
510 shutil.rmtree(temp_dir, True) | 510 shutil.rmtree(temp_dir, True) |
511 | 511 |
512 | 512 |
513 @contextlib.contextmanager | 513 @contextlib.contextmanager |
514 def _PrepareDescriptionAndPatchFiles(description, options): | 514 def _PrepareDescriptionAndPatchFiles(description, options, use_username=True): |
agable
2014/04/11 20:53:11
Why add this complexity? The ref is not actually a
nodir
2014/04/11 23:49:59
Good point
| |
515 """Creates temporary files with description and patch. | 515 """Creates temporary files with description and patch. |
516 | 516 |
517 __enter__ called on the return value returns a tuple of patch_filename and | 517 __enter__ called on the return value returns a tuple of patch_filename and |
518 description_filename. | 518 description_filename. |
519 | 519 |
520 Args: | 520 Args: |
521 description: contents of description file. | 521 description: contents of description file. |
522 options: patchset options object. Must have attributes: user, | 522 options: patchset options object. Must have attributes: user, |
523 name (of patch) and diff (contents of patch). | 523 name (of patch) and diff (contents of patch). |
524 use_username: specifies if username must be included in the patch_filename. | |
524 """ | 525 """ |
525 current_time = str(datetime.datetime.now()).replace(':', '.') | 526 current_time = str(datetime.datetime.now()).replace(':', '.') |
526 patch_basename = '%s.%s.%s.diff' % (Escape(options.user), | 527 patch_basename = '%s.%s.diff' % (Escape(options.name), current_time) |
527 Escape(options.name), current_time) | 528 if use_username: |
529 patch_basename = '%s.%s' % (Escape(options.user), patch_basename) | |
528 with _TempFilename('description', description) as description_filename: | 530 with _TempFilename('description', description) as description_filename: |
529 with _TempFilename(patch_basename, options.diff) as patch_filename: | 531 with _TempFilename(patch_basename, options.diff) as patch_filename: |
530 yield patch_filename, description_filename | 532 yield patch_filename, description_filename |
531 | 533 |
532 | 534 |
533 def _SendChangeSVN(bot_spec, options): | 535 def _SendChangeSVN(bot_spec, options): |
534 """Send a change to the try server by committing a diff file on a subversion | 536 """Send a change to the try server by committing a diff file on a subversion |
535 server.""" | 537 server.""" |
536 if not options.svn_repo: | 538 if not options.svn_repo: |
537 raise NoTryServerAccess('Please use the --svn_repo option to specify the' | 539 raise NoTryServerAccess('Please use the --svn_repo option to specify the' |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
630 patch_dir = _GetPatchGitRepo(options.git_repo) | 632 patch_dir = _GetPatchGitRepo(options.git_repo) |
631 def patch_git(*args): | 633 def patch_git(*args): |
632 return scm.GIT.Capture(list(args), cwd=patch_dir) | 634 return scm.GIT.Capture(list(args), cwd=patch_dir) |
633 def add_and_commit(filename, comment_filename): | 635 def add_and_commit(filename, comment_filename): |
634 patch_git('add', filename) | 636 patch_git('add', filename) |
635 patch_git('commit', '-F', comment_filename) | 637 patch_git('commit', '-F', comment_filename) |
636 | 638 |
637 assert scm.GIT.IsInsideWorkTree(patch_dir) | 639 assert scm.GIT.IsInsideWorkTree(patch_dir) |
638 assert not scm.GIT.IsWorkTreeDirty(patch_dir) | 640 assert not scm.GIT.IsWorkTreeDirty(patch_dir) |
639 | 641 |
640 with _PrepareDescriptionAndPatchFiles(description, options) as ( | 642 with _PrepareDescriptionAndPatchFiles(description, options, |
643 use_username=False) as ( | |
641 patch_filename, description_filename): | 644 patch_filename, description_filename): |
642 logging.info('Committing patch') | 645 logging.info('Committing patch') |
643 target_branch = ('refs/patches/' + | 646 target_branch = 'refs/patches/%s/%s' % ( |
644 os.path.basename(patch_filename).replace(' ','-')) | 647 Escape(options.user), |
648 os.path.basename(patch_filename).replace(' ','-')) | |
agable
2014/04/11 20:53:11
use underscores instead of hyphens
nodir
2014/04/11 23:49:59
Done.
| |
645 target_filename = os.path.join(patch_dir, 'patch.diff') | 649 target_filename = os.path.join(patch_dir, 'patch.diff') |
646 branch_file = os.path.join(patch_dir, GIT_BRANCH_FILE) | 650 branch_file = os.path.join(patch_dir, GIT_BRANCH_FILE) |
647 try: | 651 try: |
648 # Crete a new branch and put the patch there | 652 # Create a new branch and put the patch there. |
649 patch_git('checkout', '--orphan', target_branch) | 653 patch_git('checkout', '--orphan', target_branch) |
650 patch_git('reset') | 654 patch_git('reset') |
651 patch_git('clean', '-f') | 655 patch_git('clean', '-f') |
652 shutil.copyfile(patch_filename, target_filename) | 656 shutil.copyfile(patch_filename, target_filename) |
653 add_and_commit(target_filename, description_filename) | 657 add_and_commit(target_filename, description_filename) |
654 assert not scm.GIT.IsWorkTreeDirty(patch_dir) | 658 assert not scm.GIT.IsWorkTreeDirty(patch_dir) |
655 | 659 |
656 # Update the branch file in the master | 660 # Update the branch file in the master |
657 patch_git('checkout', 'master') | 661 patch_git('checkout', 'master') |
658 | 662 |
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1120 return 1 | 1124 return 1 |
1121 except (gclient_utils.Error, subprocess2.CalledProcessError), e: | 1125 except (gclient_utils.Error, subprocess2.CalledProcessError), e: |
1122 print >> sys.stderr, e | 1126 print >> sys.stderr, e |
1123 return 1 | 1127 return 1 |
1124 return 0 | 1128 return 0 |
1125 | 1129 |
1126 | 1130 |
1127 if __name__ == "__main__": | 1131 if __name__ == "__main__": |
1128 fix_encoding.fix_encoding() | 1132 fix_encoding.fix_encoding() |
1129 sys.exit(TryChange(None, None, False)) | 1133 sys.exit(TryChange(None, None, False)) |
OLD | NEW |