mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
Merge "Rewrite Java Notifier and update Interrupt JNI."
This commit is contained in:
@@ -9,228 +9,118 @@ import edu.wpi.first.wpilibj.Utility;
|
||||
|
||||
public class Notifier {
|
||||
|
||||
static private class ProcessQueue implements Runnable {
|
||||
public void run() {
|
||||
Notifier current;
|
||||
while (true) {
|
||||
Notifier.queueLock.lock();
|
||||
private static class Process implements NotifierJNI.NotifierJNIHandlerFunction {
|
||||
// The lock for the process information.
|
||||
private ReentrantLock m_processLock = new ReentrantLock();
|
||||
// The C pointer to the notifier object. We don't use it directly, it is
|
||||
// just passed to the JNI bindings.
|
||||
private long m_notifier;
|
||||
// The time, in microseconds, at which the corresponding handler should be
|
||||
// called. Has the same zero as Utility.getFPGATime().
|
||||
private double m_expirationTime = 0;
|
||||
// The handler passed in by the user which should be called at the
|
||||
// appropriate interval.
|
||||
private Runnable m_handler;
|
||||
// Whether we are calling the handler just once or periodically.
|
||||
private boolean m_periodic = false;
|
||||
// If periodic, the period of the calling; if just once, stores how long it
|
||||
// is until we call the handler.
|
||||
private double m_period = 0;
|
||||
// Lock on the handler so that the handler is not called before it has
|
||||
// completed. This is only relevant if the handler takes a very long time
|
||||
// to complete (or the period is very short) and when everything is being
|
||||
// destructed.
|
||||
private ReentrantLock m_handlerLock = new ReentrantLock();
|
||||
|
||||
double currentTime = Utility.getFPGATime() * 1e-6;
|
||||
current = Notifier.timerQueueHead;
|
||||
|
||||
if (current == null || current.m_expirationTime > currentTime) {
|
||||
Notifier.queueLock.unlock();
|
||||
break;
|
||||
}
|
||||
|
||||
Notifier.timerQueueHead = current.m_nextEvent;
|
||||
|
||||
if (current.m_periodic) {
|
||||
current.insertInQueue(true);
|
||||
} else {
|
||||
current.m_queued = false;
|
||||
}
|
||||
|
||||
current.m_handlerLock.lock();
|
||||
Notifier.queueLock.unlock();
|
||||
|
||||
current.m_handler.run();
|
||||
current.m_handlerLock.unlock();
|
||||
}
|
||||
|
||||
|
||||
Notifier.queueLock.lock();
|
||||
Notifier.updateAlarm();
|
||||
Notifier.queueLock.unlock();
|
||||
public Process(Runnable run) {
|
||||
m_handler = run;
|
||||
m_notifier = NotifierJNI.initializeNotifier(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void finalize() {
|
||||
NotifierJNI.cleanNotifier(m_notifier);
|
||||
m_handlerLock.lock();
|
||||
m_handlerLock = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the alarm hardware to reflect the next alarm.
|
||||
*/
|
||||
private void updateAlarm() {
|
||||
NotifierJNI.updateNotifierAlarm(m_notifier, (int) (m_expirationTime * 1e6));
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler which is called by the HAL library; it handles the subsequent
|
||||
* calling of the user handler.
|
||||
*/
|
||||
@Override
|
||||
public void apply(int time) {
|
||||
m_processLock.lock();
|
||||
if (m_periodic) {
|
||||
m_expirationTime += m_period;
|
||||
updateAlarm();
|
||||
}
|
||||
|
||||
m_handlerLock.lock();
|
||||
m_processLock.unlock();
|
||||
|
||||
m_handler.run();
|
||||
m_handlerLock.unlock();
|
||||
}
|
||||
|
||||
public void start(double period, boolean periodic) {
|
||||
synchronized (m_processLock) {
|
||||
m_periodic = periodic;
|
||||
m_period = period;
|
||||
m_expirationTime = Utility.getFPGATime() * 1e-6 + m_period;
|
||||
updateAlarm();
|
||||
}
|
||||
}
|
||||
|
||||
public void stop() {
|
||||
NotifierJNI.stopNotifierAlarm(m_notifier);
|
||||
|
||||
// Wait for a currently executing handler to complete before returning
|
||||
// from stop()
|
||||
m_handlerLock.lock();
|
||||
m_handlerLock.unlock();
|
||||
}
|
||||
}
|
||||
|
||||
// Maximum time, in seconds, that the FPGA returns before rolling over to 0.
|
||||
static private final double kRolloverTime = (1l << 32) / 1e6;
|
||||
// Number of instances of Notifier classes created, so that we can call
|
||||
// cleanNotifier() after all the Notifiers are stopped.
|
||||
static private int refcount = 0;
|
||||
// The next Notifier instance which needs to be called.
|
||||
static private Notifier timerQueueHead = null;
|
||||
// The C pointer to the notifier object. We don't use it directly, it is just
|
||||
// passed to the JNI bindings.
|
||||
private static long m_notifier;
|
||||
// The lock for the queue information (namely, timerQueueHead and the
|
||||
// m_nextEvent members).
|
||||
private static ReentrantLock queueLock = new ReentrantLock();
|
||||
// The handler which is called by the HAL library; it handles the subsequent
|
||||
// calling of the user handlers.
|
||||
// This is the only Runnable actually passed to the JNI bindings.
|
||||
private static ProcessQueue m_processQueue;
|
||||
|
||||
// The next Notifier whose handler will need to be called after this one.
|
||||
private Notifier m_nextEvent = null;
|
||||
// The time, in microseconds, at which the corresponding handler should be
|
||||
// called. Has the same zero as Utility.getFPGATime().
|
||||
private double m_expirationTime = 0;
|
||||
// The handler passed in by the user which should be called at the appropriate
|
||||
// interval.
|
||||
private Runnable m_handler;
|
||||
// Whether we are calling the handler just once or periodically.
|
||||
private boolean m_periodic = false;
|
||||
// If periodic, the period of the calling; if just once, stores how long it
|
||||
// is until we call the handler.
|
||||
private double m_period = 0;
|
||||
// Whether we are currently queued to be called at m_expirationTime.
|
||||
private boolean m_queued = false;
|
||||
// Lock on the handler so that the handler is not called before it has
|
||||
// completed. This is only relevant if the handler takes a very long time to
|
||||
// complete (or the period is very short) and when everything is being
|
||||
// destructed.
|
||||
private ReentrantLock m_handlerLock = new ReentrantLock();
|
||||
private Process m_process;
|
||||
|
||||
/**
|
||||
* Create a Notifier for timer event notification.
|
||||
*$
|
||||
*
|
||||
* @param run The handler that is called at the notification time which is set
|
||||
* using StartSingle or StartPeriodic.
|
||||
*/
|
||||
public Notifier(Runnable run) {
|
||||
if (refcount == 0) {
|
||||
init();
|
||||
}
|
||||
refcount += 1;
|
||||
m_handler = run;
|
||||
}
|
||||
|
||||
protected void finalize() {
|
||||
queueLock.lock();
|
||||
|
||||
deleteFromQueue();
|
||||
|
||||
// If this was the last instance of a Notifier, clean up after ourselves.
|
||||
if ((--refcount) == 0) {
|
||||
NotifierJNI.cleanNotifier(m_notifier);
|
||||
}
|
||||
|
||||
queueLock.unlock();
|
||||
|
||||
m_handlerLock.lock();
|
||||
m_handlerLock = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the alarm hardware to reflect the current first element in the
|
||||
* queue. Compute the time the next alarm should occur based on the current
|
||||
* time and the period for the first element in the timer queue. WARNING: this
|
||||
* method does not do synchronization! It must be called from somewhere that
|
||||
* is taking care of synchronizing access to the queue.
|
||||
*/
|
||||
static protected void updateAlarm() {
|
||||
if (timerQueueHead != null) {
|
||||
NotifierJNI.updateNotifierAlarm(m_notifier, (int) (timerQueueHead.m_expirationTime * 1e6));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Insert this Notifier into the timer queue in right place. WARNING: this
|
||||
* method does not do synchronization! It must be called from somewhere that
|
||||
* is taking care of synchronizing access to the queue.
|
||||
*$
|
||||
* @param reschedule If false, the scheduled alarm is based on the current
|
||||
* time and UpdateAlarm method is called which will enable the alarm if
|
||||
* necessary. If true, update the time by adding the period (no drift)
|
||||
* when rescheduled periodic from ProcessQueue. This ensures that the
|
||||
* public methods only update the queue after finishing inserting.
|
||||
*/
|
||||
protected void insertInQueue(boolean reschedule) {
|
||||
if (reschedule) {
|
||||
m_expirationTime += m_period;
|
||||
} else {
|
||||
m_expirationTime = Utility.getFPGATime() * 1e-6 + m_period;
|
||||
}
|
||||
|
||||
if (m_expirationTime > kRolloverTime) {
|
||||
m_expirationTime -= kRolloverTime;
|
||||
}
|
||||
|
||||
if (timerQueueHead == null || timerQueueHead.m_expirationTime >= this.m_expirationTime) {
|
||||
// the queue is empty or greater than the new entry
|
||||
// the new entry becomes the first element
|
||||
this.m_nextEvent = timerQueueHead;
|
||||
timerQueueHead = this;
|
||||
|
||||
if (!reschedule) {
|
||||
// since the first element changed, update alarm, unless we already plan
|
||||
// to
|
||||
updateAlarm();
|
||||
}
|
||||
} else {
|
||||
for (Notifier n = timerQueueHead;; n = n.m_nextEvent) {
|
||||
if (n.m_nextEvent == null || n.m_nextEvent.m_expirationTime > this.m_expirationTime) {
|
||||
this.m_nextEvent = n.m_nextEvent;
|
||||
n.m_nextEvent = this;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
m_queued = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete this Notifier from the timer queue. WARNING: this method does not do
|
||||
* synchronization! It must be called from somewhere that is taking care of
|
||||
* synchronizing access to the queue. Remove this Notifier from the timer
|
||||
* queue and adjust the next interrupt time to reflect the current top of the
|
||||
* queue.
|
||||
*/
|
||||
private void deleteFromQueue() {
|
||||
if (m_queued) {
|
||||
m_queued = false;
|
||||
assert (timerQueueHead != null);
|
||||
if (timerQueueHead == this) {
|
||||
// removing the first item in the list - update the alarm
|
||||
timerQueueHead = this.m_nextEvent;
|
||||
updateAlarm();
|
||||
} else {
|
||||
for (Notifier n = timerQueueHead; n != null; n = n.m_nextEvent) {
|
||||
if (n.m_nextEvent == this) {
|
||||
// this element is the next element from *n from the queue
|
||||
// Point n around this.
|
||||
n.m_nextEvent = this.m_nextEvent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
m_process = new Process(run);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register for single event notification. A timer event is queued for a
|
||||
* single event after the specified delay.
|
||||
*$
|
||||
*
|
||||
* @param delay Seconds to wait before the handler is called.
|
||||
*/
|
||||
public void startSingle(double delay) {
|
||||
queueLock.lock();
|
||||
m_periodic = false;
|
||||
m_period = delay;
|
||||
deleteFromQueue();
|
||||
insertInQueue(false);
|
||||
queueLock.unlock();
|
||||
m_process.start(delay, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register for periodic event notification. A timer event is queued for
|
||||
* periodic event notification. Each time the interrupt occurs, the event will
|
||||
* be immediately requeued for the same time interval.
|
||||
*$
|
||||
*
|
||||
* @param period Period in seconds to call the handler starting one period
|
||||
* after the call to this method.
|
||||
*/
|
||||
public void startPeriodic(double period) {
|
||||
queueLock.lock();
|
||||
m_periodic = true;
|
||||
m_period = period;
|
||||
deleteFromQueue();
|
||||
insertInQueue(false);
|
||||
queueLock.unlock();
|
||||
m_process.start(period, true);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -240,19 +130,6 @@ public class Notifier {
|
||||
* function will block until the handler call is complete.
|
||||
*/
|
||||
public void stop() {
|
||||
queueLock.lock();
|
||||
deleteFromQueue();
|
||||
queueLock.unlock();
|
||||
|
||||
// Wait for a currently executing handler to complete before returning from
|
||||
// stop()
|
||||
m_handlerLock.lock();
|
||||
m_handlerLock.unlock();
|
||||
}
|
||||
|
||||
// First time init.
|
||||
protected static void init() {
|
||||
m_processQueue = new ProcessQueue();
|
||||
m_notifier = NotifierJNI.initializeNotifier(m_processQueue);
|
||||
m_process.stop();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,11 +11,16 @@ import java.lang.Runtime;
|
||||
*/
|
||||
public class NotifierJNI extends JNIWrapper {
|
||||
/**
|
||||
* Initializes the notifier to call the run() function of a Runnable.
|
||||
*
|
||||
* Should be called after initializeNotifierJVM().
|
||||
* Callback function
|
||||
*/
|
||||
public static native long initializeNotifier(Runnable func);
|
||||
public interface NotifierJNIHandlerFunction {
|
||||
void apply(int curTime);
|
||||
}
|
||||
|
||||
/**
|
||||
* Initializes the notifier.
|
||||
*/
|
||||
public static native long initializeNotifier(NotifierJNIHandlerFunction func);
|
||||
|
||||
/**
|
||||
* Deletes the notifier object when we are done with it.
|
||||
@@ -26,4 +31,9 @@ public class NotifierJNI extends JNIWrapper {
|
||||
* Sets the notifier to call the callback in another triggerTime microseconds.
|
||||
*/
|
||||
public static native void updateNotifierAlarm(long notifierPtr, int triggerTime);
|
||||
|
||||
/**
|
||||
* Tells the notifier to stop calling the callback.
|
||||
*/
|
||||
public static native void stopNotifierAlarm(long notifierPtr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user