From 93168e6b76bd0716e976c36e8e91b7c46f092e84 Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Tue, 25 Nov 2014 14:39:55 +0100 Subject: Fixed configuration profile building --- .../at/gv/egiz/pdfas/common/settings/Settings.java | 31 ++++++++++++++++++---- 1 file changed, 26 insertions(+), 5 deletions(-) (limited to 'pdf-as-common/src') diff --git a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java index 71894793..56631a7e 100644 --- a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java +++ b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Settings.java @@ -28,6 +28,7 @@ import java.io.FileInputStream; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; +import java.util.Enumeration; import java.util.HashMap; import java.util.Iterator; import java.util.List; @@ -146,6 +147,9 @@ public class Settings implements ISettings, IProfileConstants { } } + logger.debug("Settings: {}", + properties.size()); + // Resolve Parent Structures ... while (!profiles.isEmpty()) { List removes = new ArrayList(); @@ -166,15 +170,29 @@ public class Settings implements ISettings, IProfileConstants { String parentBase = "sig_obj." + parent.getName(); String childBase = "sig_obj." + entry.getValue().getName(); + Iterator parentKeyIt = this.getKeys( - parentBase).iterator(); + parentBase+".").iterator(); while (parentKeyIt.hasNext()) { String key = parentKeyIt.next(); String keyToCopy = key.substring(parentBase .length()); - if(!this.hasValue(childBase+keyToCopy)) { - properties.setProperty(childBase+keyToCopy, - this.getValue(parentBase+keyToCopy)); + //logger.debug("Profile: {} => {}", + // key, childBase+keyToCopy); + String sourceKey = parentBase+keyToCopy; + String targetKey = childBase+keyToCopy; + + int idx = targetKey.indexOf("NOTE"); + if(idx > 0) { + if(targetKey.indexOf("NOTE", idx+1) > 0) { + logger.debug("Profile: {} => {}", + parentBase, childBase); + } + } + + if(!this.hasValue(targetKey)) { + properties.setProperty(targetKey, + this.getValue(sourceKey)); //logger.debug("Replaced: {} with Value from {}", // childBase+keyToCopy, parentBase+keyToCopy); } else { @@ -189,7 +207,6 @@ public class Settings implements ISettings, IProfileConstants { } } } - // Remove all Profiles from Remove List @@ -209,6 +226,10 @@ public class Settings implements ISettings, IProfileConstants { profiles.remove(removeIt.next()); } } + + logger.debug("Settings: {}", + properties.size()); + } public void loadSettings(File workDirectory) throws PdfAsSettingsException { -- cgit v1.2.3