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

Small rules refactoring #52

Merged
merged 1 commit into from
Dec 8, 2023
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: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2022 Ivan Kniazkov
Copyright (c) 2023 Ivan Kniazkov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--
The MIT License (MIT)

Copyright (c) 2022 Ivan Kniazkov
Copyright (c) 2023 Ivan Kniazkov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -149,12 +149,13 @@ SOFTWARE.
<plugin>
<groupId>org.cqfn</groupId>
<artifactId>astranaut-maven-plugin</artifactId>
<version>0.1.10</version>
<version>0.1.15</version>
<configuration>
<dsl>${basedir}/src/main/dsl/rules.dsl</dsl>
<dsl>${basedir}/src/main/dsl/uast.dsl</dsl>
<output>${basedir}/src/main/java</output>
<version>0.1</version>
<pkg>org.cqfn.uast.tree</pkg>
<dbginfo>true</dbginfo>
</configuration>
<executions>
<execution>
Expand All @@ -170,7 +171,7 @@ SOFTWARE.
<dependency>
<groupId>org.cqfn</groupId>
<artifactId>astranaut-core</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
160 changes: 105 additions & 55 deletions src/main/dsl/rules.dsl → src/main/dsl/uast.dsl
Original file line number Diff line number Diff line change
@@ -1,31 +1,107 @@
/*
The MIT License (MIT)

Copyright (c) 2023 Ivan Kniazkov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

/*
I. Unified AST description

1. Literals
*/

IntegerLiteral <- $int$, $String.valueOf(#)$, $Integer.parseInt(#)$, $NumberFormatException$;
Identifier <- $String$, $#$, $#$;
StringLiteral <- $String$, $#$, $#$;
Modifier <- $String$, $#$, $#$;
PrimitiveType <- $String$, $#$, $#$;

Name <- [composition@Name], last@Identifier;

/*
2. Program structure
*/

Program <- {ProgramItem};
ProgramItem <- ClassDeclaration | Statement | ClassItem;
ClassDeclaration <- [modifiers@ModifierBlock], name@Identifier, [extendsbl@ExtendsBlock], [implementsbl@ImplementsBlock], body@ClassBody;
ModifierBlock <- {Modifier};
Parameter <- [modifiers@ModifierBlock], [datatype@TypeName], name@Identifier;
ParameterBlock <- {Parameter};
ExtendsBlock <- {ClassType};
ImplementsBlock <- {ClassType};
ThrowsBlock <- {Exception};
ClassBody <- {ClassItem};
ClassItem <- FunctionDeclaration | FieldDeclaration;
FunctionDeclaration <- [modifiers@ModifierBlock], [datatype@TypeName], name@Identifier, parameters@ParameterBlock, [throwsbl@ThrowsBlock], body@StatementBlock;
FieldDeclaration <- [modifiers@ModifierBlock], [datatype@TypeName], declarators@DeclaratorList;
DeclaratorList <- {Declarator};
Declarator <- name@Identifier, [value@Expression];
Exception <- name@ClassType;

/*
3. Data types
*/

TypeName <- ArrayType | PrimitiveType | ClassType | VoidType;
ArrayType <- base@TypeName, dimensions@DimensionList;
ClassType <- name@Name;
VoidType <- 0;
DimensionList <- {Dimension};
Dimension <- [expression@Expression];

/*
4. Statements
*/

Statement <- Return | StatementBlock | VariableDeclaration | ExpressionStatement | IfElse;
Return <- [expression@Expression];
StatementBlock <- {Statement};
VariableDeclaration <- [modifiers@ModifierBlock], [datatype@TypeName], declarators@DeclaratorList;
ExpressionStatement <- expression@Expression;
IfElse <- condition@Expression, ifBranch@Statement, [elseBranch@Statement];

/*
5. Expressions
*/

ExpressionList <- {Expression};
Expression <- BinaryExpression | IntegerLiteral | This | StringLiteral | Identifier | NullLiteral
| FunctionCall | UnaryExpression | BitwiseExpression | LogicalExpression | AssignableExpression | Assignment
| ParenthesizedExpression | ObjectCreationExpression | ArrayInitializer;
ArithmeticExpression <- Addition | Subtraction | Multiplication | Division | Modulus;
BinaryExpression <- ArithmeticExpression | RelationalExpression;
RelationalExpression <- IsEqualTo | NotEqualTo | GreaterThan | LessThan | GreaterThanOrEqualTo | LessThanOrEqualTo;
Statement <- Return | StatementBlock | VariableDeclaration | ExpressionStatement | IfElse;
TypeName <- ArrayType | PrimitiveType | ClassType | VoidType;
UnaryExpression <- PreIncrement | PreDecrement | PostIncrement | PostDecrement | Positive | Negative;
BitwiseExpression <- BitwiseComplement | LeftShift | RightShift | UnsignedRightShift | BitwiseAnd | BitwiseOr | ExclusiveOr;
LogicalExpression <- LogicalAnd | LogicalOr | LogicalNot;
Assignment <- SimpleAssignment | AdditionAssignment | SubtractionAssignment | MultiplicationAssignment
| DivisionAssignment | ModulusAssignment | BitwiseAndAssignment | BitwiseOrAssignment | ExclusiveOrAssignment
| RightShiftAssignment | UnsignedRightShiftAssignment | LeftShiftAssignment;
AssignableExpression <- Variable | PropertyAccess;

ExpressionStatement <- expression@Expression;
ParenthesizedExpression <- expression@Expression;

This <- 0;
NullLiteral <- 0;

Addition <- left@Expression, right@Expression;
Subtraction <- left@Expression, right@Expression;
Multiplication <- left@Expression, right@Expression;
Expand Down Expand Up @@ -71,46 +147,28 @@ UnsignedRightShiftAssignment <- left@AssignableExpression, right@Expression;
RightShiftAssignment <- left@AssignableExpression, right@Expression;
LeftShiftAssignment <- left@AssignableExpression, right@Expression;

ClassType <- name@Name;
ArrayType <- base@TypeName, dimensions@DimensionList;
DimensionList <- {Dimension};
Dimension <- [expression@Expression];
Return <- [expression@Expression];
IfElse <- condition@Expression, ifbranch@Statement, [elsebranch@Statement];
Name <- [composition@Name], last@Identifier;
Variable <- Name;
StatementBlock <- {Statement};
This <- 0;
VoidType <- 0;
NullLiteral <- 0;
PropertyAccess <- left@Expression, right@Expression;
ModifierBlock <- {Modifier};
ExpressionList <- {Expression};
ArrayInitializer <- {Expression};
FunctionCall <- [owner@Name], name@Identifier, arguments@ExpressionList;
Parameter <- [modifiers@ModifierBlock], [datatype@TypeName], name@Identifier;
FunctionDeclaration <- [modifiers@ModifierBlock], [datatype@TypeName], name@Identifier, parameters@ParameterBlock, [throwsbl@ThrowsBlock], body@StatementBlock;
ParameterBlock <- {Parameter};
ClassDeclaration <- [modifiers@ModifierBlock], name@Identifier, [extendsbl@ExtendsBlock], [implementsbl@ImplementsBlock], body@ClassBody;
ExtendsBlock <- {ClassType};
ImplementsBlock <- {ClassType};
ThrowsBlock <- {Exception};
ClassBody <- {ClassItem};
ClassItem <- FunctionDeclaration | FieldDeclaration;
FieldDeclaration <- [modifiers@ModifierBlock], [datatype@TypeName], declarators@DeclaratorList;
VariableDeclaration <- [modifiers@ModifierBlock], [datatype@TypeName], declarators@DeclaratorList;
DeclaratorList <- {Declarator};
Declarator <- name@Identifier, [value@Expression];
Exception <- name@ClassType;
ObjectCreationExpression <- datatype@TypeName, [arguments@ExpressionList];
PropertyAccess <- left@Expression, right@Expression;
ArrayInitializer <- {Expression};

/*
II. Java

1. Red nodes
*/

java:

Synchronized <- expression@Expression, body@StatementBlock;
Statement <- & | Synchronized;

IntegerLiteralExpr<#1> -> IntegerLiteral<#1>;
/*
2. Transformation rules
*/

IntegerLiteralExpr<#1> -> IntegerLiteral<#1>;

EnclosedExpr(#1) -> ParenthesizedExpression(#1);

Expand Down Expand Up @@ -275,17 +333,11 @@ Modifier<#1> -> Modifier<#1>;
NullLiteralExpr -> NullLiteral;
IfStmt(#1, #2) -> IfElse(#1, #2);

// Arrays

ArrayType(#1) -> ArrayType(#1, DimensionList(Dimension));
ArrayInitializerExpr(#1...) -> ArrayInitializer(#1);

//

CompilationUnit(#1) -> Program(#1);

// Class declaration ClassDeclaration <- [ModifierBlock], Identifier, [ExtendsBlock], [ImplementsBlock], ClassBody;

ClassOrInterfaceDeclaration(Modifier#1, #2, InterfaceType(#3)) ->
ClassDeclaration(ModifierBlock(#1), #2, ImplementsBlock(ClassType(Name(#3))), ClassBody);

Expand All @@ -297,8 +349,6 @@ ClassOrInterfaceDeclaration(Modifier#1, #2, #3...) ->

ClassOrInterfaceDeclaration(#1, #2...) -> ClassDeclaration(#1, ClassBody(#2));

// Field and variable declaration

ObjectCreationExpr(#1) -> ObjectCreationExpression(#1);
ObjectCreationExpr(#1, #2...) -> ObjectCreationExpression(#1, ExpressionList(#2));

Expand All @@ -314,8 +364,6 @@ VariableDeclarationExpr(VariableDeclarator(#1, #2, #3)) -> VariableDeclaration(#
VariableDeclarationExpr(Modifier#3, VariableDeclarator(#1, #2)) -> VariableDeclaration(ModifierBlock(#3), #1, DeclaratorList(Declarator(#2)));
VariableDeclarationExpr(Modifier#4, VariableDeclarator(#1, #2, #3)) -> VariableDeclaration(ModifierBlock(#4), #1, DeclaratorList(Declarator(#2, #3)));

// Function declaration FunctionDeclaration <- [modifiers@ModifierBlock], [typename@TypeName], name@Identifier, parameters@ParameterBlock, body@StatementBlock;

MethodDeclaration(Modifier#1, #2, Parameter#3, #4, #5) ->
FunctionDeclaration(ModifierBlock(#1), #4, #2, ParameterBlock(#3), #5);
MethodDeclaration(Modifier#1, #2, Parameter#3, Exception#6, #4, #5) ->
Expand All @@ -324,18 +372,24 @@ MethodDeclaration(Modifier#1, #2, Parameter#3, Exception#6, #4, #5) ->
ConstructorDeclaration(Modifier#1, #2, Parameter#3, #4) ->
FunctionDeclaration(ModifierBlock(#1), #2, ParameterBlock(#3), #4);

/*
III. JavaScript

1. Red nodes
*/

js:

ClassItem <- & | Property;
Expression <- & | ObjectLiteral;
ObjectLiteral <- {Property};
// PropertyList <- {Property};
//ObjectLiteral <- 0;
Property <- name@Identifier, value@Expression;
Yield <- Expression;

// ObjectCreationExpr(#1, #2...) -> ObjectCreationExpression(#1, ExpressionList(#2));
// ObjectCreationExpression <- datatype@TypeName, [arguments@ExpressionList];
/*
2. Transformation rules
*/

propertyAssignment(propertyName(identifierName(#1)), #2) -> Property(#1, #2);
objectLiteral(#1...) -> ObjectLiteral(#1);
singleExpression(literal<"new">, Variable(#1), arguments(#2...)) ->
Expand Down Expand Up @@ -470,7 +524,6 @@ singleExpression(#1, literal<"--">) -> PostDecrement(#1);
singleExpression(literal<"-">, #1) -> Negative(#1);
singleExpression(literal<"+">, #1) -> Positive(#1);


identifier(literal<#1>) -> Identifier<#1>;

singleExpression(#1, literal<"=">, #2) -> SimpleAssignment(#1, #2);
Expand Down Expand Up @@ -517,8 +570,6 @@ program(sourceElements(#1...)) -> Program(#1);

returnStatement(literal<"return">, expressionSequence(#1)) -> Return(#1);

// Class declaration ClassDeclaration <- [ModifierBlock], Identifier, [ExtendsBlock], [ImplementsBlock], ClassBody;

classDeclaration(literal<"class">, #1, classTail(literal<"extends">, Variable(#2)))
-> ClassDeclaration(#1, ExtendsBlock(ClassType(#2)), ClassBody);
classDeclaration(literal<"class">, #1, classTail(#2, classElement(emptyStatement_)))
Expand All @@ -528,8 +579,6 @@ classDeclaration(literal<"class">, #1, classTail(#2...)) -> ClassDeclaration(#1,
classElement(propertyName(identifierName(#1)), literal<"=">, #2) -> Property(#1, #2);
classElement(#1) -> #1;

// Function declaration FunctionDeclaration <- [modifiers@ModifierBlock], [typename@TypeName], name@Identifier, parameters@ParameterBlock, body@StatementBlock;

functionBody(sourceElements(sourceElement(statement(expressionStatement(expressionSequence(#1)))))) ->
StatementBlock(#1);
functionBody(sourceElements(sourceElement(statement(#1)))) ->
Expand All @@ -547,6 +596,9 @@ methodDefinition(propertyName(identifierName(#1)), #2, #3) -> FunctionDeclarati
formalParameterArg(assignable(#1)) -> Parameter(#1);
formalParameterList(#1...) -> ParameterBlock(#1);

/*
IV. Python
*/

python:

Expand Down Expand Up @@ -656,8 +708,6 @@ file_input(#1, small_stmt(#2)) -> Program(#1, #2);

file_input(#1...) -> Program(#1);

// Class declaration ClassDeclaration <- [ModifierBlock], Identifier, [ExtendsBlock], [ImplementsBlock], ClassBody;

classdef(literal<"class">, name(literal<#1>), suite(small_stmt(literal<"pass">)))
-> ClassDeclaration(Identifier<#1>, ClassBody);

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/Main.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/algorithms/Algorithm.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/algorithms/Carrying.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/algorithms/Greening.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/algorithms/package-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/cli/AlgorithmConverter.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/cli/FileConverter.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cqfn/uast/cli/ImagePathValidator.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2022 Ivan Kniazkov
* Copyright (c) 2023 Ivan Kniazkov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading
Loading