com.caoccao.javet.interop.V8Inspector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javet-linux-arm64 Show documentation
Show all versions of javet-linux-arm64 Show documentation
Javet is Java + V8 (JAVa + V + EighT). It is an awesome way of embedding Node.js and V8 in Java.
/*
* Copyright (c) 2021-2024. caoccao.com Sam Cao
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.caoccao.javet.interop;
import com.caoccao.javet.exceptions.JavetException;
import com.caoccao.javet.interfaces.IJavetLogger;
import com.caoccao.javet.utils.SimpleList;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
public final class V8Inspector {
private final List listeners;
private final String name;
private final IV8Native v8Native;
private final V8Runtime v8Runtime;
private IJavetLogger logger;
V8Inspector(V8Runtime v8Runtime, String name, IV8Native v8Native) {
logger = v8Runtime.getLogger();
this.name = name;
listeners = new ArrayList<>();
this.v8Runtime = v8Runtime;
this.v8Native = v8Native;
v8Native.createV8Inspector(v8Runtime.getHandle(), this);
}
public void addListeners(IV8InspectorListener... listeners) {
Collections.addAll(this.listeners, Objects.requireNonNull(listeners));
}
public void flushProtocolNotifications() {
logger.logDebug("Receiving flushProtocolNotifications");
for (IV8InspectorListener listener : listeners) {
try {
listener.flushProtocolNotifications();
} catch (Throwable t) {
logger.logError(t, t.getMessage());
}
}
}
public IJavetLogger getLogger() {
return logger;
}
public String getName() {
return name;
}
public void receiveNotification(String message) {
logger.logDebug("Receiving notification: {0}", message);
for (IV8InspectorListener listener : listeners) {
try {
listener.receiveNotification(message);
} catch (Throwable t) {
logger.logError(t, t.getMessage());
}
}
}
public void receiveResponse(String message) {
logger.logDebug("Receiving response: {0}", message);
for (IV8InspectorListener listener : listeners) {
try {
listener.receiveResponse(message);
} catch (Throwable t) {
logger.logError(t, t.getMessage());
}
}
}
public void removeListeners(IV8InspectorListener... listeners) {
this.listeners.removeAll(SimpleList.of(listeners));
}
public void runIfWaitingForDebugger(int contextGroupId) {
logger.logDebug("Receiving runIfWaitingForDebugger(): {0}", Integer.toString(contextGroupId));
for (IV8InspectorListener listener : listeners) {
try {
listener.runIfWaitingForDebugger(contextGroupId);
} catch (Throwable t) {
logger.logError(t, t.getMessage());
}
}
}
@SuppressWarnings("RedundantThrows")
public void sendRequest(String message) throws JavetException {
logger.logDebug("Sending request: {0}", message);
for (IV8InspectorListener listener : listeners) {
try {
listener.sendRequest(message);
} catch (Throwable t) {
logger.logError(t, t.getMessage());
}
}
v8Native.v8InspectorSend(v8Runtime.getHandle(), message);
}
public void setLogger(IJavetLogger logger) {
Objects.requireNonNull(logger);
this.logger = logger;
}
}