All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bonitasoft.engine.synchro.SynchroServiceImpl Maven / Gradle / Ivy

There is a newer version: 10.2.0
Show newest version
/**
 * Copyright (C) 2019 Bonitasoft S.A.
 * Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation
 * version 2.1 of the License.
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License along with this
 * program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
 * Floor, Boston, MA 02110-1301, USA.
 **/
package org.bonitasoft.engine.synchro;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

import org.bonitasoft.engine.cache.CommonCacheService;
import org.bonitasoft.engine.log.technical.TechnicalLoggerService;

/**
 * @author Emmanuel Duchastenier
 * @author Baptiste Mesta
 * @author Charles Souillard
 */
public class SynchroServiceImpl extends AbstractSynchroService {

    private final Map, String> waiters;

    private final Map eventKeyAndIdMap;

    private final Map eventSemaphores;

    private final Lock lock = new SynchroServiceImplReentrantLock();

    /**
     * @param initialCapacity
     *        the initial capacity of the map of fired events / waiters (default 50)
     * @param logger
     *        the technical logger service
     */
    private SynchroServiceImpl(final int initialCapacity, final TechnicalLoggerService logger,
            final CommonCacheService cacheService) {
        super(logger, cacheService);
        waiters = new HashMap, String>(initialCapacity);
        eventKeyAndIdMap = new HashMap(initialCapacity);
        eventSemaphores = new HashMap();
    }

    private static final class SynchroServiceImplReentrantLock extends ReentrantLock {

    }

    @Override
    protected Map, String> getWaitersMap() {
        return waiters;
    }

    @Override
    protected Map getEventKeyAndIdMap() {
        return eventKeyAndIdMap;
    }

    @Override
    protected Lock getServiceLock() {
        return lock;
    }

    @Override
    protected void releaseWaiter(final String semaphoreKey) {
        final Semaphore semaphore = eventSemaphores.get(semaphoreKey);
        if (semaphore != null) {
            semaphore.release();
        }
    }

    @Override
    public Serializable waitForEvent(final Map event, final long timeout)
            throws InterruptedException, TimeoutException {
        Serializable id = null;
        String semaphoreKey = null;
        Semaphore semaphore = null;
        getServiceLock().lock();
        try {
            id = getFiredAndRemoveIt(event);
            if (id == null) {
                semaphoreKey = getSemaphoreKey(event);
                semaphore = new Semaphore(1);
                eventSemaphores.put(semaphoreKey, semaphore);
                semaphore.acquire(1);
                getWaitersMap().put(event, semaphoreKey);
            }
        } finally {
            getServiceLock().unlock();
        }
        if (semaphore != null) {
            try {
                if (!semaphore.tryAcquire(timeout, TimeUnit.MILLISECONDS)) {
                    throwTimeout(event, timeout);
                }
            } catch (final InterruptedException e) {
                throwTimeout(event, timeout);
            } finally {
                getWaitersMap().remove(event);
            }
            return getEventKeyAndIdMap().get(semaphoreKey);
        }
        return id;
    }

    private String getSemaphoreKey(final Map event) {
        final StringBuilder sb = new StringBuilder();
        final TreeMap orderedMap = new TreeMap(event);
        boolean first = true;
        for (final Map.Entry entry : orderedMap.entrySet()) {
            if (!first) {
                sb.append(";;;;;");
            } else {
                first = false;
            }
            sb.append(entry.getKey());
            sb.append("=");
            sb.append(entry.getValue());
        }
        return sb.toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy