All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.joern.c2cpg.Main.scala Maven / Gradle / Ivy
package io.joern.c2cpg
import io.joern.c2cpg.Frontend.*
import io.joern.x2cpg.{X2CpgConfig, X2CpgMain}
import io.joern.x2cpg.utils.server.FrontendHTTPServer
import org.slf4j.LoggerFactory
import scopt.OParser
final case class Config(
includePaths: Set[String] = Set.empty,
defines: Set[String] = Set.empty,
includeComments: Boolean = false,
logProblems: Boolean = false,
logPreprocessor: Boolean = false,
printIfDefsOnly: Boolean = false,
includePathsAutoDiscovery: Boolean = false,
skipFunctionBodies: Boolean = false,
noImageLocations: Boolean = false,
withPreprocessedFiles: Boolean = false
) extends X2CpgConfig[Config] {
def withIncludePaths(includePaths: Set[String]): Config = {
this.copy(includePaths = includePaths).withInheritedFields(this)
}
def withDefines(defines: Set[String]): Config = {
this.copy(defines = defines).withInheritedFields(this)
}
def withIncludeComments(value: Boolean): Config = {
this.copy(includeComments = value).withInheritedFields(this)
}
def withLogProblems(value: Boolean): Config = {
this.copy(logProblems = value).withInheritedFields(this)
}
def withLogPreprocessor(value: Boolean): Config = {
this.copy(logPreprocessor = value).withInheritedFields(this)
}
def withPrintIfDefsOnly(value: Boolean): Config = {
this.copy(printIfDefsOnly = value).withInheritedFields(this)
}
def withIncludePathsAutoDiscovery(value: Boolean): Config = {
this.copy(includePathsAutoDiscovery = value).withInheritedFields(this)
}
def withSkipFunctionBodies(value: Boolean): Config = {
this.copy(skipFunctionBodies = value).withInheritedFields(this)
}
def withNoImageLocations(value: Boolean): Config = {
this.copy(noImageLocations = value).withInheritedFields(this)
}
def withPreprocessedFiles(value: Boolean): Config = {
this.copy(withPreprocessedFiles = value).withInheritedFields(this)
}
}
private object Frontend {
implicit val defaultConfig: Config = Config()
val cmdLineParser: OParser[Unit, Config] = {
val builder = OParser.builder[Config]
import builder._
OParser.sequence(
programName(classOf[C2Cpg].getSimpleName),
opt[Unit]("include-comments")
.text(s"includes all comments into the CPG")
.action((_, c) => c.withIncludeComments(true)),
opt[Unit]("log-problems")
.text(s"enables logging of all parse problems while generating the CPG")
.action((_, c) => c.withLogProblems(true)),
opt[Unit]("log-preprocessor")
.text(s"enables logging of all preprocessor statements while generating the CPG")
.action((_, c) => c.withLogPreprocessor(true)),
opt[Unit]("print-ifdef-only")
.text(s"prints a comma-separated list of all preprocessor ifdef and if statements; does not create a CPG")
.action((_, c) => c.withPrintIfDefsOnly(true)),
opt[String]("include")
.unbounded()
.text("header include paths")
.action((incl, c) => c.withIncludePaths(c.includePaths + incl)),
opt[Unit]("no-include-auto-discovery")
.text("disables auto discovery of system header include paths")
.hidden(),
opt[Unit]("with-include-auto-discovery")
.text("enables auto discovery of system header include paths")
.action((_, c) => c.withIncludePathsAutoDiscovery(true)),
opt[Unit]("skip-function-bodies")
.text("instructs the parser to skip function and method bodies.")
.action((_, c) => c.withSkipFunctionBodies(true)),
opt[Unit]("no-image-locations")
.text(
"performance optimization, allows the parser not to create image-locations. An image location explains how a name made it into the translation unit. Eg: via macro expansion or preprocessor."
)
.action((_, c) => c.withNoImageLocations(true)),
opt[Unit]("with-preprocessed-files")
.text("includes *.i files and gives them priority over their unprocessed origin source files.")
.action((_, c) => c.withPreprocessedFiles(true)),
opt[String]("define")
.unbounded()
.text("define a name")
.action((d, c) => c.withDefines(c.defines + d))
)
}
}
object Main extends X2CpgMain(cmdLineParser, new C2Cpg()) with FrontendHTTPServer[Config, C2Cpg] {
override protected def newDefaultConfig(): Config = Config()
override def run(config: Config, c2cpg: C2Cpg): Unit = {
config match {
case c if c.serverMode => startup(config)
case c if c.printIfDefsOnly => c2cpg.printIfDefsOnly(config)
case _ => c2cpg.run(config)
}
}
}