Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Xenos2017-02-07 16:40:28 +0000
committerStefan Xenos2017-02-08 01:00:57 +0000
commit5da5dd814399ab3c75a57d7bf04dcae5ea3b9cb6 (patch)
tree5431c92e1d339b3c899add0d69e1b95160b75d17 /org.eclipse.jdt.apt.core
parent4f4c1a8568b6c8e3ef698fb900fcd735f8e63d01 (diff)
downloadeclipse.jdt.core-5da5dd814399ab3c75a57d7bf04dcae5ea3b9cb6.tar.gz
eclipse.jdt.core-5da5dd814399ab3c75a57d7bf04dcae5ea3b9cb6.tar.xz
eclipse.jdt.core-5da5dd814399ab3c75a57d7bf04dcae5ea3b9cb6.zip
Bug 511845 - FactoryPath.internalAdd takes O(n) timeI20170208-0700I20170207-2000
Change-Id: I8e1b34234195f8b2ad1dc26d6244a75fdfc68b18 Signed-off-by: Stefan Xenos <sxenos@gmail.com>
Diffstat (limited to 'org.eclipse.jdt.apt.core')
-rw-r--r--org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/FactoryPath.java39
1 files changed, 22 insertions, 17 deletions
diff --git a/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/FactoryPath.java b/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/FactoryPath.java
index fafa72053c..617a976582 100644
--- a/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/FactoryPath.java
+++ b/org.eclipse.jdt.apt.core/src/org/eclipse/jdt/apt/core/internal/util/FactoryPath.java
@@ -13,9 +13,13 @@
package org.eclipse.jdt.apt.core.internal.util;
import java.io.File;
+import java.util.ArrayList;
+import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
+import java.util.List;
import java.util.Map;
+import java.util.Map.Entry;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
@@ -89,7 +93,7 @@ public class FactoryPath implements IFactoryPath {
}
/**
- * The factory path.
+ * The factory path. Stored in reverse order.
*/
private final Map<FactoryContainer, Attributes> _path = Collections.synchronizedMap(
new LinkedHashMap<FactoryContainer, Attributes>());
@@ -183,7 +187,7 @@ public class FactoryPath implements IFactoryPath {
Attributes a = new Attributes(enabled, runInBatchMode);
internalAdd(fc, a);
}
-
+
/**
* Set the factory path based on the contents of an ordered map.
* @param map should be an ordered map, such as LinkedHashMap; should contain no
@@ -192,10 +196,12 @@ public class FactoryPath implements IFactoryPath {
public void setContainers(Map<FactoryContainer, Attributes> map) {
synchronized(_path) {
_path.clear();
- _path.putAll(map);
+ for (Entry<FactoryContainer, Attributes> entry : getReversed(_path.entrySet())) {
+ _path.put(entry.getKey(), entry.getValue());
+ }
}
}
-
+
/**
* Add a factory container, and attributes, to the head of the list.
* If it already existed in the list, remove the old instance before
@@ -207,22 +213,14 @@ public class FactoryPath implements IFactoryPath {
private void internalAdd(FactoryContainer fc, Attributes a) {
synchronized(_path) {
_path.remove(fc);
- // LinkedHashMap doesn't have any way to add to the head,
- // so we're forced to do two copies. Make the new map
- // large enough that we don't have to rehash midway through the putAll().
- Map<FactoryContainer, Attributes> newPath =
- new LinkedHashMap<>(1 + 4*(_path.size() + 1)/3);
- newPath.put(fc, a);
- newPath.putAll(_path);
- _path.clear();
- _path.putAll(newPath);
+ _path.put(fc, a);
}
}
public Map<FactoryContainer, Attributes> getEnabledContainers() {
Map<FactoryContainer, Attributes> map = new LinkedHashMap<>();
synchronized(_path) {
- for (Map.Entry<FactoryContainer, Attributes> entry : _path.entrySet()) {
+ for (Map.Entry<FactoryContainer, Attributes> entry : getReversed(_path.entrySet())) {
Attributes attr = entry.getValue();
if (attr.isEnabled()) {
Attributes attrClone = new Attributes(attr);
@@ -233,14 +231,21 @@ public class FactoryPath implements IFactoryPath {
return map;
}
+ private static <T> List<T> getReversed(Collection<T> collection) {
+ ArrayList<T> result = new ArrayList<>();
+ result.addAll(collection);
+ Collections.reverse(result);
+ return result;
+ }
+
/**
* @return a copy of the path
*/
public Map<FactoryContainer, Attributes> getAllContainers() {
Map<FactoryContainer, Attributes> map = new LinkedHashMap<>(_path.size());
- synchronized(_path) {
- for( Map.Entry<FactoryContainer, Attributes> entry : _path.entrySet() ){
- map.put( entry.getKey(), new Attributes(entry.getValue()) );
+ synchronized (_path) {
+ for (Map.Entry<FactoryContainer, Attributes> entry : getReversed(_path.entrySet())) {
+ map.put(entry.getKey(), new Attributes(entry.getValue()));
}
}
return map;

Back to the top