com.twelvemonkeys.imageio.plugins.icns.IconResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imageio-icns Show documentation
Show all versions of imageio-icns Show documentation
ImageIO plugin for Apple Icon Image (ICNS) format.
/*
* Copyright (c) 2011, Harald Kuhr
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name "TwelveMonkeys" nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.twelvemonkeys.imageio.plugins.icns;
import com.twelvemonkeys.lang.Validate;
import javax.imageio.stream.ImageInputStream;
import java.awt.*;
import java.io.IOException;
/**
* IconResource
*
* @author Harald Kuhr
* @author last modified by $Author: haraldk$
* @version $Id: IconResource.java,v 1.0 23.11.11 13:35 haraldk Exp$
*/
final class IconResource {
// TODO: Rewrite using subclasses/instances!
protected final long start;
protected final int type;
protected final int length;
private IconResource(long start, int type, int length) {
validate(type, length);
this.start = start;
this.type = type;
this.length = length;
}
public static IconResource read(ImageInputStream input) throws IOException {
return new IconResource(input.getStreamPosition(), input.readInt(), input.readInt());
}
private void validate(int type, int length) {
switch (type) {
case ICNS.ICON:
validateLengthForType(type, length, 128);
break;
case ICNS.ICN_:
validateLengthForType(type, length, 256);
break;
case ICNS.icm_:
validateLengthForType(type, length, 48);
break;
case ICNS.icm4:
validateLengthForType(type, length, 96);
break;
case ICNS.icm8:
validateLengthForType(type, length, 192);
break;
case ICNS.ics_:
validateLengthForType(type, length, 64);
break;
case ICNS.ics4:
validateLengthForType(type, length, 128);
break;
case ICNS.ics8:
case ICNS.s8mk:
validateLengthForType(type, length, 256);
break;
case ICNS.icl4:
validateLengthForType(type, length, 512);
break;
case ICNS.icl8:
case ICNS.l8mk:
validateLengthForType(type, length, 1024);
break;
case ICNS.ich_:
validateLengthForType(type, length, 576);
break;
case ICNS.ich4:
validateLengthForType(type, length, 1152);
break;
case ICNS.ich8:
case ICNS.h8mk:
validateLengthForType(type, length, 2304);
break;
case ICNS.t8mk:
validateLengthForType(type, length, 16384);
break;
case ICNS.ih32:
case ICNS.is32:
case ICNS.il32:
case ICNS.it32:
case ICNS.ic08:
case ICNS.ic09:
case ICNS.ic10:
if (length > ICNS.RESOURCE_HEADER_SIZE) {
break;
}
throw new IllegalArgumentException(String.format("Wrong combination of icon type '%s' and length: %d", ICNSUtil.intToStr(type), length));
case ICNS.icnV:
validateLengthForType(type, length, 4);
break;
case ICNS.TOC_:
default:
if (length > ICNS.RESOURCE_HEADER_SIZE) {
break;
}
throw new IllegalStateException(String.format("Unknown icon type: '%s' length: %d", ICNSUtil.intToStr(type), length));
}
}
private void validateLengthForType(int type, int length, final int expectedLength) {
Validate.isTrue(
length == expectedLength + ICNS.RESOURCE_HEADER_SIZE, // Compute to make lengths more logical
String.format(
"Wrong combination of icon type '%s' and length: %d (expected: %d)",
ICNSUtil.intToStr(type), length - ICNS.RESOURCE_HEADER_SIZE, expectedLength
)
);
}
public Dimension size() {
switch (type) {
case ICNS.ICON:
case ICNS.ICN_:
return new Dimension(32, 32);
case ICNS.icm_:
case ICNS.icm4:
case ICNS.icm8:
return new Dimension(16, 12);
case ICNS.ics_:
case ICNS.ics4:
case ICNS.ics8:
case ICNS.is32:
case ICNS.s8mk:
return new Dimension(16, 16);
case ICNS.icl4:
case ICNS.icl8:
case ICNS.il32:
case ICNS.l8mk:
return new Dimension(32, 32);
case ICNS.ich_:
case ICNS.ich4:
case ICNS.ich8:
case ICNS.ih32:
case ICNS.h8mk:
return new Dimension(48, 48);
case ICNS.it32:
case ICNS.t8mk:
return new Dimension(128, 128);
case ICNS.ic08:
return new Dimension(256, 256);
case ICNS.ic09:
return new Dimension(512, 512);
case ICNS.ic10:
return new Dimension(1024, 1024);
default:
throw new IllegalStateException(String.format("Unknown icon type: '%s'", ICNSUtil.intToStr(type)));
}
}
public int depth() {
switch (type) {
case ICNS.ICON:
case ICNS.ICN_:
case ICNS.icm_:
case ICNS.ics_:
case ICNS.ich_:
return 1;
case ICNS.icm4:
case ICNS.ics4:
case ICNS.icl4:
case ICNS.ich4:
return 4;
case ICNS.icm8:
case ICNS.ics8:
case ICNS.icl8:
case ICNS.ich8:
case ICNS.s8mk:
case ICNS.l8mk:
case ICNS.h8mk:
case ICNS.t8mk:
return 8;
case ICNS.is32:
case ICNS.il32:
case ICNS.ih32:
case ICNS.it32:
case ICNS.ic08:
case ICNS.ic09:
case ICNS.ic10:
return 32;
default:
throw new IllegalStateException(String.format("Unknown icon type: '%s'", ICNSUtil.intToStr(type)));
}
}
public boolean isUnknownType() {
// Unknown types should simply be skipped when reading
switch (type) {
case ICNS.ICON:
case ICNS.ICN_:
case ICNS.icm_:
case ICNS.ics_:
case ICNS.ich_:
case ICNS.icm4:
case ICNS.ics4:
case ICNS.icl4:
case ICNS.ich4:
case ICNS.icm8:
case ICNS.ics8:
case ICNS.icl8:
case ICNS.ich8:
case ICNS.s8mk:
case ICNS.l8mk:
case ICNS.h8mk:
case ICNS.t8mk:
case ICNS.is32:
case ICNS.il32:
case ICNS.ih32:
case ICNS.it32:
case ICNS.ic08:
case ICNS.ic09:
case ICNS.ic10:
return false;
}
return true;
}
public boolean hasMask() {
switch (type) {
case ICNS.ICN_:
case ICNS.icm_:
case ICNS.ics_:
case ICNS.ich_:
return true;
}
return false;
}
public boolean isMaskType() {
switch (type) {
case ICNS.s8mk:
case ICNS.l8mk:
case ICNS.h8mk:
case ICNS.t8mk:
return true;
}
return false;
}
public boolean isCompressed() {
switch (type) {
case ICNS.is32:
case ICNS.il32:
case ICNS.ih32:
case ICNS.it32:
// http://www.macdisk.com/maciconen.php
// "One should check whether the data length corresponds to the theoretical length (width * height)."
Dimension size = size();
if (length != (size.width * size.height * depth() / 8 + ICNS.RESOURCE_HEADER_SIZE)) {
return true;
}
}
return false;
}
public boolean isForeignFormat() {
// Recent entries contains full JPEG 2000 or PNG streams
switch (type) {
case ICNS.ic08:
case ICNS.ic09:
case ICNS.ic10:
return true;
}
return false;
}
@Override
public int hashCode() {
return (int) start ^ type;
}
@Override
public boolean equals(Object other) {
return other == this || other != null && other.getClass() == getClass() && isEqual((IconResource) other);
}
private boolean isEqual(IconResource other) {
// This isn't strictly true, as resource must reside in same stream as well, but good enough for now
return start == other.start && type == other.type && length == other.length;
}
@Override
public String toString() {
return String.format("%s['%s' start: %d, length: %d%s]", getClass().getSimpleName(), ICNSUtil.intToStr(type), start, length, isCompressed() ? " (compressed)" : "");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy