blob: c50a55079b31442f8e18161269a237c37b28cc84 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16from color import Coloring
17from command import PagedCommand
18
19class Prune(PagedCommand):
20 common = True
21 helpSummary = "Prune (delete) already merged topics"
22 helpUsage = """
23%prog [<project>...]
24"""
25
26 def Execute(self, opt, args):
David Pursehouse8a68ff92012-09-24 12:15:13 +090027 all_branches = []
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070028 for project in self.GetProjects(args):
David Pursehouse8a68ff92012-09-24 12:15:13 +090029 all_branches.extend(project.PruneHeads())
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070030
David Pursehouse8a68ff92012-09-24 12:15:13 +090031 if not all_branches:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070032 return
33
34 class Report(Coloring):
35 def __init__(self, config):
36 Coloring.__init__(self, config, 'status')
37 self.project = self.printer('header', attr='bold')
38
David Pursehouse8a68ff92012-09-24 12:15:13 +090039 out = Report(all_branches[0].project.config)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040 out.project('Pending Branches')
41 out.nl()
42
43 project = None
44
David Pursehouse8a68ff92012-09-24 12:15:13 +090045 for branch in all_branches:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070046 if project != branch.project:
47 project = branch.project
48 out.nl()
49 out.project('project %s/' % project.relpath)
50 out.nl()
51
52 commits = branch.commits
53 date = branch.date
54 print '%s %-33s (%2d commit%s, %s)' % (
55 branch.name == project.CurrentBranch and '*' or ' ',
56 branch.name,
57 len(commits),
58 len(commits) != 1 and 's' or ' ',
59 date)