2023-09-01
世界上本来就有许多格格不入的事物为了共存而不得不相互接受。——博尔赫斯《沙之书》
最近在为streampark起草代码规范指南,对应的pr如下
https://github.com/apache/incubator-streampark-website/pull/226
对应的内容:
1 | |
1 Pull Requests & Changes Rule
-
ISSUE/PR(pull request) driving and naming-
Ensure that
PRcorresponds toISSUE.Note:
Hotfixissue does not need to follow this rule, such as fixing spelling errors inJavaDocordocumentfiles. -
Title naming format
When namingPR, you can refer to the[ISSUE-XXXX][Feature/Improve/Refactor/Bug/Cleanup] Titleof the pull request,
whereISSUE-XXXXshould be replaced with the actualISSUEnumber.- The second part describes the type of
PR, such as new features, improvement, refactor, etc. - If all changes to
PRare within a certain module or component, they can be indicated in the commit message.
- The second part describes the type of
-
-
Description
- Please fill in the
PRtemplate to describe the contribution. So that the reviewer can understand the problem and solution from the description, rather than just from the code. - Ensure that the description is sufficient to illustrate the problem addressed by the
PR. - Small changes do not require too much description.
- In an ideal scenario, the problem is described in
ISSUE, and most of the description is copied from there.
- Please fill in the
-
Try to break down changes into pure types of changes
- It’s recommended that
PRshould be arranged changes such asCleanup,Refactor,Improve, andFeatureinto separatedPRs/Commits. - In this way, the reviewers can independently view cleaning and refactoring, and ensure that these changes do not change behavior.
- Then, the reviewer can independently review the core changes and ensure that they are a clean and robust change.
- In extreme cases, if a rollback commit is required, it can provide the optimal granularity for version rollback selection.
- In addition, significant contributions should be split into a set of independent changes that can be reviewed independently.
- It’s recommended that
-
Commit message
The commit of messages should follow a pattern similar to thePR:[ISSUE-XXXX][Feature/Improve/Refactor/Cleanup] Title of the pull request.[ISSUE-xxxx1][Improve(ment)] Improve ...[ISSUE-xxxx2][Refactor] Refactor ...[ISSUE-xxxx3][Feature] Support ...[ISSUE-xxxx4][Bug] Fix ...[ISSUE-xxxx5][Feature][subtask] Support ...[Hotfix][module_name] Fix xxx comments ...
Note: Try to use git history instead of annotated code (not mandatory)
2 Code Checkstyle
-
Backend code formatting Maven plugin:
spotless
Just runmvn spotless:applyin the project repo root directory after installing the plugin. -
Backend code specification Maven plugin:
checkstyle
Just runmvn checkstyle:checkstyleafter installing the plugin. -
Frontend code formatting plugin
eslint- The original command is
npx eslint --cache --max-warnings 0 "{src,mock}/**/*.{vue,ts,tsx}" --fix - Encapsulated as
npm run lint:eslint
- The original command is
3 Programming Specification
3.1 Naming Style
-
Prioritize selecting nouns for variable naming, it’s easier to distinguish between
variablesormethods.1
Cache<String> publicKeyCache; -
Pinyin abbreviations are prohibited for variables (excluding nouns such as place names), such as chengdu.
-
It is recommended to end variable names with a
type.
For variables of typeCollection/List, takexxxx(plural representing multiple elements) or end withxxxList(specific type).
For variables of typemap, describe thekeyandvalueclearly:1
2Map<Long, User> idUserMap;
Map<Long, String> userIdNameMap; -
That can intuitively know the type and meaning of the variable through its name.
Method names should start with a verb first as follows:1
void computeVcores(Object parameter1); -
The methods name of basic
CRUDof the database layer (non-service layer) should be uniformly standardized according to namecom.baomidou.mybatisplus.core.mapper.BaseMapper:If perform a database select operation, the name of the method should be started with
select.For example,
selectById,selectByXxx,selectPageByXxx- If perform a database update statement operation, the name of the method should be started with
update - If perform a database insert statement operation, the name of the method should be started with
insert - If perform a database delete statement operation, the name of the method should be started with
delete
- If perform a database update statement operation, the name of the method should be started with
-
The methods name of basic
CRUDof the service layer should be named ascom.baomidou.mybatisplus.extension.service.IService:- If perform a database select operation to query multiple records, the name of the method should be started with a
list, such aslistByIds,listByXxx - If perform a database select operation to query a single record, the name of the method should be started with get, such as
getByNameandgetOne - If perform a database update operation, the name of the method should be started with
update - If perform a database insert operation, the name of the method should be started with
save - If perform a database delete operation, the name of the method should be started with
remove
- If perform a database select operation to query multiple records, the name of the method should be started with a
3.2 Constant Variables Definition
-
Set the
serialVersionUIDof all classes to1L, followingFlink’sserialVersionUID.-
Negative demo:
1
private static final long serialVersionUID = -8713837118340960775L; -
Positive demo:
1
private static final long serialVersionUID = 1L;
-
-
Redundant strings should be extracted as constants
-
Negative demo:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15public static RestResponse success(Object data) {
RestResponse resp = new RestResponse();
resp.put("status", "success");
resp.put("code", ResponseCode.CODE_SUCCESS);
resp.put("data", data);
return resp;
}
public static RestResponse error() {
RestResponse resp = new RestResponse();
resp.put("status", "error");
resp.put("code", ResponseCode.CODE_FAIL);
resp.put("data", null);
return resp;
} -
Positive demo:
Strings are extracted as constant references.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21public static final String STATUS_SUCCESS = "success";
public static final String STATUS_FAIL = "error";
public static final String STATUS = "status";
public static final String CODE = "code";
public static final String DATA = "data";
public static RestResponse success(Object data) {
RestResponse resp = new RestResponse();
resp.put(STATUS, STATUS_SUCCESS);
resp.put(CODE, ResponseCode.CODE_SUCCESS);
resp.put(DATA, data);
return resp;
}
public static RestResponse error() {
RestResponse resp = new RestResponse();
resp.put(STATUS, STATUS_FAIL);
resp.put(CODE, ResponseCode.CODE_FAIL);
resp.put(DATA, null);
return resp;
}
-
-
Variables that have not been reassigned must also be declared as final types.
3.3 Methods Rule
-
Sort the methods in the class in the order of
public,protected, andprivate -
When there are restrictions on the method, the parameters and returned values of the method need to be annotated with
@Nonnullor@Nullableannotations and constraints.For example, if the parameter cannot be null, it is best to add a
@Nonnullannotation. If the returned value can be null, the@Nullableannotation should be added first.Note: that the package name is
javax.validation.requirements -
If there are too many lines of code in the method, please have a try on using multiple sub methods at appropriate points to segment the method body.
Generally speaking, it needs to adhere to the following principles:
- Convenient testing
- Good semantics
- Easy to read
In addition, it is also necessary to consider whether the splitting is reasonable in terms of components, logic, abstraction, and other aspects in the scenario.
However, there is currently no clear definition of demo. During the evolution process, we will provide additional examples for developers to have a clearer reference and understanding.
3.4 Collection Rule
-
For
collectionreturned values, unless there are specialconcurrent(such as thread safety), always return theinterface, such as:- returns List if use
ArrayList - returns Map if use
HashMap - returns Set if use
HashSet
- returns List if use
-
If there are multiple threads, the following declaration or returned types can be used:
1
2private CurrentHashMap map;
public CurrentHashMap funName();
3.5 Concurrent Processing
-
The
thread poolneeds to be managed, using a unified entry point to obtain thethread pool.Note: During the evolution process, we will provide additional examples for developers to have a clearer reference and understanding.
-
Thread poolneeds to be resource constrained to prevent resource leakage caused by improper handling
3.6 Control/Condition Statements
-
Avoid unreasonable
condition/controlbranches order leads to:- Multiple code line
depthsofn+1 - Redundant lines
- Multiple code line
Generally speaking, if a method’s code line depth exceeds 2+ Tabs due to continuous nested if... else.., it should be considered to try
merging branches,inverting branch conditionsextracting private methods
to reduce code line depth and improve readability like follows:
-
Union or merge the logic into the next level calling
-
Negative demo:
1
2
3
4
5if (isInsert) {
save(platform);
} else {
updateById(platform);
} -
Positive demo:
1
saveOrUpdate(platform);
-
-
Merge the conditions
-
Negative demo:
1
2
3
4
5if (expression1) {
if(expression2) {
......
}
}-
Positive demo:
1
2
3if (expression1 && expression2) {
......
}
-
-
-
Reverse the condition
-
Negative demo:
1
2
3
4
5
6
7
8
9public void doSomething() {
// Ignored more deeper block lines
// .....
if (condition1) {
...
} else {
...
}
} -
Positive demo:
1
2
3
4
5
6
7
8
9public void doSomething() {
// Ignored more deeper block lines
// .....
if (!condition1) {
...
return;
}
// ...
}
-
-
Using a single variable or method to reduce the complex conditional expression
-
Negative demo:
1
2
3if (dbType.indexOf("sqlserver") >= 0 || dbType.indexOf("sql server") >= 0) {
...
} -
Positive demo:
1
2
3
4
5if (containsSqlServer(dbType)) {
....
}
//.....
// definition of the containsSqlServer
-
Using
sonarlintandbetter highlightsto check code depth looks like good in the future.
3.7 Code Comments Rule
-
Method lacks comments:
When: When can the method be calledHow: How to use this method and how to pass parameters, etc.What: What functions does this method achieveNote: What should developers pay attention to when calling this method
-
Missing necessary class header description comments.
Add
What,Note, etc. like mentioned in the1. -
The method declaration in the interface must be annotated.
-
If the semantics of the implementation and the annotation content at the interface declaration are inconsistent, the specific implementation method also needs to be rewritten with annotations.
-
If the semantics of the method implementation are consistent with the annotation content at the interface declaration, it is not recommended to write annotations to avoid duplicate annotations.
-
3.8 Java Lambdas
-
Prefer
non-capturinglambdas (lambdas that do not contain references to the outer scope).
Capturing lambdas need to create a new object instance for every call.Non-capturinglambdas can use the same instance for each invocation.-
Negative demo:
1
map.computeIfAbsent(key, x -> key.toLowerCase()) -
Positive demo:
1
map.computeIfAbsent(key, k -> k.toLowerCase());
-
-
Consider method references instead of inline lambdas
-
Negative demo:
1
map.computeIfAbsent(key, k-> Loader.load(k)); -
Positive demo:
1
map.computeIfAbsent(key, Loader::load);
-
3.9 Java Streams
-
Avoid Java Streams in any performance critical code.
-
The main motivation to use Java Streams would be to improve code readability. As such, they can be a good match in parts of the code that are not data-intensive, but deal with coordination.
-
Even in the latter case, try to limit the scope to a method, or a few private methods within an internal class.
3.10 Pre-Conditions Checking
- Use a unified
Utils.requireXXXto complete the validation of the prerequisite, and if possible, replace theAlertXXException.throwIfXXXby new pre-conditions checking.
4 Exception Processing
This streampark-console-service module is the core module for processing user requests.
It’s very necessary to strive to provide the best user experience.
So, we introduced the AbstractApiException
and its subclasses to get more friendly interaction effect. Non-AbstractApiException is treated as internal server errors correspondingly, which needn’t notify the interaction details to users.
Based on the above premise, we need to pay attention to the handling of AbstractApiException.
For example, we should throw an exception by one of followed subclasses of AbstractApiException when processing logic with the user operation errors or missing data errors:
-
An exception message that needs to be notified to front-end, is a detailed exception message, such as the stackTrace info, often accompanied by a large number of exception logs,
e.g:Failed to start job, need to display the exception(stackTrace info) to front-end. -
An exception message that needs to be notified to front-end, usually a simple, clear message, e.g:
- Username already exists
- No permission, please contact the administrator
- …
-
An exception message that needs to be notified to front-end when processing alert logic.
-
Or others exceptions used to get fine users interaction.
In addition to handling the classification of exceptions, we’d better make the precise and concise exception message and try to ensure the follows in the exception:
- Display the current status of the abnormal case.
- Display the solutions to the abnormal case.
- Or others informations fit the pretty interaction.
Please click Issue-2325 for more details about the items if needed.
5 Log
-
Use
placeholdersfor log output:-
Negative demo
1
log.info("Deploy cluster request " + deployRequest); -
Positive demo
1
log.info("load plugin:{} to {}", file.getName(), appPlugins);
-
-
Pay attention to the selection of
log levelwhen printing logsWhen printing the log content, if the actual parameters of the log placeholder are passed, it is necessary to avoid premature evaluation to avoid unnecessary evaluation caused by the log level.
-
Negative demo:
Assuming the current log level is
INFO:1
2
3// ignored declaration lines.
List<User> userList = getUsersByBatch(1000);
LOG.debug("All users: {}", getAllUserIds(userList)); -
Positive demo:
In this case, we should determine the log level in advance before making actual log calls as follows:
1
2
3
4
5// ignored declaration lines.
List<User> userList = getUsersByBatch(1000);
if (LOG.isDebugEnabled()) {
LOG.debug("All ids of users: {}", getAllIDsOfUsers(userList));
}
-
6 Testing
-
For some of the
code/variablesused fortesting, you can use@VisableForTestingannotation to indicate that -
It’s recommended to use
JUnit5to develop test case preparation -
Using
AssertJto develop assertions statements. -
About the implementation of tests.
-
If the test case only tests an
independentclass or method that does not require external components such as hadoop,
remote flink session cluster, etc., it can be written directly usingJUnit5&Mockito. -
If the test case needs a
real database, environment or backend environment,
but doesn’t need to interact with external components, it’s recommended to inherit directly fromSpringUnitTestBase. -
If the test case requires
a real database, environmentorbackend environment,
but needs tointeract with external components(Remote Flink session cluster,Hadoop cluster),
it’s recommended to write the test case by directly inheritingSpringIntegrationTestBase.
-
-
It’s only recommended to use integration tests on critical test links to avoid making the
CIoverhead time too long and the resource load too heavy.