gpt4 book ai didi

java - 来自 Java Runnable 的 Py4J 回调

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:09:37 26 4
gpt4 key购买 nike

我目前正在尝试使用 Py4J 执行以下操作:

  • 在 Python 中定义一个调用 JVM 方法的方法(“executor”)
  • 定义一个实现 JVM 接口(interface)的 Python(“回调”)对象
  • 根据这个回调对象构造一个 JVM 对象
  • 在此对象上调用一个方法,这将在 Java 中生成一个新线程,在回调对象上调用回调,这将(在 Python 端)执行“executor”方法

这是我在 Java 方面的一些东西:

package javabridge.test;
public interface PythonCallback {
Object notify(Object source);
}


package javabridge.test;
public class ScheduledRunnable implements Runnable {
private PythonCallback callback;
public ScheduledRunnable(PythonCallback callback) {
this.callback = callback;
}
@Override
public void run() {
System.out.println("[ScheduledRunnable] run -> notify");
this.callback.notify(this);
}
}


package javabridge.test;
import py4j.GatewayServer;
public class Test {
private PythonCallback callback;
public Test(PythonCallback callback) {
this.callback = callback;
}
public void runSynchronous() {
System.out.println("[runSynchronous] run -> notify");
this.callback.notify(this);
}
public void runAsynchronous() {
System.out.println("[runAsynchronous] run -> spawn thread");
ScheduledRunnable runnable = new ScheduledRunnable(callback);
Thread t = new Thread(runnable);
t.start();
}
public static void main(String[] args) {
GatewayServer server = new GatewayServer();
server.start(true);
}
}

在 Python 方面,我有以下脚本:

from py4j.java_gateway import JavaGateway, java_import, get_field, CallbackServerParameters
from py4j.clientserver import ClientServer, JavaParameters, PythonParameters

gateway = JavaGateway(callback_server_parameters=CallbackServerParameters())
#gateway = ClientServer(java_parameters=JavaParameters(), python_parameters=PythonParameters())

java_import(gateway.jvm, 'javabridge.test.*')

class PythonCallbackImpl(object):
def __init__(self, execfunc):
self.execfunc = execfunc
def notify(self, obj):
print('[PythonCallbackImpl] notified from Java')
self.execfunc()
return 'dummy return value'
class Java:
implements = ["javabridge.test.PythonCallback"]

def simple_fun():
print('[simple_fun] called')
gateway.jvm.System.out.println("[simple_fun] Hello from python!")

# Test 1: Without threading
input('Ready to begin test 1')
python_callback = PythonCallbackImpl(simple_fun)
nothread_executor = gateway.jvm.Test(python_callback)
nothread_executor.runSynchronous()

# Test 2: With threading
input('Ready to begin test 2')
python_callback = PythonCallbackImpl(simple_fun)
nothread_executor = gateway.jvm.Test(python_callback)
nothread_executor.runAsynchronous()

gateway.shutdown()

以下是尝试执行此脚本时发生的情况。首先,使用 gateway = ClientServer(java_parameters=JavaParameters(), python_parameters=PythonParameters()),两个测试都失败了:

Test 1:

py4j.protocol.Py4JJavaError: An error occurred while calling o0.runSynchronous.
: py4j.Py4JException: Command Part is Empty or is the End of Command Part
at py4j.Protocol.getObject(Protocol.java:277)
at py4j.Protocol.getReturnValue(Protocol.java:458)

Test 2:

Exception in thread "Thread-4" py4j.Py4JException: Error while obtaining a new communication channel
at py4j.CallbackClient.getConnectionLock(CallbackClient.java:218)
at py4j.CallbackClient.sendCommand(CallbackClient.java:337)
at py4j.CallbackClient.sendCommand(CallbackClient.java:316)

但是,如果我注释掉 self.execfunc() 行,测试 1 会正常工作而不会引发错误。然而,测试 2 仍然失败:

Exception in thread "Thread-5" py4j.Py4JException: Error while sending a command.
at py4j.CallbackClient.sendCommand(CallbackClient.java:357)
at py4j.CallbackClient.sendCommand(CallbackClient.java:316)

现在切换到 gateway = JavaGateway(callback_server_parameters=CallbackServerParameters())。当我将 self.execfunc() 注释掉时,测试 2 仍然在这里失败:

Exception in thread "Thread-5" py4j.Py4JException: Error while sending a command.
at py4j.CallbackClient.sendCommand(CallbackClient.java:357)
at py4j.CallbackClient.sendCommand(CallbackClient.java:316)

但至少测试 1 确实在启用 self.execfunc() 的情况下工作。

我的问题是:如何在 self.execfunc() 调用中使用线程方法? Py4J 可以做到这一点吗?

编辑:让事情变得更加棘手的是,self.execfunc() 调用的 Java 命令应该在调用 .notify() 的同一个 Java 线程中运行。

最佳答案

已解决。结果很简单:

  1. 在 Python 端和 Java 端也使用 ClientServer!
  2. 不要调用 gateway.shutdown(),因为这会在接收到回调之前断开 Python 连接(呃!)

然后 Java 将巧妙地遵循预期的线程模型,即接收 Python 回调调用的 Java 命令在执行回调的同一 Java 线程中执行。

通过一个简单的 Python 函数,可以添加一个 shutdown_when_done 方法,该方法等待所有回调都返回后再退出。

关于java - 来自 Java Runnable 的 Py4J 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47607463/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com