1page.title=Code Style for Contributors
2@jd:body
3
4<!--
5    Copyright 2015 The Android Open Source Project
6
7    Licensed under the Apache License, Version 2.0 (the "License");
8    you may not use this file except in compliance with the License.
9    You may obtain a copy of the License at
10
11        http://www.apache.org/licenses/LICENSE-2.0
12
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18-->
19<div id="qv-wrapper">
20  <div id="qv">
21    <h2>In this document</h2>
22    <ol id="auto-toc">
23    </ol>
24  </div>
25</div>
26
27<p>The code styles below are strict rules, not guidelines or recommendations.
28Contributions to Android that do not adhere to these rules are generally <em>not
29accepted</em>. We recognize that not all existing code follows these rules, but
30we expect all new code to be compliant.</p>
31
32<h2 id="java-language-rules">Java Language Rules</h2>
33<p>Android follows standard Java coding conventions with the additional rules
34described below.</p>
35
36<h3 id="dont-ignore-exceptions">Don't Ignore Exceptions</h3>
37<p>It can be tempting to write code that completely ignores an exception, such
38as:</p>
39<pre><code>void setServerPort(String value) {
40    try {
41        serverPort = Integer.parseInt(value);
42    } catch (NumberFormatException e) { }
43}
44</code></pre>
45<p>Do not do this. While you may think your code will never encounter this error
46condition or that it is not important to handle it, ignoring exceptions as above
47creates mines in your code for someone else to trigger some day. You must handle
48every Exception in your code in a principled way; the specific handling varies
49depending on the case.</p>
50<p><em>Anytime somebody has an empty catch clause they should have a
51creepy feeling. There are definitely times when it is actually the correct
52thing to do, but at least you have to think about it. In Java you can't escape
53the creepy feeling.</em> -<a href="http://www.artima.com/intv/solid4.html">James Gosling</a></p>
54<p>Acceptable alternatives (in order of preference) are:</p>
55<ul>
56<li>Throw the exception up to the caller of your method.
57<pre><code>void setServerPort(String value) throws NumberFormatException {
58    serverPort = Integer.parseInt(value);
59}
60</code></pre>
61</li>
62<li>Throw a new exception that's appropriate to your level of abstraction.
63<pre><code>void setServerPort(String value) throws ConfigurationException {
64    try {
65        serverPort = Integer.parseInt(value);
66    } catch (NumberFormatException e) {
67        throw new ConfigurationException("Port " + value + " is not valid.");
68    }
69}
70</code></pre>
71</li>
72<li>Handle the error gracefully and substitute an appropriate value in the
73catch {} block.
74<pre><code>/** Set port. If value is not a valid number, 80 is substituted. */
75
76void setServerPort(String value) {
77    try {
78        serverPort = Integer.parseInt(value);
79    } catch (NumberFormatException e) {
80        serverPort = 80;  // default port for server
81    }
82}
83</code></pre>
84</li>
85<li>Catch the Exception and throw a new <code>RuntimeException</code>. This is
86dangerous, so do it only if you are positive that if this error occurs the
87appropriate thing to do is crash.
88<pre><code>/** Set port. If value is not a valid number, die. */
89
90void setServerPort(String value) {
91    try {
92        serverPort = Integer.parseInt(value);
93    } catch (NumberFormatException e) {
94        throw new RuntimeException("port " + value " is invalid, ", e);
95    }
96}
97</code></pre>
98<p class="note"><strong>Note</strong> The original exception is passed to the
99constructor for RuntimeException. If your code must compile under Java 1.3, you
100must omit the exception that is the cause.</p>
101</li>
102<li>As a last resort, if you are confident that ignoring the exception is
103appropriate then you may ignore it, but you must also comment why with a good
104reason:
105<pre><code>/** If value is not a valid number, original port number is used. */
106void setServerPort(String value) {
107    try {
108        serverPort = Integer.parseInt(value);
109    } catch (NumberFormatException e) {
110        // Method is documented to just ignore invalid user input.
111        // serverPort will just be unchanged.
112    }
113}
114</code></pre>
115</li>
116</ul>
117
118<h3 id="dont-catch-generic-exception">Don't Catch Generic Exception</h3>
119<p>It can also be tempting to be lazy when catching exceptions and do
120something like this:</p>
121<pre><code>try {
122    someComplicatedIOFunction();        // may throw IOException
123    someComplicatedParsingFunction();   // may throw ParsingException
124    someComplicatedSecurityFunction();  // may throw SecurityException
125    // phew, made it all the way
126} catch (Exception e) {                 // I'll just catch all exceptions
127    handleError();                      // with one generic handler!
128}
129</code></pre>
130<p>Do not do this. In almost all cases it is inappropriate to catch generic
131Exception or Throwable (preferably not Throwable because it includes Error
132exceptions). It is very dangerous because it means that Exceptions
133you never expected (including RuntimeExceptions like ClassCastException) get
134caught in application-level error handling. It obscures the failure handling
135properties of your code, meaning if someone adds a new type of Exception in the
136code you're calling, the compiler won't help you realize you need to handle the
137error differently. In most cases you shouldn't be handling different types of
138exception the same way.</p>
139<p>The rare exception to this rule is test code and top-level code where you
140want to catch all kinds of errors (to prevent them from showing up in a UI, or
141to keep a batch job running). In these cases you may catch generic Exception
142(or Throwable) and handle the error appropriately. Think very carefully before
143doing this, though, and put in comments explaining why it is safe in this place.</p>
144<p>Alternatives to catching generic Exception:</p>
145<ul>
146<li>
147<p>Catch each exception separately as separate catch blocks after a single
148try. This can be awkward but is still preferable to catching all Exceptions.
149Beware repeating too much code in the catch blocks.</li></p>
150</li>
151<li>
152<p>Refactor your code to have more fine-grained error handling, with multiple
153try blocks. Split up the IO from the parsing, handle errors separately in each
154case.</p>
155</li>
156<li>
157<p>Rethrow the exception. Many times you don't need to catch the exception at
158this level anyway, just let the method throw it.</p>
159</li>
160</ul>
161<p>Remember: exceptions are your friend! When the compiler complains you're
162not catching an exception, don't scowl. Smile: the compiler just made it
163easier for you to catch runtime problems in your code.</p>
164<h3 id="dont-use-finalizers">Don't Use Finalizers</h3>
165<p>Finalizers are a way to have a chunk of code executed when an object is
166garbage collected. While they can be handy for doing cleanup (particularly of
167external resources), there are no guarantees as to when a finalizer will be
168called (or even that it will be called at all).</p>
169<p>Android doesn't use finalizers. In most cases, you can do what
170you need from a finalizer with good exception handling. If you absolutely need
171it, define a close() method (or the like) and document exactly when that
172method needs to be called (see InputStream for an example). In this case it is
173appropriate but not required to print a short log message from the finalizer,
174as long as it is not expected to flood the logs.</p>
175
176<h3 id="fully-qualify-imports">Fully Qualify Imports</h3>
177<p>When you want to use class Bar from package foo,there
178are two possible ways to import it:</p>
179<ul>
180<li><code>import foo.*;</code>
181<p>Potentially reduces the number of import statements.</p></li>
182<li><code>import foo.Bar;</code>
183<p>Makes it obvious what classes are actually used and the code is more readable
184for maintainers.</p></li></ul>
185<p>Use <code>import foo.Bar;</code> for importing all Android code. An explicit
186exception is made for java standard libraries (<code>java.util.*</code>,
187<code>java.io.*</code>, etc.) and unit test code
188(<code>junit.framework.*</code>).</p>
189
190<h2 id="java-library-rules">Java Library Rules</h2>
191<p>There are conventions for using Android's Java libraries and tools. In some
192cases, the convention has changed in important ways and older code might use a
193deprecated pattern or library. When working with such code, it's okay to
194continue the existing style. When creating new components however, never use
195deprecated libraries.</p>
196
197<h2 id="java-style-rules">Java Style Rules</h2>
198
199<h3 id="use-javadoc-standard-comments">Use Javadoc Standard Comments</h3>
200<p>Every file should have a copyright statement at the top, followed by package
201and import statements (each block separated by a blank line) and finally the
202class or interface declaration. In the Javadoc comments, describe what the class
203or interface does.</p>
204<pre><code>/*
205 * Copyright (C) 2015 The Android Open Source Project
206 *
207 * Licensed under the Apache License, Version 2.0 (the "License");
208 * you may not use this file except in compliance with the License.
209 * You may obtain a copy of the License at
210 *
211 *      http://www.apache.org/licenses/LICENSE-2.0
212 *
213 * Unless required by applicable law or agreed to in writing, software
214 * distributed under the License is distributed on an "AS IS" BASIS,
215 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
216 * See the License for the specific language governing permissions and
217 * limitations under the License.
218 */
219
220package com.android.internal.foo;
221
222import android.os.Blah;
223import android.view.Yada;
224
225import java.sql.ResultSet;
226import java.sql.SQLException;
227
228/**
229 * Does X and Y and provides an abstraction for Z.
230 */
231
232public class Foo {
233    ...
234}
235</code></pre>
236<p>Every class and nontrivial public method you write <em>must</em> contain a
237Javadoc comment with at least one sentence describing what the class or method
238does. This sentence should start with a third person descriptive verb.</p>
239<p>Examples:</p>
240<pre><code>/** Returns the correctly rounded positive square root of a double value. */
241static double sqrt(double a) {
242    ...
243}
244</code></pre>
245<p>or</p>
246<pre><code>/**
247 * Constructs a new String by converting the specified array of
248 * bytes using the platform's default character encoding.
249 */
250public String(byte[] bytes) {
251    ...
252}
253</code></pre>
254<p>You do not need to write Javadoc for trivial get and set methods such as
255<code>setFoo()</code> if all your Javadoc would say is "sets Foo". If the method
256does something more complex (such as enforcing a constraint or has an important
257side effect), then you must document it. If it's not obvious what the property
258"Foo" means, you should document it.
259<p>Every method you write, public or otherwise, would benefit from Javadoc.
260Public methods are part of an API and therefore require Javadoc. Android does
261not currently enforce a specific style for writing Javadoc comments, but you
262should follow the instructions <a
263href="http://www.oracle.com/technetwork/java/javase/documentation/index-137868.html">How
264to Write Doc Comments for the Javadoc Tool</a>.</p>
265
266<h3 id="write-short-methods">Write Short Methods</h3>
267<p>When feasible, keep methods small and focused. We recognize that long methods
268are sometimes appropriate, so no hard limit is placed on method length. If a
269method exceeds 40 lines or so, think about whether it can be broken up without
270harming the structure of the program.</p>
271
272<h3 id="define-fields-in-standard-places">Define Fields in Standard Places</h3>
273<p>Define fields either at the top of the file or immediately before the
274methods that use them.</p>
275
276<h3 id="limit-variable-scope">Limit Variable Scope</h3>
277<p>Keep the scope of local variables to a minimum. By doing so, you
278increase the readability and maintainability of your code and reduce the
279likelihood of error. Each variable should be declared in the innermost block
280that encloses all uses of the variable.</p>
281<p>Local variables should be declared at the point they are first used. Nearly
282every local variable declaration should contain an initializer. If you don't
283yet have enough information to initialize a variable sensibly, postpone the
284declaration until you do.</p>
285<p>The exception is try-catch statements. If a variable is initialized with the
286return value of a method that throws a checked exception, it must be initialized
287inside a try block. If the value must be used outside of the try block, then it
288must be declared before the try block, where it cannot yet be sensibly
289initialized:</p>
290<pre><code>// Instantiate class cl, which represents some sort of Set
291Set s = null;
292try {
293    s = (Set) cl.newInstance();
294} catch(IllegalAccessException e) {
295    throw new IllegalArgumentException(cl + " not accessible");
296} catch(InstantiationException e) {
297    throw new IllegalArgumentException(cl + " not instantiable");
298}
299
300// Exercise the set
301s.addAll(Arrays.asList(args));
302</code></pre>
303<p>However, even this case can be avoided by encapsulating the try-catch block
304in a method:</p>
305<pre><code>Set createSet(Class cl) {
306    // Instantiate class cl, which represents some sort of Set
307    try {
308        return (Set) cl.newInstance();
309    } catch(IllegalAccessException e) {
310        throw new IllegalArgumentException(cl + " not accessible");
311    } catch(InstantiationException e) {
312        throw new IllegalArgumentException(cl + " not instantiable");
313    }
314}
315
316...
317
318// Exercise the set
319Set s = createSet(cl);
320s.addAll(Arrays.asList(args));
321</code></pre>
322<p>Loop variables should be declared in the for statement itself unless there
323is a compelling reason to do otherwise:</p>
324<pre><code>for (int i = 0; i < n; i++) {
325    doSomething(i);
326}
327</code></pre>
328<p>and</p>
329<pre><code>for (Iterator i = c.iterator(); i.hasNext(); ) {
330    doSomethingElse(i.next());
331}
332</code></pre>
333
334<h3 id="order-import-statements">Order Import Statements</h3>
335<p>The ordering of import statements is:</p>
336<ol>
337<li>
338<p>Android imports</p>
339</li>
340<li>
341<p>Imports from third parties (<code>com</code>, <code>junit</code>,
342<code>net</code>, <code>org</code>)</p>
343</li>
344<li>
345<p><code>java</code> and <code>javax</code></p>
346</li>
347</ol>
348<p>To exactly match the IDE settings, the imports should be:</p>
349<ul>
350<li>
351<p>Alphabetical within each grouping, with capital letters before lower case
352letters (e.g. Z before a).</p>
353</li>
354<li>
355<p>Separated by a blank line between each major grouping (<code>android</code>,
356<code>com</code>, <code>junit</code>, <code>net</code>, <code>org</code>,
357<code>java</code>, <code>javax</code>).</p>
358</li>
359</ul>
360<p>Originally, there was no style requirement on the ordering, meaning IDEs were
361either always changing the ordering or IDE developers had to disable the
362automatic import management features and manually maintain the imports. This was
363deemed bad. When java-style was asked, the preferred styles varied wildly and it
364came down to Android needing to simply "pick an ordering and be consistent." So
365we chose a style, updated the style guide, and made the IDEs obey it. We expect
366that as IDE users work on the code, imports in all packages will match this
367pattern without extra engineering effort.</p>
368<p>This style was chosen such that:</p>
369<ul>
370<li>
371<p>The imports people want to look at first tend to be at the top
372(<code>android</code>).</p>
373</li>
374<li>
375<p>The imports people want to look at least tend to be at the bottom
376(<code>java</code>).</p>
377</li>
378<li>
379<p>Humans can easily follow the style.</p>
380</li>
381<li>
382<p>IDEs can follow the style.</p>
383</li>
384</ul>
385<p>The use and location of static imports have been mildly controversial
386issues. Some people prefer static imports to be interspersed with the
387remaining imports, while some prefer them to reside above or below all
388other imports. Additionally, we have not yet determined how to make all IDEs use
389the same ordering. Since many consider this a low priority issue, just use your
390judgement and be consistent.</p>
391
392<h3 id="use-spaces-for-indentation">Use Spaces for Indentation</h3>
393<p>We use four (4) space indents for blocks and never tabs. When in doubt, be
394consistent with the surrounding code.</p>
395<p>We use eight (8) space indents for line wraps, including function calls and
396assignments. For example, this is correct:</p>
397<pre><code>Instrument i =
398        someLongExpression(that, wouldNotFit, on, one, line);
399</code></pre>
400<p>and this is not correct:</p>
401<pre><code>Instrument i =
402    someLongExpression(that, wouldNotFit, on, one, line);
403</code></pre>
404
405<h3 id="follow-field-naming-conventions">Follow Field Naming Conventions</h3>
406<ul>
407<li>
408<p>Non-public, non-static field names start with m.</p>
409</li>
410<li>
411<p>Static field names start with s.</p>
412</li>
413<li>
414<p>Other fields start with a lower case letter.</p>
415</li>
416<li>
417<p>Public static final fields (constants) are ALL_CAPS_WITH_UNDERSCORES.</p>
418</li>
419</ul>
420<p>For example:</p>
421<pre><code>public class MyClass {
422    public static final int SOME_CONSTANT = 42;
423    public int publicField;
424    private static MyClass sSingleton;
425    int mPackagePrivate;
426    private int mPrivate;
427    protected int mProtected;
428}
429</code></pre>
430<h3 id="use-standard-brace-style">Use Standard Brace Style</h3>
431<p>Braces do not go on their own line; they go on the same line as the code
432before them:</p>
433<pre><code>class MyClass {
434    int func() {
435        if (something) {
436            // ...
437        } else if (somethingElse) {
438            // ...
439        } else {
440            // ...
441        }
442    }
443}
444</code></pre>
445<p>We require braces around the statements for a conditional. Exception: If the
446entire conditional (the condition and the body) fit on one line, you may (but
447are not obligated to) put it all on one line. For example, this is acceptable:</p>
448<pre><code>if (condition) {
449    body();
450}
451</code></pre>
452<p>and this is acceptable:</p>
453<pre><code>if (condition) body();
454</code></pre>
455<p>but this is not acceptable:</p>
456<pre><code>if (condition)
457    body();  // bad!
458</code></pre>
459
460<h3 id="limit-line-length">Limit Line Length</h3>
461<p>Each line of text in your code should be at most 100 characters long. While
462much discussion has surrounded this rule, the decision remains that 100
463characters is the maximum <em>with the following exceptions</em>:</p>
464<ul>
465<li>If a comment line contains an example command or a literal URL
466longer than 100 characters, that line may be longer than 100 characters for
467ease of cut and paste.</li>
468<li>Import lines can go over the limit because humans rarely see them (this also
469simplifies tool writing).</li>
470</ul>
471
472<h3 id="use-standard-java-annotations">Use Standard Java Annotations</h3>
473<p>Annotations should precede other modifiers for the same language element.
474Simple marker annotations (e.g. @Override) can be listed on the same line with
475the language element. If there are multiple annotations, or parameterized
476annotations, they should each be listed one-per-line in alphabetical
477order.</p>
478<p>Android standard practices for the three predefined annotations in Java are:</p>
479<ul>
480<li><code>@Deprecated</code>: The @Deprecated annotation must be used whenever
481the use of the annotated element is discouraged. If you use the @Deprecated
482annotation, you must also have a @deprecated Javadoc tag and it should name an
483alternate implementation. In addition, remember that a @Deprecated method is
484<em>still supposed to work</em>. If you see old code that has a @deprecated
485Javadoc tag, please add the @Deprecated annotation.
486</li>
487<li><code>@Override</code>: The @Override annotation must be used whenever a
488method overrides the declaration or implementation from a super-class. For
489example, if you use the @inheritdocs Javadoc tag, and derive from a class (not
490an interface), you must also annotate that the method @Overrides the parent
491class's method.</li>
492<li><code>@SuppressWarnings</code>: The @SuppressWarnings annotation should be
493used only under circumstances where it is impossible to eliminate a warning. If
494a warning passes this "impossible to eliminate" test, the @SuppressWarnings
495annotation <em>must</em> be used, so as to ensure that all warnings reflect
496actual problems in the code.
497<p>When a @SuppressWarnings annotation is necessary, it must be prefixed with
498a TODO comment that explains the "impossible to eliminate" condition. This
499will normally identify an offending class that has an awkward interface. For
500example:</p>
501<pre><code>// TODO: The third-party class com.third.useful.Utility.rotate() needs generics
502&#64;SuppressWarnings("generic-cast")
503List&lt;String&gt; blix = Utility.rotate(blax);
504</code></pre>
505<p>When a @SuppressWarnings annotation is required, the code should be
506refactored to isolate the software elements where the annotation applies.</p>
507</li>
508</ul>
509
510<h3 id="treat-acronyms-as-words">Treat Acronyms as Words</h3>
511<p>Treat acronyms and abbreviations as words in naming variables, methods, and
512classes to make names more readable:</p>
513<table>
514<thead>
515<tr>
516<th>Good</th>
517<th>Bad</th>
518</tr>
519</thead>
520<tbody>
521<tr>
522<td>XmlHttpRequest</td>
523<td>XMLHTTPRequest</td>
524</tr>
525<tr>
526<td>getCustomerId</td>
527<td>getCustomerID</td>
528</tr>
529<tr>
530<td>class Html</td>
531<td>class HTML</td>
532</tr>
533<tr>
534<td>String url</td>
535<td>String URL</td>
536</tr>
537<tr>
538<td>long id</td>
539<td>long ID</td>
540</tr>
541</tbody>
542</table>
543<p>As both the JDK and the Android code bases are very inconsistent around
544acronyms, it is virtually impossible to be consistent with the surrounding
545code. Therefore, always treat acronyms as words.</p>
546
547<h3 id="use-todo-comments">Use TODO Comments</h3>
548<p>Use TODO comments for code that is temporary, a short-term solution, or
549good-enough but not perfect. TODOs should include the string TODO in all caps,
550followed by a colon:</p>
551<pre><code>// TODO: Remove this code after the UrlTable2 has been checked in.
552</code></pre>
553<p>and</p>
554<pre><code>// TODO: Change this to use a flag instead of a constant.
555</code></pre>
556<p>If your TODO is of the form "At a future date do something" make sure that
557you either include a very specific date ("Fix by November 2005") or a very
558specific event ("Remove this code after all production mixers understand
559protocol V7.").</p>
560
561<h3 id="log-sparingly">Log Sparingly</h3>
562<p>While logging is necessary, it has a significantly negative impact on
563performance and quickly loses its usefulness if not kept reasonably
564terse. The logging facilities provides five different levels of logging:</p>
565<ul>
566<li><code>ERROR</code>:
567Use when something fatal has happened, i.e. something will have user-visible
568consequences and won't be recoverable without explicitly deleting some data,
569uninstalling applications, wiping the data partitions or reflashing the entire
570device (or worse). This level is always logged. Issues that justify some logging
571at the ERROR level are typically good candidates to be reported to a
572statistics-gathering server.</li>
573<li><code>WARNING</code>:
574Use when something serious and unexpected happened, i.e. something that will
575have user-visible consequences but is likely to be recoverable without data loss
576by performing some explicit action, ranging from waiting or restarting an app
577all the way to re-downloading a new version of an application or rebooting the
578device. This level is always logged. Issues that justify some logging at the
579WARNING level might also be considered for reporting to a statistics-gathering
580server.</li>
581<li><code>INFORMATIVE:</code>
582Use to note that something interesting to most people happened, i.e. when a
583situation is detected that is likely to have widespread impact, though isn't
584necessarily an error. Such a condition should only be logged by a module that
585reasonably believes that it is the most authoritative in that domain (to avoid
586duplicate logging by non-authoritative components). This level is always logged.
587</li>
588<li><code>DEBUG</code>:
589Use to further note what is happening on the device that could be relevant to
590investigate and debug unexpected behaviors. You should log only what is needed
591to gather enough information about what is going on about your component. If
592your debug logs are dominating the log then you probably should be using verbose
593logging.
594<p>This level will be logged, even on release builds, and is required to be
595surrounded by an <code>if (LOCAL_LOG)</code> or <code>if (LOCAL_LOGD)</code>
596block, where <code>LOCAL_LOG[D]</code> is defined in your class or subcomponent,
597so that there can exist a possibility to disable all such logging. There must
598therefore be no active logic in an <code>if (LOCAL_LOG)</code> block. All the
599string building for the log also needs to be placed inside the <code>if
600(LOCAL_LOG)</code> block. The logging call should not be re-factored out into a
601method call if it is going to cause the string building to take place outside
602of the <code>if (LOCAL_LOG)</code> block.</p>
603<p>There is some code that still says <code>if (localLOGV)</code>. This is
604considered acceptable as well, although the name is nonstandard.</p>
605</li>
606<li><code>VERBOSE</code>:
607Use for everything else. This level will only be logged on debug builds and
608should be surrounded by an <code>if (LOCAL_LOGV)</code> block (or equivalent) so
609it can be compiled out by default. Any string building will be stripped out of
610release builds and needs to appear inside the <code>if (LOCAL_LOGV)</code> block.
611</li>
612</ul>
613<p><em>Notes:</em> </p>
614<ul>
615<li>Within a given module, other than at the VERBOSE level, an
616error should only be reported once if possible. Within a single chain of
617function calls within a module, only the innermost function should return the
618error, and callers in the same module should only add some logging if that
619significantly helps to isolate the issue.</li>
620<li>In a chain of modules, other than at the VERBOSE level, when a
621lower-level module detects invalid data coming from a higher-level module, the
622lower-level module should only log this situation to the DEBUG log, and only
623if logging provides information that is not otherwise available to the caller.
624Specifically, there is no need to log situations where an exception is thrown
625(the exception should contain all the relevant information), or where the only
626information being logged is contained in an error code. This is especially
627important in the interaction between the framework and applications, and
628conditions caused by third-party applications that are properly handled by the
629framework should not trigger logging higher than the DEBUG level. The only
630situations that should trigger logging at the INFORMATIVE level or higher is
631when a module or application detects an error at its own level or coming from
632a lower level.</li>
633<li>When a condition that would normally justify some logging is
634likely to occur many times, it can be a good idea to implement some
635rate-limiting mechanism to prevent overflowing the logs with many duplicate
636copies of the same (or very similar) information.</li>
637<li>Losses of network connectivity are considered common, fully expected, and
638should not be logged gratuitously. A loss of network connectivity
639that has consequences within an app should be logged at the DEBUG or VERBOSE
640level (depending on whether the consequences are serious enough and unexpected
641enough to be logged in a release build).</li>
642<li>Having a full filesystem on a filesystem that is accessible to or on
643behalf of third-party applications should not be logged at a level higher than
644INFORMATIVE.</li>
645<li>Invalid data coming from any untrusted source (including any
646file on shared storage, or data coming through just about any network
647connection) is considered expected and should not trigger any logging at a
648level higher than DEBUG when it's detected to be invalid (and even then
649logging should be as limited as possible).</li>
650<li>Keep in mind that the <code>+</code> operator, when used on Strings,
651implicitly creates a <code>StringBuilder</code> with the default buffer size (16
652characters) and potentially other temporary String objects, i.e.
653that explicitly creating StringBuilders isn't more expensive than relying on
654the default '+' operator (and can be a lot more efficient in fact). Keep
655in mind that code that calls <code>Log.v()</code> is compiled and executed on
656release builds, including building the strings, even if the logs aren't being
657read.</li>
658<li>Any logging that is meant to be read by other people and to be
659available in release builds should be terse without being cryptic, and should
660be reasonably understandable. This includes all logging up to the DEBUG
661level.</li>
662<li>When possible, logging should be kept on a single line if it
663makes sense. Line lengths up to 80 or 100 characters are perfectly acceptable,
664while lengths longer than about 130 or 160 characters (including the length of
665the tag) should be avoided if possible.</li>
666<li>Logging that reports successes should never be used at levels
667higher than VERBOSE.</li>
668<li>Temporary logging used to diagnose an issue that is hard to reproduce should
669be kept at the DEBUG or VERBOSE level and should be enclosed by if blocks that
670allow for disabling it entirely at compile time.</li>
671<li>Be careful about security leaks through the log. Private
672information should be avoided. Information about protected content must
673definitely be avoided. This is especially important when writing framework
674code as it's not easy to know in advance what will and will not be private
675information or protected content.</li>
676<li><code>System.out.println()</code> (or <code>printf()</code> for native code)
677should never be used. System.out and System.err get redirected to /dev/null, so
678your print statements will have no visible effects. However, all the string
679building that happens for these calls still gets executed.</li>
680<li><em>The golden rule of logging is that your logs may not
681unnecessarily push other logs out of the buffer, just as others may not push
682out yours.</em></li>
683</ul>
684
685<h3 id="be-consistent">Be Consistent</h3>
686<p>Our parting thought: BE CONSISTENT. If you're editing code, take a few
687minutes to look at the surrounding code and determine its style. If that code
688uses spaces around the if clauses, you should too. If the code comments have
689little boxes of stars around them, make your comments have little boxes of stars
690around them too.</p>
691<p>The point of having style guidelines is to have a common vocabulary of
692coding, so people can concentrate on what you're saying, rather than on how
693you're saying it. We present global style rules here so people know the
694vocabulary, but local style is also important. If the code you add to a file
695looks drastically different from the existing code around it, it throws
696readers out of their rhythm when they go to read it. Try to avoid this.</p>
697
698<h2 id="javatests-style-rules">Javatests Style Rules</h2>
699<p>Follow test method naming conventions and use an underscore to separate what
700is being tested from the specific case being tested. This style makes it easier
701to see exactly what cases are being tested. For example:</p>
702<pre><code>testMethod_specificCase1 testMethod_specificCase2
703
704void testIsDistinguishable_protanopia() {
705    ColorMatcher colorMatcher = new ColorMatcher(PROTANOPIA)
706    assertFalse(colorMatcher.isDistinguishable(Color.RED, Color.BLACK))
707    assertTrue(colorMatcher.isDistinguishable(Color.X, Color.Y))
708}
709</code></pre>
710