Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #629 about A7-1-7 #788

Merged
merged 3 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions change_notes/2024-10-30-fix-issue-629.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- `A7-1-7` - `IdentifierDeclarationAndInitializationNotOnSeparateLines.ql`
- Fixes #629. Adds brackets, excluding expressions statements in macros.
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,28 @@ import codingstandards.cpp.autosar
class UniqueLineStmt extends Locatable {
UniqueLineStmt() {
not isAffectedByMacro() and
exists(Declaration d |
this = d.getADeclarationEntry() and
not d instanceof Parameter and
not d instanceof TemplateParameter and
// TODO - Needs to be enhanced to solve issues with
// templated inner classes.
not d instanceof Function and
not d.isFromTemplateInstantiation(_) and
not d.(Variable).isCompilerGenerated() and
not exists(RangeBasedForStmt f | f.getADeclaration() = d) and
not exists(DeclStmt declStmt, ForStmt f |
f.getInitialization() = declStmt and
declStmt.getADeclaration() = d
) and
not exists(LambdaCapture lc | lc.getField().getADeclarationEntry() = this)
(
exists(Declaration d |
this = d.getADeclarationEntry() and
not d instanceof Parameter and
not d instanceof TemplateParameter and
// TODO - Needs to be enhanced to solve issues with
// templated inner classes.
not d instanceof Function and
not d.isFromTemplateInstantiation(_) and
not d.(Variable).isCompilerGenerated() and
not exists(RangeBasedForStmt f | f.getADeclaration() = d) and
not exists(DeclStmt declStmt, ForStmt f |
f.getInitialization() = declStmt and
declStmt.getADeclaration() = d
) and
not exists(LambdaCapture lc | lc.getField().getADeclarationEntry() = this)
)
or
this instanceof ExprStmt and
not exists(ForStmt f | f.getInitialization().getAChild*() = this) and
not exists(LambdaExpression l | l.getLambdaFunction().getBlock().getAChild*() = this)
)
or
this instanceof ExprStmt and
not exists(ForStmt f | f.getInitialization().getAChild*() = this) and
not exists(LambdaExpression l | l.getLambdaFunction().getBlock().getAChild*() = this)
}
}

Expand Down
12 changes: 11 additions & 1 deletion cpp/autosar/test/rules/A7-1-7/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,14 @@ void example_function() { f1(); } // COMPLIANT

// clang-format off
typedef struct x { int y; } z; //COMPLIANT - for struct typedef and struct var //NON_COMPLIANT - for struct all on one line
// clang-format on
// clang-format on

#define foo(x, y) \
x++; \
y++;

void test_foo() {
int a = 1;
int b = 1;
foo(a, b); // COMPLIANT
}
Loading