~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/HACKING.txt

  • Committer: Joe Julian
  • Date: 2010-01-10 02:25:31 UTC
  • mto: (4634.119.7 2.0)
  • mto: This revision was merged to the branch mainline in revision 4959.
  • Revision ID: joe@julianfamily.org-20100110022531-wqk61rsagz8xsiga
Added MANIFEST.in to allow bdist_rpm to have all the required include files and tools. bdist_rpm will still fail to build correctly on some distributions due to a disttools bug http://bugs.python.org/issue644744

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
the Bazaar mailing list.  To propose a correction or addition to this
12
12
document, send a merge request or new text to the mailing list.
13
13
 
14
 
The current version of this document is available in the file 
15
 
``doc/developers/HACKING.txt`` in the source tree, or at
16
 
http://doc.bazaar-vcs.org/bzr.dev/en/developer-guide/HACKING.html
17
 
 
18
 
See also:
19
 
`Bazaar Developer Documentation Catalog <../../developers/index.html>`_.
20
 
 
21
 
.. contents::
 
14
The latest developer documentation can be found online at
 
15
http://doc.bazaar-vcs.org/developers/.
22
16
 
23
17
 
24
18
Getting Started
46
40
If nothing else, perhaps you'll find inspiration in how other developers
47
41
have solved their challenges.
48
42
 
 
43
Finding Something To Do
 
44
=======================
 
45
 
 
46
Ad-hoc performance work can also be done. One useful tool is the 'evil' debug
 
47
flag. For instance running ``bzr -Devil commit -m "test"`` will log a backtrace
 
48
to the bzr log file for every method call which triggers a slow or non-scalable
 
49
part of the bzr library. So checking that a given command with ``-Devil`` has
 
50
no backtraces logged to the log file is a good way to find problem function
 
51
calls that might be nested deep in the code base.
49
52
 
50
53
Planning and Discussing Changes
51
54
===============================
73
76
Bazaar Development in a Nutshell
74
77
================================
75
78
 
76
 
Looking for a 10 minute introduction to submitting a change?
77
 
See http://bazaar-vcs.org/BzrGivingBack.
78
 
 
79
 
TODO: Merge that Wiki page into this document.
 
79
.. was from bazaar-vcs.org/BzrGivingBack
 
80
 
 
81
One of the fun things about working on a version control system like Bazaar is
 
82
that the users have a high level of proficiency in contributing back into
 
83
the tool.  Consider the following very brief introduction to contributing back
 
84
to Bazaar.  More detailed instructions are in the following sections.
 
85
 
 
86
Making the change
 
87
-----------------
 
88
 
 
89
First, get a local copy of the development mainline (See `Why make a local
 
90
copy of bzr.dev?`_.) 
 
91
::
 
92
 
 
93
 $ bzr init-repo ~/bzr
 
94
 $ cd ~/bzr
 
95
 $ bzr branch http://bazaar-vcs.org/bzr/bzr.dev/ bzr.dev
 
96
 
 
97
Now make your own branch::
 
98
 
 
99
 $ bzr branch bzr.dev 123456-my-bugfix
 
100
 
 
101
This will give you a branch called "123456-my-bugfix" that you can work on
 
102
and commit in. Here, you can study the code, make a fix or a new feature.
 
103
Feel free to commit early and often (after all, it's your branch!). 
 
104
 
 
105
Documentation improvements are an easy place to get started giving back to the
 
106
Bazaar project.  The documentation is in the `doc/` subdirectory of the Bazaar
 
107
source tree.
 
108
 
 
109
When you are done, make sure that you commit your last set of changes as well!
 
110
Once you are happy with your changes, ask for them to be merged, as described
 
111
below.
 
112
 
 
113
Making a Merge Proposal
 
114
-----------------------
 
115
 
 
116
The Bazaar developers use Launchpad to further enable a truly distributed
 
117
style of development.  Anyone can propose a branch for merging into the Bazaar
 
118
trunk.  To start this process, you need to push your branch to Launchpad.  To
 
119
do this, you will need a Launchpad account and user name, e.g.
 
120
`your_lp_username`.  You can push your branch to Launchpad directly from
 
121
Bazaar::
 
122
 
 
123
  $ bzr push lp:~your_lp_username/bzr/giveback
 
124
 
 
125
After you have pushed your branch, you will need to propose it for merging to
 
126
the Bazaar trunk.  Go to <https://launchpad.net/your_lp_username/bzr/giveback>
 
127
and choose "Propose for merging into another branch".  Select "~bzr/bzr/trunk"
 
128
to hand your changes off to the Bazaar developers for review and merging.
 
129
 
 
130
Why make a local copy of bzr.dev?
 
131
---------------------------------
 
132
 
 
133
Making a local mirror of bzr.dev is not strictly necessary, but it means
 
134
 
 
135
- You can use that copy of bzr.dev as your main bzr executable, and keep it
 
136
  up-to-date using ``bzr pull``.  
 
137
- Certain operations are faster, and can be done when offline.  For example:
 
138
 
 
139
  - ``bzr bundle``
 
140
  - ``bzr diff -r ancestor:...``
 
141
  - ``bzr merge``
 
142
 
 
143
- When it's time to create your next branch, it's more convenient.  When you 
 
144
  have further contributions to make, you should do them in their own branch::
 
145
 
 
146
    $ cd ~/bzr
 
147
    $ bzr branch bzr.dev additional_fixes
 
148
    $ cd additional_fixes # hack, hack, hack
 
149
 
80
150
 
81
151
 
82
152
Understanding the Development Process
126
196
  
127
197
    bzr branch http://bazaar-vcs.org/bzr/bzr.dev/ bzr.dev
128
198
   
129
 
* keep your copy of bzr.dev prestine (by not developing in it) and keep
 
199
* keep your copy of bzr.dev pristine (by not developing in it) and keep
130
200
  it up to date (by using bzr pull)
131
201
 
132
202
* create a new branch off your local bzr.dev copy for each issue
134
204
 
135
205
This approach makes it easy to go back and make any required changes
136
206
after a code review. Resubmitting the change is then simple with no
137
 
risk of accidentially including edits related to other issues you may
 
207
risk of accidentally including edits related to other issues you may
138
208
be working on. After the changes for an issue are accepted and merged,
139
209
the associated branch can be deleted or archived as you wish.
140
210
 
182
252
    is in the ReStructuredText markup language.
183
253
 
184
254
doc/developers 
185
 
    Documentation specifically targetted at Bazaar and plugin developers.
 
255
    Documentation specifically targeted at Bazaar and plugin developers.
186
256
    (Including this document.)
187
257
    
188
258
        
190
260
Automatically-generated API reference information is available at 
191
261
<http://starship.python.net/crew/mwh/bzrlibapi/>.  
192
262
 
193
 
See also the `Bazaar Architectural Overview  <../../developers/overview.html>`_.
 
263
See also the `Bazaar Architectural Overview
 
264
<http://doc.bazaar-vcs.org/developers/overview.html>`_.
194
265
 
195
266
 
196
267
The Code Review Process
204
275
Good reviews do take time. They also regularly require a solid
205
276
understanding of the overall code base. In practice, this means a small
206
277
number of people often have a large review burden - with knowledge comes
207
 
responsibility. No one like their merge requests sitting in a queue going
 
278
responsibility. No one likes their merge requests sitting in a queue going
208
279
nowhere, so reviewing sooner rather than later is strongly encouraged.
209
280
 
210
281
 
211
282
 
212
 
Sending patches for review
213
 
==========================
214
 
 
215
 
If you'd like to propose a change, please post to the
216
 
bazaar@lists.canonical.com list with a bundle, patch, or link to a
217
 
branch. Put ``[PATCH]`` or ``[MERGE]`` in the subject so Bundle Buggy
218
 
can pick it out, and explain the change in the email message text.
219
 
Remember to update the NEWS file as part of your change if it makes any
220
 
changes visible to users or plugin developers. Please include a diff
221
 
against mainline if you're giving a link to a branch.
222
 
 
223
 
You can generate a merge request like this::
224
 
 
225
 
  bzr send -o bug-1234.patch
226
 
  
227
 
A ``.patch`` extension is recommended instead of .bundle as many mail clients
228
 
will send the latter as a binary file.
229
 
 
230
 
``bzr send`` can also send mail directly if you prefer; see the help.
231
 
 
232
 
Please do **NOT** put [PATCH] or [MERGE] in the subject line if you don't
233
 
want it to be merged. If you want comments from developers rather than
234
 
to be merged, you can put ``[RFC]`` in the subject line.
235
 
 
236
 
If this change addresses a bug, please put the bug number in the subject
237
 
line too, in the form ``[#1]`` so that Bundle Buggy can recognize it.
238
 
 
239
 
If the change is intended for a particular release mark that in the
240
 
subject too, e.g. ``[1.6]``.
241
283
 
242
284
 
243
285
Review cover letters
332
374
* (your ideas here...)
333
375
 
334
376
 
335
 
Bundle Buggy and review outcomes
336
 
================================
337
 
 
 
377
Reviews on Launchpad
 
378
====================
 
379
 
 
380
From May 2009 on, we prefer people to propose code reviews through
 
381
Launchpad.  
 
382
 
 
383
 * <https://launchpad.net/+tour/code-review>
 
384
 
 
385
 * <https://help.launchpad.net/Code/Review>
 
386
 
 
387
Anyone can propose or comment on a merge proposal just by creating a
 
388
Launchpad account.
 
389
 
 
390
There are two ways to create a new merge proposal: through the web
 
391
interface or by email.
 
392
 
 
393
 
 
394
Proposing a merge through the web
 
395
---------------------------------
 
396
 
 
397
To create the proposal through the web, first push your branch to Launchpad.
 
398
For example, a branch dealing with documentation belonging to the Launchpad
 
399
User mbp could be pushed as ::
 
400
 
 
401
  bzr push lp:~mbp/bzr/doc
 
402
 
 
403
Then go to the branch's web page, which in this case would be
 
404
<https://code.launchpad.net/~mbp/bzr/doc>.  You can simplify this step by just
 
405
running ::
 
406
 
 
407
  bzr lp-open
 
408
 
 
409
You can then click "Propose for merging into another branch", and enter your
 
410
cover letter (see above) into the web form.  Typically you'll want to merge
 
411
into ``~bzr/bzr/trunk`` which will be the default; you might also want to
 
412
nominate merging into a release branch for a bug fix.  There is the option to
 
413
specify a specific reviewer or type of review, and you shouldn't normally
 
414
change those.
 
415
 
 
416
Submitting the form takes you to the new page about the merge proposal
 
417
containing the diff of the changes, comments by interested people, and
 
418
controls to comment or vote on the change.
 
419
 
 
420
Proposing a merge by mail
 
421
-------------------------
 
422
 
 
423
To propose a merge by mail, send a bundle to ``merge@code.launchpad.net``.
 
424
 
 
425
You can generate a merge request like this::
 
426
 
 
427
  bzr send -o bug-1234.diff
 
428
  
 
429
``bzr send`` can also send mail directly if you prefer; see the help.
 
430
 
 
431
Reviewing changes
 
432
-----------------
 
433
 
 
434
From <https://code.launchpad.net/bzr/+activereviews> you can see all
 
435
currently active reviews, and choose one to comment on.  This page also
 
436
shows proposals that are now approved and should be merged by someone with
 
437
PQM access.
 
438
 
 
439
 
 
440
Reviews through Bundle Buggy
 
441
============================
 
442
 
 
443
The Bundle Buggy tool used up to May 2009 is still available as a review
 
444
mechanism.
 
445
 
 
446
Sending patches for review
 
447
--------------------------
 
448
 
 
449
If you'd like to propose a change, please post to the
 
450
bazaar@lists.canonical.com list with a bundle, patch, or link to a
 
451
branch. Put ``[PATCH]`` or ``[MERGE]`` in the subject so Bundle Buggy
 
452
can pick it out, and explain the change in the email message text.
 
453
Remember to update the NEWS file as part of your change if it makes any
 
454
changes visible to users or plugin developers. Please include a diff
 
455
against mainline if you're giving a link to a branch.
 
456
 
 
457
You can generate a merge request like this::
 
458
 
 
459
  bzr send -o bug-1234.patch
 
460
  
 
461
A ``.patch`` extension is recommended instead of .bundle as many mail clients
 
462
will send the latter as a binary file.
 
463
 
 
464
``bzr send`` can also send mail directly if you prefer; see the help.
 
465
 
 
466
Please do **NOT** put [PATCH] or [MERGE] in the subject line if you don't
 
467
want it to be merged. If you want comments from developers rather than
 
468
to be merged, you can put ``[RFC]`` in the subject line.
 
469
 
 
470
If this change addresses a bug, please put the bug number in the subject
 
471
line too, in the form ``[#1]`` so that Bundle Buggy can recognize it.
 
472
 
 
473
If the change is intended for a particular release mark that in the
 
474
subject too, e.g. ``[1.6]``.
338
475
Anyone can "vote" on the mailing list by expressing an opinion. Core
339
476
developers can also vote using Bundle Buggy. Here are the voting codes and
340
477
their explanations.
385
522
We use 4 space indents for blocks, and never use tab characters.  (In vim,
386
523
``set expandtab``.)
387
524
 
388
 
No trailing white space is allowed.
 
525
Trailing white space should be avoided, but is allowed.
 
526
You should however not make lots of unrelated white space changes.
389
527
 
390
528
Unix style newlines (LF) are used.
391
529
 
437
575
        marmalade,
438
576
        )
439
577
 
440
 
There should be spaces between function paramaters, but not between the
 
578
There should be spaces between function parameters, but not between the
441
579
keyword name and the value::
442
580
 
443
581
    call(1, 3, cheese=quark)
698
836
Test coverage
699
837
=============
700
838
 
701
 
All code should be exercised by the test suite.  See `Guide to Testing
702
 
Bazaar <../../developers/testing.html>`_ for detailed information about writing tests.
 
839
All code should be exercised by the test suite.  See the `Bazaar Testing
 
840
Guide <http://doc.bazaar-vcs.org/developers/testing.html>`_ for detailed
 
841
information about writing tests.
703
842
 
704
843
 
705
844
Core Topics
725
864
_function or ...) behind which forwards to the new API. See the
726
865
bzrlib.symbol_versioning module for decorators that take care of the
727
866
details for you - such as updating the docstring, and issuing a warning
728
 
when the old api is used.
 
867
when the old API is used.
729
868
 
730
869
For unsupported API's, it does not hurt to follow this discipline, but it's
731
870
not required. Minimally though, please try to rename things so that
848
987
The user should call `finish` on the `ProgressTask` when the logical
849
988
operation has finished, so it can be removed from the stack.
850
989
 
851
 
Progress tasks have a complex relatioship with generators: it's a very
 
990
Progress tasks have a complex relationship with generators: it's a very
852
991
good place to use them, but because python2.4 does not allow ``finally``
853
992
blocks in generators it's hard to clean them up properly.  In this case
854
993
it's probably better to have the code calling the generator allocate a
1093
1232
then bzr will go into pdb post-mortem mode when an unhandled exception
1094
1233
occurs.
1095
1234
 
1096
 
If you send a SIGQUIT signal to bzr, which can be done by pressing
1097
 
Ctrl-\\ on Unix, bzr will go into the debugger immediately.  You can
1098
 
continue execution by typing ``c``.  This can be disabled if necessary
1099
 
by setting the environment variable ``BZR_SIGQUIT_PDB=0``.
 
1235
If you send a SIGQUIT or SIGBREAK signal to bzr then it will drop into the
 
1236
debugger immediately. SIGQUIT can be generated by pressing Ctrl-\\ on
 
1237
Unix.  SIGBREAK is generated with Ctrl-Pause on Windows (some laptops have
 
1238
this as Fn-Pause).  You can continue execution by typing ``c``.  This can
 
1239
be disabled if necessary by setting the environment variable
 
1240
``BZR_SIGQUIT_PDB=0``.
1100
1241
 
1101
1242
 
1102
1243
Debug Flags
1160
1301
    Attempting to print an unprintable character will cause a UnicodeError.
1161
1302
    This is for commands that are intended more as scripting support, rather
1162
1303
    than plain user review.
1163
 
    For exampl: ``bzr ls`` is designed to be used with shell scripting. One
1164
 
    use would be ``bzr ls --null --unknows | xargs -0 rm``.  If ``bzr``
 
1304
    For example: ``bzr ls`` is designed to be used with shell scripting. One
 
1305
    use would be ``bzr ls --null --unknowns | xargs -0 rm``.  If ``bzr``
1165
1306
    printed a filename with a '?', the wrong file could be deleted. (At the
1166
1307
    very least, the correct file would not be deleted). An error is used to
1167
1308
    indicate that the requested action could not be performed.
1258
1399
* reviewing changes
1259
1400
* reviewing blueprints
1260
1401
* planning releases
1261
 
* managing releases (see the `Releasing Bazaar <../../developers/releasing.html>`_)
 
1402
* managing releases (see `Releasing Bazaar <http://doc.bazaar-vcs.org/developers/releasing.html>`_)
1262
1403
 
1263
1404
.. note::
1264
1405
  Removing barriers to community participation is a key reason for adopting
1466
1607
https://blueprints.launchpad.net/bzr/. Once a blueprint for ready for
1467
1608
review, please announce it on the mailing list.
1468
1609
 
1469
 
Alternatively, send an email begining with [RFC] with the proposal to the
 
1610
Alternatively, send an email beginning with [RFC] with the proposal to the
1470
1611
list. In some cases, you may wish to attach proposed code  or a proposed
1471
1612
developer document if that best communicates the idea. Debate can then
1472
1613
proceed using the normal merge review processes.
1484
1625
Planning Releases
1485
1626
=================
1486
1627
 
1487
 
Roadmaps
1488
 
--------
1489
 
 
1490
 
As the two senior developers, Martin Pool and Robert Collins coordinate
1491
 
the overall Bazaar product development roadmap. Core developers provide
1492
 
input and review into this, particularly during sprints. It's totally
1493
 
expected that community members ought to be working on things that
1494
 
interest them the most. The roadmap is valuable though because it provides
1495
 
context for understanding where the product is going as a whole and why.
1496
 
 
1497
1628
 
1498
1629
Using Releases and Milestones in Launchpad
1499
1630
------------------------------------------