Search in sources :

Example 1 with Cache

use of co.paralleluniverse.galaxy.Cache in project quasar by puniverse.

the class GlxGlobalRegistry method getActor0.

private CacheEntry getActor0(final String rootName, long timeout, TimeUnit unit) throws SuspendExecution, RuntimeException, InterruptedException {
    final long deadline = unit != null ? System.nanoTime() + unit.toNanos(timeout) : 0;
    final Store store = grid.store();
    final long root;
    final ReentrantLock lck0 = new ReentrantLock();
    final Condition cond = lck0.newCondition();
    boolean listening = false;
    final StoreTransaction txn = store.beginTransaction();
    try {
        root = store.getRoot(rootName, txn);
        final CacheListener listener = new AbstractCacheListener() {

            @Override
            public void evicted(Cache cache, long id) {
                invalidated(cache, id);
            }

            @Override
            public void invalidated(Cache cache, long id) {
                grid.getDelegate().store().getAsync(id);
            }

            @Override
            public void received(Cache cache, long id, long version, ByteBuffer data) {
                if (data != null && data.remaining() > 0) {
                    LOG.debug("Received root {} ({})", rootName, Long.toHexString(id));
                    lck0.lock();
                    try {
                        cond.signalAll();
                    } finally {
                        lck0.unlock();
                    }
                    store.setListener(root, null);
                }
            }
        };
        listening = (store.setListenerIfAbsent(root, listener) == listener);
        store.commit(txn);
    } catch (TimeoutException e) {
        LOG.error("Getting actor {} failed due to timeout", rootName);
        store.rollback(txn);
        store.abort(txn);
        throw new RuntimeException("Actor discovery failed");
    }
    try {
        byte[] buf = store.gets(root, null);
        long version = store.getVersion(root);
        store.release(root);
        if (listening) {
            lck0.lock();
            try {
                while (buf == null || buf.length == 0) {
                    LOG.debug("Store returned null for root {}", rootName);
                    if (deadline > 0) {
                        final long now = System.nanoTime();
                        if (now > deadline)
                            // throw new java.util.concurrent.TimeoutException();
                            return null;
                        cond.await(deadline - now, TimeUnit.NANOSECONDS);
                    } else
                        cond.await();
                    buf = store.gets(root, null);
                    version = store.getVersion(root);
                    store.release(root);
                }
            } finally {
                lck0.unlock();
            }
        } else
            assert buf != null && buf.length > 0;
        final ActorRef<?> actor = deserActor(rootName, buf);
        return new CacheEntry(actor, root, version);
    } catch (TimeoutException e) {
        LOG.error("Getting actor {} failed due to timeout", rootName);
        throw new RuntimeException("Actor discovery failed");
    }
}
Also used : ReentrantLock(co.paralleluniverse.strands.concurrent.ReentrantLock) Condition(java.util.concurrent.locks.Condition) StoreTransaction(co.paralleluniverse.galaxy.StoreTransaction) Store(co.paralleluniverse.galaxy.quasar.Store) ByteBuffer(java.nio.ByteBuffer) CacheListener(co.paralleluniverse.galaxy.CacheListener) AbstractCacheListener(co.paralleluniverse.galaxy.AbstractCacheListener) AbstractCacheListener(co.paralleluniverse.galaxy.AbstractCacheListener) Cache(co.paralleluniverse.galaxy.Cache) TimeoutException(co.paralleluniverse.galaxy.TimeoutException)

Aggregations

AbstractCacheListener (co.paralleluniverse.galaxy.AbstractCacheListener)1 Cache (co.paralleluniverse.galaxy.Cache)1 CacheListener (co.paralleluniverse.galaxy.CacheListener)1 StoreTransaction (co.paralleluniverse.galaxy.StoreTransaction)1 TimeoutException (co.paralleluniverse.galaxy.TimeoutException)1 Store (co.paralleluniverse.galaxy.quasar.Store)1 ReentrantLock (co.paralleluniverse.strands.concurrent.ReentrantLock)1 ByteBuffer (java.nio.ByteBuffer)1 Condition (java.util.concurrent.locks.Condition)1