1

JSR223 ( https://github.com/openhab/openhab/wiki/Jsr223-Script-Engine )を使用して Javascriptで openHAB ( http://www.openhab.org/ )のルールを実装しようとしています。

次の例外の根本的な原因を提案している人はいますか? 引数として渡された両方のインスタンスが、メソッド宣言でパラメーターとして使用されるインターフェイスを実装していることに注意してください。

java.lang.RuntimeException: java.lang.NoSuchMethodException: None of the fixed arity signatures [(org.openhab.core.items.Item, org.joda.time.base.AbstractInstant)] of method org.openhab.core.persistence.extensions.PersistenceExtensions.changedSince match the argument types [org.openhab.core.items.GroupItem, org.joda.time.DateTime]
        at jdk.nashorn.javaadapters.java.util.function.Consumer.accept(Unknown Source) ~[na:na]
        at java.util.ArrayList.forEach(ArrayList.java:1249) ~[na:1.8.0_31]
        at jdk.nashorn.internal.scripts.Script$\^eval\_.L:13(<eval>:14) ~[na:na]
        at org.openhab.core.jsr223.internal.shared.Rule$$NashornJavaAdapter.execute(Unknown Source) ~[na:na]
        at org.openhab.core.jsr223.internal.engine.RuleExecutionRunnable.run(RuleExecutionRunnable.java:36) ~[na:na]
        at java.lang.Thread.run(Thread.java:745) [na:1.8.0_31]

実装されたスクリプトは次のとおりです。

'use strict';

load("nashorn:mozilla_compat.js");
importPackage(org.openhab.core.jsr223.internal.shared);
importPackage(org.joda.time);
importPackage(org.joda.time.base);


var autoOffRule = new org.openhab.core.jsr223.internal.shared.Rule() {
    getEventTrigger: function() {
        return [
            new org.openhab.core.jsr223.internal.shared.TimerTrigger("* * * * * ?")
        ];
    }, 
    execute: function(event) {
        for each(var item in ItemRegistry.getItems()) {
            if (item.getState() == org.openhab.core.library.types.OnOffType.ON) {
                var dateTime = org.joda.time.DateTime.now().withFieldAdded(DurationFieldType.seconds(), -5);

                if (!(org.openhab.core.persistence.extensions.PersistenceExtensions.class.static.changedSince(item, var dateTime))) {
                    print("Auto-off for " + item.getName())
                }
            }            
        }
    }
};

function getRules() {
    return new org.openhab.core.jsr223.internal.shared.RuleSet([ autoOffRule ]);
}

呼び出されたメソッドはオーバーロードされており、次のシグネチャがあります。

org.openhab.core.persistence.extensions.PersistenceExtensions#changedSince(org.openhab.core.items.Item, org.joda.time.base.AbstractInstant)
org.openhab.core.persistence.extensions.PersistenceExtensions#changedSince(org.openhab.core.items.Item, org.joda.time.base.AbstractInstant, java.lang.String)

jdk1.8.0_31 と jdk1.8.0_65 の両方でテストされ、失敗しました。Groovy に実装されたルールを持つ多かれ少なかれ同様の例外に遭遇しました。

4

1 に答える 1