OLD | NEW |
1 # coding=utf8 | 1 # coding=utf8 |
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 """Commit queue manager class. | 5 """Commit queue manager class. |
6 | 6 |
7 Security implications: | 7 Security implications: |
8 | 8 |
9 The following hypothesis are made: | 9 The following hypothesis are made: |
10 - Commit queue: | 10 - Commit queue: |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 | 435 |
436 Do the checkout and applies the patch. | 436 Do the checkout and applies the patch. |
437 """ | 437 """ |
438 try: | 438 try: |
439 try: | 439 try: |
440 # Make sure to apply on HEAD. | 440 # Make sure to apply on HEAD. |
441 pending.revision = None | 441 pending.revision = None |
442 pending.apply_patch(self.context, True) | 442 pending.apply_patch(self.context, True) |
443 # Commit it. | 443 # Commit it. |
444 commit_desc = git_cl.ChangeDescription(pending.description) | 444 commit_desc = git_cl.ChangeDescription(pending.description) |
| 445 props = {'reviewers': pending.reviewers, 'messages': pending.messages} |
| 446 approving_reviewers = git_cl.get_approving_reviewers(props) |
| 447 commit_desc.update_reviewers(approving_reviewers) |
445 if (self.context.server_hooks_missing and | 448 if (self.context.server_hooks_missing and |
446 self.context.rietveld.email != pending.owner): | 449 self.context.rietveld.email != pending.owner): |
447 commit_desc.update_reviewers(pending.reviewers) | |
448 commit_desc.append_footer('Author: ' + pending.owner) | 450 commit_desc.append_footer('Author: ' + pending.owner) |
449 commit_desc.append_footer('Review URL: %s/%s' % ( | 451 commit_desc.append_footer('Review URL: %s/%s' % ( |
450 self.context.rietveld.url, | 452 self.context.rietveld.url, |
451 pending.issue)) | 453 pending.issue)) |
452 pending.revision = self.context.checkout.commit( | 454 pending.revision = self.context.checkout.commit( |
453 commit_desc.description, pending.owner) | 455 commit_desc.description, pending.owner) |
454 if not pending.revision: | 456 if not pending.revision: |
455 raise base.DiscardPending(pending, 'Failed to commit patch.') | 457 raise base.DiscardPending(pending, 'Failed to commit patch.') |
456 | 458 |
457 # Note that the commit succeeded for commit throttling. | 459 # Note that the commit succeeded for commit throttling. |
458 self.recent_commit_timestamps.append(time.time()) | 460 self.recent_commit_timestamps.append(time.time()) |
459 self.recent_commit_timestamps = ( | 461 self.recent_commit_timestamps = ( |
460 self.recent_commit_timestamps[-(self.MAX_COMMIT_BURST + 1):]) | 462 self.recent_commit_timestamps[-(self.MAX_COMMIT_BURST + 1):]) |
461 | 463 |
462 viewvc_url = self.context.checkout.get_settings('VIEW_VC') | 464 viewvc_url = self.context.checkout.get_settings('VIEW_VC') |
463 issue_desc = git_cl.ChangeDescription(pending.description) | 465 issue_desc = git_cl.ChangeDescription(pending.description) |
| 466 issue_desc.update_reviewers(approving_reviewers) |
464 msg = 'Committed: %s' % pending.revision | 467 msg = 'Committed: %s' % pending.revision |
465 if viewvc_url: | 468 if viewvc_url: |
466 viewvc_url = '%s%s' % (viewvc_url.rstrip('/'), pending.revision) | 469 viewvc_url = '%s%s' % (viewvc_url.rstrip('/'), pending.revision) |
467 msg = 'Committed: %s' % viewvc_url | 470 msg = 'Committed: %s' % viewvc_url |
468 issue_desc.append_footer(msg) | 471 issue_desc.append_footer(msg) |
469 | 472 |
470 # Update the CQ dashboard. | 473 # Update the CQ dashboard. |
471 self.context.status.send( | 474 self.context.status.send( |
472 pending, | 475 pending, |
473 { 'verification': 'commit', | 476 { 'verification': 'commit', |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 """Loads the commit queue state from a JSON file.""" | 545 """Loads the commit queue state from a JSON file.""" |
543 self.queue = model.load_from_json_file(filename) | 546 self.queue = model.load_from_json_file(filename) |
544 | 547 |
545 def save(self, filename): | 548 def save(self, filename): |
546 """Save the commit queue state in a simple JSON file.""" | 549 """Save the commit queue state in a simple JSON file.""" |
547 model.save_to_json_file(filename, self.queue) | 550 model.save_to_json_file(filename, self.queue) |
548 | 551 |
549 def close(self): | 552 def close(self): |
550 """Close all the active pending manager items.""" | 553 """Close all the active pending manager items.""" |
551 self.context.status.close() | 554 self.context.status.close() |
OLD | NEW |