I run a server and it has an event handler that handles a timing system When I run 3 of them in a row, it gives this exception

    Exception in thread "Thread-8" java.util.ConcurrentModificationException
            at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:372)
            at java.util.AbstractList$Itr.next(AbstractList.java:343)
            at EventManager.run(EventManager.java:77)
            at java.lang.Thread.run(Thread.java:662)

heres the method that the issue is coming from:


                EventManager.getSingleton().addEvent( new Event() { 
                    public void execute(EventContainer c) {
                        p.createProjectile(p.absY, p.absX, offsetY, offsetX, 1166, 43, 31, 70, p2.playerId);
                        c.stop(); // stops the event from running
                    }
                }, 950); // in ms (1 second = 1000 ms)
                EventManager.getSingleton().addEvent( new Event() { 
                    public void execute(EventContainer c) {
                        p2.applyDAMAGE(misc.random(25));
                        c.stop(); // stops the event from running
                    }
                }, 1300); // in ms (1 second = 1000 ms)
                p.secondsTillNextDfsSpecial = 120;
                EventManager.getSingleton().addEvent( new Event() { 
                    public void execute(EventContainer c) {
                        p.secondsTillNextDfsSpecial--;
                        if (p.secondsTillNextDfsSpecial == 0) {
                            p.canPerformDfsSpecial = true;
                            c.stop(); // stops the event from running
                        }
                    }
                }, 1000); // in ms (1 second = 1000 ms)
import java.util.ArrayList;
import java.util.List;

/**
 * Manages events which will be run in the future.
 * Has its own thread since some events may need to be ran faster than the cycle time
 * in the main thread.
 * 
 * @author Graham
 *
 */
public class EventManager implements Runnable {

    /**
     * A reference to the singleton;
     */
    private static EventManager singleton = null;

    /**
     * A list of events that are being executed.
     */
    private List events;

    /**
     * Initialise the event manager.
     */
    private EventManager() {
        events = new ArrayList();
    }

    /**
     * The event manager thread. So we can interrupt it and end it nicely on shutdown.
     */
    private Thread thread;

    /**
     * Gets the event manager singleton. If there is no singleton, the singleton is created.
     * @return The event manager singleton.
     */
    public static EventManager getSingleton() {
        if(singleton == null) {
            singleton = new EventManager();
            singleton.thread = new Thread(singleton);
            singleton.thread.start();
        }
        return singleton;
    }

    /**
     * Initialises the event manager (if it needs to be).
     */
    public static void initialise() {
        getSingleton();
    }

    /**
     * The waitFor variable is multiplied by this before the call to wait() is made.
     * We do this because other events may be executed after waitFor is set (and take time).
     * We may need to modify this depending on event count? Some proper tests need to be done.
     */
    private static final double WAIT_FOR_FACTOR = 0.5;

    @Override
    /**
     * Processes events. Works kinda like newer versions of cron.
     */
    public synchronized void run() {
        long waitFor = -1;
        List remove = new ArrayList();

        while(true) {

            // reset wait time
            waitFor = -1;

            // process all events
            for(EventContainer container : events) {
                if(container.isRunning()) {
                    if((System.currentTimeMillis() - container.getLastRun()) >= container.getTick()) {
                        container.execute();
                    }
                    if(container.getTick() 
link|improve this question

71% accept rate
Please post the code for EventManager. Also, it'd be nice if you cut down the code that is irrelevant to the problem. Do you have only one thread in your app? Is this a Swing application? – pajton Apr 2 '11 at 20:56
Basically your are making modification to some collection while iterating over it, but this is happening in EventManager code. – pajton Apr 2 '11 at 20:56
Line 77 must reference a collection. And, presumably, you aren't using a synchronized collection. Fix that. – bmargulies Apr 2 '11 at 20:57
added the eventmanager class, let me know if any more utilities are needed. – Travis Apr 2 '11 at 21:02
feedback

1 Answer

up vote 1 down vote accepted

Ok, I see two problems:

  1. Your events List is not synchronized and you are accessing it from different threads (one in EventManager and second in the first piece of code with addEvent()).

  2. In this loop:

    // process all events
    for(EventContainer container : events) {
        ...
    }
    

you are iterating over events List and you cannot add new elements to it while iteration. I assume addEvent() is adding new elements to this list, so basically you shouldn't call it during this iteration.

Both of this problems can be solved by using CopyOnWriteArrayList which enables safe access by concurrent threads and safely adding new elements during iteration (however new elements will be "visible" only in next iteration).

Solution:

private EventManager() {
    events = new CopyOnWriteArrayList() ;
}
link|improve this answer
it fixed the issue however now it's showing this in the compileNote: .\src\EventManager.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. Press any key to continue . . . – Travis Apr 2 '11 at 21:32
This is because you are not using generics, i.e. you have List and probably should have List<Event> or List<EventContainer> – pajton Apr 2 '11 at 21:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.