de.fraunhofer.aisec.cpg.graph.DeclarationHolder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cpg-core Show documentation
Show all versions of cpg-core Show documentation
A simple library to extract a code property graph out of source code. It has support for multiple passes that can extend the analysis after the graph is constructed.
/*
* Copyright (c) 2019, 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
import de.fraunhofer.aisec.cpg.graph.declarations.Declaration
import de.fraunhofer.aisec.cpg.graph.edge.Properties
import de.fraunhofer.aisec.cpg.graph.edge.PropertyEdge
interface DeclarationHolder {
/**
* Adds the specified declaration to this declaration holder. Ideally, the declaration holder
* should use the [addIfNotContains] method to consistently add declarations.
*
* @param declaration the declaration
*/
fun addDeclaration(declaration: Declaration)
fun addIfNotContains(collection: MutableCollection, declaration: T) {
if (!collection.contains(declaration)) {
collection.add(declaration)
}
}
fun addIfNotContains(
collection: MutableCollection>,
declaration: T
) {
addIfNotContains(collection, declaration, true)
}
/**
* Adds a declaration to a collection of property edges, which contain the declarations
*
* @param collection the collection
* @param declaration the declaration
* @param the type of the declaration
* @param outgoing whether the property is outgoing
*/
fun addIfNotContains(
collection: MutableCollection>,
declaration: T,
outgoing: Boolean
) {
// create a new property edge
val propertyEdge =
if (outgoing) PropertyEdge(this as Node, declaration)
else PropertyEdge(declaration, this as T)
// set the index property
propertyEdge.addProperty(Properties.INDEX, collection.size)
var contains = false
for (element in collection) {
if (element.end == propertyEdge.end) {
contains = true
break
}
}
if (!contains) {
collection.add(propertyEdge)
}
}
val declarations: List
}