有什么方法可以制作 Knoplerfish 所需的捆绑包吗?

发布于 2024-11-19 18:45:34 字数 521 浏览 1 评论 0原文

如果特定包无法初始化,是否有任何方法可以中止 Knoplerfish 的启动?默认情况下,FrameworkErrorEvent 会打印到控制台,并且框架会继续加载。

init.xargs

-initlevel 80
-istart my-required-bundle.jar

控制台输出

[stdout] Installed and started: file:jars/my-required-bundle.jar (id#34)
[stdout] ## DEBUG: errors - FrameworkErrorEvent bundle #34
[stdout] ## DEBUG: errors - FrameworkErrorEvent throwable:
[stderr] org.osgi.framework.BundleException: BundleActivator start failed

Is there any way to abort the startup of Knoplerfish if a specific bundle fails to initialize? By default, a FrameworkErrorEvent is printed to the console and the framework continues to load.

init.xargs

-initlevel 80
-istart my-required-bundle.jar

console output

[stdout] Installed and started: file:jars/my-required-bundle.jar (id#34)
[stdout] ## DEBUG: errors - FrameworkErrorEvent bundle #34
[stdout] ## DEBUG: errors - FrameworkErrorEvent throwable:
[stderr] org.osgi.framework.BundleException: BundleActivator start failed

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳公公是暖光 2024-11-26 18:45:34

没有标准的 OSGi 方法可以做到这一点,因为没有标准的方法来告诉框架要安装哪些捆绑包(这取决于启动器)。也没有标准方法来获取此事件的通知,因此您可以采取行动。如果 Knopflerfish 没有提供特定的系统属性或类似的东西来处理这个问题,我看到您可以采取两种路线。

  • 构建您自己的启动器。实例化 org.knopflerfish.framework.Main,对其进行配置(自述文件中有一些相关信息),然后通过从框架获取 BundleContext 来安装捆绑包。然后,您可以捕获来自包的 start() 方法的 BundleException,并在类型为 RESOLVE_ERROR 时中止启动。
  • 创建等待特定时间的捆绑包,然后检查框架以查看所有捆绑包是否已启动(您可以从 BundleContext 获取所有当前安装的捆绑包的列表)。如果其中之一未处于状态 INSTALLED,您可以通过停止系统捆绑包(即捆绑包 0)来停止框架。

There is no standard OSGi way to do this, since there is no standard way to tell the framework what bundles to install (that is up to a launcher). There is also no standard way to get notified of this event, so you can act on it. If Knopflerfish does not provide a specific system property or something similar to handle this, I see two routes you could take.

  • Build your own launcher. Instantiate a org.knopflerfish.framework.Main, configure it (there is some information in the readme on this), and install the bundles by getting a BundleContext from the framework. You can then catch BundleExceptions that come from the bundle's start() method, and abort the startup when it has type RESOLVE_ERROR.
  • Create a bundle that waits a specific amount of time, and then inspects the framework to see whether all bundles have started (you can get a list of all currently installed bundles from the BundleContext). If one of them is not in state INSTALLED, you can stop the framework by stopping the system bundle (i.e., bundle 0).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文