~bzr-pqm/bzr/bzr.dev

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# groupcompress, a bzr plugin providing new compression logic.
# Copyright (C) 2008 Canonical Limited.
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as published
# by the Free Software Foundation.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
# 

"""groupcompress will provide smaller bzr repositories.

groupcompress
+++++++++++++

bzr repositories are larger than we want them to be; this tries to implement
some of the things we have been considering. The primary logic is deep in the
VersionedFiles abstraction, and at this point there is no user visible 
facilities.

Documentation
=============

See DESIGN in the groupcompress source.
"""



from bzrlib.bzrdir import format_registry
from bzrlib.repository import format_registry as repo_registry
format_registry.register_metadir('gc-plain',
    'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlain',
    help='pack-0.92 with btree index and group compress. '
        'Please read '
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
        'before use.',
    branch_format='bzrlib.branch.BzrBranchFormat7',
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
    hidden=False,
    experimental=True,
    )

format_registry.register_metadir('gc-rich-root',
    'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCRichRoot',
    help='rich-root-pack with btree index and group compress. '
        'Please read '
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
        'before use.',
    branch_format='bzrlib.branch.BzrBranchFormat7',
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
    hidden=False,
    experimental=True,
    )

format_registry.register_metadir('gc-subtrees',
    'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCSubtrees',
    help='pack-0.92-subtress with btree index and group compress. '
        'Please read '
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
        'before use.',
    branch_format='bzrlib.branch.BzrBranchFormat7',
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
    hidden=False,
    experimental=True,
    )

# if we have chk support in bzrlib, use it. Otherwise don't register cause 'bzr
# info' will die horribly.
try:
    from bzrlib.repofmt.pack_repo import (
    RepositoryFormatPackDevelopment5,
    RepositoryFormatPackDevelopment5Hash16,
    )
    format_registry.register_metadir('gc-plain-chk',
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlainCHK',
        help='pack-1.9 with CHK inv and group compress. '
            'Please read '
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
            'before use.',
        branch_format='bzrlib.branch.BzrBranchFormat7',
        tree_format='bzrlib.workingtree.WorkingTreeFormat5',
        hidden=False,
        experimental=True,
        )
    repo_registry.register_lazy(
        'Bazaar development format - chk+gc (needs bzr.dev from 1.13)\n',
        'bzrlib.plugins.groupcompress.repofmt',
        'RepositoryFormatPackGCPlainCHK',
        )
    format_registry.register_metadir('gc-plain-chk16',
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlainCHK16',
        help='pack-1.9 with 16-way hashed CHK inv and group compress. '
            'Please read '
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
            'before use.',
        branch_format='bzrlib.branch.BzrBranchFormat7',
        tree_format='bzrlib.workingtree.WorkingTreeFormat5',
        hidden=False,
        experimental=True,
        )
    repo_registry.register_lazy(
        'Bazaar development format - hash16chk+gc (needs bzr.dev from 1.13)\n',
        'bzrlib.plugins.groupcompress.repofmt',
        'RepositoryFormatPackGCPlainCHK16',
        )
    format_registry.register_metadir('gc-plain-chk255',
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlainCHK255',
        help='pack-1.9 with 255-way hashed CHK inv and group compress. '
            'Please read '
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
            'before use.',
        branch_format='bzrlib.branch.BzrBranchFormat7',
        tree_format='bzrlib.workingtree.WorkingTreeFormat5',
        hidden=False,
        experimental=True,
        )
    repo_registry.register_lazy(
        'Bazaar development format - hash255chk+gc (needs bzr.dev from 1.13)\n',
        'bzrlib.plugins.groupcompress.repofmt',
        'RepositoryFormatPackGCPlainCHK255',
        )
except ImportError:
    pass

repo_registry.register_lazy(
    'Bazaar development format - btree+gc (needs bzr.dev from 1.6)\n',
    'bzrlib.plugins.groupcompress.repofmt',
    'RepositoryFormatPackGCPlain',
    )
repo_registry.register_lazy(
    'Bazaar development format - btree+gc-rich-root (needs bzr.dev from 1.6)\n',
    'bzrlib.plugins.groupcompress.repofmt',
    'RepositoryFormatPackGCRichRoot',
    )
repo_registry.register_lazy(
    'Bazaar development format - btree+gc-subtrees (needs bzr.dev from 1.6)\n',
    'bzrlib.plugins.groupcompress.repofmt',
    'RepositoryFormatPackGCSubtrees',
    )



def test_suite():
    # Thunk across to load_tests for niceness with older bzr versions
    from bzrlib.tests import TestLoader
    loader = TestLoader()
    return loader.loadTestsFromModuleNames(['bzrlib.plugins.groupcompress'])


def load_tests(standard_tests, module, loader):
    standard_tests.addTests(loader.loadTestsFromModuleNames(
        ['bzrlib.plugins.groupcompress.tests']))
    return standard_tests