~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
Format feature flags
====================

.. contents::

Rationale
---------

In the past when new features were added that required a change to the
on-disk format, Bazaar has introduced a new format (in other words,
a different string in .bzr/branch-format, .bzr/branch/format,
.bzr/repository/format or .bzr/checkout/format). The main reason for this
was that it made old versions of Bazaar give a sensible error message
when they encountered on-disk data that they could not understand.

There are also several disadvantages to such an approach:

 * Once upgraded, a newer version of Bazaar is required to access the data
   (it is often possible to downgrade the format later on)

 * Upgrading requires an explicit action by the user. It could be
   done automatically, but then accessing a repository with a newer version
   of Bazaar might accidentally render it inaccessible by older.

Not all format changes should necessarily render the data inaccessible
to older versions of Bazaar.

There are also various plugins that store extra metadata in the Bazaar
version control directory. They currently have no way of indicating that
e.g. writing to the repository requires a particular plugin to be installed
(so the metadata can be kept up to date, for example).

Proposed approach
-----------------

To allow for more granular changes to the format, this spec proposes
to add feature flags to the Bazaar formats, indicating
what kind of data is present in that repository. Each feature has
a name and some sort of indicator that tells the bzr client its
"necessity" - optional, required, ...

bzr clients would be able to open data with features that are
set as "optional" but that they do not support. If there are features
that aren't supported which are marked "required" in the repository they
would refuse to open the repository.

Various kinds of metadata, e.g. ones that are generated from the
repository itself and can be discarded without losing data (caches)
would fall in the optional category.

Feature necessity
-----------------

The initial implementation will feature the following set of possible
settings for feature "necessity". Any format necessity that can't
be understood should be interpreted as "required", and an appropriate
warning printed.

 - optional: the feature is present, but writing/reading of the
      repository/branch/checkout is possible without support for the
      feature. Useful for things like caches (e.g. bzr-search index,
      annotate cache)
 - required: read and write access is only possible if the feature
      is supported. Useful for things like nested trees.
 - write-required: read access is possible if the feature is not supported,
      but write access requires it

Format changes
--------------

The feature information would be included in the appropriate ``format`` file
(``.bzr/branch-format``, ``.bzr/branch/format``, ``.bzr/repository/format`` or
``.bzr/checkout/format``). This file currently always contains a single
line with the format name. Older versions of bzr read the full file.

By using the other lines for feature information it is possible to add feature
flags in a backwards compatible manner; older clients will simply fail to open
repositories with feature flags set, giving a unknown format error.

The other advantage of doing this is that we don't need any additional
roundtrips when opening a remote format. An example .bzr/repository/format
file could then look like this::

  Bazaar repository format 2a (needs bzr 1.16 or later)
  optional git
  optional search
  optional tiplog
  required nested-trees

In other words, this is a "2a" bzr format which also stores a cache of
Git Tree/Commit objects, a bzr-search index, and a reflog. It also contains
revisions with nested trees.

API Changes
-----------

Class methods will be added to ``BzrDirComponentFormat`` to allow registering
and deregistering the presence of particular features. This class is inherited
by ``BzrBranchFormat``, ``VersionedFileRepositoryFormat`` and
``InventoryWorkingTreeFormat``.

 * BzrDirComponentFormat.register_feature(name)
 * BzrDirComponentFormat.unregister_feature(name)

Upon opening, BzrDirComponentFormat will be responsible for checking that the
required features are present.  lock_write will raise an exception
when there is an un unsupported mandatory feature required for write access.

Methods will also be added to BzrDirComponentFormat to allow plugins, etc,
to check whether a feature is present and adding new features:

 * BzrDirComponentFormat.set_feature(name, necessity)
 * BzrDirComponentFormat.get_feature(name) -> necessity

See also
--------

Mercurial has a similar feature, using its `.hg/requires`_ file.

.. _.hg/requires: http://mercurial.selenic.com/wiki/RequiresFile

..
   vim: ft=rst tw=74 ai