~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-10-01 07:56:03 UTC
  • mfrom: (3224.5.40 faster-startup)
  • Revision ID: pqm@pqm.ubuntu.com-20081001075603-s9nynw8y85fmrprj
Reduce startup time by a small amount. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    pack,
27
27
    transactions,
28
28
    ui,
 
29
    xml5,
 
30
    xml6,
 
31
    xml7,
29
32
    )
30
33
from bzrlib.index import (
31
34
    CombinedGraphIndex,
48
51
    lockable_files,
49
52
    lockdir,
50
53
    symbol_versioning,
51
 
    xml5,
52
 
    xml6,
53
 
    xml7,
54
54
    )
55
55
 
56
56
from bzrlib.decorators import needs_write_lock
1992
1992
 
1993
1993
    repository_class = KnitPackRepository
1994
1994
    _commit_builder_class = PackCommitBuilder
1995
 
    _serializer = xml5.serializer_v5
 
1995
    @property
 
1996
    def _serializer(self):
 
1997
        return xml5.serializer_v5
1996
1998
    # What index classes to use
1997
1999
    index_builder_class = InMemoryGraphIndex
1998
2000
    index_class = GraphIndex
2031
2033
    _commit_builder_class = PackRootCommitBuilder
2032
2034
    rich_root_data = True
2033
2035
    supports_tree_reference = True
2034
 
    _serializer = xml7.serializer_v7
 
2036
    @property
 
2037
    def _serializer(self):
 
2038
        return xml7.serializer_v7
2035
2039
    # What index classes to use
2036
2040
    index_builder_class = InMemoryGraphIndex
2037
2041
    index_class = GraphIndex
2075
2079
    _commit_builder_class = PackRootCommitBuilder
2076
2080
    rich_root_data = True
2077
2081
    supports_tree_reference = False
2078
 
    _serializer = xml6.serializer_v6
 
2082
    @property
 
2083
    def _serializer(self):
 
2084
        return xml6.serializer_v6
2079
2085
    # What index classes to use
2080
2086
    index_builder_class = InMemoryGraphIndex
2081
2087
    index_class = GraphIndex
2115
2121
 
2116
2122
    repository_class = KnitPackRepository
2117
2123
    _commit_builder_class = PackCommitBuilder
2118
 
    _serializer = xml5.serializer_v5
2119
2124
    supports_external_lookups = True
2120
2125
    # What index classes to use
2121
2126
    index_builder_class = InMemoryGraphIndex
2122
2127
    index_class = GraphIndex
2123
2128
 
 
2129
    @property
 
2130
    def _serializer(self):
 
2131
        return xml5.serializer_v5
 
2132
 
2124
2133
    def _get_matching_bzrdir(self):
2125
2134
        return bzrdir.format_registry.make_bzrdir('1.6')
2126
2135
 
2154
2163
    _commit_builder_class = PackRootCommitBuilder
2155
2164
    rich_root_data = True
2156
2165
    supports_tree_reference = False # no subtrees
2157
 
    _serializer = xml6.serializer_v6
2158
2166
    supports_external_lookups = True
2159
2167
    # What index classes to use
2160
2168
    index_builder_class = InMemoryGraphIndex
2161
2169
    index_class = GraphIndex
2162
2170
 
 
2171
    @property
 
2172
    def _serializer(self):
 
2173
        return xml6.serializer_v6
 
2174
 
2163
2175
    def _get_matching_bzrdir(self):
2164
2176
        return bzrdir.format_registry.make_bzrdir(
2165
2177
            '1.6.1-rich-root')
2199
2211
    _commit_builder_class = PackRootCommitBuilder
2200
2212
    rich_root_data = True
2201
2213
    supports_tree_reference = False # no subtrees
2202
 
    _serializer = xml7.serializer_v7
2203
2214
 
2204
2215
    supports_external_lookups = True
2205
2216
    # What index classes to use
2206
2217
    index_builder_class = InMemoryGraphIndex
2207
2218
    index_class = GraphIndex
2208
2219
 
 
2220
    @property
 
2221
    def _serializer(self):
 
2222
        return xml7.serializer_v7
 
2223
 
2209
2224
    def _get_matching_bzrdir(self):
2210
2225
        return bzrdir.format_registry.make_bzrdir(
2211
2226
            '1.6.1-rich-root')
2239
2254
 
2240
2255
    repository_class = KnitPackRepository
2241
2256
    _commit_builder_class = PackCommitBuilder
2242
 
    _serializer = xml5.serializer_v5
2243
2257
    supports_external_lookups = True
2244
2258
    # What index classes to use
2245
2259
    index_builder_class = BTreeBuilder
2246
2260
    index_class = BTreeGraphIndex
2247
2261
 
 
2262
    @property
 
2263
    def _serializer(self):
 
2264
        return xml5.serializer_v5
 
2265
 
2248
2266
    def _get_matching_bzrdir(self):
2249
2267
        return bzrdir.format_registry.make_bzrdir('development2')
2250
2268
 
2278
2296
    _commit_builder_class = PackRootCommitBuilder
2279
2297
    rich_root_data = True
2280
2298
    supports_tree_reference = True
2281
 
    _serializer = xml7.serializer_v7
2282
2299
    supports_external_lookups = True
2283
2300
    # What index classes to use
2284
2301
    index_builder_class = BTreeBuilder
2285
2302
    index_class = BTreeGraphIndex
2286
2303
 
 
2304
    @property
 
2305
    def _serializer(self):
 
2306
        return xml7.serializer_v7
 
2307
 
2287
2308
    def _get_matching_bzrdir(self):
2288
2309
        return bzrdir.format_registry.make_bzrdir(
2289
2310
            'development2-subtree')