I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f97ec882 authored by slumlord's avatar slumlord
Browse files

CachedIteratorCollection - Fix add() function

parent 177ef573
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ import net.i2p.util.Log; ...@@ -44,7 +44,7 @@ import net.i2p.util.Log;
public class CachedIteratorCollection<E> extends AbstractCollection<E> { public class CachedIteratorCollection<E> extends AbstractCollection<E> {
// FOR DEBUGGING & LOGGING PURPOSES // FOR DEBUGGING & LOGGING PURPOSES
Log log = I2PAppContext.getGlobalContext().logManager().getLog(CachedIteratorCollection.class); //Log log = I2PAppContext.getGlobalContext().logManager().getLog(CachedIteratorCollection.class);
// Cached Iterator object // Cached Iterator object
private final CachedIterator iterator = new CachedIterator(); private final CachedIterator iterator = new CachedIterator();
...@@ -88,16 +88,15 @@ public class CachedIteratorCollection<E> extends AbstractCollection<E> { ...@@ -88,16 +88,15 @@ public class CachedIteratorCollection<E> extends AbstractCollection<E> {
*/ */
@Override @Override
public boolean add(E element) { public boolean add(E element) {
final Node<E> newNode = new Node<>(null, element); final Node<E> newNode = new Node<>(last, element);
if (this.size == 0) { if (this.size == 0) {
this.first = newNode; this.first = newNode;
this.last = newNode;
} else { } else {
this.last.next = newNode; this.last.next = newNode;
this.last = newNode;
} }
this.last = newNode;
this.size++; this.size++;
log.debug("CachedIteratorAbstractCollection: Element added"); //log.debug("CachedIteratorAbstractCollection: Element added");
return true; return true;
} }
...@@ -111,7 +110,7 @@ public class CachedIteratorCollection<E> extends AbstractCollection<E> { ...@@ -111,7 +110,7 @@ public class CachedIteratorCollection<E> extends AbstractCollection<E> {
this.last = null; this.last = null;
this.size = 0; this.size = 0;
iterator.reset(); iterator.reset();
log.debug("CachedIteratorAbstractCollection: Cleared"); //log.debug("CachedIteratorAbstractCollection: Cleared");
} }
/** /**
...@@ -152,28 +151,40 @@ public class CachedIteratorCollection<E> extends AbstractCollection<E> { ...@@ -152,28 +151,40 @@ public class CachedIteratorCollection<E> extends AbstractCollection<E> {
@Override @Override
public void remove() { public void remove() {
if (nextCalled) { if (nextCalled) {
// Are we at the end of the collection? If so itrIndexNode will
// be null
if (itrIndexNode != null) { if (itrIndexNode != null) {
if (itrIndexNode.prev.prev != null) { // The Node we are trying to remove is itrIndexNode.prev
// Is there a Node before itrIndexNode.prev?
if (itrIndexNode != first.next) {
// Set current itrIndexNode's prev to Node N-2
itrIndexNode.prev = itrIndexNode.prev.prev; itrIndexNode.prev = itrIndexNode.prev.prev;
// Then set Node N-2's next to current itrIndexNode,
// this drops all references to the Node being removed
itrIndexNode.prev.next = itrIndexNode; itrIndexNode.prev.next = itrIndexNode;
} else { } else {
// There is no N-2 Node, we are removing the first Node
// in the collection
itrIndexNode.prev = null; itrIndexNode.prev = null;
first = itrIndexNode; first = itrIndexNode;
} }
} else { } else {
// itrIndexNode is null, we are at the end of the collection
// Are there any items before the Node that is being removed?
if (last.prev != null) { if (last.prev != null) {
last.prev.next = null; last.prev.next = null;
last = last.prev; last = last.prev;
} else { } else {
// There are no more items, clear() the collection
nextCalled = false; nextCalled = false;
clear(); clear();
log.debug("CachedIteratorAbstractCollection: Element Removed"); //log.debug("CachedIteratorAbstractCollection: Element Removed");
return; return;
} }
} }
size--; size--;
nextCalled = false; nextCalled = false;
log.debug("CachedIteratorAbstractCollection: Element Removed"); //log.debug("CachedIteratorAbstractCollection: Element Removed");
} else { } else {
throw new IllegalStateException(); throw new IllegalStateException();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment