org.apache.commons.imaging.FormatCompliance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-imaging Show documentation
Show all versions of commons-imaging Show documentation
Apache Commons Imaging (previously Sanselan) is a pure-Java image library.
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.commons.imaging;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Provides information about the compliance of a specified data source (byte array, file, etc.) to an image format.
*/
public class FormatCompliance {
private static final Logger LOGGER = Logger.getLogger(FormatCompliance.class.getName());
public static FormatCompliance getDefault() {
return new FormatCompliance("ignore", false);
}
private final boolean failOnError;
private final String description;
private final List comments = new ArrayList<>();
public FormatCompliance(final String description) {
this.description = description;
this.failOnError = false;
}
public FormatCompliance(final String description, final boolean failOnError) {
this.description = description;
this.failOnError = failOnError;
}
public void addComment(final String comment) throws ImagingException {
comments.add(comment);
if (failOnError) {
throw new ImagingException(comment);
}
}
public void addComment(final String comment, final int value) throws ImagingException {
addComment(comment + ": " + getValueDescription(value));
}
public boolean checkBounds(final String name, final int min, final int max, final int actual) throws ImagingException {
if (actual < min || actual > max) {
addComment(name + ": " + "bounds check: " + min + " <= " + actual + " <= " + max + ": false");
return false;
}
return true;
}
public boolean compare(final String name, final int valid, final int actual) throws ImagingException {
return compare(name, new int[] { valid, }, actual);
}
public boolean compare(final String name, final int[] valid, final int actual) throws ImagingException {
for (final int element : valid) {
if (actual == element) {
return true;
}
}
final StringBuilder result = new StringBuilder(43);
result.append(name);
result.append(": Unexpected value: (valid: ");
if (valid.length > 1) {
result.append('{');
}
for (int i = 0; i < valid.length; i++) {
if (i > 0) {
result.append(", ");
}
result.append(getValueDescription(valid[i]));
}
if (valid.length > 1) {
result.append('}');
}
result.append(", actual: ").append(getValueDescription(actual)).append(")");
addComment(result.toString());
return false;
}
public boolean compareBytes(final String name, final byte[] expected, final byte[] actual) throws ImagingException {
if (expected.length != actual.length) {
addComment(name + ": " + "Unexpected length: (expected: " + expected.length + ", actual: " + actual.length + ")");
return false;
}
for (int i = 0; i < expected.length; i++) {
// System.out.println("expected: "
// + getValueDescription(expected[i]) + ", actual: "
// + getValueDescription(actual[i]) + ")");
if (expected[i] != actual[i]) {
addComment(
name + ": " + "Unexpected value: (expected: " + getValueDescription(expected[i]) + ", actual: " + getValueDescription(actual[i]) + ")");
return false;
}
}
return true;
}
public void dump() {
try (StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw)) {
dump(pw);
pw.flush();
sw.flush();
LOGGER.fine(sw.toString());
} catch (final IOException e) {
LOGGER.log(Level.SEVERE, e.getMessage(), e);
}
}
public void dump(final PrintWriter pw) {
pw.println("Format Compliance: " + description);
if (comments.isEmpty()) {
pw.println("\t" + "No comments.");
} else {
for (int i = 0; i < comments.size(); i++) {
pw.println("\t" + (i + 1) + ": " + comments.get(i));
}
}
pw.println("");
pw.flush();
}
private String getValueDescription(final int value) {
return value + " (" + Integer.toHexString(value) + ")";
}
@Override
public String toString() {
final StringWriter sw = new StringWriter();
final PrintWriter pw = new PrintWriter(sw);
dump(pw);
return sw.getBuffer().toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy