Skip to content
Snippets Groups Projects
Commit 7c295a5c authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-55: Reverted changes to PropertiesBatchManager

parent 20f2e8d3
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -149,9 +149,9 @@ public class PropertiesBatchManager implements IPropertiesBatchManager ...@@ -149,9 +149,9 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
{ {
List<IEntityProperty> newProperties = new ArrayList<IEntityProperty>(); List<IEntityProperty> newProperties = new ArrayList<IEntityProperty>();
List<KeyValue<Map<String, String>>> subColumnBindings = Map<String, Map<String, String>> subColumnBindings =
createColumnBindingsMap(propertiesBean.getProperties(), contexts); createColumnBindingsMap(propertiesBean.getProperties(), contexts);
for (KeyValue<Map<String, String>> entry : subColumnBindings) for (Entry<String, Map<String, String>> entry : subColumnBindings.entrySet())
{ {
String code = entry.getKey(); String code = entry.getKey();
EvaluationContext evalContext = contexts.get(code); EvaluationContext evalContext = contexts.get(code);
...@@ -206,45 +206,19 @@ public class PropertiesBatchManager implements IPropertiesBatchManager ...@@ -206,45 +206,19 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
return entityProperty; return entityProperty;
} }
private static final class KeyValue<T> private Map<String, Map<String, String>> createColumnBindingsMap(IEntityProperty[] properties,
{
private final String key;
private final T value;
KeyValue(String key, T value)
{
this.key = key;
this.value = value;
}
public String getKey()
{
return key;
}
public T getValue()
{
return value;
}
}
private List<KeyValue<Map<String, String>>> createColumnBindingsMap(
IEntityProperty[] properties,
Map<String, EvaluationContext> contexts) Map<String, EvaluationContext> contexts)
{ {
List<KeyValue<Map<String, String>>> subColumnBindings = Map<String, Map<String, String>> subColumnBindings =
new ArrayList<KeyValue<Map<String, String>>>(); new HashMap<String, Map<String, String>>();
List<KeyValue<String>> originalColumnBindings = new ArrayList<KeyValue<String>>(); Map<String, String> originalColumnBindings = new HashMap<String, String>();
for (IEntityProperty property : properties) for (IEntityProperty property : properties)
{ {
final String code = property.getPropertyType().getCode().toUpperCase(); final String code = property.getPropertyType().getCode().toUpperCase();
final String value = property.getStringValue(); final String value = property.getStringValue();
originalColumnBindings.add(new KeyValue<String>( originalColumnBindings.put(ManagedPropertyFunctions.originalColumnNameBindingKey(code),
ManagedPropertyFunctions.originalColumnNameBindingKey(code), value)); value);
int indexOfColon = code.indexOf(':'); int indexOfColon = code.indexOf(':');
String propertyCode = code; String propertyCode = code;
...@@ -254,36 +228,30 @@ public class PropertiesBatchManager implements IPropertiesBatchManager ...@@ -254,36 +228,30 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
propertyCode = code.substring(0, indexOfColon); propertyCode = code.substring(0, indexOfColon);
subColumn = code.substring(indexOfColon + 1); subColumn = code.substring(indexOfColon + 1);
} }
Map<String, String> bindings = subColumnBindings.get(propertyCode);
final Map<String, String> bindings = new HashMap<String, String>(); if (bindings == null)
subColumnBindings.add(new KeyValue<Map<String, String>>(propertyCode, bindings)); {
bindings = new HashMap<String, String>();
subColumnBindings.put(propertyCode, bindings);
}
bindings.put(subColumn, value); bindings.put(subColumn, value);
} }
// add original column bindings to all bindings // add original column bindings to all bindings
for (KeyValue<Map<String, String>> bindings : subColumnBindings) for (Map<String, String> bindings : subColumnBindings.values())
{ {
for (KeyValue<String> originalColumnEntry : originalColumnBindings) for (Entry<String, String> originalColumnEntry : originalColumnBindings.entrySet())
{ {
bindings.getValue() bindings.put(originalColumnEntry.getKey(), originalColumnEntry.getValue());
.put(originalColumnEntry.getKey(), originalColumnEntry.getValue());
} }
} }
for (Entry<String, EvaluationContext> entry : contexts.entrySet()) for (Entry<String, EvaluationContext> entry : contexts.entrySet())
{ {
String code = entry.getKey().toUpperCase(); String code = entry.getKey().toUpperCase();
List<KeyValue<Map<String, String>>> tmpSubColumnBindings = if (false == subColumnBindings.containsKey(code))
new ArrayList<KeyValue<Map<String, String>>>(); {
boolean hasKey = subColumnBindings.stream().anyMatch(x -> x.getKey().equals(code)); subColumnBindings.put(code, new HashMap<String, String>(originalColumnBindings));
if(!hasKey) {
Map<String, String> map2 = new HashMap<String, String>();
for (KeyValue<String> kv2 : originalColumnBindings)
{
map2.put(kv2.getKey(), kv2.getValue());
}
tmpSubColumnBindings.add(new KeyValue<Map<String, String>>(code, map2));
} }
subColumnBindings.addAll(tmpSubColumnBindings);
} }
return subColumnBindings; return subColumnBindings;
} }
......
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