org.verapdf.model.impl.pb.pd.PBoxPDOCProperties Maven / Gradle / Ivy
/**
* This file is part of veraPDF PDF Box PDF/A Validation Model Implementation, a module of the veraPDF project.
* Copyright (c) 2015, veraPDF Consortium
* All rights reserved.
*
* veraPDF PDF Box PDF/A Validation Model Implementation is free software: you can redistribute it and/or modify
* it under the terms of either:
*
* The GNU General public license GPLv3+.
* You should have received a copy of the GNU General Public License
* along with veraPDF PDF Box PDF/A Validation Model Implementation as the LICENSE.GPL file in the root of the source
* tree. If not, see http://www.gnu.org/licenses/ or
* https://www.gnu.org/licenses/gpl-3.0.en.html.
*
* The Mozilla Public License MPLv2+.
* You should have received a copy of the Mozilla Public License along with
* veraPDF PDF Box PDF/A Validation Model Implementation as the LICENSE.MPL file in the root of the source tree.
* If a copy of the MPL was not distributed with this file, you can obtain one at
* http://mozilla.org/MPL/2.0/.
*/
package org.verapdf.model.impl.pb.pd;
import java.util.logging.Logger;
import org.apache.pdfbox.cos.COSArray;
import org.apache.pdfbox.cos.COSBase;
import org.apache.pdfbox.cos.COSDictionary;
import org.apache.pdfbox.cos.COSName;
import org.apache.pdfbox.pdmodel.common.COSObjectable;
import org.apache.pdfbox.pdmodel.graphics.optionalcontent.PDOptionalContentProperties;
import org.verapdf.model.baselayer.Object;
import org.verapdf.model.pdlayer.PDOCConfig;
import org.verapdf.model.pdlayer.PDOCProperties;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/**
* @author Timur Kamalov
*/
public class PBoxPDOCProperties extends PBoxPDObject implements PDOCProperties {
private static final Logger LOGGER = Logger.getLogger(PBoxPDOCProperties.class.getCanonicalName());
public static final String OC_PROPERTIES_TYPE = "PDOCProperties";
public static final String D = "D";
public static final String CONFIGS = "Configs";
public PBoxPDOCProperties(COSObjectable simplePDObject) {
super(simplePDObject, OC_PROPERTIES_TYPE);
}
@Override
public List extends Object> getLinkedObjects(String link) {
switch (link) {
case D:
return this.getD();
case CONFIGS:
return this.getConfigs();
default:
return super.getLinkedObjects(link);
}
}
private List getD() {
List result = new ArrayList<>();
COSBase contentProperties = this.simplePDObject.getCOSObject();
if (contentProperties instanceof COSDictionary) {
COSDictionary defaultConfig = (COSDictionary) ((COSDictionary) contentProperties)
.getDictionaryObject(COSName.D);
String[] groupNames = ((PDOptionalContentProperties) this.simplePDObject).getGroupNames();
List groupNamesList = Arrays.asList(groupNames);
PDOCConfig pdConfig = new PBoxPDOCConfig(defaultConfig, groupNamesList, false);
result.add(pdConfig);
return result;
}
LOGGER.log(java.util.logging.Level.INFO, "Invalid object type of the default optional configuration dictionary. Returning empty config.");
PDOCConfig config = new PBoxPDOCConfig(new COSDictionary());
result.add(config);
return result;
}
private List getConfigs() {
COSDictionary contentProperties = (COSDictionary) this.simplePDObject.getCOSObject();
List names = getAllNames(contentProperties);
String[] groupNames = ((PDOptionalContentProperties) this.simplePDObject).getGroupNames();
List groupNamesList = Arrays.asList(groupNames);
COSArray configs = (COSArray) contentProperties.getDictionaryObject(CONFIGS);
if (configs != null) {
List result = new ArrayList<>();
for (int i = 0; i < configs.size(); i++) {
COSBase config = configs.getObject(i);
if (config instanceof COSDictionary) {
PDOCConfig pdConfig = new PBoxPDOCConfig(config, groupNamesList,
names.contains(((COSDictionary) config).getString(COSName.NAME)));
result.add(pdConfig);
} else {
LOGGER.log(java.util.logging.Level.INFO, "Invalid object type of the configuration dictionary. Ignoring config.");
}
}
return result;
}
return Collections.emptyList();
}
private static List getAllNames(final COSDictionary contentProperties) {
List result = new ArrayList<>();
COSBase defaultConfig = contentProperties.getDictionaryObject(COSName.D);
if (defaultConfig instanceof COSDictionary) {
String name = ((COSDictionary) defaultConfig).getString(COSName.NAME);
if (name != null) {
result.add(name);
}
}
COSArray configs = (COSArray) contentProperties.getDictionaryObject(CONFIGS);
if (configs != null) {
for (int i = 0; i < configs.size(); i++) {
COSBase config = configs.get(i);
if (config instanceof COSDictionary) {
String name = ((COSDictionary) config).getString(COSName.NAME);
if (name != null) {
result.add(name);
}
}
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy