2010-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (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.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* the Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010.
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "Decoder.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace imagelib {
|
|
|
|
|
|
|
|
Decoder::Decoder()
|
2010-08-22 19:30:46 -07:00
|
|
|
: mFrameCount(0)
|
2010-09-12 08:22:27 -07:00
|
|
|
, mFailCode(NS_OK)
|
2010-08-22 19:30:46 -07:00
|
|
|
, mInitialized(false)
|
2010-08-22 19:30:46 -07:00
|
|
|
, mSizeDecode(false)
|
2010-08-22 19:30:46 -07:00
|
|
|
, mInFrame(false)
|
2010-09-12 08:22:27 -07:00
|
|
|
, mDataError(false)
|
2010-08-22 19:30:45 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Decoder::~Decoder()
|
|
|
|
{
|
2010-08-22 19:30:46 -07:00
|
|
|
NS_WARN_IF_FALSE(!mInFrame, "Shutting down decoder mid-frame!");
|
2010-08-22 19:30:45 -07:00
|
|
|
mInitialized = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Common implementation of the decoder interface.
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsresult
|
2010-08-22 19:30:46 -07:00
|
|
|
Decoder::Init(RasterImage* aImage, imgIDecoderObserver* aObserver)
|
2010-08-22 19:30:45 -07:00
|
|
|
{
|
|
|
|
// We should always have an image
|
|
|
|
NS_ABORT_IF_FALSE(aImage, "Can't initialize decoder without an image!");
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
// No re-initializing
|
|
|
|
NS_ABORT_IF_FALSE(mImage == nsnull, "Can't re-initialize a decoder!");
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
// Save our paremeters
|
|
|
|
mImage = aImage;
|
|
|
|
mObserver = aObserver;
|
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
// Fire OnStartDecode at init time to support bug 512435
|
|
|
|
if (!IsSizeDecode() && mObserver)
|
|
|
|
mObserver->OnStartDecode(nsnull);
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
// Implementation-specific initialization
|
2010-09-12 08:22:28 -07:00
|
|
|
InitInternal();
|
2010-08-22 19:30:45 -07:00
|
|
|
mInitialized = true;
|
2010-09-12 08:22:28 -07:00
|
|
|
return IsError() ? NS_ERROR_FAILURE : NS_OK;
|
2010-08-22 19:30:45 -07:00
|
|
|
}
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
nsresult
|
2010-08-22 19:30:45 -07:00
|
|
|
Decoder::Write(const char* aBuffer, PRUint32 aCount)
|
|
|
|
{
|
|
|
|
// Pass the data along to the implementation
|
2010-09-12 08:22:28 -07:00
|
|
|
WriteInternal(aBuffer, aCount);
|
|
|
|
return IsError() ? NS_ERROR_FAILURE : NS_OK;
|
2010-08-22 19:30:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
Decoder::Finish()
|
|
|
|
{
|
|
|
|
// Implementation-specific finalization
|
2010-09-12 08:22:28 -07:00
|
|
|
FinishInternal();
|
|
|
|
return IsError() ? NS_ERROR_FAILURE : NS_OK;
|
2010-08-22 19:30:45 -07:00
|
|
|
}
|
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
void
|
|
|
|
Decoder::FlushInvalidations()
|
|
|
|
{
|
|
|
|
// If we've got an empty invalidation rect, we have nothing to do
|
|
|
|
if (mInvalidRect.IsEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Tell the image that it's been updated
|
|
|
|
mImage->FrameUpdated(mFrameCount - 1, mInvalidRect);
|
|
|
|
|
|
|
|
// Fire OnDataAvailable
|
|
|
|
if (mObserver) {
|
|
|
|
PRBool isCurrentFrame = mImage->GetCurrentFrameIndex() == (mFrameCount - 1);
|
|
|
|
mObserver->OnDataAvailable(nsnull, isCurrentFrame, &mInvalidRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the invalidation rectangle
|
|
|
|
mInvalidRect.Empty();
|
|
|
|
}
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
/*
|
|
|
|
* Hook stubs. Override these as necessary in decoder implementations.
|
|
|
|
*/
|
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
void Decoder::InitInternal() { }
|
|
|
|
void Decoder::WriteInternal(const char* aBuffer, PRUint32 aCount) { }
|
|
|
|
void Decoder::FinishInternal() { }
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
/*
|
|
|
|
* Progress Notifications
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
Decoder::PostSize(PRInt32 aWidth, PRInt32 aHeight)
|
|
|
|
{
|
|
|
|
// Validate
|
|
|
|
NS_ABORT_IF_FALSE(aWidth >= 0, "Width can't be negative!");
|
|
|
|
NS_ABORT_IF_FALSE(aHeight >= 0, "Height can't be negative!");
|
|
|
|
|
|
|
|
// Tell the image
|
|
|
|
mImage->SetSize(aWidth, aHeight);
|
|
|
|
|
|
|
|
// Notify the observer
|
|
|
|
if (mObserver)
|
|
|
|
mObserver->OnStartContainer(nsnull, mImage);
|
|
|
|
}
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
void
|
|
|
|
Decoder::PostFrameStart()
|
|
|
|
{
|
|
|
|
// We shouldn't already be mid-frame
|
|
|
|
NS_ABORT_IF_FALSE(!mInFrame, "Starting new frame but not done with old one!");
|
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
// We should take care of any invalidation region when wrapping up the
|
|
|
|
// previous frame
|
|
|
|
NS_ABORT_IF_FALSE(mInvalidRect.IsEmpty(),
|
|
|
|
"Start image frame with non-empty invalidation region!");
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
// Update our state to reflect the new frame
|
|
|
|
mFrameCount++;
|
|
|
|
mInFrame = true;
|
|
|
|
|
|
|
|
// Decoder implementations should only call this method if they successfully
|
|
|
|
// appended the frame to the image. So mFrameCount should always match that
|
|
|
|
// reported by the Image.
|
|
|
|
NS_ABORT_IF_FALSE(mFrameCount == mImage->GetNumFrames(),
|
|
|
|
"Decoder frame count doesn't match image's!");
|
|
|
|
|
|
|
|
// Fire notification
|
|
|
|
if (mObserver)
|
|
|
|
mObserver->OnStartFrame(nsnull, mFrameCount - 1); // frame # is zero-indexed
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Decoder::PostFrameStop()
|
|
|
|
{
|
|
|
|
// We should be mid-frame
|
|
|
|
NS_ABORT_IF_FALSE(mInFrame, "Stopping frame when we didn't start one!");
|
|
|
|
|
|
|
|
// Update our state
|
|
|
|
mInFrame = false;
|
|
|
|
|
2010-08-25 13:11:09 -07:00
|
|
|
// Flush any invalidations before we finish the frame
|
|
|
|
FlushInvalidations();
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
// Fire notification
|
|
|
|
if (mObserver)
|
|
|
|
mObserver->OnStopFrame(nsnull, mFrameCount - 1); // frame # is zero-indexed
|
|
|
|
}
|
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
void
|
|
|
|
Decoder::PostInvalidation(nsIntRect& aRect)
|
|
|
|
{
|
|
|
|
// We should be mid-frame
|
|
|
|
NS_ABORT_IF_FALSE(mInFrame, "Can't invalidate when not mid-frame!");
|
|
|
|
|
|
|
|
// Account for the new region
|
|
|
|
mInvalidRect.UnionRect(mInvalidRect, aRect);
|
|
|
|
}
|
|
|
|
|
2010-09-12 08:22:27 -07:00
|
|
|
void
|
|
|
|
Decoder::PostDataError()
|
|
|
|
{
|
|
|
|
mDataError = true;
|
|
|
|
|
|
|
|
//XXXbholley - we should probably log to the web console here
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Decoder::PostDecoderError(nsresult aFailureCode)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(NS_FAILED(aFailureCode), "Not a failure code!");
|
|
|
|
|
|
|
|
mFailCode = aFailureCode;
|
|
|
|
|
|
|
|
// XXXbholley - we should report the image URI here, but imgContainer
|
|
|
|
// needs to know its URI first
|
|
|
|
NS_WARNING("Image decoding error - This is probably a bug!");
|
|
|
|
}
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
} // namespace imagelib
|
|
|
|
} // namespace mozilla
|