Add yourKit profiler to perfTests
This commit is contained in:
@@ -67,7 +67,14 @@ javadocJar()
|
|||||||
apply(from = "$rootDir/gradle/kotlinPluginPublication.gradle.kts")
|
apply(from = "$rootDir/gradle/kotlinPluginPublication.gradle.kts")
|
||||||
|
|
||||||
projectTest(taskName = "performanceTest") {
|
projectTest(taskName = "performanceTest") {
|
||||||
classpath += files("${System.getenv("ASYNC_PROFILER_HOME")}/build/async-profiler.jar")
|
val currentOs = org.gradle.internal.os.OperatingSystem.current()
|
||||||
|
|
||||||
|
if (!currentOs.isWindows) {
|
||||||
|
System.getenv("ASYNC_PROFILER_HOME")?.let { asyncProfilerHome ->
|
||||||
|
classpath += files("$asyncProfilerHome/build/async-profiler.jar")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
workingDir = rootDir
|
workingDir = rootDir
|
||||||
|
|
||||||
jvmArgs?.removeAll { it.startsWith("-Xmx") }
|
jvmArgs?.removeAll { it.startsWith("-Xmx") }
|
||||||
@@ -81,6 +88,19 @@ projectTest(taskName = "performanceTest") {
|
|||||||
"-XX:+UseConcMarkSweepGC"
|
"-XX:+UseConcMarkSweepGC"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
System.getenv("YOURKIT_PROFILER_HOME")?.let {yourKitHome ->
|
||||||
|
when {
|
||||||
|
currentOs.isLinux -> {
|
||||||
|
jvmArgs("-agentpath:$yourKitHome/bin/linux-x86-64/libyjpagent.so")
|
||||||
|
classpath += files("$yourKitHome/lib/yjp-controller-api-redist.jar")
|
||||||
|
}
|
||||||
|
currentOs.isMacOsX -> {
|
||||||
|
jvmArgs("-agentpath:$yourKitHome/Contents/Resources/bin/mac/libyjpagent.dylib")
|
||||||
|
classpath += files("$yourKitHome/Contents/Resources/lib/yjp-controller-api-redist.jar")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
doFirst {
|
doFirst {
|
||||||
systemProperty("idea.home.path", intellijRootDir().canonicalPath)
|
systemProperty("idea.home.path", intellijRootDir().canonicalPath)
|
||||||
project.findProperty("cacheRedirectorEnabled")?.let {
|
project.findProperty("cacheRedirectorEnabled")?.let {
|
||||||
|
|||||||
+24
-15
@@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
package org.jetbrains.kotlin.idea.perf.profilers
|
package org.jetbrains.kotlin.idea.perf.profilers
|
||||||
|
|
||||||
import com.intellij.openapi.util.SystemInfo
|
|
||||||
import org.jetbrains.kotlin.idea.perf.profilers.async.AsyncProfilerHandler
|
import org.jetbrains.kotlin.idea.perf.profilers.async.AsyncProfilerHandler
|
||||||
|
import org.jetbrains.kotlin.idea.perf.profilers.yk.YKProfilerHandler
|
||||||
import org.jetbrains.kotlin.idea.testFramework.logMessage
|
import org.jetbrains.kotlin.idea.testFramework.logMessage
|
||||||
|
|
||||||
interface ProfilerHandler {
|
interface ProfilerHandler {
|
||||||
@@ -19,21 +19,13 @@ interface ProfilerHandler {
|
|||||||
|
|
||||||
@Synchronized
|
@Synchronized
|
||||||
fun getInstance(): ProfilerHandler {
|
fun getInstance(): ProfilerHandler {
|
||||||
if (instance == null) {
|
return instance ?: run {
|
||||||
if (!SystemInfo.isWindows) {
|
val handler =
|
||||||
try {
|
doOrLog("asyncProfiler not found") { AsyncProfilerHandler() }
|
||||||
instance = AsyncProfilerHandler()
|
?: doOrLog("yourKit not found") { YKProfilerHandler() } ?: DummyProfilerHandler
|
||||||
} catch (e: Throwable) {
|
instance = handler
|
||||||
logMessage { "asyncProfiler not found" }
|
return handler
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (instance == null) {
|
|
||||||
// fallback to dummy
|
|
||||||
instance = DummyProfilerHandler
|
|
||||||
}
|
|
||||||
return instance!!
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -43,4 +35,21 @@ object DummyProfilerHandler : ProfilerHandler {
|
|||||||
override fun startProfiling(activityName: String, options: List<String>) {}
|
override fun startProfiling(activityName: String, options: List<String>) {}
|
||||||
|
|
||||||
override fun stopProfiling(snapshotsPath: String, activityName: String, options: List<String>) {}
|
override fun stopProfiling(snapshotsPath: String, activityName: String, options: List<String>) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal fun <T> doOrLog(message: String, block: () -> T?): T? {
|
||||||
|
return try {
|
||||||
|
block()
|
||||||
|
} catch (e: Throwable) {
|
||||||
|
logMessage { message }
|
||||||
|
null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal fun <T> doOrThrow(message: String, block: () -> T): T {
|
||||||
|
return try {
|
||||||
|
block()
|
||||||
|
} catch (e: Throwable) {
|
||||||
|
throw Exception(message)
|
||||||
|
} ?: throw Exception(message)
|
||||||
}
|
}
|
||||||
+24
-7
@@ -9,12 +9,22 @@ import com.intellij.openapi.util.SystemInfo
|
|||||||
import com.intellij.openapi.util.io.FileUtil
|
import com.intellij.openapi.util.io.FileUtil
|
||||||
import com.intellij.util.containers.ContainerUtil
|
import com.intellij.util.containers.ContainerUtil
|
||||||
import org.jetbrains.kotlin.idea.perf.profilers.ProfilerHandler
|
import org.jetbrains.kotlin.idea.perf.profilers.ProfilerHandler
|
||||||
|
import org.jetbrains.kotlin.idea.perf.profilers.doOrThrow
|
||||||
import org.jetbrains.kotlin.idea.testFramework.logMessage
|
import org.jetbrains.kotlin.idea.testFramework.logMessage
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
import java.lang.reflect.Method
|
||||||
import java.nio.file.Files
|
import java.nio.file.Files
|
||||||
import java.nio.file.StandardCopyOption
|
import java.nio.file.StandardCopyOption
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* To use AsyncProfilerHandler:
|
||||||
|
* - it has to be running on GNU/Linux or MacOSX (as async-profiler does NOT work on Windows)
|
||||||
|
* - env variable ASYNC_PROFILER_HOME has to be specified and points to async-profiler installation
|
||||||
|
* - ${ASYNC_PROFILER_HOME}/build/async-profiler.jar has to be in a classpath (done by gradle task)
|
||||||
|
*
|
||||||
|
* AsyncProfiler could be downloaded from https://github.com/jvm-profiling-tools/async-profiler/releases/
|
||||||
|
*/
|
||||||
internal class AsyncProfilerHandler : ProfilerHandler {
|
internal class AsyncProfilerHandler : ProfilerHandler {
|
||||||
|
|
||||||
private val asyncProfiler: Any
|
private val asyncProfiler: Any
|
||||||
@@ -59,23 +69,30 @@ internal class AsyncProfilerHandler : ProfilerHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val AGENT_FILE_NAME = "libasyncProfiler.so"
|
private val asyncLibClass: Class<*> =
|
||||||
private val asyncLibClass: Class<*> = Class.forName("one.profiler.AsyncProfiler")!!
|
doOrThrow("async-profiler.jar is not in a classpath") { Class.forName("one.profiler.AsyncProfiler") }
|
||||||
private val executeMethod = asyncLibClass.getMethod("execute", String::class.java)
|
private val executeMethod: Method =
|
||||||
|
doOrThrow("one.profiler.AsyncProfiler#execute(String) not found") { asyncLibClass.getMethod("execute", String::class.java) }
|
||||||
|
|
||||||
|
private const val AGENT_FILE_NAME = "libasyncProfiler.so"
|
||||||
private var extractedFile: File? = null
|
private var extractedFile: File? = null
|
||||||
|
|
||||||
private fun asyncLib(): File {
|
private fun asyncLib(): File {
|
||||||
if (extractedFile == null) {
|
val osName = when {
|
||||||
extractedFile = File("${System.getenv("ASYNC_PROFILER_HOME")}/build/$AGENT_FILE_NAME")
|
SystemInfo.isLinux -> "linux"
|
||||||
|
SystemInfo.isMac -> "macos"
|
||||||
|
else -> error("AsyncProfiler does not support OS ${SystemInfo.OS_NAME}")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extractedFile = extractedFile ?: File("${System.getenv("ASYNC_PROFILER_HOME")}/build/$AGENT_FILE_NAME")
|
||||||
if (extractedFile == null || !extractedFile!!.exists()) {
|
if (extractedFile == null || !extractedFile!!.exists()) {
|
||||||
val extracted = FileUtil.createTempFile("extracted_$AGENT_FILE_NAME", null, true)
|
val extracted = FileUtil.createTempFile("extracted_$AGENT_FILE_NAME", null, true)
|
||||||
val osName = if (SystemInfo.isLinux) "linux" else "macos"
|
|
||||||
val inputStream = asyncLibClass.getResourceAsStream("/binaries/$osName/$AGENT_FILE_NAME")
|
val inputStream = asyncLibClass.getResourceAsStream("/binaries/$osName/$AGENT_FILE_NAME")
|
||||||
Files.copy(inputStream, extracted.toPath(), StandardCopyOption.REPLACE_EXISTING)
|
Files.copy(inputStream, extracted.toPath(), StandardCopyOption.REPLACE_EXISTING)
|
||||||
extractedFile = extracted
|
extractedFile = extracted
|
||||||
}
|
}
|
||||||
return extractedFile!!
|
return extractedFile ?: error("Unable to lookup $AGENT_FILE_NAME")
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+71
@@ -0,0 +1,71 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||||
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.kotlin.idea.perf.profilers.yk
|
||||||
|
|
||||||
|
import org.jetbrains.kotlin.idea.perf.profilers.ProfilerHandler
|
||||||
|
import org.jetbrains.kotlin.idea.perf.profilers.doOrThrow
|
||||||
|
import org.jetbrains.kotlin.idea.testFramework.logMessage
|
||||||
|
import java.lang.management.ManagementFactory
|
||||||
|
import java.lang.reflect.Method
|
||||||
|
import java.nio.file.Files
|
||||||
|
import java.nio.file.Paths
|
||||||
|
|
||||||
|
/**
|
||||||
|
* To use YKProfilerHandler:
|
||||||
|
* - ${YOURKIT_PROFILER_HOME}/lib/yjp-controller-api-redist.jar has to be in a classpath
|
||||||
|
* - add agentpath vm paramter like `-agentpath:${YOURKIT_PROFILER_HOME}/Resources/bin/mac/libyjpagent.dylib`
|
||||||
|
*/
|
||||||
|
class YKProfilerHandler : ProfilerHandler {
|
||||||
|
|
||||||
|
private var controller: Any
|
||||||
|
|
||||||
|
init {
|
||||||
|
check(ManagementFactory.getRuntimeMXBean().inputArguments.any { it.contains("yjpagent") }) {
|
||||||
|
"vm parameter -agentpath:\$YOURKIT_PROFILER_HOME/bin/../libyjpagent is not specified"
|
||||||
|
}
|
||||||
|
|
||||||
|
controller = doOrThrow("Unable to create com.yourkit.api.Controller instance") {
|
||||||
|
ykLibClass.getConstructor().newInstance()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun startProfiling(activityName: String, options: List<String>) {
|
||||||
|
startCPUSamplingMethod.invoke(controller, null)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun stopProfiling(snapshotsPath: String, activityName: String, options: List<String>) {
|
||||||
|
val dumpPath = captureSnapshotMethod.invoke(controller, SNAPSHOT_WITHOUT_HEAP) as String
|
||||||
|
stopCPUProfilingMethod.invoke(controller)
|
||||||
|
val path = Paths.get(dumpPath)
|
||||||
|
val target = path.parent.resolve(snapshotsPath)
|
||||||
|
logMessage { "dump is moved to $target" }
|
||||||
|
Files.move(path, target)
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
const val SNAPSHOT_WITHOUT_HEAP = 0L
|
||||||
|
|
||||||
|
private val ykLibClass: Class<*> = doOrThrow("yjp-controller-api-redist.jar is not in a classpath") {
|
||||||
|
Class.forName("com.yourkit.api.Controller")
|
||||||
|
}
|
||||||
|
private val startCPUSamplingMethod: Method = doOrThrow("com.yourkit.api.Controller#startCPUSampling(String) not found") {
|
||||||
|
ykLibClass.getMethod(
|
||||||
|
"startCPUSampling",
|
||||||
|
String::class.java
|
||||||
|
)
|
||||||
|
}
|
||||||
|
private val captureSnapshotMethod: Method = doOrThrow("com.yourkit.api.Controller#captureSnapshot(long) not found") {
|
||||||
|
ykLibClass.getMethod(
|
||||||
|
"captureSnapshot",
|
||||||
|
SNAPSHOT_WITHOUT_HEAP::class.java
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
private val stopCPUProfilingMethod: Method = doOrThrow("com.yourkit.api.Controller#stopCPUProfiling() not found") {
|
||||||
|
ykLibClass.getMethod("stopCPUProfiling")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user