4
A configuration option has:
6
* a name: a valid python identifier (even if it's not used as an
7
identifier in python itself)
9
* a value: a unicode string or a list of unicode strings.
7
As a Bazaar developer there are a few things you need to know about
10
* how to add a new option,
12
* how add a new stack,
14
* how add a new store.
16
The first sections in this document summarize the steps needed when adding a
17
new configuration item, the rest of the document gives more internal details
18
on how this is implemented.
23
Options values are obtained with ``stack.get(option_name)`` where ``stack``
24
is one of the daughter classes of ``config.Stack``, see their docstrings for
25
a description of which sections are used from which stores.
27
The value returned is of the type declared for that ``Option`` and if
28
nothing is specifically declared you will get the default for that option.
33
You add a new ``Option`` to the ``option_registry``, either inside
34
``bzrlib/config.py`` or during initialization of your plugin (use
35
``register_lazy`` in this case). New plugins should have systematic
36
hierarchical names so that related values are grouped together::
38
option_registry.register(
39
Option('dirstate.fdatasync', default=True,
40
from_unicode=bool_from_store,
41
help="Flush dirstate changes onto physical disk? ...."))
43
You then need to decide which stack is appropriate to implement the Option
46
* which config files (aka ``Store``) needs to be queried, which sections are
47
relevant and in what order,
49
* which section will receive the modifications (if relevant).
51
The docstrings for the existing stacks cover most of the known use cases.
53
Modify an option value or delete an option
54
------------------------------------------
56
Just reading an option is what is needed most of the time, modifying option
57
values or removing options is usually something that is not automated but
58
left to the user (with ``bzr config``).
60
Nevertheless, if you need to save a modified option value, use
61
``.set(option_name, value)`` and ``.remove(option_name)`` to delete the
62
option. Both methods are provided by the ``Stack`` object.
64
But before doing that, you must be sure that the stack you're using have a
65
writable section (this is true for ``GlobalStack`` which uses the
66
``DEFAULT`` section in ``bazaar.conf`` and for ``BranchStack``which uses the
67
no-name section in ``branch.conf``).
69
Old and new configuration code
70
------------------------------
72
There is (as of late 2011) some older and some newer configuration code. The
73
old code has specific methods for various checks or uses classes like
74
``GlobalConfig``. Don't add to to it; try to remove it.
76
If you encounter an option using the old code you may want to migrate
77
it. This generally involves:
79
* registering the option,
81
* replace the old config by a stack:
83
* ``GlobalConfig`` became ``GlobalStack``,
85
* ``LocationConfig`` became ``LocationStack``,
87
* ``BranchConfig`` became ``BranchStack`` (or in this case,
88
``get_config()`` became ``get_config_stack()``.
90
* replace the custom accessor calls with ``conf.get(option_name)``.
92
The new config code provides some help for commonly encountered use cases
93
that can allow further simplifications like:
95
* providing a default value when the option is not defined in any way by the
98
* convert the unicode string provided by the user into a suitable
99
representation (integer, list, etc).
101
If you start migrating a given option to the config stacks, don't stop
102
mid-way, all its uses should be covered (tests included). There are some
103
edge cases where updates via one API will be not be seen by the other API
104
(see http://pad.lv/948339 and http://pad.lv/948344 for details). Roughly,
105
the old API always trigger an IO while the new one cache values to avoid
106
them. This works fine as long as a given option is handled via a single API.
111
Stacks capture the various places an option can be declared by the user with
112
associated levels of generality and query them in the appropriate order
113
returning the first definition found. For example, the
114
``append_revisions_only`` option may be declared for all branches of a user
115
in ``bazaar.conf``, or for a hierarchy of branches in ``locations.conf`` or
116
in a single branch in ``branch.conf``.
118
Defining a new stack means you need a new way to expose these levels to the
119
user that is not covered by the existing stacks.
121
This is achieved by declaring:
123
* which stores can provide a value for the option,
125
* which sections apply to the stack instance, some filtering for a given
126
context can be defined,
128
* which (store, section) should receive the modifications.
130
Mapping different sections to different stacks is a powerful way to organize
131
the options and provide various levels of configuration to the user. This is
132
achieved with ``Store`` and ``SectionMatcher`` objects.
138
The following stores are used by ``bzr`` in ways that illustrate various
144
``bzr`` itself defines two sections here:
146
* ``DEFAULT`` where global options are defined,
148
* ``ALIASES`` where command aliases are defined. This section is *not*
149
available via ``GlobalStack``, instead, the ``bzr alias`` command uses it
150
for its own purposes.
152
Plugins can define either additional options in the ``DEFAULT`` section or
153
new sections for their own needs (this is not especially encouraged
154
though). The ``bzr-bookmarks`` plugin defines a ``BOOKMARKS`` section there
160
The Ubuntu package importer defines a store and two stacks involving
161
``pkgimport.conf``. A no-name section contains the options common to all
162
packages and sections named after their corresponding package can also be
165
The ``ImporterStack`` uses ``locations.conf`` and the no-name section in
166
``pkgimport.conf`` for the importer options.
168
The ``PackageStack`` uses only ``pkgimport.conf`` and uses the section name
169
after the package followed by the no-name section.
174
``bzr`` defines sections corresponding to URLs there and includes the
175
relevant sections in ``LocationStack`` and ``BranchStack``. No no-name
176
section is recognized in this file.
181
This file defines the option for a given branch and uses only the no-name