|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
jas.engine.AgentList
public class AgentList
An array list with some useful features like shuffling, rotation and async message passing. It allows to call the performAction method of each agent into the list, using both serial and parallel execution modes. When asyncExecute method is invoked the same message is posted asynchronously to the list. The AgentList waits until every agent has terminated or a timeout time has been reached. It is useful to launch time-expensive routines on different machines on a network.
Title: JAS
Description: Java Agent-based Simulation library
Copyright (C) 2002 Michele Sonnessa
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Field Summary | |
---|---|
int |
TIMEOUT
The time out time for an asynchronous execution. |
Constructor Summary | |
---|---|
AgentList()
Default constructor. |
|
AgentList(AgentList agentList)
Construct an agent list from another one. |
|
AgentList(int initialCapacity)
Construct an agent list allocating an initialCapacity into ArrayList. |
Method Summary | |
---|---|
void |
add(int index,
java.lang.Object eventListener)
Add an agent to the index of the collection. |
boolean |
add(java.lang.Object eventListener)
Add an agent to the end of the collection. |
boolean |
addAll(java.util.Collection c)
Unsupported method. |
boolean |
addAll(int index,
java.util.Collection c)
Unsupported method. |
void |
addSafe(java.lang.Object item)
|
void |
appendSafe(java.lang.Object item)
|
void |
asyncExecute(int actionType)
Executes asynchronously the given action type for each agent in the list. |
void |
asyncJobExecuted()
Notifies to the agent list that an asynchronous task has been terminated. |
void |
execute(int actionType)
Executes the given action type for each agent in the list. |
void |
performAction(int actionType)
Impements ISimEventListener interface. |
boolean |
removeSafe(java.lang.Object item)
|
void |
rotate(int distance)
Rotates the elements in the specified list by the specified distance. |
void |
shuffle()
Randomly permutes the list using a default source of randomness. |
void |
swap(int firstIndex,
int secondIndex)
Swaps the elements at the specified positions. |
AgentList |
synchronizedList()
Returns a synchronized (thread-safe) list backed by the specified list. |
Methods inherited from class java.util.ArrayList |
---|
clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, set, size, toArray, toArray, trimToSize |
Methods inherited from class java.util.AbstractList |
---|
equals, hashCode, iterator, listIterator, listIterator, subList |
Methods inherited from class java.util.AbstractCollection |
---|
containsAll, removeAll, retainAll, toString |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
Field Detail |
---|
public int TIMEOUT
Constructor Detail |
---|
public AgentList()
public AgentList(AgentList agentList)
agentList
- An agent list to copy.public AgentList(int initialCapacity)
initialCapacity
- The initial length of the internal array.Method Detail |
---|
public void add(int index, java.lang.Object eventListener)
add
in interface java.util.List
add
in class java.util.ArrayList
eventListener
- The object must implement the ISimEventListener interface.index
- The index at which the specified element is to be inserted.public boolean add(java.lang.Object eventListener)
add
in interface java.util.Collection
add
in interface java.util.List
add
in class java.util.ArrayList
eventListener
- The object must implement the ISimEventListener interface.public boolean addAll(java.util.Collection c)
addAll
in interface java.util.Collection
addAll
in interface java.util.List
addAll
in class java.util.ArrayList
public boolean addAll(int index, java.util.Collection c)
addAll
in interface java.util.List
addAll
in class java.util.ArrayList
public void addSafe(java.lang.Object item)
public void appendSafe(java.lang.Object item)
public void asyncExecute(int actionType)
actionType
- The id of the action. See ISimEventListener for more details.public void asyncJobExecuted()
public void execute(int actionType)
actionType
- The id of the action. See ISimEventListener for more details.public void performAction(int actionType)
performAction
in interface ISimEventListener
actionType
- The id of the action. See ISimEventListener for more details.public boolean removeSafe(java.lang.Object item)
public void rotate(int distance)
This method calls Collections.rotate. See JDK Collections API for more details.
distance
- the distance to rotate the list. There are no
constraints on this value; it may be zero, negative, or
greater than list.size().public void shuffle()
The seed of random generator is synchronized with the simulation seed.
The hedge "approximately" is used in the foregoing description because default source of randomenss is only approximately an unbiased source of independently chosen bits. If it were a perfect source of randomly chosen bits, then the algorithm would choose permutations with perfect uniformity.
This implementation traverses the list backwards, from the last element up to the second, repeatedly swapping a randomly selected element into the "current position". Elements are randomly selected from the portion of the list that runs from the first element to the current position, inclusive.
This method runs in linear time. If the specified list does not
implement the RandomAccess
interface and is large, this
implementation dumps the specified list into an array before shuffling
it, and dumps the shuffled array back into the list. This avoids the
quadratic behavior that would result from shuffling a "sequential
access" list in place.
This method calls Collections.shuffle. See JDK Collections API for more details.
public void swap(int firstIndex, int secondIndex)
This method calls Collections.swap. See JDK Collections API for more details.
i
- the index of one element to be swapped.j
- the index of the other element to be swapped.
java.lang.IndexOutOfBoundsException
- if either i or j
is out of range (i < 0 || i >= list.size()
|| j < 0 || j >= list.size()).public AgentList synchronizedList()
It is imperative that the user manually synchronize on the returned list when iterating over it:
List list = thisList.synchronizedList(); ... synchronized(list) { Iterator i = list.iterator(); // Must be in synchronized block while (i.hasNext()) foo(i.next()); }Failure to follow this advice may result in non-deterministic behavior.
The returned list will be serializable if the specified list is serializable.
This method calls Collections.synchronizedList. See JDK Collections API for more details.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |