![JAR search and dependency download from the Maven repository](/logo.png)
com.caoccao.javet.interop.proxy.JavetReflectionProxyV8ValueObjectInvocationHandler 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.proxy;
import com.caoccao.javet.annotations.V8Function;
import com.caoccao.javet.utils.StringUtils;
import com.caoccao.javet.values.reference.V8ValueObject;
import java.lang.reflect.Method;
/**
* The type Javet reflection proxy V8 value object invocation handler.
*
* @since 0.9.10
*/
public final class JavetReflectionProxyV8ValueObjectInvocationHandler
extends BaseJavetReflectionProxyInvocationHandler {
/**
* Instantiates a new Javet reflection proxy V8 value object invocation handler.
*
* @param v8ValueObject the V8 value object
* @since 0.9.10
*/
public JavetReflectionProxyV8ValueObjectInvocationHandler(V8ValueObject v8ValueObject) {
super(v8ValueObject);
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Object result = null;
if (args == null) {
args = new Object[0];
}
String methodName = method.getName();
if (methodName.equals(METHOD_NAME_CLOSE) && args.length == 0) {
close();
} else if (v8ValueReference != null && !v8ValueReference.isClosed()) {
if (method.isAnnotationPresent(V8Function.class)) {
String aliasMethodName = method.getAnnotation(V8Function.class).name();
if (!StringUtils.isEmpty(aliasMethodName)) {
methodName = aliasMethodName;
}
}
result = v8ValueReference.invokeObject(methodName, args);
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy