SystemTimer.java

  1. package com.birbit.android.jobqueue.timer;

  2. import com.birbit.android.jobqueue.log.JqLog;

  3. import java.util.concurrent.TimeUnit;

  4. public class SystemTimer implements Timer {
  5.     final long startWallClock;
  6.     final long startNs;
  7.     public SystemTimer() {
  8.         JqLog.d("creating system timer");
  9.         //noinspection DIRECT_TIME_ACCESS
  10.         startWallClock = TimeUnit.MILLISECONDS.toNanos(System.currentTimeMillis());
  11.         //noinspection DIRECT_TIME_ACCESS
  12.         startNs = System.nanoTime();
  13.     }

  14.     @Override
  15.     public long nanoTime() {
  16.         //noinspection DIRECT_TIME_ACCESS
  17.         return System.nanoTime() - startNs + startWallClock;
  18.     }

  19.     @Override
  20.     public void waitOnObjectUntilNs(Object object, long untilNs) throws InterruptedException {
  21.         long now = nanoTime();
  22.         if (now > untilNs) {
  23.             //noinspection TIMED_WAIT
  24.             object.wait(1);
  25.         } else {
  26.             TimeUnit.NANOSECONDS.timedWait(object, untilNs - now);
  27.         }
  28.     }

  29.     @Override
  30.     public void waitOnObject(Object object) throws InterruptedException {
  31.         //noinspection TIMED_WAIT
  32.         object.wait();
  33.     }

  34.     @Override
  35.     public void notifyObject(Object object) {
  36.         //noinspection NOTIFY_ON_OBJECT
  37.         object.notifyAll();
  38.     }
  39. }