2007-03-22 10:30:00 -07:00
|
|
|
/* vim:set tw=80 expandtab softtabstop=4 ts=4 sw=4: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/* This is a Cross-Platform ICO Decoder, which should work everywhere, including
|
|
|
|
* Big-Endian machines like the PowerPC. */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2011-10-02 12:01:38 -07:00
|
|
|
#include "EndianMacros.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsICODecoder.h"
|
|
|
|
|
|
|
|
#include "nsIInputStream.h"
|
|
|
|
#include "nsIComponentManager.h"
|
2010-08-13 21:09:49 -07:00
|
|
|
#include "RasterImage.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "imgIContainerObserver.h"
|
|
|
|
|
|
|
|
#include "nsIProperties.h"
|
|
|
|
#include "nsISupportsPrimitives.h"
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
namespace mozilla {
|
2012-01-06 08:02:27 -08:00
|
|
|
namespace image {
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define ICONCOUNTOFFSET 4
|
|
|
|
#define DIRENTRYOFFSET 6
|
|
|
|
#define BITMAPINFOSIZE 40
|
|
|
|
#define PREFICONSIZE 16
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// Actual Data Processing
|
|
|
|
// ----------------------------------------
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsICODecoder::CalcAlphaRowSize()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-07-17 14:08:46 -07:00
|
|
|
// Calculate rowsize in DWORD's and then return in # of bytes
|
2011-09-22 06:43:13 -07:00
|
|
|
PRUint32 rowSize = (GetRealWidth() + 31) / 32; // + 31 to round up
|
2011-08-25 13:09:01 -07:00
|
|
|
return rowSize * 4; // Return rowSize in bytes
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// Obtains the number of colors from the bits per pixel
|
|
|
|
PRUint16
|
|
|
|
nsICODecoder::GetNumColors()
|
|
|
|
{
|
|
|
|
PRUint16 numColors = 0;
|
|
|
|
if (mBPP <= 8) {
|
|
|
|
switch (mBPP) {
|
|
|
|
case 1:
|
|
|
|
numColors = 2;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
numColors = 16;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
numColors = 256;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
numColors = (PRUint16)-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return numColors;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-29 06:17:13 -07:00
|
|
|
nsICODecoder::nsICODecoder(RasterImage &aImage, imgIDecoderObserver* aObserver)
|
2011-09-27 09:24:03 -07:00
|
|
|
: Decoder(aImage, aObserver)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-25 13:09:01 -07:00
|
|
|
mPos = mImageOffset = mCurrIcon = mNumIcons = mBPP = mRowBytes = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsPNG = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
mRow = nsnull;
|
2011-08-25 13:09:01 -07:00
|
|
|
mOldLine = mCurLine = 1; // Otherwise decoder will never start
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsICODecoder::~nsICODecoder()
|
|
|
|
{
|
2010-08-22 19:30:46 -07:00
|
|
|
if (mRow) {
|
2011-08-25 13:09:01 -07:00
|
|
|
moz_free(mRow);
|
2010-08-22 19:30:46 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
void
|
2010-08-22 19:30:46 -07:00
|
|
|
nsICODecoder::FinishInternal()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-09-12 08:22:31 -07:00
|
|
|
// We shouldn't be called in error cases
|
2010-09-12 08:22:31 -07:00
|
|
|
NS_ABORT_IF_FALSE(!HasError(), "Shouldn't call FinishInternal after error!");
|
2010-09-12 08:22:31 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// Finish the internally used decoder as well
|
|
|
|
if (mContainedDecoder) {
|
|
|
|
mContainedDecoder->FinishSharedDecoder();
|
|
|
|
mDecodeDone = mContainedDecoder->GetDecodeDone();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a buffer filled with the bitmap file header in little endian:
|
|
|
|
// Signature 2 bytes 'BM'
|
|
|
|
// FileSize 4 bytes File size in bytes
|
|
|
|
// reserved 4 bytes unused (=0)
|
|
|
|
// DataOffset 4 bytes File offset to Raster Data
|
2011-10-17 07:59:28 -07:00
|
|
|
// Returns true if successful
|
2011-09-28 23:19:26 -07:00
|
|
|
bool nsICODecoder::FillBitmapFileHeaderBuffer(PRInt8 *bfh)
|
2011-08-25 13:09:01 -07:00
|
|
|
{
|
|
|
|
memset(bfh, 0, 14);
|
|
|
|
bfh[0] = 'B';
|
|
|
|
bfh[1] = 'M';
|
|
|
|
PRInt32 dataOffset = 0;
|
|
|
|
PRInt32 fileSize = 0;
|
|
|
|
dataOffset = BFH_LENGTH + BITMAPINFOSIZE;
|
|
|
|
|
|
|
|
// The color table is present only if BPP is <= 8
|
|
|
|
if (mDirEntry.mBitCount <= 8) {
|
|
|
|
PRUint16 numColors = GetNumColors();
|
|
|
|
if (numColors == (PRUint16)-1) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-08-25 13:09:01 -07:00
|
|
|
}
|
|
|
|
dataOffset += 4 * numColors;
|
2011-09-22 06:43:13 -07:00
|
|
|
fileSize = dataOffset + GetRealWidth() * GetRealHeight();
|
2011-08-25 13:09:01 -07:00
|
|
|
} else {
|
2011-09-22 06:43:13 -07:00
|
|
|
fileSize = dataOffset + (mDirEntry.mBitCount * GetRealWidth() *
|
|
|
|
GetRealHeight()) / 8;
|
2011-08-25 13:09:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fileSize = NATIVE32_TO_LITTLE(fileSize);
|
|
|
|
memcpy(bfh + 2, &fileSize, sizeof(fileSize));
|
|
|
|
dataOffset = NATIVE32_TO_LITTLE(dataOffset);
|
|
|
|
memcpy(bfh + 10, &dataOffset, sizeof(dataOffset));
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2011-08-25 13:09:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// A BMP inside of an ICO has *2 height because of the AND mask
|
|
|
|
// that follows the actual bitmap. The BMP shouldn't know about
|
|
|
|
// this difference though.
|
2011-11-04 06:56:17 -07:00
|
|
|
bool
|
|
|
|
nsICODecoder::FixBitmapHeight(PRInt8 *bih)
|
2011-08-25 13:09:01 -07:00
|
|
|
{
|
2011-11-04 06:56:17 -07:00
|
|
|
// Get the height from the BMP file information header
|
|
|
|
PRInt32 height;
|
|
|
|
memcpy(&height, bih + 8, sizeof(height));
|
|
|
|
height = LITTLE_TO_NATIVE32(height);
|
2012-07-21 10:57:35 -07:00
|
|
|
// BMPs can be stored inverted by having a negative height
|
|
|
|
height = abs(height);
|
2011-11-04 06:56:17 -07:00
|
|
|
|
|
|
|
// The bitmap height is by definition * 2 what it should be to account for
|
|
|
|
// the 'AND mask'. It is * 2 even if the `AND mask` is not present.
|
|
|
|
height /= 2;
|
|
|
|
|
|
|
|
if (height > 256) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We should always trust the height from the bitmap itself instead of
|
|
|
|
// the ICO height. So fix the ICO height.
|
|
|
|
if (height == 256) {
|
|
|
|
mDirEntry.mHeight = 0;
|
|
|
|
} else {
|
|
|
|
mDirEntry.mHeight = (PRInt8)height;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fix the BMP height in the BIH so that the BMP decoder can work properly
|
2011-08-25 13:09:01 -07:00
|
|
|
height = NATIVE32_TO_LITTLE(height);
|
|
|
|
memcpy(bih + 8, &height, sizeof(height));
|
2011-11-04 06:56:17 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We should always trust the contained resource for the width
|
|
|
|
// information over our own information.
|
|
|
|
bool
|
|
|
|
nsICODecoder::FixBitmapWidth(PRInt8 *bih)
|
|
|
|
{
|
|
|
|
// Get the width from the BMP file information header
|
|
|
|
PRInt32 width;
|
|
|
|
memcpy(&width, bih + 4, sizeof(width));
|
|
|
|
width = LITTLE_TO_NATIVE32(width);
|
|
|
|
if (width > 256) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We should always trust the width from the bitmap itself instead of
|
|
|
|
// the ICO width.
|
|
|
|
if (width == 256) {
|
|
|
|
mDirEntry.mWidth = 0;
|
|
|
|
} else {
|
|
|
|
mDirEntry.mWidth = (PRInt8)width;
|
|
|
|
}
|
|
|
|
return true;
|
2011-08-25 13:09:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// The BMP information header's bits per pixel should be trusted
|
|
|
|
// more than what we have. Usually the ICO's BPP is set to 0
|
|
|
|
PRInt32
|
|
|
|
nsICODecoder::ExtractBPPFromBitmap(PRInt8 *bih)
|
|
|
|
{
|
|
|
|
PRInt32 bitsPerPixel;
|
|
|
|
memcpy(&bitsPerPixel, bih + 14, sizeof(bitsPerPixel));
|
|
|
|
bitsPerPixel = LITTLE_TO_NATIVE32(bitsPerPixel);
|
|
|
|
return bitsPerPixel;
|
|
|
|
}
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2011-08-29 22:12:59 -07:00
|
|
|
PRInt32
|
|
|
|
nsICODecoder::ExtractBIHSizeFromBitmap(PRInt8 *bih)
|
|
|
|
{
|
|
|
|
PRInt32 headerSize;
|
|
|
|
memcpy(&headerSize, bih, sizeof(headerSize));
|
|
|
|
headerSize = LITTLE_TO_NATIVE32(headerSize);
|
|
|
|
return headerSize;
|
|
|
|
}
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
void
|
|
|
|
nsICODecoder::SetHotSpotIfCursor() {
|
|
|
|
if (!mIsCursor) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupportsPRUint32> intwrapx =
|
|
|
|
do_CreateInstance("@mozilla.org/supports-PRUint32;1");
|
|
|
|
nsCOMPtr<nsISupportsPRUint32> intwrapy =
|
|
|
|
do_CreateInstance("@mozilla.org/supports-PRUint32;1");
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
if (intwrapx && intwrapy) {
|
|
|
|
intwrapx->SetData(mDirEntry.mXHotspot);
|
|
|
|
intwrapy->SetData(mDirEntry.mYHotspot);
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2011-09-29 06:17:13 -07:00
|
|
|
mImage.Set("hotspotX", intwrapx);
|
|
|
|
mImage.Set("hotspotY", intwrapy);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
void
|
2010-08-22 19:30:46 -07:00
|
|
|
nsICODecoder::WriteInternal(const char* aBuffer, PRUint32 aCount)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-09-12 08:22:31 -07:00
|
|
|
NS_ABORT_IF_FALSE(!HasError(), "Shouldn't call WriteInternal after error!");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (!aCount) // aCount=0 means EOF
|
2010-09-12 08:22:30 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
while (aCount && (mPos < ICONCOUNTOFFSET)) { // Skip to the # of icons.
|
|
|
|
if (mPos == 2) { // if the third byte is 1: This is an icon, 2: a cursor
|
|
|
|
if ((*aBuffer != 1) && (*aBuffer != 2)) {
|
2010-09-12 08:22:27 -07:00
|
|
|
PostDataError();
|
2010-09-12 08:22:30 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
mIsCursor = (*aBuffer == 2);
|
|
|
|
}
|
|
|
|
mPos++; aBuffer++; aCount--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mPos == ICONCOUNTOFFSET && aCount >= 2) {
|
|
|
|
mNumIcons = LITTLE_TO_NATIVE16(((PRUint16*)aBuffer)[0]);
|
|
|
|
aBuffer += 2;
|
|
|
|
mPos += 2;
|
|
|
|
aCount -= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mNumIcons == 0)
|
2010-09-12 08:22:30 -07:00
|
|
|
return; // Nothing to do.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRUint16 colorDepth = 0;
|
2011-08-25 13:09:01 -07:00
|
|
|
// Loop through each entry's dir entry
|
|
|
|
while (mCurrIcon < mNumIcons) {
|
|
|
|
if (mPos >= DIRENTRYOFFSET + (mCurrIcon * sizeof(mDirEntryArray)) &&
|
|
|
|
mPos < DIRENTRYOFFSET + ((mCurrIcon + 1) * sizeof(mDirEntryArray))) {
|
|
|
|
PRUint32 toCopy = sizeof(mDirEntryArray) -
|
|
|
|
(mPos - DIRENTRYOFFSET - mCurrIcon * sizeof(mDirEntryArray));
|
|
|
|
if (toCopy > aCount) {
|
2007-03-22 10:30:00 -07:00
|
|
|
toCopy = aCount;
|
2011-08-25 13:09:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
memcpy(mDirEntryArray + sizeof(mDirEntryArray) - toCopy, aBuffer, toCopy);
|
|
|
|
mPos += toCopy;
|
|
|
|
aCount -= toCopy;
|
|
|
|
aBuffer += toCopy;
|
|
|
|
}
|
|
|
|
if (aCount == 0)
|
2010-09-12 08:22:30 -07:00
|
|
|
return; // Need more data
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
IconDirEntry e;
|
2011-08-25 13:09:01 -07:00
|
|
|
if (mPos == (DIRENTRYOFFSET + ICODIRENTRYSIZE) +
|
|
|
|
(mCurrIcon * sizeof(mDirEntryArray))) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mCurrIcon++;
|
|
|
|
ProcessDirEntry(e);
|
2011-09-22 06:43:13 -07:00
|
|
|
// We can't use GetRealWidth and GetRealHeight here because those operate
|
|
|
|
// on mDirEntry, here we are going through each item in the directory
|
|
|
|
if (((e.mWidth == 0 ? 256 : e.mWidth) == PREFICONSIZE &&
|
|
|
|
(e.mHeight == 0 ? 256 : e.mHeight) == PREFICONSIZE &&
|
|
|
|
(e.mBitCount >= colorDepth)) ||
|
2011-08-25 13:09:01 -07:00
|
|
|
(mCurrIcon == mNumIcons && mImageOffset == 0)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mImageOffset = e.mImageOffset;
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// ensure mImageOffset is >= size of the direntry headers (bug #245631)
|
|
|
|
PRUint32 minImageOffset = DIRENTRYOFFSET +
|
|
|
|
mNumIcons * sizeof(mDirEntryArray);
|
2009-10-15 19:54:44 -07:00
|
|
|
if (mImageOffset < minImageOffset) {
|
2010-09-12 08:22:27 -07:00
|
|
|
PostDataError();
|
2010-09-12 08:22:30 -07:00
|
|
|
return;
|
2009-10-15 19:54:44 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
colorDepth = e.mBitCount;
|
|
|
|
memcpy(&mDirEntry, &e, sizeof(IconDirEntry));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 15:40:04 -08:00
|
|
|
if (mPos < mImageOffset) {
|
|
|
|
// Skip to (or at least towards) the desired image offset
|
|
|
|
PRUint32 toSkip = mImageOffset - mPos;
|
|
|
|
if (toSkip > aCount)
|
|
|
|
toSkip = aCount;
|
|
|
|
|
|
|
|
mPos += toSkip;
|
|
|
|
aBuffer += toSkip;
|
|
|
|
aCount -= toSkip;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// If we are within the first PNGSIGNATURESIZE bytes of the image data,
|
|
|
|
// then we have either a BMP or a PNG. We use the first PNGSIGNATURESIZE
|
|
|
|
// bytes to determine which one we have.
|
|
|
|
if (mCurrIcon == mNumIcons && mPos >= mImageOffset &&
|
|
|
|
mPos < mImageOffset + PNGSIGNATURESIZE)
|
|
|
|
{
|
|
|
|
PRUint32 toCopy = PNGSIGNATURESIZE - (mPos - mImageOffset);
|
|
|
|
if (toCopy > aCount) {
|
|
|
|
toCopy = aCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(mSignature + (mPos - mImageOffset), aBuffer, toCopy);
|
|
|
|
mPos += toCopy;
|
|
|
|
aCount -= toCopy;
|
|
|
|
aBuffer += toCopy;
|
|
|
|
|
|
|
|
mIsPNG = !memcmp(mSignature, nsPNGDecoder::pngSignatureBytes,
|
|
|
|
PNGSIGNATURESIZE);
|
|
|
|
if (mIsPNG) {
|
2011-09-27 09:24:03 -07:00
|
|
|
mContainedDecoder = new nsPNGDecoder(mImage, mObserver);
|
|
|
|
mContainedDecoder->InitSharedDecoder();
|
2012-05-08 05:38:43 -07:00
|
|
|
if (!WriteToContainedDecoder(mSignature, PNGSIGNATURESIZE)) {
|
2011-08-25 13:09:01 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a PNG, let the PNG decoder do all of the rest of the work
|
|
|
|
if (mIsPNG && mContainedDecoder && mPos >= mImageOffset + PNGSIGNATURESIZE) {
|
2012-05-08 05:38:43 -07:00
|
|
|
if (!WriteToContainedDecoder(aBuffer, aCount)) {
|
2011-08-25 13:09:01 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
mPos += aCount;
|
|
|
|
aBuffer += aCount;
|
|
|
|
aCount = 0;
|
|
|
|
|
|
|
|
// Raymond Chen says that 32bpp only are valid PNG ICOs
|
|
|
|
// http://blogs.msdn.com/b/oldnewthing/archive/2010/10/22/10079192.aspx
|
2011-11-05 03:48:26 -07:00
|
|
|
if (!static_cast<nsPNGDecoder*>(mContainedDecoder.get())->IsValidICO()) {
|
2011-08-25 13:09:01 -07:00
|
|
|
PostDataError();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We've processed all of the icon dir entries and are within the
|
|
|
|
// bitmap info size
|
|
|
|
if (!mIsPNG && mCurrIcon == mNumIcons && mPos >= mImageOffset &&
|
|
|
|
mPos >= mImageOffset + PNGSIGNATURESIZE &&
|
|
|
|
mPos < mImageOffset + BITMAPINFOSIZE) {
|
|
|
|
|
|
|
|
// As we were decoding, we did not know if we had a PNG signature or the
|
|
|
|
// start of a bitmap information header. At this point we know we had
|
|
|
|
// a bitmap information header and not a PNG signature, so fill the bitmap
|
|
|
|
// information header with the data it should already have.
|
|
|
|
memcpy(mBIHraw, mSignature, PNGSIGNATURESIZE);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// We've found the icon.
|
|
|
|
PRUint32 toCopy = sizeof(mBIHraw) - (mPos - mImageOffset);
|
|
|
|
if (toCopy > aCount)
|
|
|
|
toCopy = aCount;
|
|
|
|
|
|
|
|
memcpy(mBIHraw + (mPos - mImageOffset), aBuffer, toCopy);
|
|
|
|
mPos += toCopy;
|
|
|
|
aCount -= toCopy;
|
|
|
|
aBuffer += toCopy;
|
|
|
|
}
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// If we have a BMP inside the ICO and we have read the BIH header
|
|
|
|
if (!mIsPNG && mPos == mImageOffset + BITMAPINFOSIZE) {
|
2011-08-29 22:12:59 -07:00
|
|
|
|
|
|
|
// Make sure we have a sane value for the bitmap information header
|
|
|
|
PRInt32 bihSize = ExtractBIHSizeFromBitmap(reinterpret_cast<PRInt8*>(mBIHraw));
|
|
|
|
if (bihSize != BITMAPINFOSIZE) {
|
|
|
|
PostDataError();
|
|
|
|
return;
|
|
|
|
}
|
2011-08-25 13:09:01 -07:00
|
|
|
// We are extracting the BPP from the BIH header as it should be trusted
|
|
|
|
// over the one we have from the icon header
|
2011-08-29 22:12:59 -07:00
|
|
|
mBPP = ExtractBPPFromBitmap(reinterpret_cast<PRInt8*>(mBIHraw));
|
2011-08-25 13:09:01 -07:00
|
|
|
|
|
|
|
// Init the bitmap decoder which will do most of the work for us
|
|
|
|
// It will do everything except the AND mask which isn't present in bitmaps
|
|
|
|
// bmpDecoder is for local scope ease, it will be freed by mContainedDecoder
|
2011-09-27 09:24:03 -07:00
|
|
|
nsBMPDecoder *bmpDecoder = new nsBMPDecoder(mImage, mObserver);
|
2011-08-25 13:09:01 -07:00
|
|
|
mContainedDecoder = bmpDecoder;
|
2011-10-17 07:59:28 -07:00
|
|
|
bmpDecoder->SetUseAlphaData(true);
|
2011-08-25 13:09:01 -07:00
|
|
|
mContainedDecoder->SetSizeDecode(IsSizeDecode());
|
2011-09-27 09:24:03 -07:00
|
|
|
mContainedDecoder->InitSharedDecoder();
|
2011-08-25 13:09:01 -07:00
|
|
|
|
|
|
|
// The ICO format when containing a BMP does not include the 14 byte
|
|
|
|
// bitmap file header. To use the code of the BMP decoder we need to
|
|
|
|
// generate this header ourselves and feed it to the BMP decoder.
|
|
|
|
PRInt8 bfhBuffer[BMPFILEHEADERSIZE];
|
|
|
|
if (!FillBitmapFileHeaderBuffer(bfhBuffer)) {
|
|
|
|
PostDataError();
|
|
|
|
return;
|
|
|
|
}
|
2012-05-08 05:38:43 -07:00
|
|
|
if (!WriteToContainedDecoder((const char*)bfhBuffer, sizeof(bfhBuffer))) {
|
2010-09-12 08:22:30 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// Setup the cursor hot spot if one is present
|
|
|
|
SetHotSpotIfCursor();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-11-04 06:56:17 -07:00
|
|
|
// Fix the ICO height from the BIH.
|
|
|
|
// Fix the height on the BIH to be /2 so our BMP decoder will understand.
|
|
|
|
if (!FixBitmapHeight(reinterpret_cast<PRInt8*>(mBIHraw))) {
|
|
|
|
PostDataError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fix the ICO width from the BIH.
|
|
|
|
if (!FixBitmapWidth(reinterpret_cast<PRInt8*>(mBIHraw))) {
|
|
|
|
PostDataError();
|
|
|
|
return;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// Write out the BMP's bitmap info header
|
2012-05-08 05:38:43 -07:00
|
|
|
if (!WriteToContainedDecoder(mBIHraw, sizeof(mBIHraw))) {
|
2011-08-25 13:09:01 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-08-29 22:12:59 -07:00
|
|
|
// We have the size. If we're doing a size decode, we got what
|
|
|
|
// we came for.
|
|
|
|
if (IsSizeDecode())
|
|
|
|
return;
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// Sometimes the ICO BPP header field is not filled out
|
|
|
|
// so we should trust the contained resource over our own
|
|
|
|
// information.
|
|
|
|
mBPP = bmpDecoder->GetBitsPerPixel();
|
|
|
|
|
|
|
|
// Check to make sure we have valid color settings
|
|
|
|
PRUint16 numColors = GetNumColors();
|
|
|
|
if (numColors == (PRUint16)-1) {
|
|
|
|
PostDataError();
|
2010-09-12 08:22:30 -07:00
|
|
|
return;
|
2009-10-15 19:54:44 -07:00
|
|
|
}
|
2011-08-25 13:09:01 -07:00
|
|
|
}
|
2009-10-15 19:54:44 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// If we have a BMP
|
|
|
|
if (!mIsPNG && mContainedDecoder && mPos >= mImageOffset + BITMAPINFOSIZE) {
|
|
|
|
PRUint16 numColors = GetNumColors();
|
|
|
|
if (numColors == (PRUint16)-1) {
|
|
|
|
PostDataError();
|
2010-09-12 08:22:30 -07:00
|
|
|
return;
|
|
|
|
}
|
2011-08-25 13:09:01 -07:00
|
|
|
// Feed the actual image data (not including headers) into the BMP decoder
|
|
|
|
PRInt32 bmpDataOffset = mDirEntry.mImageOffset + BITMAPINFOSIZE;
|
|
|
|
PRInt32 bmpDataEnd = mDirEntry.mImageOffset + BITMAPINFOSIZE +
|
|
|
|
static_cast<nsBMPDecoder*>(mContainedDecoder.get())->GetCompressedImageSize() +
|
|
|
|
4 * numColors;
|
|
|
|
|
|
|
|
// If we are feeding in the core image data, but we have not yet
|
|
|
|
// reached the ICO's 'AND buffer mask'
|
|
|
|
if (mPos >= bmpDataOffset && mPos < bmpDataEnd) {
|
|
|
|
|
|
|
|
// Figure out how much data the BMP decoder wants
|
|
|
|
PRUint32 toFeed = bmpDataEnd - mPos;
|
|
|
|
if (toFeed > aCount) {
|
|
|
|
toFeed = aCount;
|
|
|
|
}
|
2007-07-17 14:08:46 -07:00
|
|
|
|
2012-05-08 05:38:43 -07:00
|
|
|
if (!WriteToContainedDecoder(aBuffer, toFeed)) {
|
2011-08-25 13:09:01 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
mPos += toFeed;
|
|
|
|
aCount -= toFeed;
|
|
|
|
aBuffer += toFeed;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-08-25 13:09:01 -07:00
|
|
|
|
|
|
|
// If the bitmap is fully processed, treat any left over data as the ICO's
|
|
|
|
// 'AND buffer mask' which appears after the bitmap resource.
|
|
|
|
if (!mIsPNG && mPos >= bmpDataEnd) {
|
|
|
|
// There may be an optional AND bit mask after the data. This is
|
|
|
|
// only used if the alpha data is not already set. The alpha data
|
|
|
|
// is used for 32bpp bitmaps as per the comment in ICODecoder.h
|
|
|
|
// The alpha mask should be checked in all other cases.
|
2011-09-09 08:24:23 -07:00
|
|
|
if (static_cast<nsBMPDecoder*>(mContainedDecoder.get())->GetBitsPerPixel() != 32 ||
|
|
|
|
!static_cast<nsBMPDecoder*>(mContainedDecoder.get())->HasAlphaData()) {
|
2011-09-22 06:43:13 -07:00
|
|
|
PRUint32 rowSize = ((GetRealWidth() + 31) / 32) * 4; // + 31 to round up
|
2011-08-25 13:09:01 -07:00
|
|
|
if (mPos == bmpDataEnd) {
|
|
|
|
mPos++;
|
|
|
|
mRowBytes = 0;
|
2011-09-22 06:43:13 -07:00
|
|
|
mCurLine = GetRealHeight();
|
2011-08-25 13:09:01 -07:00
|
|
|
mRow = (PRUint8*)moz_realloc(mRow, rowSize);
|
|
|
|
if (!mRow) {
|
|
|
|
PostDecoderError(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
// Ensure memory has been allocated before decoding.
|
|
|
|
NS_ABORT_IF_FALSE(mRow, "mRow is null");
|
2011-09-29 06:17:13 -07:00
|
|
|
if (!mRow) {
|
2011-08-25 13:09:01 -07:00
|
|
|
PostDataError();
|
|
|
|
return;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
while (mCurLine > 0 && aCount > 0) {
|
|
|
|
PRUint32 toCopy = NS_MIN(rowSize - mRowBytes, aCount);
|
|
|
|
if (toCopy) {
|
2007-03-22 10:30:00 -07:00
|
|
|
memcpy(mRow + mRowBytes, aBuffer, toCopy);
|
|
|
|
aCount -= toCopy;
|
|
|
|
aBuffer += toCopy;
|
|
|
|
mRowBytes += toCopy;
|
2011-08-25 13:09:01 -07:00
|
|
|
}
|
|
|
|
if (rowSize == mRowBytes) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mCurLine--;
|
|
|
|
mRowBytes = 0;
|
|
|
|
|
2011-08-29 22:12:59 -07:00
|
|
|
PRUint32* imageData =
|
|
|
|
static_cast<nsBMPDecoder*>(mContainedDecoder.get())->GetImageData();
|
|
|
|
if (!imageData) {
|
|
|
|
PostDataError();
|
|
|
|
return;
|
|
|
|
}
|
2011-09-22 06:43:13 -07:00
|
|
|
PRUint32* decoded = imageData + mCurLine * GetRealWidth();
|
|
|
|
PRUint32* decoded_end = decoded + GetRealWidth();
|
2011-08-25 13:09:01 -07:00
|
|
|
PRUint8* p = mRow, *p_end = mRow + rowSize;
|
|
|
|
while (p < p_end) {
|
|
|
|
PRUint8 idx = *p++;
|
|
|
|
for (PRUint8 bit = 0x80; bit && decoded<decoded_end; bit >>= 1) {
|
|
|
|
// Clear pixel completely for transparency.
|
|
|
|
if (idx & bit) {
|
|
|
|
*decoded = 0;
|
|
|
|
}
|
|
|
|
decoded++;
|
|
|
|
}
|
|
|
|
}
|
2007-07-17 14:08:46 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-07-17 14:08:46 -07:00
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2012-05-08 05:38:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
nsICODecoder::WriteToContainedDecoder(const char* aBuffer, PRUint32 aCount)
|
|
|
|
{
|
|
|
|
mContainedDecoder->Write(aBuffer, aCount);
|
|
|
|
if (mContainedDecoder->HasDataError()) {
|
|
|
|
mDataError = mContainedDecoder->HasDataError();
|
|
|
|
}
|
|
|
|
if (mContainedDecoder->HasDecoderError()) {
|
|
|
|
PostDecoderError(mContainedDecoder->GetDecoderError());
|
|
|
|
}
|
|
|
|
return !HasError();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsICODecoder::ProcessDirEntry(IconDirEntry& aTarget)
|
|
|
|
{
|
|
|
|
memset(&aTarget, 0, sizeof(aTarget));
|
|
|
|
memcpy(&aTarget.mWidth, mDirEntryArray, sizeof(aTarget.mWidth));
|
2011-08-25 13:09:01 -07:00
|
|
|
memcpy(&aTarget.mHeight, mDirEntryArray + 1, sizeof(aTarget.mHeight));
|
|
|
|
memcpy(&aTarget.mColorCount, mDirEntryArray + 2, sizeof(aTarget.mColorCount));
|
|
|
|
memcpy(&aTarget.mReserved, mDirEntryArray + 3, sizeof(aTarget.mReserved));
|
|
|
|
memcpy(&aTarget.mPlanes, mDirEntryArray + 4, sizeof(aTarget.mPlanes));
|
2007-03-22 10:30:00 -07:00
|
|
|
aTarget.mPlanes = LITTLE_TO_NATIVE16(aTarget.mPlanes);
|
2011-08-25 13:09:01 -07:00
|
|
|
memcpy(&aTarget.mBitCount, mDirEntryArray + 6, sizeof(aTarget.mBitCount));
|
2007-03-22 10:30:00 -07:00
|
|
|
aTarget.mBitCount = LITTLE_TO_NATIVE16(aTarget.mBitCount);
|
2011-08-25 13:09:01 -07:00
|
|
|
memcpy(&aTarget.mBytesInRes, mDirEntryArray + 8, sizeof(aTarget.mBytesInRes));
|
2007-03-22 10:30:00 -07:00
|
|
|
aTarget.mBytesInRes = LITTLE_TO_NATIVE32(aTarget.mBytesInRes);
|
2011-08-25 13:09:01 -07:00
|
|
|
memcpy(&aTarget.mImageOffset, mDirEntryArray + 12,
|
|
|
|
sizeof(aTarget.mImageOffset));
|
2007-03-22 10:30:00 -07:00
|
|
|
aTarget.mImageOffset = LITTLE_TO_NATIVE32(aTarget.mImageOffset);
|
|
|
|
}
|
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
} // namespace image
|
2010-08-22 19:30:46 -07:00
|
|
|
} // namespace mozilla
|