Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2010-10-13 12:14:47 +0000
committerDani Megert2011-10-06 07:46:25 +0000
commit74f04c211a0e6ad9851fd92ea3451501ddf011ff (patch)
tree690cb1c3fc7d4bbb1bc6e02ab9aa640ea4aaa55b
parent26172791b6188da0611d1b7b104737c2b10aed9c (diff)
downloadeclipse.platform.ui-74f04c211a0e6ad9851fd92ea3451501ddf011ff.tar.gz
eclipse.platform.ui-74f04c211a0e6ad9851fd92ea3451501ddf011ff.tar.xz
eclipse.platform.ui-74f04c211a0e6ad9851fd92ea3451501ddf011ff.zip
Bug 327653: [Dialogs] FilteredItemsSelectionDialog burns a lot of time in LinkedList#contains(..)
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java27
1 files changed, 15 insertions, 12 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java
index 5266ab112df..d35c2f21b47 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java
@@ -25,7 +25,7 @@ import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
-import java.util.LinkedList;
+import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.eclipse.core.commands.AbstractHandler;
@@ -2208,7 +2208,7 @@ public abstract class FilteredItemsSelectionDialog extends
private static final int MAX_HISTORY_SIZE = 60;
- private final List historyList;
+ private final Set historyList;
private final String rootNodeName;
@@ -2216,7 +2216,7 @@ public abstract class FilteredItemsSelectionDialog extends
private SelectionHistory(String rootNodeName, String infoNodeName) {
- historyList = Collections.synchronizedList(new LinkedList() {
+ historyList = Collections.synchronizedSet(new LinkedHashSet() {
private static final long serialVersionUID = 0L;
@@ -2226,11 +2226,12 @@ public abstract class FilteredItemsSelectionDialog extends
* @see java.util.LinkedList#add(java.lang.Object)
*/
public boolean add(Object arg0) {
- if (this.size() >= MAX_HISTORY_SIZE)
- this.removeFirst();
- if (!this.contains(arg0))
- return super.add(arg0);
- return false;
+ if (this.size() >= MAX_HISTORY_SIZE) {
+ Iterator iterator = this.iterator();
+ iterator.next();
+ iterator.remove();
+ }
+ return super.add(arg0);
}
});
@@ -2253,6 +2254,7 @@ public abstract class FilteredItemsSelectionDialog extends
* the item to be added to the history
*/
public synchronized void accessed(Object object) {
+ historyList.remove(object);
historyList.add(object);
}
@@ -3277,13 +3279,14 @@ public abstract class FilteredItemsSelectionDialog extends
* @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
*/
public int compare(Object o1, Object o2) {
- if ((isHistoryElement(o1) && isHistoryElement(o2))
- || (!isHistoryElement(o1) && !isHistoryElement(o2)))
+ boolean h1 = isHistoryElement(o1);
+ boolean h2 = isHistoryElement(o2);
+ if (h1 == h2)
return getItemsComparator().compare(o1, o2);
- if (isHistoryElement(o1))
+ if (h1)
return -2;
- if (isHistoryElement(o2))
+ if (h2)
return +2;
return 0;

Back to the top