~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
# 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('gcr',
    'bzrlib.plugins.groupcompress_rabin.repofmt.RepositoryFormatPackGCRabin',
    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.WorkingTreeFormat5',
    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,
    RepositoryFormatPackDevelopment5Hash255,
    )
    format_registry.register_metadir('gcr-chk16',
        'bzrlib.plugins.groupcompress_rabin.repofmt.RepositoryFormatPackGCRabinCHK16',
        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+gcr (needs bzr.dev from 1.13)\n',
        'bzrlib.plugins.groupcompress_rabin.repofmt',
        'RepositoryFormatPackGCRabinCHK16',
        )
    format_registry.register_metadir('gcr-chk255',
        'bzrlib.plugins.groupcompress_rabin.repofmt.RepositoryFormatPackGCRabinCHK255',
        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+gcr (needs bzr.dev from 1.13)\n',
        'bzrlib.plugins.groupcompress_rabin.repofmt',
        'RepositoryFormatPackGCRabinCHK255',
        )
except ImportError:
    pass

repo_registry.register_lazy(
    'Bazaar development format - btree+gcr (needs bzr.dev from 1.13)\n',
    'bzrlib.plugins.groupcompress_rabin.repofmt',
    'RepositoryFormatPackGCRabin',
    )


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