Florian Hotze
d4ec220925
[jsscripting] Extend synchronization to common ScriptEngine methods ( #13924 )
...
* [jsscripting] Extend synchronization to common ScriptEngine methods
This extends the multi-thread synchronization to "eval" and "invokeMethod" and moves synchronization for "invokeFunction" to the DelegatingScriptEngineWithInvocableAndAutocloseableAndSynchronization class. Fixes the multi-thread access requested warnings described in the community (https://community.openhab.org/t/openhab-3-4-milestone-discussion/138093/130 ) and related to https://github.com/openhab/openhab-core/pull/3180 .
* Revert "[jsscripting] Extend synchronization to common ScriptEngine methods"
This reverts commit aadd21e45879c10aad29bf279ddbb0afd789b0aa.
* [jsscripting] Extend synchronization to common ScriptEngine methods & Switch to ReentrantLock
This extends the multi-thread synchronization to "eval" and "invokeMethod" and moves synchronization for "invokeFunction" to the InvocationInterceptingScriptEngineWithInvocableAndAutoCloseable class.
The synchronization mechanism changed from using synchronized to using a ReentrantLock together with catch_finally to avoid having deadlocks when an exception is thrown.
Fixes the multi-thread access requested warnings described in the community (https://community.openhab.org/t/openhab-3-4-milestone-discussion/138093/130 ) and related to https://github.com/openhab/openhab-core/pull/3180 .
* [jsscripting] Reduce compiler warnings
* [jsscripting] Replace finally blocks & Wrap returns in afterInvocation
* [jsscripting] Fix deadlock caused by NoSuchMethodException in Invocable interface methods
During testing my latest changes, I noticed that there is a deadlock when invokeFunction or invokeMethod are called on a non-existing method.
This happens because the NoSuchMethodException keeps afterInvocation from running and therefore the lock never gets released.
* [jsscripting] Also rethrow NPE & Fix PMD warnings/errors
* [jsscripting] Wrap and rethrow other exceptions instead of returning them
* [jsscripting] Address review comment from @jpg0
Signed-off-by: Florian Hotze <florianh_dev@icloud.com >
2022-12-14 20:12:54 +01:00
..
2022-12-02 21:17:25 +01:00
2022-12-13 23:28:55 +01:00
2022-12-14 20:12:54 +01:00
2022-12-08 21:12:49 +01:00
2022-11-20 20:38:00 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-13 08:40:10 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-01 14:30:50 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-09 12:31:49 +01:00
2022-12-07 21:33:00 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-10 14:51:09 +01:00
2022-12-10 09:42:09 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-02 13:07:31 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-01 14:30:50 +01:00
2022-12-08 21:12:49 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-10 16:54:00 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-08 21:12:49 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-07 21:09:32 +01:00
2022-12-02 13:07:31 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-12 20:28:59 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-10 13:54:22 +01:00
2022-12-08 21:36:05 +01:00
2022-12-05 18:47:43 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-09 12:32:47 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-11 12:47:55 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-09 09:57:17 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-12 22:55:38 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-14 08:21:34 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-08 21:36:05 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-08 21:12:49 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-14 16:52:43 +01:00
2022-12-08 21:12:49 +01:00
2022-10-03 17:21:26 +02:00
2022-12-10 16:53:30 +01:00
2022-11-21 20:38:37 +01:00
2022-12-08 21:12:49 +01:00
2022-12-01 14:30:50 +01:00
2022-12-04 12:18:20 +01:00
2022-09-26 19:05:50 +02:00
2022-10-22 14:18:31 +02:00
2022-12-08 21:12:49 +01:00
2022-12-10 08:48:33 +01:00
2022-09-21 12:19:19 +02:00
2022-12-03 12:36:28 +01:00
2022-12-13 07:27:26 +01:00
2022-06-27 16:00:37 +02:00
2022-12-08 21:12:49 +01:00
2022-11-05 14:42:01 +01:00
2022-12-06 16:10:01 +01:00
2022-12-08 21:12:49 +01:00
2022-12-10 14:29:53 +01:00
2022-12-06 15:37:54 +01:00
2022-12-05 15:56:34 +01:00
2022-12-05 18:47:43 +01:00
2022-08-26 22:28:29 +02:00
2022-10-15 10:07:49 +02:00
2022-12-08 21:12:49 +01:00
2022-12-04 00:39:14 +01:00
2022-12-01 14:30:50 +01:00
2022-06-27 16:00:37 +02:00
2022-12-08 21:12:49 +01:00
2022-06-27 16:00:37 +02:00
2022-12-08 21:12:49 +01:00
2022-12-11 17:09:31 +01:00
2022-09-26 23:04:07 +02:00
2022-12-02 13:07:31 +01:00
2022-12-08 21:12:49 +01:00
2022-10-17 08:06:08 +02:00
2022-12-02 13:07:31 +01:00
2022-12-11 22:47:37 +01:00
2022-10-10 09:25:32 +02:00
2022-12-02 13:07:31 +01:00
2022-12-02 13:07:31 +01:00
2022-12-02 13:07:31 +01:00
2022-12-08 07:09:46 +01:00
2022-12-02 13:07:31 +01:00
2022-12-02 13:07:31 +01:00
2022-12-02 13:07:31 +01:00
2022-12-11 10:57:57 +01:00
2022-12-02 13:07:31 +01:00
2022-12-02 13:07:31 +01:00
2022-10-09 23:49:09 +02:00
2022-09-03 12:00:32 +02:00
2022-10-18 19:29:15 +02:00
2022-10-22 23:41:33 +02:00
2022-07-10 11:24:32 +02:00
2022-12-06 15:37:54 +01:00