Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

All rules, listed in this document, supplement or override the rules of the Google Java Style Guide.

Table of Contents

Appendix A: Code Style

1 Formatting

1.1 Block indentation: +4 spaces

...

Java code has a column limit of 140 characters.

1.3 Horizontal alignment is disallowed

This rule overrides section 4.6.3 of Google Java Style Guide.

Alignment can aid readability, but it creates problems for future maintenance. So horizontal alignment is disallowed.

1.4 Punctuation

All natural language sentences must follow generally accepted punctuation rules. It also means that every sentence must end with dot (.), exclamation point (!) or question mark (?) depending on sentence semantics. This requirement applies to:

  • Code comments (JavaDoc and regular comments).
  • Any descriptive messages (for example metrics or JMX properties description).
  • Exception messages.
  • Log messages.
  • Console output.

Exclusions:

  • Titles of table rows/columns.
  • Content of table cells if this cell contains status enum-like value (e.g. status), numeric value, named value (e.g. entity name).
  • Header titles at any level (for example, documentation/comments).

2 Nullability annotation usages

...

Ignite 3 uses JetBrains nullability annotations. For the sake of code clarity, it is prohibited to use use @NotNull annotation, even if it compromises the completeness of the static analysis. However, it is required to use @Nullable in the following places:

...

There are multiple ways to annotate a Java array, which lead to different interpretation interpretations by the static analysis tool:

...

All these options will be set automatically , when importing inspections settings from the repository.

...

Based on this statement there are limited uses cases where var keyword is allowed. The var keyword is allowed only in cases where a right part of an assignment expression contains an explicit type of variable, that is for assignments of literals and the result of constructor invocation.

Allowed only for assignments of literals and , result of constructor invocation and explicit casts:

Code Block
languagejava
var i = 42;
var l = 42L;
var s = "Hello";
var list = new ArrayList<Integer>();
var t = (long) l;


Disallowed for all other cases:

Code Block
languagejava
var i = Integer.parseInt("42");
var s = "Hello".substring(0, 3);
var list = Arrays.asList(1, 2, 3);        
var map = getMapping(); // some method invocation
var val = map.get(42);


4 Async API Guidelines

4.1 All async methods should have async  suffix

Async method is a method that returns Future , CompletableFuture , or CompletionStage .

In some cases, both sync and async variants exist, and async  suffix is used to distinguish between them:

Code Block
languagejava
void upsert(@Nullable Transaction tx, R rec);

CompletableFuture<Void> upsertAsync(@Nullable Transaction tx, R rec);

In other cases, only async variant may be present, but it should have the async  suffix anyway.

4.2 Public APIs should return CompletableFuture - not CompletionStage 

Appendix B: Practices

1 Using Stream API

Historically Apache Ignite developers try to avoid redundant Java object instantiations due to the additional GC pressure. Of course, escape analysis exists but we can't trust this feature and should keep objects instantiation under control where it is possible and justified.

So it is recommended to avoid usage of Stream API at least on the hot code path.

2 Using 3rd party libraries

Using of 3rd party libraries in production code is prohibited. But there are some exceptions to this rule:

  • JUnit for tests
  • Netty
  • ScaleCube
  • Swagger annotations for Open API spec 
  • Micronaut as a REST implementation