Package jade.core

Source Code of jade.core.ContainerTable$Entry

/*****************************************************************
JADE - Java Agent DEvelopment Framework is a framework to develop
multi-agent systems in compliance with the FIPA specifications.
Copyright (C) 2000 CSELT S.p.A.

GNU Lesser General Public License

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 library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA  02111-1307, USA.
*****************************************************************/

package jade.core;

//#MIDP_EXCLUDE_FILE

import jade.mtp.MTPDescriptor;

import jade.util.leap.Iterator;
import jade.util.leap.List;
import jade.util.leap.LinkedList;
import jade.util.leap.Map;
import jade.util.leap.HashMap;

import jade.util.Logger;

class ContainerTable {

  // Initial size of containers hash table
  private static final int CONTAINERS_SIZE = 10;

  private Logger myLogger = Logger.getMyLogger(getClass().getName());

  private static class Entry {
    private List mtps = new LinkedList();

    public Entry() {
    }

    public void addMTP(MTPDescriptor mtp) {
      mtps.add(mtp);
    }

    public void removeMTP(MTPDescriptor mtp) {
      mtps.remove(mtp);
    }

    public List getMTPs() {
      return mtps;
    }

  } // End of Entry class


  private Map entries = new HashMap(CONTAINERS_SIZE);

  public synchronized void addContainer(ContainerID cid) {
    Entry e = new Entry();
    entries.put(cid, e);
  }

  public synchronized void addMTP(ContainerID cid, MTPDescriptor mtp) throws NotFoundException {
    Entry e = (Entry)entries.get(cid);
    if(e == null)
      throw new NotFoundException("No container named " + cid.getName() + " was found.");
    List l = e.getMTPs();
    l.add(mtp);
  }

  public synchronized void removeContainer(ContainerID cid) {
    entries.remove(cid);
    myLogger.log(Logger.FINE, "Container "+cid.getName()+" removed from ContainerTable");
    notifyAll();
  }

  public synchronized void removeMTP(ContainerID cid, MTPDescriptor mtp) throws NotFoundException {
    Entry e = (Entry)entries.get(cid);
    if(e == null)
      throw new NotFoundException("No container named " + cid.getName() + " was found.");
    List l = e.getMTPs();
    l.remove(mtp);
  }

  public synchronized List getMTPs(ContainerID cid) throws NotFoundException {
    Entry e = (Entry)entries.get(cid);
    if(e == null)
      throw new NotFoundException("No container named " + cid.getName() + " was found.");
    return e.getMTPs();
  }

  public int size() {
    return entries.size();
  }

  public synchronized ContainerID[] names() {
    ContainerID[] result = new ContainerID[entries.size()];
    Iterator it = entries.keySet().iterator();
    int i = 0;
    while(it.hasNext()) {
      result[i++] = (ContainerID) it.next();
    }
    return result;
  }

  synchronized boolean waitForRemoval(ContainerID cid, long timeout) {
    try {
      while(entries.containsKey(cid)) {
        wait(timeout);
        if (entries.containsKey(cid)) {
          myLogger.log(Logger.WARNING, "Container "+cid.getName()+" did not terminate when requested to do so.");
          return false;
        }
      }
    }
    catch (InterruptedException ie) {
      myLogger.log(Logger.WARNING, "Interrupted while waiting for container "+cid.getName()+" termination");
      return false;
    }
    return true;
  }

  synchronized boolean waitUntilEmpty(long timeout) {
    long time = System.currentTimeMillis();
    long deadline = time + timeout;
    try {
      while(!entries.isEmpty()) {
        if (timeout > 0 && time >= deadline) {
          // Timeout expired
          myLogger.log(Logger.WARNING, "Some entries still present in container table");
          break;
        }
        wait(deadline - time);
        time = System.currentTimeMillis();
      }
    }
    catch (InterruptedException ie) {
      myLogger.log(Logger.WARNING, "Interrupted while waiting for container table to be empty");
    }
    return entries.isEmpty()
  }

}
TOP

Related Classes of jade.core.ContainerTable$Entry

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.