-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Converting first set of graph nodes to Kotlin (#845)
- Loading branch information
Showing
20 changed files
with
566 additions
and
674 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 0 additions & 85 deletions
85
cpg-core/src/main/java/de/fraunhofer/aisec/cpg/graph/declarations/DeclarationSequence.java
This file was deleted.
Oops, something went wrong.
69 changes: 69 additions & 0 deletions
69
cpg-core/src/main/java/de/fraunhofer/aisec/cpg/graph/declarations/DeclarationSequence.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright (c) 2020, Fraunhofer AISEC. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* $$$$$$\ $$$$$$$\ $$$$$$\ | ||
* $$ __$$\ $$ __$$\ $$ __$$\ | ||
* $$ / \__|$$ | $$ |$$ / \__| | ||
* $$ | $$$$$$$ |$$ |$$$$\ | ||
* $$ | $$ ____/ $$ |\_$$ | | ||
* $$ | $$\ $$ | $$ | $$ | | ||
* \$$$$$ |$$ | \$$$$$ | | ||
* \______/ \__| \______/ | ||
* | ||
*/ | ||
package de.fraunhofer.aisec.cpg.graph.declarations | ||
|
||
import de.fraunhofer.aisec.cpg.graph.DeclarationHolder | ||
import de.fraunhofer.aisec.cpg.graph.edge.PropertyEdge | ||
import de.fraunhofer.aisec.cpg.graph.edge.PropertyEdgeDelegate | ||
import org.neo4j.ogm.annotation.Relationship | ||
|
||
/** | ||
* This represents a sequence of one or more declaration(s). The purpose of this node is primarily | ||
* to bridge between a single declaration and a list of declarations in the front-end handlers. It | ||
* will be converted into a list-structure and all its children will be added to the parent, i.e. | ||
* the translation unit. It should NOT end up in the final graph. | ||
*/ | ||
class DeclarationSequence : Declaration(), DeclarationHolder { | ||
@Relationship(value = "CHILDREN", direction = Relationship.OUTGOING) | ||
val childrenPropertyEdge: MutableList<PropertyEdge<Declaration>> = mutableListOf() | ||
|
||
val children: List<Declaration> by | ||
PropertyEdgeDelegate(DeclarationSequence::childrenPropertyEdge) | ||
|
||
override fun addDeclaration(declaration: Declaration) { | ||
if (declaration is DeclarationSequence) { | ||
for (declarationChild in declaration.children) { | ||
addIfNotContains(childrenPropertyEdge, declarationChild) | ||
} | ||
} | ||
addIfNotContains(childrenPropertyEdge, declaration) | ||
} | ||
|
||
fun asList(): List<Declaration> { | ||
return children | ||
} | ||
|
||
val isSingle: Boolean | ||
get() = childrenPropertyEdge.size == 1 | ||
|
||
fun first(): Declaration { | ||
return childrenPropertyEdge[0].end | ||
} | ||
|
||
override fun getDeclarations(): List<Declaration> { | ||
return children | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.