/** * Exits MATLAB without waiting for MATLAB to return, because MATLAB will not return when exiting. * * @throws MatlabInvocationException */ static void exit() { Runnable runnable = new Runnable() { @Override public void run() { try { Matlab.mtFevalConsoleOutput("exit", null, 0); } // This should never fail, and if it does there is no way to consistently report it back // to the caller // because this method does not block catch (Exception e) { } } }; if (NativeMatlab.nativeIsMatlabThread()) { runnable.run(); } else { Matlab.whenMatlabIdle(runnable); } }
/** * Invokes the {@code callable} on the main MATLAB thread and waits for the computation to be * completed. * * @param <T> * @param callable * @return * @throws MatlabInvocationException */ static <T> T invokeAndWait(final MatlabThreadCallable<T> callable) throws MatlabInvocationException { T result; if (NativeMatlab.nativeIsMatlabThread()) { try { result = callable.call(THREAD_OPERATIONS); } catch (RuntimeException e) { ThrowableWrapper cause = new ThrowableWrapper(e); throw MatlabInvocationException.Reason.RUNTIME_EXCEPTION.asException(cause); } } else if (EventQueue.isDispatchThread()) { final AtomicReference<MatlabReturn<T>> returnRef = new AtomicReference<MatlabReturn<T>>(); Matlab.whenMatlabIdle( new Runnable() { @Override public void run() { MatlabReturn<T> matlabReturn; try { matlabReturn = new MatlabReturn<T>(callable.call(THREAD_OPERATIONS)); } catch (MatlabInvocationException e) { matlabReturn = new MatlabReturn<T>(e); } catch (RuntimeException e) { ThrowableWrapper cause = new ThrowableWrapper(e); MatlabInvocationException userCausedException = MatlabInvocationException.Reason.RUNTIME_EXCEPTION.asException(cause); matlabReturn = new MatlabReturn<T>(userCausedException); } returnRef.set(matlabReturn); } }); // Pump event queue while waiting for MATLAB to complete the computation try { while (returnRef.get() == null) { if (EVENT_QUEUE.peekEvent() != null) { EVENT_QUEUE_DISPATCH_METHOD.invoke(EVENT_QUEUE, EVENT_QUEUE.getNextEvent()); } } } catch (InterruptedException e) { throw MatlabInvocationException.Reason.EVENT_DISPATCH_THREAD.asException(e); } catch (IllegalAccessException e) { throw MatlabInvocationException.Reason.EVENT_DISPATCH_THREAD.asException(e); } catch (InvocationTargetException e) { throw MatlabInvocationException.Reason.EVENT_DISPATCH_THREAD.asException(e); } // Process return MatlabReturn<T> matlabReturn = returnRef.get(); // If exception was thrown, rethrow it if (matlabReturn.exception != null) { throw matlabReturn.exception; } // Return data computed by MATLAB else { result = matlabReturn.data; } } else { // Used to block the calling thread while waiting for MATLAB to finish computing final ArrayBlockingQueue<MatlabReturn<T>> returnQueue = new ArrayBlockingQueue<MatlabReturn<T>>(1); Matlab.whenMatlabIdle( new Runnable() { @Override public void run() { MatlabReturn<T> matlabReturn; try { matlabReturn = new MatlabReturn<T>(callable.call(THREAD_OPERATIONS)); } catch (MatlabInvocationException e) { matlabReturn = new MatlabReturn<T>(e); } catch (RuntimeException e) { ThrowableWrapper cause = new ThrowableWrapper(e); MatlabInvocationException userCausedException = MatlabInvocationException.Reason.RUNTIME_EXCEPTION.asException(cause); matlabReturn = new MatlabReturn<T>(userCausedException); } returnQueue.add(matlabReturn); } }); try { // Wait for MATLAB's main thread to finish computation MatlabReturn<T> matlabReturn = returnQueue.take(); // If exception was thrown, rethrow it if (matlabReturn.exception != null) { throw matlabReturn.exception; } // Return data computed by MATLAB else { result = matlabReturn.data; } } catch (InterruptedException e) { throw MatlabInvocationException.Reason.INTERRRUPTED.asException(e); } } return result; }