org.apache.pdfbox.preflight.font.DescendantFontValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of preflight Show documentation
Show all versions of preflight Show documentation
The Apache Preflight library is an open source Java tool that implements
a parser compliant with the ISO-19005 (PDF/A) specification. Preflight is a
subproject of Apache PDFBox.
The newest version!
/*****************************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
package org.apache.pdfbox.preflight.font;
import static org.apache.pdfbox.preflight.PreflightConstants.ERROR_FONTS_CIDKEYED_CIDTOGID;
import static org.apache.pdfbox.preflight.PreflightConstants.ERROR_FONTS_CIDKEYED_SYSINFO;
import static org.apache.pdfbox.preflight.PreflightConstants.ERROR_FONTS_DICTIONARY_INVALID;
import java.io.IOException;
import java.io.InputStream;
import org.apache.pdfbox.cos.COSBase;
import org.apache.pdfbox.cos.COSDictionary;
import org.apache.pdfbox.cos.COSInteger;
import org.apache.pdfbox.cos.COSName;
import org.apache.pdfbox.cos.COSStream;
import org.apache.pdfbox.pdmodel.font.PDCIDFont;
import org.apache.pdfbox.preflight.PreflightContext;
import org.apache.pdfbox.preflight.ValidationResult.ValidationError;
import org.apache.pdfbox.preflight.font.container.FontContainer;
public abstract class DescendantFontValidator extends SimpleFontValidator
{
public DescendantFontValidator(PreflightContext context, PDCIDFont font, T fContainer)
{
super(context, font, font.getCOSObject(), fContainer);
}
@Override
protected void checkMandatoryField()
{
boolean arePresent = fontDictionary.containsKey(COSName.TYPE);
arePresent &= fontDictionary.containsKey(COSName.SUBTYPE);
arePresent &= fontDictionary.containsKey(COSName.BASE_FONT);
arePresent &= fontDictionary.containsKey(COSName.CIDSYSTEMINFO);
arePresent &= fontDictionary.containsKey(COSName.FONT_DESC);
if (!arePresent)
{
this.fontContainer.push(new ValidationError(ERROR_FONTS_DICTIONARY_INVALID,
font.getName() + ": Required keys are missing"));
}
checkCIDSystemInfo(fontDictionary.getCOSDictionary(COSName.CIDSYSTEMINFO));
checkCIDToGIDMap(fontDictionary.getDictionaryObject(COSName.CID_TO_GID_MAP));
}
/**
* Check the content of the CIDSystemInfo dictionary. A CIDSystemInfo dictionary must contain :
*
* - a Name - Registry
*
- a Name - Ordering
*
- a Integer - Supplement
*
*
* @param sysinfo
*/
protected void checkCIDSystemInfo(COSDictionary sysinfo)
{
if (sysinfo != null)
{
String reg = sysinfo.getString(COSName.REGISTRY);
String ord = sysinfo.getString(COSName.ORDERING);
COSBase sup = sysinfo.getDictionaryObject(COSName.SUPPLEMENT);
if (!(reg != null && ord != null && sup instanceof COSInteger))
{
this.fontContainer.push(new ValidationError(ERROR_FONTS_CIDKEYED_SYSINFO));
}
}
else
{
this.fontContainer.push(new ValidationError(ERROR_FONTS_CIDKEYED_SYSINFO));
}
}
/**
* This method checks the CIDtoGIDMap entry of the Font dictionary. call the
* {@linkplain #checkCIDToGIDMap(COSBase, boolean)} with right parameters
* according to the instance of DescendantFontValidator
*
* @param ctog
*/
protected abstract void checkCIDToGIDMap(COSBase ctog);
/**
* This method checks the CIDtoGIDMap entry of the Font dictionary. This
* element must be a Stream or a Name. If it is a name, it must be
* "Identity" otherwise, the PDF file isn't a PDF/A-1b.
*
* If the validation fails the list of errors in the FontContainer is
* updated.
*
* If the CIDtoGIDMap is a Stream, it is parsed as a CMap and the result is
* returned.
*
* @param ctog
* @param mandatory true for CIDType2 , false for CIDType0
*/
protected void checkCIDToGIDMap(COSBase ctog, boolean mandatory)
{
if (ctog instanceof COSName)
{
// ---- valid only if the string is Identity
if (!COSName.IDENTITY.equals(ctog))
{
this.fontContainer.push(new ValidationError(ERROR_FONTS_CIDKEYED_CIDTOGID,
font.getName() + ": The CIDToGID entry is invalid"));
}
}
else if (ctog instanceof COSStream)
{
try
{
// todo: check the map's content? (won't pdfbox do this?)
InputStream is = ((COSStream) ctog).createInputStream();
is.close();
}
catch (IOException e)
{
// map can be invalid, return a Validation Error
this.fontContainer.push(new ValidationError(ERROR_FONTS_CIDKEYED_CIDTOGID,
font.getName() + ": error getting CIDToGIDMap", e));
}
}
else if (mandatory)
{
this.fontContainer.push(new ValidationError(ERROR_FONTS_CIDKEYED_CIDTOGID,
font.getName() + ": mandatory CIDToGIDMap missing"));
}
}
}