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

org.kapott.hbci.manager.ThreadSyncer Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/**********************************************************************
 *
 * This file is part of HBCI4Java.
 * Copyright (c) 2001-2008 Stefan Palme
 *
 * 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; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * 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 library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 **********************************************************************/

package org.kapott.hbci.manager;

import java.util.Hashtable;

public class ThreadSyncer
{
    private String    name;
    private boolean   waiting;
    private boolean   notified;
    private boolean   timeouted;
    private Hashtable data;
    
    public ThreadSyncer(String name)
    {
        this.name=name;
        this.waiting=false;
        this.notified=false;
        this.timeouted=false;
        this.data=new Hashtable();
    }
    
    public synchronized void startWaiting(long seconds, String errMsg)
    {
        try {
            if (!notified) {
                HBCIUtils.log(name+".startWaiting: !notified, waiting now",HBCIUtils.LOG_DEBUG);
                // wenn das notify() nicht schon vor dem wait() kam, dann 
                // wirklich warten
                
                waiting=true;
                wait(seconds*1000);
                waiting=false;
                
                if (!notified) {
                    HBCIUtils.log(name+".startWaiting: end of wait: !notified (timeouted)",HBCIUtils.LOG_DEBUG);
                    // wenn das wait() wegen timeouted terminierte
                    timeouted=true;
                    throw new RuntimeException(name+": "+errMsg);
                }
                HBCIUtils.log(name+".startWaiting: end of wait: notified, normal end of wait",HBCIUtils.LOG_DEBUG);
                
                // damit ist alles wieder im ausgangszustand
                notified=false;
            } else {
                HBCIUtils.log(name+".startWaiting: notified (notified before wait())",HBCIUtils.LOG_DEBUG);
                notified=false;
            }
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
    
    public synchronized void stopWaiting()
    {
        HBCIUtils.log(name+".stopWaiting",HBCIUtils.LOG_DEBUG);
        notified=true;
        if (waiting) {
            HBCIUtils.log(name+".stopWaiting: someone waits, so notify()",HBCIUtils.LOG_DEBUG);
            notify();
        } else {
            if (timeouted) {
                HBCIUtils.log(name+".stopWaiting: trying to awake a timeouted wait() - aborting",HBCIUtils.LOG_DEBUG);
                timeouted=false;
                throw new RuntimeException(name+": can not awake a timeouted wait()");
            }
            
            HBCIUtils.log(name+".stopWaiting: no one waits, so we do nothing",HBCIUtils.LOG_DEBUG);
        }
    }
    
    public void setData(String key,Object obj)
    {
        if (obj!=null) {
            data.put(key,obj);
        } else {
            data.remove(key);
        }
    }
    
    public void clearData()
    {
        data.clear();
    }
    
    public Object getData(String key)
    {
        return data.get(key);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy