~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

Integrate bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2251
2251
    def get_format_description(self):
2252
2252
        """See RepositoryFormat.get_format_description()."""
2253
2253
        return "Packs containing knits with rich root support\n"
 
2254
 
 
2255
 
 
2256
class RepositoryFormatPackDevelopment0(RepositoryFormatPack):
 
2257
    """A no-subtrees development repository.
 
2258
 
 
2259
    This format should be retained until the second release after bzr 1.0.
 
2260
 
 
2261
    No changes to the disk behaviour from pack-0.92.
 
2262
    """
 
2263
 
 
2264
    repository_class = KnitPackRepository
 
2265
    _commit_builder_class = PackCommitBuilder
 
2266
    _serializer = xml5.serializer_v5
 
2267
 
 
2268
    def _get_matching_bzrdir(self):
 
2269
        return bzrdir.format_registry.make_bzrdir('development0')
 
2270
 
 
2271
    def _ignore_setting_bzrdir(self, format):
 
2272
        pass
 
2273
 
 
2274
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
2275
 
 
2276
    def get_format_string(self):
 
2277
        """See RepositoryFormat.get_format_string()."""
 
2278
        return "Bazaar development format 0 (needs bzr.dev from before 1.3)\n"
 
2279
 
 
2280
    def get_format_description(self):
 
2281
        """See RepositoryFormat.get_format_description()."""
 
2282
        return ("Development repository format, currently the same as "
 
2283
            "pack-0.92\n")
 
2284
 
 
2285
    def check_conversion_target(self, target_format):
 
2286
        pass
 
2287
 
 
2288
 
 
2289
class RepositoryFormatPackDevelopment0Subtree(RepositoryFormatPack):
 
2290
    """A subtrees development repository.
 
2291
 
 
2292
    This format should be retained until the second release after bzr 1.0.
 
2293
 
 
2294
    No changes to the disk behaviour from pack-0.92-subtree.
 
2295
    """
 
2296
 
 
2297
    repository_class = KnitPackRepository
 
2298
    _commit_builder_class = PackRootCommitBuilder
 
2299
    rich_root_data = True
 
2300
    supports_tree_reference = True
 
2301
    _serializer = xml7.serializer_v7
 
2302
 
 
2303
    def _get_matching_bzrdir(self):
 
2304
        return bzrdir.format_registry.make_bzrdir(
 
2305
            'development0-subtree')
 
2306
 
 
2307
    def _ignore_setting_bzrdir(self, format):
 
2308
        pass
 
2309
 
 
2310
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
2311
 
 
2312
    def check_conversion_target(self, target_format):
 
2313
        if not target_format.rich_root_data:
 
2314
            raise errors.BadConversionTarget(
 
2315
                'Does not support rich root data.', target_format)
 
2316
        if not getattr(target_format, 'supports_tree_reference', False):
 
2317
            raise errors.BadConversionTarget(
 
2318
                'Does not support nested trees', target_format)
 
2319
            
 
2320
    def get_format_string(self):
 
2321
        """See RepositoryFormat.get_format_string()."""
 
2322
        return ("Bazaar development format 0 with subtree support "
 
2323
            "(needs bzr.dev from before 1.3)\n")
 
2324
 
 
2325
    def get_format_description(self):
 
2326
        """See RepositoryFormat.get_format_description()."""
 
2327
        return ("Development repository format, currently the same as "
 
2328
            "pack-0.92-subtree\n")
 
2329
 
 
2330