~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Martin Pool
  • Date: 2005-08-26 00:10:48 UTC
  • Revision ID: mbp@sourcefrog.net-20050826001048-b84148d3ef567d0d
- fix bzr.dev branch url in tutorial
  thanks to madduck

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
============================
2
 
Guidelines for modifying bzr
 
2
guidelines for modifying bzr
3
3
============================
4
4
 
5
 
.. contents::
6
 
 
7
 
(The current version of this document is available in the file ``HACKING``
8
 
in the source tree, or at http://bazaar-ng.org/hacking.html)
9
 
 
10
 
Overall
11
 
=======
12
 
 
13
5
* New functionality should have test cases.  Preferably write the
14
6
  test before writing the code.
15
7
 
16
8
  In general, you can test at either the command-line level or the
17
9
  internal API level.  Choose whichever is appropriate: if adding a
18
10
  new command, or a new command option, then call through run_bzr().
19
 
  It is not necessary to do both. Tests that test the command line level
20
 
  are appropriate for checking the UI behaves well - bug fixes and
21
 
  core improvements should be tested closer to the code that is doing the
22
 
  work. Command line level tests should be placed in 'blackbox.py'.
 
11
  It is not necessary to do both.
23
12
 
24
13
* Before fixing a bug, write a test case so that it does not regress.
25
14
 
31
20
  function runs.  Import statements have a cost, so try to make sure
32
21
  they don't run inside hot functions.
33
22
 
 
23
* Please write PEP-8__ compliant code.  
 
24
 
 
25
  One often-missed requirement is that the first line of docstrings
 
26
  should be a self-contained one-sentence summary.
 
27
 
 
28
__ http://www.python.org/peps/pep-0008.html
 
29
 
34
30
* Module names should always be given fully-qualified,
35
31
  i.e. ``bzrlib.hashcache`` not just ``hashcache``.
36
32
 
37
 
Evolving interfaces
38
 
-------------------
39
 
 
40
 
If you change the behaviour of an API in an incompatible way, please
41
 
be sure to change its name as well. For instance, if I add a keyword
42
 
parameter to branch.commit - that's fine. On the other hand, if I add
43
 
a keyword parameter to branch.commit which is a *required* transaction
44
 
object, I should rename the api - i.e. to 'branch.commit_transaction'.
45
 
 
46
 
This will prevent users of the old api getting surprising results. 
47
 
Instead, they will get an Attribute error as the api is missing, and
48
 
will know to update their code. If in doubt, just ask on #bzr.
 
33
 
49
34
 
50
35
Documentation
51
36
=============
61
46
should be done.
62
47
 
63
48
 
64
 
API documentation
65
 
-----------------
66
 
 
67
 
Functions, methods, classes and modules should have docstrings
68
 
describing how they are used. 
69
 
 
70
 
The first line of the docstring should be a self-contained sentence.
71
 
 
72
 
For the special case of Command classes, this acts as the user-visible
73
 
documentation shown by the help command.
74
 
 
75
 
The docstrings should be formatted as reStructuredText_ (like this
76
 
document), suitable for processing using the epydoc_ tool into HTML
77
 
documentation.
78
 
 
79
 
.. _reStructuredText: http://docutils.sourceforge.net/rst.html
80
 
.. _epydoc: http://epydoc.sourceforge.net/
81
 
 
82
 
 
83
 
 
84
 
Coding style
85
 
============
86
 
 
87
 
Please write PEP-8__ compliant code.  
88
 
 
89
 
One often-missed requirement is that the first line of docstrings
90
 
should be a self-contained one-sentence summary.
91
 
 
92
 
__ http://www.python.org/peps/pep-0008.html
93
 
 
94
 
 
95
 
 
96
 
Naming
97
 
------
98
 
 
99
 
Functions, methods or members that are in some sense "private" are given
100
 
a leading underscore prefix.  This is just a hint that code outside the
101
 
implementation should probably not use that interface.
102
 
 
103
 
We prefer class names to be concatenated capital words (``TestCase``)
104
 
and variables, methods and functions to be lowercase words joined by
105
 
underscores (``revision_id``, ``get_revision``).
106
 
 
107
 
For the purposes of naming some names are treated as single compound
108
 
words: "filename", "revno".
109
 
 
110
 
Consider naming classes as nouns and functions/methods as verbs.
111
 
 
112
 
 
113
 
Standard names
114
 
--------------
115
 
 
116
 
``revision_id`` not ``rev_id`` or ``revid``
117
 
 
118
 
Functions that transform one thing to another should be named ``x_to_y``
119
 
(not ``x2y`` as occurs in some old code.)
120
 
 
121
 
 
122
 
Destructors
123
 
-----------
124
 
 
125
 
Python destructors (``__del__``) work rather differently from in other
126
 
languages.  In particular, bear in mind that destructors may not be called
127
 
immediately when the object apparently becomes unreferenced, and that
128
 
there are tight restrictions on what can be done inside them.
129
 
 
130
 
 0. Never use a __del__ method without asking Martin/Robert first.
131
 
 
132
 
 1. Never rely on a ``__del__`` method running.  If there is code that
133
 
    must run, do it from a ``finally`` block instead.
134
 
 
135
 
 2. Never ``import`` from inside a ``__del__`` method, or you may crash the
136
 
    interpreter!!
137
 
 
138
 
 3. In some places we raise a warning from the destructor if the object
139
 
    has not been cleaned up or closed.  This is considered OK: the warning
140
 
    may not catch every case but it's still useful sometimes.
141
 
 
142
49
 
143
50
Writing output
144
51
==============
175
82
 
176
83
The policy about how output is presented in the text-mode client
177
84
should be only in the command-line tool.
178
 
 
179
 
 
180
 
Writing tests
181
 
=============
182
 
In general tests should be placed in a file named testFOO.py where 
183
 
FOO is the logical thing under test. That file should be placed in the
184
 
tests subdirectory under the package being tested.
185
 
 
186
 
For example, tests for merge3 in bzrlib belong in bzrlib/tests/testmerge3.py.
187
 
See bzrlib/selftest/testsampler.py for a template test script.
188
 
 
189
 
 
190
 
Running tests
191
 
=============
192
 
Currently, bzr selftest is used to invoke tests.
193
 
You can provide a pattern argument to run a subset. For example, 
194
 
to run just the whitebox tests, run::
195
 
 
196
 
  bzr selftest -v whitebox
197
 
 
198
 
 
199
 
Errors and exceptions
200
 
=====================
201
 
 
202
 
Errors are handled through Python exceptions.  They can represent user
203
 
errors, environmental errors or program bugs.  Sometimes we can't be sure
204
 
at the time it's raised which case applies.  See bzrlib/errors.py for 
205
 
details on the error-handling practices.
206
 
 
207
 
 
208
 
Jargon
209
 
======
210
 
 
211
 
revno
212
 
    Integer identifier for a revision on the main line of a branch.
213
 
    Revision 0 is always the null revision; others are 1-based
214
 
    indexes into the branch's revision history.
215
 
 
216
 
:: vim: tw=74 ai