~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: John Arbash Meinel
  • Date: 2009-02-19 20:55:17 UTC
  • mto: (0.22.4 experimental)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20090219205517-drw89424koe6h1da
Play around a bit.

1) Empty texts are no-op inserted, to avoid ever trying to match against their text.
2) If we find a new file-id and the compressor is more than half full, we go
ahead and start a new compressor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# groupcompress, a bzr plugin providing new compression logic.
 
2
# Copyright (C) 2008 Canonical Limited.
 
3
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License version 2 as published
 
6
# by the Free Software Foundation.
 
7
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
16
 
17
 
 
18
"""groupcompress will provide smaller bzr repositories.
 
19
 
 
20
groupcompress
 
21
+++++++++++++
 
22
 
 
23
bzr repositories are larger than we want them to be; this tries to implement
 
24
some of the things we have been considering. The primary logic is deep in the
 
25
VersionedFiles abstraction, and at this point there is no user visible 
 
26
facilities.
 
27
 
 
28
Documentation
 
29
=============
 
30
 
 
31
See DESIGN in the groupcompress source.
 
32
"""
 
33
 
 
34
 
 
35
 
 
36
from bzrlib.bzrdir import format_registry
 
37
from bzrlib.repository import format_registry as repo_registry
 
38
format_registry.register_metadir('gc-plain',
 
39
    'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlain',
 
40
    help='pack-0.92 with btree index and group compress. '
 
41
        'Please read '
 
42
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
43
        'before use.',
 
44
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
45
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
46
    hidden=False,
 
47
    experimental=True,
 
48
    )
 
49
 
 
50
format_registry.register_metadir('gc-rich-root',
 
51
    'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCRichRoot',
 
52
    help='rich-root-pack with btree index and group compress. '
 
53
        'Please read '
 
54
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
55
        'before use.',
 
56
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
57
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
58
    hidden=False,
 
59
    experimental=True,
 
60
    )
 
61
 
 
62
format_registry.register_metadir('gc-subtrees',
 
63
    'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCSubtrees',
 
64
    help='pack-0.92-subtress with btree index and group compress. '
 
65
        'Please read '
 
66
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
67
        'before use.',
 
68
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
69
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
70
    hidden=False,
 
71
    experimental=True,
 
72
    )
 
73
 
 
74
# if we have chk support in bzrlib, use it. Otherwise don't register cause 'bzr
 
75
# info' will die horribly.
 
76
try:
 
77
    from bzrlib.repofmt.pack_repo import (
 
78
    RepositoryFormatPackDevelopment5,
 
79
    RepositoryFormatPackDevelopment5Hash16,
 
80
    )
 
81
    format_registry.register_metadir('gc-plain-chk',
 
82
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlainCHK',
 
83
        help='pack-1.9 with CHK inv and group compress. '
 
84
            'Please read '
 
85
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
86
            'before use.',
 
87
        branch_format='bzrlib.branch.BzrBranchFormat7',
 
88
        tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
89
        hidden=False,
 
90
        experimental=True,
 
91
        )
 
92
    repo_registry.register_lazy(
 
93
        'Bazaar development format - chk+gc (needs bzr.dev from 1.13)\n',
 
94
        'bzrlib.plugins.groupcompress.repofmt',
 
95
        'RepositoryFormatPackGCPlainCHK',
 
96
        )
 
97
    format_registry.register_metadir('gc-plain-chk16',
 
98
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlainCHK16',
 
99
        help='pack-1.9 with 16-way hashed CHK inv and group compress. '
 
100
            'Please read '
 
101
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
102
            'before use.',
 
103
        branch_format='bzrlib.branch.BzrBranchFormat7',
 
104
        tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
105
        hidden=False,
 
106
        experimental=True,
 
107
        )
 
108
    repo_registry.register_lazy(
 
109
        'Bazaar development format - hash16chk+gc (needs bzr.dev from 1.13)\n',
 
110
        'bzrlib.plugins.groupcompress.repofmt',
 
111
        'RepositoryFormatPackGCPlainCHK16',
 
112
        )
 
113
    format_registry.register_metadir('gc-plain-chk255',
 
114
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCPlainCHK255',
 
115
        help='pack-1.9 with 255-way hashed CHK inv and group compress. '
 
116
            'Please read '
 
117
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
118
            'before use.',
 
119
        branch_format='bzrlib.branch.BzrBranchFormat7',
 
120
        tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
121
        hidden=False,
 
122
        experimental=True,
 
123
        )
 
124
    repo_registry.register_lazy(
 
125
        'Bazaar development format - hash255chk+gc (needs bzr.dev from 1.13)\n',
 
126
        'bzrlib.plugins.groupcompress.repofmt',
 
127
        'RepositoryFormatPackGCPlainCHK255',
 
128
        )
 
129
except ImportError:
 
130
    pass
 
131
 
 
132
repo_registry.register_lazy(
 
133
    'Bazaar development format - btree+gc (needs bzr.dev from 1.6)\n',
 
134
    'bzrlib.plugins.groupcompress.repofmt',
 
135
    'RepositoryFormatPackGCPlain',
 
136
    )
 
137
repo_registry.register_lazy(
 
138
    'Bazaar development format - btree+gc-rich-root (needs bzr.dev from 1.6)\n',
 
139
    'bzrlib.plugins.groupcompress.repofmt',
 
140
    'RepositoryFormatPackGCRichRoot',
 
141
    )
 
142
repo_registry.register_lazy(
 
143
    'Bazaar development format - btree+gc-subtrees (needs bzr.dev from 1.6)\n',
 
144
    'bzrlib.plugins.groupcompress.repofmt',
 
145
    'RepositoryFormatPackGCSubtrees',
 
146
    )
 
147
 
 
148
 
 
149
 
 
150
def test_suite():
 
151
    # Thunk across to load_tests for niceness with older bzr versions
 
152
    from bzrlib.tests import TestLoader
 
153
    loader = TestLoader()
 
154
    return loader.loadTestsFromModuleNames(['bzrlib.plugins.groupcompress'])
 
155
 
 
156
 
 
157
def load_tests(standard_tests, module, loader):
 
158
    standard_tests.addTests(loader.loadTestsFromModuleNames(
 
159
        ['bzrlib.plugins.groupcompress.tests']))
 
160
    return standard_tests