blob: 065e9d115d1391d4319ff2af26fd0300769987ae [file] [log] [blame]
Martin Fick081fa512011-08-12 11:22:45 -06001Gerrit Code Review - Contributing
2=================================
3
4Gerrit is developed as a self-hosting open source project and
5very much welcomes contributions from anyone with a contributor's
6agreement on file with the project.
7
8* https://gerrit-review.googlesource.com/
9
10The Contributor License Agreements:
11
12* https://gerrit-review.googlesource.com/static/cla_individual.html
13* https://gerrit-review.googlesource.com/static/cla_corporate.html
14
15As Gerrit is a code review tool, naturally contributions will
16be reviewed before they will get submitted to the code base. To
17start your contribution, please make a git commit and upload it
18for review to the main Gerrit review server. To help speed up the
19review of your change, review these guidelines before submitting
20your change. You can view the pending Gerrit contributions and
21their statuses here:
22
23* https://gerrit-review.googlesource.com/#/q/status:open+project:gerrit,n,z
24
25Depending on the size of that list it might take a while for
26your change to get reviewed. Naturally there are fewer
27approvers than contributors; so anything that you can do to
28ensure that your contribution will undergo fewer revisions
29will speed up the contribution process. This includes helping
30out reviewing other people's changes to relieve the load from
31the approvers. Even if you are not familiar with Gerrit's
32internals, it would be of great help if you can download, try
33out, and comment on new features. If it works as advertised,
34say so, and if you have the priviliges to do so, go ahead
35and give it a +1 Verified. If you would find the feature
36useful, say so and give it a +1 code review.
37
38And finally, the quicker you respond to the comments of your
39reviewers, the quicker your change might get merged! Try to
40reply to every comment after submitting your new patch,
41particularly if you decided against making the suggested change.
42Reviewers don't want to seem like nags and pester you if you
43haven't replied or made a fix, so it helps them know if you
44missed it or decided against it.
45
46
47Review Criteria
48---------------
49
50Here are some hints as to what approvers may be looking for
51before approving or submitting changes to the Gerrit project.
52Let's start with the simple nit picky stuff. You are likely
53excited that your code works; help us share your excitement
54by not distracting us with the simple stuff. Thanks to Gerrit,
55problems are often highlighted and we find it hard to look
56beyond simple spacing issues. Blame it on our short attention
57spans, we really do want your code.
58
59
60Commit Message
61--------------
62
63It is essential to have a good commit message if you want your
64change to be reviewed.
65
66 * Keep lines no longer than 72 chars
67 * Start with a short one line summary
68 * Followed by a blank line
69 * Followed by one or more explanatory paragraphs
70 * Use the present tense (fix instead of fixed)
71 * Include a Bug: Issue <#> line if fixing a Gerrit issue
72 * Include a Change-Id line
73
74
75A sample good Gerrit commit message:
76~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
77====
78 Add sample commit message to guidelines doc
79
80 The original patch set for the contributing guidelines doc did not
81 include a sample commit message, this new patchset does. Hopefully this
82 makes things a bit clearer since examples can sometimes help when
83 explanations don't.
84
85 Note that the body of this commit message can be several paragraphs, and
86 that I word wrap it at 72 characters. Also note that I keep the summary
87 line under 50 characters since it is often truncated by tools which
88 display just the git summary.
89
90 Bug: Issue 98765605
91 Change-Id: Ic4a7c07eeb98cdeaf44e9d231a65a51f3fceae52
92====
93
94
95Style
96-----
97
98The basic coding style is covered by the tools/GoogleFormat.xml
99doc, see the link:dev-eclipse.html#Formatting[Eclipse Setup]
100for that.
101
102Highlighted/additional styling notes:
103
104 * It is generally more important to match the style of the nearby
105 code which you are modifying than it is to match the style
106 in the formatting guidelines. This is especially true within the
107 same file.
108 * Review your change in Gerrit to see if it highlights
109 mistakingly deleted/added spaces on lines, trailing spaces.
110 * Line length should be 80 or less, unless the code reads
111 better with something slightly longer. Shorter lines not only
112 help reviewers who may use a tablet to review the code, but future
113 contributors may also like to open several editors side by
114 side while editing new changes.
115 * Use 2 spaces for indent (no tabs)
116 * Use brackets in all ifs, spaces before/after if parens.
117 * Use /** */ style Javadocs for variables.
118
119Additionally, you will notice that most of the newline spacing
120is fairly consistent throughout the code in Gerrit, it helps to
121stick to the blank line conventions. Here are some specific
122examples:
123
124 * Keep a blank line between all class and method declarations.
125 * Do not add blank lines at the beginning or end of class/methods.
126 * Put a blank line between external import sources, but not
127 between internal ones.
128
129
130Code Organization
131-----------------
132
133Do your best to organize classes and methods in a logical way.
134Here are some guidelines that Gerrit uses:
135
136 * Ensure a standard copyright header is included at the top
137 of any new files (copy it from another file, update the year).
138 * Always place loggers first in your class!
139 * Define any static interfaces next in your class.
140 * Define non static interfaces after static interfaces in your
141 class.
142 * Next you should define static types and members.
143 * Finally instance members, then constuctors, and then instance
144 methods.
145 * Some common exceptions are private helper static methods which
146 might appear near the instance methods which they help.
147 * Getters and setters for the same instance field should usually
148 be near each other baring a good reason not to.
149 * If you are using assisted injection, the factory for your class
150 should be before the instance members.
Martin Fick28c8af92012-02-28 11:18:47 -0700151 * Annotations should go before language keywords (final, private...) +
152 Example: @Assisted @Nullable final type varName
Magnus Bäckc392e3c2012-03-27 09:52:19 -0400153 * Imports should be mostly alphabetical (uppercase sorts before
Martin Fick081fa512011-08-12 11:22:45 -0600154 all lowercase, which means classes come before packages at the
155 same level).
156
157Wow that's a lot! But don't worry, you'll get the habit and most
158of the code is organized this way already; so if you pay attention
159to the class you are editing you will likely pick up on it.
160Naturally new classes are a little harder; you may want to come
161back and consult this section when creating them.
162
163
164Design
165------
166
Magnus Bäckc392e3c2012-03-27 09:52:19 -0400167Here are some design level objectives that you should keep in mind
Martin Fick081fa512011-08-12 11:22:45 -0600168when coding:
169
170 * ORM entity objects should match exactly one row in the database.
171 * Most client pages should perform only one RPC to load so as to
172 keep latencies down. Exceptions would apply to RPCs which need
173 to load large data sets if splitting them out will help the
174 page load faster. Generally page loads are expected to complete
175 in under 100ms. This will be the case for most operations,
176 unless the data being fetched is not using Gerrit's caching
177 infrastructure. In these slower cases, it is worth considering
178 mitigating this longer load by using a second RPC to fill in
179 this data after the page is displayed (or alternatively it might
180 be worth proposing caching this data).
181 * @Inject should be used on constructors, not on fields. The
182 current exceptions are the ssh commands, these were implemented
183 earlier in Gerrit's development. To stay consistent, new ssh
184 commands should follow this older pattern; but eventually these
185 should get converted to eliminate this exception.
186 * Don't leave repository objects (git or schema) open. A .close()
187 after every open should be placed in a finally{} block.
188 * Don't leave UI components, which can cause new actions to occur,
189 enabled during RPCs which update the DB. This is to prevent
190 people from submitting actions more than once when operating
191 on slow links. If the action buttons are disabled, they cannot
192 be resubmitted and the user can see that Gerrit is still busy.
193 * GWT EventBus is the new way forward.
Deniz Türkogluc64f9ca2012-05-08 16:26:53 -0700194 * ...and so is Guava (previously known as Google Collections).
Martin Fick081fa512011-08-12 11:22:45 -0600195
196
197Tests
198-----
199
200 * Tests for new code will greatly help your change get approved.
201
202
203Change Size/Number of Files Touched
204-----------------------------------
205
206And finally, I probably cannot say enough about change sizes.
207Generally, smaller is better, hopefully within reason. Do try to
208keep things which will be confusing on their own together,
209especially if changing one without the other will break something!
210
211 * If a new feature is implemented and it is a larger one, try to
212 identify if it can be split into smaller logical features; when
213 in doubt, err on the smaller side.
214 * Separate bug fixes from feature improvements. The bug fix may
215 be an easy candidate for approval and should not need to wait
216 for new features to be approved. Also, combining the two makes
217 reviewing harder since then there is no clear line between the
218 fix and the feature.
219 * Separate supporting refactoring from feature changes. If your
220 new feature requires some refactoring, it helps to make the
221 refactoring a separate change which your feature change
222 depends on. This way, reviewers can easily review the refactor
223 change as a something that should not alter the current
224 functionality, and feel more confident they can more easily
225 spot errors this way. Of course, it also makes it easier to
226 test and locate later on if an unfortunate error does slip in.
227 Lastly, by not having to see refactoring changes at the same
228 time, it helps reviewers understand how your feature changes
229 the current functionality.
230 * Separate logical features into separate changes. This
231 is often the hardest part. Here is an example: when adding a
232 new ability, make separate changes for the UI and the ssh
233 commands if possible.
234 * Do only what the commit message describes. In other words, things which
235 are not strictly related to the commit message shouldn't be part of
236 a change, even trivial things like externalizing a string somewhere
237 or fixing a typo. This help keep "git blame" more useful in the future
238 and it also makes "git revert" more useful.
239 * Use topic branches to link your separate changes together.
240
241
242GERRIT
243------
244Part of link:index.html[Gerrit Code Review]