Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2017-01-31 22:59:37 +0000
committerDonald Dunne2017-02-02 21:21:30 +0000
commite8cb8734ba8d3ba2ba23b4b2199e90fc6da8a296 (patch)
tree34eee961c772215786c62bc4e8a71b922b1e7ae8
parentfc46e622b418371a9ff0b294892064eee322ab5f (diff)
downloadorg.eclipse.osee-e8cb8734ba8d3ba2ba23b4b2199e90fc6da8a296.tar.gz
org.eclipse.osee-e8cb8734ba8d3ba2ba23b4b2199e90fc6da8a296.tar.xz
org.eclipse.osee-e8cb8734ba8d3ba2ba23b4b2199e90fc6da8a296.zip
bug[ats_ATS344961]: Fix TransactionManager transaction cache0.24.3.v201702030012_NRB
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/HashCollection.java23
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java6
2 files changed, 20 insertions, 9 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/HashCollection.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/HashCollection.java
index a9c699a736d..7f86d5cf77a 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/HashCollection.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/type/HashCollection.java
@@ -14,6 +14,7 @@ import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
+import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
@@ -25,7 +26,7 @@ import java.util.concurrent.ConcurrentHashMap;
* specified at construction, if desired. All Collections returned by methods are backed by the , so changes to the are
* reflected in the Collection, and vice-versa. However, modifications to the Collection outside of this class are
* generally discouraged because removal of the last item would then not guarantee removal of the key.
- *
+ *
* @author Donald G. Dunne
*/
public class HashCollection<K, V> {
@@ -96,7 +97,7 @@ public class HashCollection<K, V> {
/**
* Creates an unsynchronized Plus using a default Collection type (ArrayList)
- *
+ *
* @see HashMap#HashMap(int, float)
*/
public HashCollection(int initialCapacity, float loadFactor) {
@@ -105,7 +106,7 @@ public class HashCollection<K, V> {
/**
* Creates an unsynchronized Plus using a default Collection type (ArrayList)
- *
+ *
* @see HashMap#HashMap(int)
*/
public HashCollection(int initialCapacity) {
@@ -127,7 +128,7 @@ public class HashCollection<K, V> {
/**
* Adds the value to the collection specified by the key. If there is not a collection for the given key, a new
* collection is created and added to the hash.
- *
+ *
* @param key The key whose collection we will add value to.
* @param value The value to be added.
* @return the collection containing value and all other items associated with the key.
@@ -157,13 +158,19 @@ public class HashCollection<K, V> {
/**
* Adds all of the items in the Collection values to the collection for the specified key.
- *
+ *
* @param key The key to add the values to
- * @param values The values to be added
+ * @param values The values to be added. Null or empty values will insert empty list in map
* @return The collection for the key, containing all values.
*/
public Collection<V> put(K key, Collection<V> values) {
Collection<V> items = null;
+ if (values == null || values.isEmpty()) {
+ Collection<V> values2 = this.getValues(key);
+ if (values2 == null) {
+ map.put(key, new LinkedList<>());
+ }
+ }
for (V value : values) {
if (items == null) {
items = this.put(key, value);
@@ -202,7 +209,7 @@ public class HashCollection<K, V> {
/**
* Returns the Collection of items for this key, or null if the key does not exist.
- *
+ *
* @return Return value collection reference
*/
public Collection<V> getValues(K key) {
@@ -211,7 +218,7 @@ public class HashCollection<K, V> {
/**
* Returns the Collection all items
- *
+ *
* @return Return value collection reference
*/
public List<V> getValues() {
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java
index db0db64eb5b..c95a53dcc43 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionManager.java
@@ -136,7 +136,11 @@ public final class TransactionManager {
SELECT_COMMIT_TRANSACTIONS, artifact);
}
Collection<TransactionRecord> transactions = commitArtifactIdMap.getValues(artifact);
- return transactions == null ? Collections.emptyList() : transactions;
+ if (transactions == null) {
+ transactions = Collections.emptyList();
+ commitArtifactIdMap.put(artifact, transactions);
+ }
+ return transactions;
}
/**

Back to the top