Files
MobileGL/android-plugin/app/src/trace/cpp/trace_replay_jni.cpp
T

199 lines
9.2 KiB
C++

#include "trace_replay_core.hpp"
#include <android/native_window.h>
#include <android/native_window_jni.h>
#include <jni.h>
#include <exception>
#include <string>
#include <vector>
#include <sys/stat.h>
extern "C" void mobilegl_trace_set_native_window(ANativeWindow *window);
extern "C" void mobilegl_trace_set_requested_size(int width, int height);
namespace {
std::string ToString(JNIEnv* env, jstring value) {
if (value == nullptr) {
return {};
}
const char* chars = env->GetStringUTFChars(value, nullptr);
std::string out = chars == nullptr ? "" : chars;
if (chars != nullptr) {
env->ReleaseStringUTFChars(value, chars);
}
return out;
}
std::vector<std::string> SplitSemicolonList(const std::string& value) {
std::vector<std::string> values;
std::size_t begin = 0;
while (begin < value.size()) {
const std::size_t end = value.find(';', begin);
const std::string entry = value.substr(begin, end - begin);
if (!entry.empty()) {
values.push_back(entry);
}
if (end == std::string::npos) {
break;
}
begin = end + 1;
}
return values;
}
jobject MakeResult(JNIEnv* env, const mobilegl_trace::Result& result) {
jclass clazz = env->FindClass("top/mobilegl/plugin/trace/TraceReplayActivity$TraceReplayResult");
if (clazz == nullptr) {
return nullptr;
}
jmethodID ctor = env->GetMethodID(clazz, "<init>",
"(ZILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
if (ctor == nullptr) {
return nullptr;
}
jstring message = env->NewStringUTF(result.message.c_str());
jstring resultPath = env->NewStringUTF(result.resultPath.c_str());
jstring actualPath = env->NewStringUTF(result.actualPath.c_str());
jstring diffPath = env->NewStringUTF(result.diffPath.c_str());
jobject object = env->NewObject(clazz, ctor, result.passed ? JNI_TRUE : JNI_FALSE, result.statusCode, message,
resultPath, actualPath, diffPath);
env->DeleteLocalRef(message);
env->DeleteLocalRef(resultPath);
env->DeleteLocalRef(actualPath);
env->DeleteLocalRef(diffPath);
return object;
}
void EnsureDirectory(const std::string& path) {
if (!path.empty()) {
mkdir(path.c_str(), 0775);
}
}
mobilegl_trace::Result MakeFailureResult(const mobilegl_trace::Request& request,
int statusCode,
const std::string& message) {
mobilegl_trace::Result result;
result.statusCode = statusCode;
result.message = message;
if (!request.outputDir.empty()) {
EnsureDirectory(request.outputDir);
result.resultPath = request.outputDir + "/result.json";
result.actualPath = request.outputDir + "/actual.png";
}
result.diffPath = request.diffPath;
return result;
}
class ScopedTraceReplayState {
public:
~ScopedTraceReplayState() {
mobilegl_trace_set_native_window(nullptr);
mobilegl_trace_set_requested_size(0, 0);
}
};
} // namespace
extern "C" JNIEXPORT jobject JNICALL
Java_top_mobilegl_plugin_trace_TraceReplayActivity_nativeRunTraceReplay(JNIEnv* env,
jclass,
jobject surface,
jstring tracePath,
jstring goldenPath,
jstring alternateGoldenPath,
jstring outputDir,
jstring diffPath,
jstring backend,
jint targetFrame,
jlong targetCall,
jint width,
jint height,
jdouble ssimThreshold,
jint cropX,
jint cropY,
jint cropWidth,
jint cropHeight,
jstring angleVariant,
jboolean useAngle,
jboolean usePbuffer,
jboolean avoidAngleLlvmpipeSamplerMipmapMinFilter,
jboolean avoidAngleLlvmpipeExplicitLodBias,
jboolean coherentAsFlush,
jboolean fixIterationRPSubgroupScratch,
jboolean deriveNumSubgroups,
jboolean iterationRPFixBarrier,
jstring texture2dDumps,
jboolean benchmarkMode,
jint benchmarkTailFrames,
jboolean benchmarkFinish,
jstring benchmarkResultPath) {
mobilegl_trace::Request request;
request.tracePath = ToString(env, tracePath);
request.goldenPath = ToString(env, goldenPath);
std::string alternateGolden = ToString(env, alternateGoldenPath);
if (!alternateGolden.empty()) {
request.alternateGoldenPaths.push_back(alternateGolden);
}
request.outputDir = ToString(env, outputDir);
request.diffPath = ToString(env, diffPath);
request.backend = ToString(env, backend);
request.angleVariant = ToString(env, angleVariant);
request.texture2dDumps = SplitSemicolonList(ToString(env, texture2dDumps));
request.targetFrame = targetFrame;
request.targetCall = targetCall;
request.width = width;
request.height = height;
request.ssimThreshold = ssimThreshold;
request.cropX = cropX;
request.cropY = cropY;
request.cropWidth = cropWidth;
request.cropHeight = cropHeight;
request.useAngle = useAngle == JNI_TRUE;
request.usePbuffer = usePbuffer == JNI_TRUE;
request.avoidAngleLlvmpipeSamplerMipmapMinFilter =
avoidAngleLlvmpipeSamplerMipmapMinFilter == JNI_TRUE;
request.avoidAngleLlvmpipeExplicitLodBias = avoidAngleLlvmpipeExplicitLodBias == JNI_TRUE;
request.coherentAsFlush = coherentAsFlush == JNI_TRUE;
request.fixIterationRPSubgroupScratch = fixIterationRPSubgroupScratch == JNI_TRUE;
request.deriveNumSubgroups = deriveNumSubgroups == JNI_TRUE;
request.iterationRPFixBarrier = iterationRPFixBarrier == JNI_TRUE;
request.benchmark = benchmarkMode == JNI_TRUE;
request.benchmarkTailFrames = benchmarkTailFrames > 0
? benchmarkTailFrames
: mobilegl_trace::kDefaultBenchmarkTailFrames;
request.benchmarkFinish = benchmarkFinish == JNI_TRUE;
request.benchmarkResultPath = ToString(env, benchmarkResultPath);
ScopedTraceReplayState replayState;
mobilegl_trace_set_requested_size(request.width, request.height);
const bool needsNativeWindow =
request.backend == "DirectVulkan" ||
(request.backend == "DirectGLES" && !request.usePbuffer);
ANativeWindow *window = needsNativeWindow && surface != nullptr ? ANativeWindow_fromSurface(env, surface) : nullptr;
mobilegl_trace_set_native_window(window);
if (window != nullptr) {
ANativeWindow_release(window);
}
mobilegl_trace::Result result;
try {
result = mobilegl_trace::RunTraceReplay(request);
} catch (const std::exception& exception) {
result = MakeFailureResult(request,
mobilegl_trace::STATUS_RETRACE_FAILED,
"trace replay failed with unhandled native exception: " +
std::string(exception.what()));
} catch (...) {
result = MakeFailureResult(request,
mobilegl_trace::STATUS_RETRACE_FAILED,
"trace replay failed with unknown native exception");
}
if (!result.resultPath.empty()) {
mobilegl_trace::WriteResultJson(request, result);
}
return MakeResult(env, result);
}