~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Robert Collins
  • Date: 2005-10-24 06:21:01 UTC
  • mto: (147.1.42) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20051024062101-0e4b070c687be780
Fix continuation direct_merges output, and allow reusing history in a version import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""\
 
2
Various useful plugins for working with bzr.
 
3
"""
 
4
import bzrlib.commands
 
5
import push
 
6
import annotate
 
7
import shelf
 
8
import sys
 
9
import os.path
 
10
sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), 
 
11
                                                 "external")))
 
12
from bzrlib.option import Option
 
13
 
 
14
Option.OPTIONS['ignored'] = Option('ignored',
 
15
        help='delete all ignored files.')
 
16
Option.OPTIONS['detrius'] = Option('detrius',
 
17
        help='delete conflict files merge backups, and failed selftest dirs.' +
 
18
              '(*.THIS, *.BASE, *.OTHER, *~, *.tmp')
 
19
Option.OPTIONS['dry-run'] = Option('dry-run',
 
20
        help='show files to delete instead of deleting them.')
 
21
 
 
22
class cmd_clean_tree(bzrlib.commands.Command):
 
23
    """Remove unwanted files from working tree.
 
24
    Normally, ignored files are left alone.
 
25
    """
 
26
    takes_options = ['ignored', 'detrius', 'dry-run']
 
27
    def run(self, ignored=False, detrius=False, dry_run=False):
 
28
        from clean_tree import clean_tree
 
29
        clean_tree('.', ignored=ignored, detrius=detrius, dry_run=dry_run)
 
30
 
 
31
Option.OPTIONS['no-collapse'] = Option('no-collapse')
 
32
Option.OPTIONS['no-antialias'] = Option('no-antialias')
 
33
Option.OPTIONS['cluster'] = Option('cluster')
 
34
Option.OPTIONS['merge-branch'] = Option('merge-branch',type=str)
 
35
 
 
36
class cmd_graph_ancestry(bzrlib.commands.Command):
 
37
    """Produce ancestry graphs using dot.
 
38
    
 
39
    Output format is detected according to file extension.  Some of the more
 
40
    common output formats are png, gif, svg, ps.  An extension of '.dot' will
 
41
    cause a dot graph file to be produced.
 
42
 
 
43
    Branches are labeled r?, where ? is the revno.  If they have no revno,
 
44
    with the last 5 characters of their revision identifier are used instead.
 
45
    
 
46
    If --merge-branch is specified, the two branches are compared and a merge
 
47
    base is selected.
 
48
    
 
49
    Legend:
 
50
    white    normal revision
 
51
    yellow   THIS  history
 
52
    red      OTHER history
 
53
    orange   COMMON history
 
54
    blue     COMMON non-history ancestor
 
55
    dotted   Missing from branch storage
 
56
 
 
57
    Ancestry is usually collapsed by removing revisions with a single parent
 
58
    and descendant.  The number of skipped revisions is shown on the arrow.
 
59
    This feature can be disabled with --no-collapse.
 
60
 
 
61
    By default, revisions are ordered by distance from root, but they can be
 
62
    clustered instead using --cluster.
 
63
 
 
64
    If available, rsvg is used to antialias PNG and JPEG output, but this can
 
65
    be disabled with --no-antialias.
 
66
    """
 
67
    takes_args = ['branch', 'file']
 
68
    takes_options = ['no-collapse', 'no-antialias', 'merge-branch', 'cluster']
 
69
    def run(self, branch, file, no_collapse=False, no_antialias=False,
 
70
        merge_branch=None, cluster=False):
 
71
        import graph
 
72
        if cluster:
 
73
            ranking = "cluster"
 
74
        else:
 
75
            ranking = "forced"
 
76
        graph.write_ancestry_file(branch, file, not no_collapse, 
 
77
                                  not no_antialias, merge_branch, ranking)
 
78
 
 
79
class cmd_fetch_ghosts(bzrlib.commands.Command):
 
80
    """Attempt to retrieve ghosts from another branch.
 
81
    If the other branch is not supplied, the last-pulled branch is used.
 
82
    """
 
83
    aliases = ['fetch-missing']
 
84
    takes_args = ['branch?']
 
85
    def run(self, branch=None):
 
86
        from fetch_ghosts import fetch_ghosts
 
87
        fetch_ghosts(branch)
 
88
 
 
89
class cmd_patch(bzrlib.commands.Command):
 
90
    """Apply a named patch to the current tree.
 
91
    """
 
92
    takes_args = ['filename?']
 
93
    takes_options = ['strip']
 
94
    def run(self, filename=None, strip=0):
 
95
        from patch import patch
 
96
        from bzrlib.branch import Branch
 
97
        b = Branch.open_containing('.')[0]
 
98
        return patch(b, filename, strip)
 
99
 
 
100
 
 
101
 
 
102
commands = [push.cmd_push, shelf.cmd_shelve, 
 
103
            shelf.cmd_unshelve, cmd_clean_tree, cmd_graph_ancestry,
 
104
            cmd_fetch_ghosts, cmd_patch]
 
105
 
 
106
import bzrlib.builtins
 
107
if not hasattr(bzrlib.builtins, "cmd_annotate"):
 
108
    commands.append(annotate.cmd_annotate)
 
109
 
 
110
from errors import NoPyBaz
 
111
try:
 
112
    import baz_import
 
113
    commands.append(baz_import.cmd_baz_import_branch)
 
114
    commands.append(baz_import.cmd_baz_import)
 
115
 
 
116
except NoPyBaz:
 
117
    class cmd_baz_import(bzrlib.commands.Command):
 
118
        """Disabled. (Requires PyBaz)"""
 
119
        takes_args = ['to_root_dir?', 'from_archive?']
 
120
        takes_options = ['verbose']
 
121
        def run(self, to_root_dir=None, from_archive=None, verbose=False):
 
122
            print "This command is disabled.  Please install PyBaz."
 
123
    commands.append(cmd_baz_import)
 
124
 
 
125
if hasattr(bzrlib.commands, 'register_command'):
 
126
    for command in commands:
 
127
        bzrlib.commands.register_command(command)
 
128
 
 
129
def test_suite():
 
130
    import baz_import
 
131
    import tests
 
132
    from doctest import DocTestSuite
 
133
    from unittest import TestSuite
 
134
    import clean_tree
 
135
    result = TestSuite()
 
136
    result.addTest(DocTestSuite(bzrtools))
 
137
    result.addTest(clean_tree.test_suite())
 
138
    result.addTest(DocTestSuite(baz_import))
 
139
    result.addTest(tests.test_suite())
 
140
    return result