b5c94910ac
like /tools/mspsim. This is a very simple modification that affects a very large number of files in Contiki: Cooja, /platform/cooja, Collect-view, Coffe-manager, and Cooja simulation files (.csc). I've gone through Contiki to update all references I could find. Nevertheless, this commit will likely break external dependencies, like saved Cooja simulation files.
161 lines
4.2 KiB
Java
161 lines
4.2 KiB
Java
/*
|
|
* Copyright (c) 2008, Swedish Institute of Computer Science.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
package org.contikios.cooja;
|
|
|
|
/**
|
|
* @author Joakim Eriksson (ported to COOJA by Fredrik Osterlind)
|
|
*/
|
|
public class EventQueue {
|
|
|
|
private TimeEvent first;
|
|
private int eventCount = 0;
|
|
|
|
/**
|
|
* Should only be called from simulation thread!
|
|
*
|
|
* @param event Event
|
|
* @param time Time
|
|
*/
|
|
public void addEvent(TimeEvent event, long time) {
|
|
event.time = time;
|
|
addEvent(event);
|
|
}
|
|
|
|
private void addEvent(TimeEvent event) {
|
|
if (event.queue != null) {
|
|
if (event.isScheduled) {
|
|
throw new IllegalStateException("Event is already scheduled: " + event);
|
|
}
|
|
removeFromQueue(event);
|
|
}
|
|
|
|
if (first == null) {
|
|
first = event;
|
|
} else {
|
|
TimeEvent pos = first;
|
|
TimeEvent lastPos = first;
|
|
while (pos != null && pos.time <= event.time) {
|
|
lastPos = pos;
|
|
pos = pos.nextEvent;
|
|
}
|
|
// Here pos will be the first TE after event
|
|
// and lastPos the first before
|
|
if (pos == first) {
|
|
// Before all other
|
|
event.nextEvent = pos;
|
|
first = event;
|
|
} else {
|
|
event.nextEvent = pos;
|
|
lastPos.nextEvent = event;
|
|
}
|
|
}
|
|
event.queue = this;
|
|
event.isScheduled = true;
|
|
eventCount++;
|
|
}
|
|
|
|
/**
|
|
* Should only be called from simulation thread!
|
|
*
|
|
* @param event Event
|
|
* @return True if event was removed
|
|
*/
|
|
private boolean removeFromQueue(TimeEvent event) {
|
|
TimeEvent pos = first;
|
|
TimeEvent lastPos = first;
|
|
|
|
while (pos != null && pos != event) {
|
|
lastPos = pos;
|
|
pos = pos.nextEvent;
|
|
}
|
|
if (pos == null) {
|
|
return false;
|
|
}
|
|
// pos == event!
|
|
if (pos == first) {
|
|
// remove it from first pos.
|
|
first = pos.nextEvent;
|
|
} else {
|
|
// else link prev to next...
|
|
lastPos.nextEvent = pos.nextEvent;
|
|
}
|
|
// unlink
|
|
pos.nextEvent = null;
|
|
|
|
event.queue = null;
|
|
event.isScheduled = false;
|
|
eventCount--;
|
|
return true;
|
|
}
|
|
|
|
public void removeAll() {
|
|
TimeEvent event = popFirst();
|
|
while (event != null) {
|
|
event = popFirst();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Should only be called from simulation thread!
|
|
*
|
|
* @return Event
|
|
*/
|
|
public TimeEvent popFirst() {
|
|
TimeEvent tmp = first;
|
|
if (tmp == null) {
|
|
return null;
|
|
}
|
|
|
|
first = tmp.nextEvent;
|
|
// Unlink.
|
|
tmp.nextEvent = null;
|
|
|
|
// No longer scheduled!
|
|
tmp.queue = null;
|
|
eventCount--;
|
|
|
|
if (!tmp.isScheduled) {
|
|
/* pop and return another event instead */
|
|
return popFirst();
|
|
}
|
|
tmp.isScheduled = false;
|
|
return tmp;
|
|
}
|
|
|
|
public TimeEvent peekFirst() {
|
|
return first;
|
|
}
|
|
|
|
public String toString() {
|
|
return "EventQueue with " + eventCount + " events";
|
|
}
|
|
}
|