Skip to content
Open
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
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
id("datadog.dependency-locking")
id("datadog.tracer-version")
id("datadog.dump-hanged-test")
id("config-inversion-linter")

id("com.diffplug.spotless") version "6.13.0"
id("com.github.spotbugs") version "5.0.14"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class ConfigInversionLinter : Plugin<Project> {
val extension = target.extensions.create("supportedTracerConfigurations", SupportedTracerConfigurations::class.java)
registerLogEnvVarUsages(target, extension)
registerCheckEnvironmentVariablesUsage(target)
registerCheckConfigStringsTask(target, extension)
}
}

Expand Down Expand Up @@ -124,3 +125,122 @@ private fun registerCheckEnvironmentVariablesUsage(project: Project) {
}
}
}

/** Registers `checkConfigStrings` to validate config definitions against documented supported configurations. */
private fun registerCheckConfigStringsTask(project: Project, extension: SupportedTracerConfigurations) {
val ownerPath = extension.configOwnerPath
val generatedFile = extension.className

project.tasks.register("checkConfigStrings") {
group = "verification"
description = "Validates that all config definitions in `dd-trace-api/src/main/java/datadog/trace/api/config` exist in `metadata/supported-configurations.json`"

val mainSourceSetOutput = ownerPath.map {
project.project(it)
.extensions.getByType<SourceSetContainer>()
.named(SourceSet.MAIN_SOURCE_SET_NAME)
.map { main -> main.output }
}
inputs.files(mainSourceSetOutput)

doLast {
val repoRoot: Path = project.rootProject.projectDir.toPath()
val configDir = repoRoot.resolve("dd-trace-api/src/main/java/datadog/trace/api/config").toFile()

if (!configDir.exists()) {
throw GradleException("Config directory not found: ${configDir.absolutePath}")
}

val urls = mainSourceSetOutput.get().get().files.map { it.toURI().toURL() }.toTypedArray()
val (supported, aliasMapping) = URLClassLoader(urls, javaClass.classLoader).use { cl ->
val clazz = Class.forName(generatedFile.get(), true, cl)
@Suppress("UNCHECKED_CAST")
val supportedSet = clazz.getField("SUPPORTED").get(null) as Set<String>
@Suppress("UNCHECKED_CAST")
val aliasMappingMap = clazz.getField("ALIAS_MAPPING").get(null) as Map<String, String>
Pair(supportedSet, aliasMappingMap)
}

// Single-line: `public static final String FIELD_NAME = "value";`
val singleLineRegex = Regex("""public static final String (\w+) = "([^"]+)";""")
// Multi-line start: `public static final String FIELD_NAME =`
val multiLineStartRegex = Regex("""public static final String (\w+) =$""")
// Multi-line value: `"value";`
val valueLineRegex = Regex(""""([^"]+)";""")

val violations = buildList {
configDir.listFiles()?.forEach { file ->
var inBlockComment = false
val lines = file.readLines()
var i = 0
while (i < lines.size) {
val line = lines[i]
val trimmed = line.trim()

if (trimmed.startsWith("//")) {
i++
continue
}
if (!inBlockComment && trimmed.contains("/*")) inBlockComment = true
if (inBlockComment) {
if (trimmed.contains("*/")) inBlockComment = false
i++
continue
}

// Try single-line pattern first
val singleLineMatch = singleLineRegex.find(line)
if (singleLineMatch != null) {
val fieldName = singleLineMatch.groupValues[1]
val configValue = singleLineMatch.groupValues[2]

// Skip fields that end with _DEFAULT (default values defined in ProfilingConfig.java only)
if (!fieldName.endsWith("_DEFAULT")) {
val normalized = "DD_" + configValue.uppercase()
.replace("-", "_")
.replace(".", "_")

if (normalized !in supported && normalized !in aliasMapping) {
add("${file.name}:${i + 1} -> Config '$configValue' normalizes to '$normalized' which is not in supported-configurations.json")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be helpful to add another sentence explicitly recommending how to fix the error (and ~line 222). Perhaps something along the lines of "Please add the '$configValue' config to supported-configurations.json in or remove the config. More details in ."

}
}
} else {
val multiLineMatch = multiLineStartRegex.find(line)
if (multiLineMatch != null) {
val fieldName = multiLineMatch.groupValues[1]
if (!fieldName.endsWith("_DEFAULT")) {
var j = i + 1
while (j < lines.size) {
val nextLine = lines[j].trim()
val valueMatch = valueLineRegex.find(nextLine)
if (valueMatch != null) {
val configValue = valueMatch.groupValues[1]
val normalized = "DD_" + configValue.uppercase()
.replace("-", "_")
.replace(".", "_")
if (normalized !in supported && normalized !in aliasMapping) {
add("${file.name}:${i + 1} -> Config '$configValue' normalizes to '$normalized' " +
"which is not in supported-configurations.json")
}
break
}
j++
}
}
}
}
i++
}
}
}

if (violations.isNotEmpty()) {
project.logger.lifecycle("\nFound config definitions not in supported-configurations.json:")
violations.forEach { project.logger.lifecycle(it) }
throw GradleException("Config strings validation failed. See errors above.")
} else {
project.logger.info("All config strings are present in supported-configurations.json.")
}
}
}
}
1 change: 1 addition & 0 deletions metadata/supported-configurations.json
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@
"DD_PROFILING_EXPERIMENTAL_DDPROF_SCHEDULING_EVENT": ["A"],
"DD_PROFILING_EXPERIMENTAL_DDPROF_SCHEDULING_EVENT_INTERVAL": ["A"],
"DD_PROFILING_EXPERIMENTAL_DDPROF_WALL_JVMTI": ["A"],
"DD_PROFILING_EXPERIMENTAL_PROCESS_CONTEXT_ENABLED": ["A"],
"DD_PROFILING_HEAP_ENABLED": ["A"],
"DD_PROFILING_HEAP_HISTOGRAM_ENABLED": ["A"],
"DD_PROFILING_HEAP_HISTOGRAM_MODE": ["A"],
Expand Down
Loading