From 2df24d283591f0a7037b658bb637577613e0439a Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Fri, 1 Jul 2016 10:20:24 +0200 Subject: added augmentating signature profiles --- .../at/gv/egiz/pdfas/common/settings/Profiles.java | 22 +- .../at/gv/egiz/pdfas/common/settings/Settings.java | 668 ++++++++++++--------- .../at/gv/egiz/pdfas/common/utils/ImageUtils.java | 11 +- 3 files changed, 421 insertions(+), 280 deletions(-) (limited to 'pdf-as-common') diff --git a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Profiles.java b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Profiles.java index 9969fdf0..2b5c5b6f 100644 --- a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Profiles.java +++ b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/settings/Profiles.java @@ -1,20 +1,23 @@ package at.gv.egiz.pdfas.common.settings; -import java.util.Map; -import java.util.Properties; +import java.util.*; public class Profiles { private String name; private Profiles parent; + private List augments; private boolean initialized; private static final String PARENT_CONFIG = ".parent"; + + private static final String AUGMENTS_CONFIG = ".augments"; public Profiles(String name) { this.name = name; this.initialized = false; this.parent = null; + this.augments = new ArrayList(); } public String getName() { @@ -26,12 +29,27 @@ public class Profiles { if(parentString != null) { this.parent = profiles.get(parentString); } + + String augmentKeyPrefix = "sig_obj." + this.name + AUGMENTS_CONFIG; + + Enumeration enumeration = props.propertyNames(); + while(enumeration.hasMoreElements()) { + String key = (String)enumeration.nextElement(); + if(key.startsWith(augmentKeyPrefix)) { + String augmentProfile = props.getProperty(key); + this.augments.add(profiles.get(augmentProfile)); + } + } } public Profiles getParent() { return this.parent; } + public List getAugments() { + return this.augments; + } + public boolean isInitialized() { return initialized; } 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 f37ae452..0dc36fd2 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 @@ -3,19 +3,19 @@ * PDF-AS has been contracted by the E-Government Innovation Center EGIZ, a * joint initiative of the Federal Chancellery Austria and Graz University of * Technology. - * + *

* Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ - * + *

* Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. - * + *

* This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works @@ -46,192 +46,306 @@ import at.gv.egiz.pdfas.common.exceptions.PdfAsSettingsException; public class Settings implements ISettings, IProfileConstants { - private static final Logger logger = LoggerFactory - .getLogger(Settings.class); - - protected Properties properties = new Properties(); - - protected File workDirectory; - - public Settings(File workDirectory) { - try { - this.workDirectory = workDirectory; - loadSettings(workDirectory); - } catch (PdfAsSettingsException e) { - logger.error(e.getMessage(), e); - } - } - - private void loadSettingsRecursive(File workDirectory, File file) - throws PdfAsSettingsException { - try { - String configDir = workDirectory.getAbsolutePath() + File.separator - + CFG_DIR; - Properties tmpProps = new Properties(); - logger.debug("Loading: " + file.getName()); - tmpProps.load(new FileInputStream(file)); - - properties.putAll(tmpProps); - - Map includes = this.getValuesPrefix(INCLUDE, - tmpProps); - File contextFolder = new File(configDir); - if (includes != null) { - Iterator includeIterator = includes.values().iterator(); - while (includeIterator.hasNext()) { - contextFolder = new File(configDir); - String includeFileName = includeIterator.next(); - - File includeInstruction = new File(contextFolder, - includeFileName); - contextFolder = includeInstruction.getParentFile(); - String includeName = includeInstruction.getName(); - - WildcardFileFilter fileFilter = new WildcardFileFilter( - includeName, IOCase.SENSITIVE); - Collection includeFiles = null; - - if (contextFolder != null && contextFolder.exists() - && contextFolder.isDirectory()) { - includeFiles = FileUtils.listFiles(contextFolder, - fileFilter, null); - } - if (includeFiles != null && !includeFiles.isEmpty()) { - logger.debug("Including '" + includeFileName + "'."); - for (File includeFile : includeFiles) { - loadSettingsRecursive(workDirectory, includeFile); - } - } - } - } - - } catch (IOException e) { - throw new PdfAsSettingsException("Failed to read settings!", e); - } - } - - private void buildProfiles() { - Map profiles = new HashMap(); - - Iterator itKeys = this.getFirstLevelKeys("sig_obj.types.") - .iterator(); - while (itKeys.hasNext()) { - String key = itKeys.next(); - String profile = key.substring("sig_obj.types.".length()); - //System.out.println("[" + profile + "]: " + this.getValue(key)); - if (this.getValue(key).equals("on")) { - Profiles prof = new Profiles(profile); - profiles.put(profile, prof); - } - } - - // Initialize Parent Structure ... - Iterator> profileIterator = profiles.entrySet() - .iterator(); - while (profileIterator.hasNext()) { - Entry entry = profileIterator.next(); - entry.getValue().findParent(properties, profiles); - } - - // Debug Output - Iterator> profileIteratorDbg = profiles.entrySet() - .iterator(); - while (profileIteratorDbg.hasNext()) { - Entry entry = profileIteratorDbg.next(); - if(entry.getValue().getParent() == null) { - logger.debug("Got Profile: [{}] : {}", entry.getKey(), entry.getValue().getName()); - } else { - logger.debug("Got Profile: [{}] : {} (Parent {})", entry.getKey(), - entry.getValue().getName(), entry.getValue().getParent().getName()); - } - } - - logger.debug("Configured Settings: {}", - properties.size()); - - // Resolve Parent Structures ... - while (!profiles.isEmpty()) { - List removes = new ArrayList(); - Iterator> profileIt = profiles.entrySet() - .iterator(); - while (profileIt.hasNext()) { - Entry entry = profileIt.next(); - - // Remove all base Profiles ... - if (entry.getValue().getParent() == null) { - entry.getValue().setInitialized(true); - removes.add(entry.getKey()); - } else { - Profiles parent = entry.getValue().getParent(); - if (parent.isInitialized()) { - // If Parent is initialized Copy Properties from Parent - // to this profile - String parentBase = "sig_obj." + parent.getName(); - String childBase = "sig_obj." - + entry.getValue().getName(); - - Iterator parentKeyIt = this.getKeys( - parentBase+".").iterator(); - while (parentKeyIt.hasNext()) { - String key = parentKeyIt.next(); - String keyToCopy = key.substring(parentBase - .length()); - //logger.debug("Profile: {} => {}", - // key, childBase+keyToCopy); - String sourceKey = parentBase+keyToCopy; - String targetKey = childBase+keyToCopy; - - if(!this.hasValue(targetKey)) { - properties.setProperty(targetKey, - this.getValue(sourceKey)); - //logger.debug("Replaced: {} with Value from {}", - // childBase+keyToCopy, parentBase+keyToCopy); - } else { - //logger.debug("NOT Replaced: {} with Value from {}", - // childBase+keyToCopy, parentBase+keyToCopy); - } - } - - // Copy done - entry.getValue().setInitialized(true); - removes.add(entry.getKey()); - } - } - } - - // Remove all Profiles from Remove List - - if(removes.isEmpty() && !profiles.isEmpty()) { - logger.error("Failed to build inheritant Profiles, running in infinite loop! (aborting ...)"); - logger.error("Profiles that cannot be resolved completly:"); - Iterator> failedProfiles = profiles.entrySet().iterator(); - while (failedProfiles.hasNext()) { - Entry entry = failedProfiles.next(); - logger.error("Problem Profile: [{}] : {}", entry.getKey(), entry.getValue().getName()); - } - return; - } - - Iterator removeIt = removes.iterator(); - while(removeIt.hasNext()) { - profiles.remove(removeIt.next()); - } - } - - logger.debug("Derived Settings: {}", - properties.size()); - - } - - public void loadSettings(File workDirectory) throws PdfAsSettingsException { - // try { - String configDir = workDirectory.getAbsolutePath() + File.separator - + CFG_DIR; - String configFile = configDir + File.separator + CFG_FILE; - loadSettingsRecursive(workDirectory, new File(configFile)); - buildProfiles(); - /* - * logger.debug("Loading cfg file: " + configFile); + private static final Logger logger = LoggerFactory + .getLogger(Settings.class); + + protected Properties properties = new Properties(); + + protected File workDirectory; + + public Settings(File workDirectory) { + try { + this.workDirectory = workDirectory; + loadSettings(workDirectory); + } catch (PdfAsSettingsException e) { + logger.error(e.getMessage(), e); + } + } + + private void loadSettingsRecursive(File workDirectory, File file) + throws PdfAsSettingsException { + try { + String configDir = workDirectory.getAbsolutePath() + File.separator + + CFG_DIR; + Properties tmpProps = new Properties(); + logger.debug("Loading: " + file.getName()); + tmpProps.load(new FileInputStream(file)); + + properties.putAll(tmpProps); + + Map includes = this.getValuesPrefix(INCLUDE, + tmpProps); + File contextFolder = new File(configDir); + if (includes != null) { + Iterator includeIterator = includes.values().iterator(); + while (includeIterator.hasNext()) { + contextFolder = new File(configDir); + String includeFileName = includeIterator.next(); + + File includeInstruction = new File(contextFolder, + includeFileName); + contextFolder = includeInstruction.getParentFile(); + String includeName = includeInstruction.getName(); + + WildcardFileFilter fileFilter = new WildcardFileFilter( + includeName, IOCase.SENSITIVE); + Collection includeFiles = null; + + if (contextFolder != null && contextFolder.exists() + && contextFolder.isDirectory()) { + includeFiles = FileUtils.listFiles(contextFolder, + fileFilter, null); + } + if (includeFiles != null && !includeFiles.isEmpty()) { + logger.debug("Including '" + includeFileName + "'."); + for (File includeFile : includeFiles) { + loadSettingsRecursive(workDirectory, includeFile); + } + } + } + } + + } catch (IOException e) { + throw new PdfAsSettingsException("Failed to read settings!", e); + } + } + + private void showAugments(Profiles profiles) { + if (!profiles.getAugments().isEmpty()) { + logger.debug("\tAugments for {}", profiles.getName()); + for (int i = 0; i < profiles.getAugments().size(); i++) { + logger.debug("\t\t{}", profiles.getAugments().get(i).getName()); + } + } + } + + private boolean isAugmentsReady(Profiles profiles) { + Iterator augmentingProfiles = profiles.getAugments().iterator(); + boolean allInitialized = true; + while (augmentingProfiles.hasNext()) { + if (!augmentingProfiles.next().isInitialized()) { + allInitialized = false; + } + } + return allInitialized; + } + + private boolean isParentReady(Profiles profiles) { + if (profiles.getParent() != null) { + return profiles.getParent().isInitialized(); + } else { + return false; + } + } + + private void performAugmentConfiguration(Profiles profiles) { + Iterator augmentingProfiles = profiles.getAugments().iterator(); + + String childBase = "sig_obj." + + profiles.getName(); + + while (augmentingProfiles.hasNext()) { + Profiles augmentingProfile = augmentingProfiles.next(); + String augmentingBase = "sig_obj." + augmentingProfile.getName(); + + Iterator augmentingKeyIt = this.getKeys( + augmentingBase + ".").iterator(); + + while (augmentingKeyIt.hasNext()) { + String key = augmentingKeyIt.next(); + String keyToCopy = key.substring(augmentingBase + .length()); + //logger.debug("Profile: {} => {}", + // key, childBase+keyToCopy); + String sourceKey = augmentingBase + keyToCopy; + String targetKey = childBase + keyToCopy; + + if (!this.hasValue(targetKey)) { + properties.setProperty(targetKey, + this.getValue(sourceKey)); + //logger.debug("Replaced: {} with Value from {}", + // childBase+keyToCopy, parentBase+keyToCopy); + } else { + //logger.debug("NOT Replaced: {} with Value from {}", + // childBase+keyToCopy, parentBase+keyToCopy); + } + } + } + } + + private void performParentConfiguration(Profiles profiles) { + if (profiles.getParent() != null) { + // If Parent is initialized Copy Properties from Parent + // to this profile + String parentBase = "sig_obj." + profiles.getParent().getName(); + String childBase = "sig_obj." + + profiles.getName(); + + Iterator parentKeyIt = this.getKeys( + parentBase + ".").iterator(); + while (parentKeyIt.hasNext()) { + String key = parentKeyIt.next(); + String keyToCopy = key.substring(parentBase + .length()); + //logger.debug("Profile: {} => {}", + // key, childBase+keyToCopy); + String sourceKey = parentBase + keyToCopy; + String targetKey = childBase + keyToCopy; + + if (!this.hasValue(targetKey)) { + properties.setProperty(targetKey, + this.getValue(sourceKey)); + //logger.debug("Replaced: {} with Value from {}", + // childBase+keyToCopy, parentBase+keyToCopy); + } else { + //logger.debug("NOT Replaced: {} with Value from {}", + // childBase+keyToCopy, parentBase+keyToCopy); + } + } + } + } + + private void buildProfiles() { + Map profiles = new HashMap(); + + Iterator itKeys = this.getFirstLevelKeys("sig_obj.types.") + .iterator(); + while (itKeys.hasNext()) { + String key = itKeys.next(); + String profile = key.substring("sig_obj.types.".length()); + //System.out.println("[" + profile + "]: " + this.getValue(key)); + if (this.getValue(key).equals("on")) { + Profiles prof = new Profiles(profile); + profiles.put(profile, prof); + } + } + + // Initialize Parent Structure ... + Iterator> profileIterator = profiles.entrySet() + .iterator(); + while (profileIterator.hasNext()) { + Entry entry = profileIterator.next(); + entry.getValue().findParent(properties, profiles); + } + + // Debug Output + Iterator> profileIteratorDbg = profiles.entrySet() + .iterator(); + while (profileIteratorDbg.hasNext()) { + Entry entry = profileIteratorDbg.next(); + if (entry.getValue().getParent() == null) { + logger.debug("Got Profile: [{}] : {}", entry.getKey(), entry.getValue().getName()); + showAugments(entry.getValue()); + } else { + logger.debug("Got Profile: [{}] : {} (Parent {})", entry.getKey(), + entry.getValue().getName(), entry.getValue().getParent().getName()); + showAugments(entry.getValue()); + } + } + + logger.debug("Configured Settings: {}", + properties.size()); + + // Resolve Parent Structures ... + while (!profiles.isEmpty()) { + List removes = new ArrayList(); + Iterator> profileIt = profiles.entrySet() + .iterator(); + while (profileIt.hasNext()) { + Entry entry = profileIt.next(); + + // Remove all base Profiles ... + if (entry.getValue().getParent() == null && entry.getValue().getAugments().isEmpty()) { + // Has neither parent or augmenting profiles + + entry.getValue().setInitialized(true); + removes.add(entry.getKey()); + } else if (entry.getValue().getParent() == null) { + // Has augmenting profiles but no parent + + // check if all augmenting profiles are initialized if so + // add them + + Profiles profile = entry.getValue(); + if (this.isAugmentsReady(profile)) { + this.performAugmentConfiguration(profile); + // Copy done + entry.getValue().setInitialized(true); + removes.add(entry.getKey()); + } else { + logger.debug("Not all augmenting profiles are ready yet for {}", entry.getValue().getName()); + } + } else if (entry.getValue().getAugments().isEmpty()) { + + // Has parent but no augmenting profiles + Profiles profile = entry.getValue(); + + if (this.isParentReady(profile)) { + this.performParentConfiguration(profile); + // Copy done + entry.getValue().setInitialized(true); + removes.add(entry.getKey()); + } + } else { + + // Has parent and augmenting profiles + + Profiles profile = entry.getValue(); + if (this.isAugmentsReady(profile) && this.isParentReady(profile)) { + // order is curcial, augments preceed over parent configuration + this.performAugmentConfiguration(profile); + this.performParentConfiguration(profile); + + // Copy done + entry.getValue().setInitialized(true); + removes.add(entry.getKey()); + } + } + } + + // Remove all Profiles from Remove List + + if (removes.isEmpty() && !profiles.isEmpty()) { + logger.error("Failed to build inheritant Profiles, running in infinite loop! (aborting ...)"); + logger.error("Profiles that cannot be resolved completly:"); + Iterator> failedProfiles = profiles.entrySet().iterator(); + while (failedProfiles.hasNext()) { + Entry entry = failedProfiles.next(); + logger.error("Problem Profile: [{}] : {}", entry.getKey(), entry.getValue().getName()); + } + return; + } + + Iterator removeIt = removes.iterator(); + while (removeIt.hasNext()) { + profiles.remove(removeIt.next()); + } + } + + logger.debug("Derived Settings: {}", + properties.size()); + + } + + public void debugDumpProfileSettings(String profileName) { + Iterator keysIterator = this.getKeys("sig_obj." + profileName + ".").iterator(); + + logger.debug("Configuration for {}", profileName); + while(keysIterator.hasNext()) { + String key = keysIterator.next(); + logger.debug(" {}: {}", key, this.getValue(key)); + } + } + + public void loadSettings(File workDirectory) throws PdfAsSettingsException { + // try { + String configDir = workDirectory.getAbsolutePath() + File.separator + + CFG_DIR; + String configFile = configDir + File.separator + CFG_FILE; + loadSettingsRecursive(workDirectory, new File(configFile)); + buildProfiles(); + /* + * logger.debug("Loading cfg file: " + configFile); * * * properties.load(new FileInputStream(configFile)); @@ -258,97 +372,97 @@ public class Settings implements ISettings, IProfileConstants { * e) { logger.error("Failed to load cfg file " + includeFile, e); } } } * } */ - // logger.debug("Configured Properties:"); + // logger.debug("Configured Properties:"); /* * if(logger.isDebugEnabled()) { properties.list(System.out); } */ - // } catch (IOException e) { - // throw new PdfAsSettingsException("Failed to read settings!", e); - // } - } - - public String getValue(String key) { - return properties.getProperty(key); - } - - public boolean hasValue(String key) { - return properties.containsKey(key); - } - - private Map getValuesPrefix(String prefix, Properties props) { - Iterator keyIterator = props.keySet().iterator(); - Map valueMap = new HashMap(); - while (keyIterator.hasNext()) { - String key = keyIterator.next().toString(); - - if (key.startsWith(prefix)) { - valueMap.put(key, props.getProperty(key)); - } - } - - if (valueMap.isEmpty()) { - return null; - } - - return valueMap; - } - - public Map getValuesPrefix(String prefix) { - return getValuesPrefix(prefix, properties); - } - - public Vector getKeys(String prefix) { - Iterator keyIterator = properties.keySet().iterator(); - Vector valueMap = new Vector(); - while (keyIterator.hasNext()) { - String key = keyIterator.next().toString(); - - if (key.startsWith(prefix)) { - valueMap.add(key); - } - } - return valueMap; - } - - public Vector getFirstLevelKeys(String prefix) { - String mPrefix = prefix.endsWith(".") ? prefix : prefix + "."; - Iterator keyIterator = properties.keySet().iterator(); - Vector valueMap = new Vector(); - while (keyIterator.hasNext()) { - String key = keyIterator.next().toString(); - - if (key.startsWith(prefix)) { - int keyIdx = key.indexOf('.', mPrefix.length()) > 0 ? key - .indexOf('.', mPrefix.length()) : key.length(); - String firstLevels = key.substring(0, keyIdx); - if (!valueMap.contains(firstLevels)) { - valueMap.add(firstLevels); - } - } - } - - if (valueMap.isEmpty()) { - return null; - } - - return valueMap; - } - - public boolean hasPrefix(String prefix) { - Iterator keyIterator = properties.keySet().iterator(); - while (keyIterator.hasNext()) { - String key = keyIterator.next().toString(); - - if (key.startsWith(prefix)) { - return true; - } - } - return false; - } - - public String getWorkingDirectory() { - return this.workDirectory.getAbsolutePath(); - } + // } catch (IOException e) { + // throw new PdfAsSettingsException("Failed to read settings!", e); + // } + } + + public String getValue(String key) { + return properties.getProperty(key); + } + + public boolean hasValue(String key) { + return properties.containsKey(key); + } + + private Map getValuesPrefix(String prefix, Properties props) { + Iterator keyIterator = props.keySet().iterator(); + Map valueMap = new HashMap(); + while (keyIterator.hasNext()) { + String key = keyIterator.next().toString(); + + if (key.startsWith(prefix)) { + valueMap.put(key, props.getProperty(key)); + } + } + + if (valueMap.isEmpty()) { + return null; + } + + return valueMap; + } + + public Map getValuesPrefix(String prefix) { + return getValuesPrefix(prefix, properties); + } + + public Vector getKeys(String prefix) { + Iterator keyIterator = properties.keySet().iterator(); + Vector valueMap = new Vector(); + while (keyIterator.hasNext()) { + String key = keyIterator.next().toString(); + + if (key.startsWith(prefix)) { + valueMap.add(key); + } + } + return valueMap; + } + + public Vector getFirstLevelKeys(String prefix) { + String mPrefix = prefix.endsWith(".") ? prefix : prefix + "."; + Iterator keyIterator = properties.keySet().iterator(); + Vector valueMap = new Vector(); + while (keyIterator.hasNext()) { + String key = keyIterator.next().toString(); + + if (key.startsWith(prefix)) { + int keyIdx = key.indexOf('.', mPrefix.length()) > 0 ? key + .indexOf('.', mPrefix.length()) : key.length(); + String firstLevels = key.substring(0, keyIdx); + if (!valueMap.contains(firstLevels)) { + valueMap.add(firstLevels); + } + } + } + + if (valueMap.isEmpty()) { + return null; + } + + return valueMap; + } + + public boolean hasPrefix(String prefix) { + Iterator keyIterator = properties.keySet().iterator(); + while (keyIterator.hasNext()) { + String key = keyIterator.next().toString(); + + if (key.startsWith(prefix)) { + return true; + } + } + return false; + } + + public String getWorkingDirectory() { + return this.workDirectory.getAbsolutePath(); + } } diff --git a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/ImageUtils.java b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/ImageUtils.java index 39ebd3e0..96efa315 100644 --- a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/ImageUtils.java +++ b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/common/utils/ImageUtils.java @@ -179,7 +179,16 @@ public class ImageUtils { } is = new FileInputStream(img_file); - } catch (PdfAsException | IOException e) { + } catch (PdfAsException e) { + try { + is = new ByteArrayInputStream(Base64.decodeBase64(imageValue)); + } catch (Throwable e1) { + // Ignore value is not base 64! + logger.debug("Value is not base64: ", e1); + // rethrow e + throw e; + } + } catch (IOException e) { try { is = new ByteArrayInputStream(Base64.decodeBase64(imageValue)); } catch (Throwable e1) { -- cgit v1.2.3