io.shiftleft.codepropertygraph.generated.traversals.TraversalPropertyFullName.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codepropertygraph-domain-classes_3 Show documentation
Show all versions of codepropertygraph-domain-classes_3 Show documentation
codepropertygraph-domain-classes
package io.shiftleft.codepropertygraph.generated.traversals
import io.shiftleft.codepropertygraph.generated.nodes
import io.shiftleft.codepropertygraph.generated.accessors.languagebootstrap.*
final class TraversalPropertyFullName[NodeType <: nodes.StoredNode & nodes.StaticType[nodes.HasFullNameEMT]](
val traversal: Iterator[NodeType]
) extends AnyVal {
/** Traverse to fullName property */
def fullName: Iterator[String] =
traversal.map(_.fullName)
/** Traverse to nodes where the fullName matches the regular expression `value`
*/
def fullName(pattern: String): Iterator[NodeType] =
if (!flatgraph.misc.Regex.isRegex(pattern)) {
fullNameExact(pattern)
} else {
val matcher = flatgraph.misc.Regex.multilineMatcher(pattern)
traversal.filter { item => matcher.reset(item.fullName).matches }
}
/** Traverse to nodes where the fullName matches at least one of the regular expressions in `values`
*/
def fullName(patterns: String*): Iterator[NodeType] = {
val matchers = patterns.map(flatgraph.misc.Regex.multilineMatcher)
traversal.filter { item => matchers.exists { _.reset(item.fullName).matches } }
}
/** Traverse to nodes where fullName matches `value` exactly.
*/
def fullNameExact(value: String): Iterator[NodeType] = traversal match {
case init: flatgraph.misc.InitNodeIterator[flatgraph.GNode @unchecked] if init.isVirgin && init.hasNext =>
val someNode = init.next
flatgraph.Accessors
.getWithInverseIndex(someNode.graph, someNode.nodeKind, 22, value)
.asInstanceOf[Iterator[NodeType]]
case _ => traversal.filter { _.fullName == value }
}
/** Traverse to nodes where fullName matches one of the elements in `values` exactly.
*/
def fullNameExact(values: String*): Iterator[NodeType] =
if (values.length == 1) fullNameExact(values.head)
else {
val valueSet = values.toSet
traversal.filter { item => valueSet.contains(item.fullName) }
}
/** Traverse to nodes where fullName does not match the regular expression `value`.
*/
def fullNameNot(pattern: String): Iterator[NodeType] = {
if (!flatgraph.misc.Regex.isRegex(pattern)) {
traversal.filter { node => node.fullName != pattern }
} else {
val matcher = flatgraph.misc.Regex.multilineMatcher(pattern)
traversal.filterNot { item => matcher.reset(item.fullName).matches }
}
}
/** Traverse to nodes where fullName does not match any of the regular expressions in `values`.
*/
def fullNameNot(patterns: String*): Iterator[NodeType] = {
val matchers = patterns.map(flatgraph.misc.Regex.multilineMatcher)
traversal.filter { item => matchers.find { _.reset(item.fullName).matches }.isEmpty }
}
}