mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-12 14:37:50 +00:00
551 lines
16 KiB
C++
551 lines
16 KiB
C++
/* -*- 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 Mozilla Foundation.
|
|
*
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Joe Drew <joe@drew.ca> (original author)
|
|
*
|
|
* 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 "imgStatusTracker.h"
|
|
|
|
#include "imgRequest.h"
|
|
#include "imgIContainer.h"
|
|
#include "imgRequestProxy.h"
|
|
#include "Image.h"
|
|
#include "ImageLogging.h"
|
|
#include "RasterImage.h"
|
|
|
|
using namespace mozilla::imagelib;
|
|
|
|
static nsresult
|
|
GetResultFromImageStatus(PRUint32 aStatus)
|
|
{
|
|
if (aStatus & imgIRequest::STATUS_ERROR)
|
|
return NS_IMAGELIB_ERROR_FAILURE;
|
|
if (aStatus & imgIRequest::STATUS_LOAD_COMPLETE)
|
|
return NS_IMAGELIB_SUCCESS_LOAD_FINISHED;
|
|
return NS_OK;
|
|
}
|
|
|
|
imgStatusTracker::imgStatusTracker(Image* aImage)
|
|
: mImage(aImage),
|
|
mState(0),
|
|
mImageStatus(imgIRequest::STATUS_NONE),
|
|
mHadLastPart(false)
|
|
{}
|
|
|
|
imgStatusTracker::imgStatusTracker(const imgStatusTracker& aOther)
|
|
: mImage(aOther.mImage),
|
|
mState(aOther.mState),
|
|
mImageStatus(aOther.mImageStatus),
|
|
mHadLastPart(aOther.mHadLastPart)
|
|
// Note: we explicitly don't copy mRequestRunnable, because it won't be
|
|
// nulled out when the mRequestRunnable's Run function eventually gets
|
|
// called.
|
|
{}
|
|
|
|
void
|
|
imgStatusTracker::SetImage(Image* aImage)
|
|
{
|
|
NS_ABORT_IF_FALSE(aImage, "Setting null image");
|
|
NS_ABORT_IF_FALSE(!mImage, "Setting image when we already have one");
|
|
mImage = aImage;
|
|
}
|
|
|
|
bool
|
|
imgStatusTracker::IsLoading() const
|
|
{
|
|
// Checking for whether OnStopRequest has fired allows us to say we're
|
|
// loading before OnStartRequest gets called, letting the request properly
|
|
// get removed from the cache in certain cases.
|
|
return !(mState & stateRequestStopped);
|
|
}
|
|
|
|
PRUint32
|
|
imgStatusTracker::GetImageStatus() const
|
|
{
|
|
return mImageStatus;
|
|
}
|
|
|
|
// A helper class to allow us to call SyncNotify asynchronously.
|
|
class imgRequestNotifyRunnable : public nsRunnable
|
|
{
|
|
public:
|
|
imgRequestNotifyRunnable(imgRequest* request, imgRequestProxy* requestproxy)
|
|
: mRequest(request)
|
|
{
|
|
mProxies.AppendElement(requestproxy);
|
|
}
|
|
|
|
NS_IMETHOD Run()
|
|
{
|
|
imgStatusTracker& statusTracker = mRequest->GetStatusTracker();
|
|
|
|
for (PRUint32 i = 0; i < mProxies.Length(); ++i) {
|
|
mProxies[i]->SetNotificationsDeferred(false);
|
|
statusTracker.SyncNotify(mProxies[i]);
|
|
}
|
|
|
|
statusTracker.mRequestRunnable = nsnull;
|
|
return NS_OK;
|
|
}
|
|
|
|
void AddProxy(imgRequestProxy* aRequestProxy)
|
|
{
|
|
mProxies.AppendElement(aRequestProxy);
|
|
}
|
|
|
|
private:
|
|
friend class imgStatusTracker;
|
|
|
|
nsRefPtr<imgRequest> mRequest;
|
|
nsTArray<nsRefPtr<imgRequestProxy> > mProxies;
|
|
};
|
|
|
|
void
|
|
imgStatusTracker::Notify(imgRequest* request, imgRequestProxy* proxy)
|
|
{
|
|
#ifdef PR_LOGGING
|
|
nsCOMPtr<nsIURI> uri;
|
|
request->GetURI(getter_AddRefs(uri));
|
|
nsCAutoString spec;
|
|
uri->GetSpec(spec);
|
|
LOG_FUNC_WITH_PARAM(gImgLog, "imgStatusTracker::Notify async", "uri", spec.get());
|
|
#endif
|
|
|
|
proxy->SetNotificationsDeferred(true);
|
|
|
|
// If we have an existing runnable that we can use, we just append this proxy
|
|
// to its list of proxies to be notified. This ensures we don't unnecessarily
|
|
// delay onload.
|
|
imgRequestNotifyRunnable* runnable = static_cast<imgRequestNotifyRunnable*>(mRequestRunnable.get());
|
|
if (runnable && runnable->mRequest == request) {
|
|
runnable->AddProxy(proxy);
|
|
} else {
|
|
// It's okay to overwrite an existing mRequestRunnable, because adding a
|
|
// new proxy is strictly a performance optimization. The notification will
|
|
// always happen, regardless of whether we hold a reference to a runnable.
|
|
mRequestRunnable = new imgRequestNotifyRunnable(request, proxy);
|
|
NS_DispatchToCurrentThread(mRequestRunnable);
|
|
}
|
|
}
|
|
|
|
// A helper class to allow us to call SyncNotify asynchronously for a given,
|
|
// fixed, state.
|
|
class imgStatusNotifyRunnable : public nsRunnable
|
|
{
|
|
public:
|
|
imgStatusNotifyRunnable(imgStatusTracker& status,
|
|
imgRequestProxy* requestproxy)
|
|
: mStatus(status), mImage(status.mImage), mProxy(requestproxy)
|
|
{}
|
|
|
|
NS_IMETHOD Run()
|
|
{
|
|
mProxy->SetNotificationsDeferred(false);
|
|
|
|
mStatus.SyncNotify(mProxy);
|
|
return NS_OK;
|
|
}
|
|
|
|
private:
|
|
imgStatusTracker mStatus;
|
|
// We have to hold on to a reference to the tracker's image, just in case
|
|
// it goes away while we're in the event queue.
|
|
nsRefPtr<Image> mImage;
|
|
nsRefPtr<imgRequestProxy> mProxy;
|
|
};
|
|
|
|
void
|
|
imgStatusTracker::NotifyCurrentState(imgRequestProxy* proxy)
|
|
{
|
|
#ifdef PR_LOGGING
|
|
nsCOMPtr<nsIURI> uri;
|
|
proxy->GetURI(getter_AddRefs(uri));
|
|
nsCAutoString spec;
|
|
uri->GetSpec(spec);
|
|
LOG_FUNC_WITH_PARAM(gImgLog, "imgStatusTracker::NotifyCurrentState", "uri", spec.get());
|
|
#endif
|
|
|
|
proxy->SetNotificationsDeferred(true);
|
|
|
|
// We don't keep track of
|
|
nsCOMPtr<nsIRunnable> ev = new imgStatusNotifyRunnable(*this, proxy);
|
|
NS_DispatchToCurrentThread(ev);
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SyncNotify(imgRequestProxy* proxy)
|
|
{
|
|
NS_ABORT_IF_FALSE(!proxy->NotificationsDeferred(),
|
|
"Calling imgStatusTracker::Notify() on a proxy that doesn't want notifications!");
|
|
|
|
#ifdef PR_LOGGING
|
|
nsCOMPtr<nsIURI> uri;
|
|
proxy->GetURI(getter_AddRefs(uri));
|
|
nsCAutoString spec;
|
|
uri->GetSpec(spec);
|
|
LOG_SCOPE_WITH_PARAM(gImgLog, "imgStatusTracker::SyncNotify", "uri", spec.get());
|
|
#endif
|
|
|
|
nsCOMPtr<imgIRequest> kungFuDeathGrip(proxy);
|
|
|
|
// OnStartRequest
|
|
if (mState & stateRequestStarted)
|
|
proxy->OnStartRequest();
|
|
|
|
// OnStartContainer
|
|
if (mState & stateHasSize)
|
|
proxy->OnStartContainer(mImage);
|
|
|
|
// OnStartDecode
|
|
if (mState & stateDecodeStarted)
|
|
proxy->OnStartDecode();
|
|
|
|
if (mImage) {
|
|
PRInt16 imageType = mImage->GetType();
|
|
// Send frame messages (OnStartFrame, OnDataAvailable, OnStopFrame)
|
|
if (imageType == imgIContainer::TYPE_VECTOR ||
|
|
static_cast<RasterImage*>(mImage)->GetNumFrames() > 0) {
|
|
|
|
PRUint32 frame = (imageType == imgIContainer::TYPE_VECTOR) ?
|
|
0 : static_cast<RasterImage*>(mImage)->GetCurrentFrameIndex();
|
|
|
|
proxy->OnStartFrame(frame);
|
|
|
|
// OnDataAvailable
|
|
// XXX - Should only send partial rects here, but that needs to
|
|
// wait until we fix up the observer interface
|
|
nsIntRect r;
|
|
mImage->GetCurrentFrameRect(r);
|
|
proxy->OnDataAvailable(frame, &r);
|
|
|
|
if (mState & stateFrameStopped)
|
|
proxy->OnStopFrame(frame);
|
|
}
|
|
|
|
// OnImageIsAnimated
|
|
bool isAnimated = false;
|
|
|
|
nsresult rv = mImage->GetAnimated(&isAnimated);
|
|
if (NS_SUCCEEDED(rv) && isAnimated) {
|
|
proxy->OnImageIsAnimated();
|
|
}
|
|
}
|
|
|
|
// See bug 505385 and imgRequest::OnStopDecode for more information on why we
|
|
// call OnStopContainer based on stateDecodeStopped, and why OnStopDecode is
|
|
// called with OnStopRequest.
|
|
if (mState & stateDecodeStopped) {
|
|
NS_ABORT_IF_FALSE(mImage, "stopped decoding without ever having an image?");
|
|
proxy->OnStopContainer(mImage);
|
|
}
|
|
|
|
if (mState & stateRequestStopped) {
|
|
proxy->OnStopDecode(GetResultFromImageStatus(mImageStatus), nsnull);
|
|
proxy->OnStopRequest(mHadLastPart);
|
|
}
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::EmulateRequestFinished(imgRequestProxy* aProxy, nsresult aStatus,
|
|
bool aOnlySendStopRequest)
|
|
{
|
|
nsCOMPtr<imgIRequest> kungFuDeathGrip(aProxy);
|
|
|
|
if (!aOnlySendStopRequest) {
|
|
// The "real" OnStopDecode - fix this with bug 505385.
|
|
if (!(mState & stateDecodeStopped)) {
|
|
aProxy->OnStopContainer(mImage);
|
|
}
|
|
|
|
if (!(mState & stateRequestStopped)) {
|
|
aProxy->OnStopDecode(aStatus, nsnull);
|
|
}
|
|
}
|
|
|
|
if (!(mState & stateRequestStopped)) {
|
|
aProxy->OnStopRequest(true);
|
|
}
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordCancel()
|
|
{
|
|
if (!(mImageStatus & imgIRequest::STATUS_LOAD_PARTIAL))
|
|
mImageStatus |= imgIRequest::STATUS_ERROR;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordLoaded()
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage, "RecordLoaded called before we have an Image");
|
|
mState |= stateRequestStarted | stateHasSize | stateRequestStopped;
|
|
mImageStatus |= imgIRequest::STATUS_SIZE_AVAILABLE | imgIRequest::STATUS_LOAD_COMPLETE;
|
|
mHadLastPart = true;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordDecoded()
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage, "RecordDecoded called before we have an Image");
|
|
mState |= stateDecodeStarted | stateDecodeStopped | stateFrameStopped;
|
|
mImageStatus |= imgIRequest::STATUS_FRAME_COMPLETE | imgIRequest::STATUS_DECODE_COMPLETE;
|
|
}
|
|
|
|
/* non-virtual imgIDecoderObserver methods */
|
|
void
|
|
imgStatusTracker::RecordStartDecode()
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage, "RecordStartDecode without an Image");
|
|
mState |= stateDecodeStarted;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStartDecode(imgRequestProxy* aProxy)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnStartDecode();
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordStartContainer(imgIContainer* aContainer)
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage,
|
|
"RecordStartContainer called before we have an Image");
|
|
NS_ABORT_IF_FALSE(mImage == aContainer,
|
|
"RecordStartContainer called with wrong Image");
|
|
mState |= stateHasSize;
|
|
mImageStatus |= imgIRequest::STATUS_SIZE_AVAILABLE;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStartContainer(imgRequestProxy* aProxy, imgIContainer* aContainer)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnStartContainer(aContainer);
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordStartFrame(PRUint32 aFrame)
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage, "RecordStartFrame called before we have an Image");
|
|
// no bookkeeping necessary here - this is implied by imgIContainer's number
|
|
// of frames
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStartFrame(imgRequestProxy* aProxy, PRUint32 aFrame)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnStartFrame(aFrame);
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordDataAvailable(bool aCurrentFrame, const nsIntRect* aRect)
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage,
|
|
"RecordDataAvailable called before we have an Image");
|
|
// no bookkeeping necessary here - this is implied by imgIContainer's
|
|
// number of frames and frame rect
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendDataAvailable(imgRequestProxy* aProxy, bool aCurrentFrame,
|
|
const nsIntRect* aRect)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnDataAvailable(aCurrentFrame, aRect);
|
|
}
|
|
|
|
|
|
void
|
|
imgStatusTracker::RecordStopFrame(PRUint32 aFrame)
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage, "RecordStopFrame called before we have an Image");
|
|
mState |= stateFrameStopped;
|
|
mImageStatus |= imgIRequest::STATUS_FRAME_COMPLETE;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStopFrame(imgRequestProxy* aProxy, PRUint32 aFrame)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnStopFrame(aFrame);
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordStopContainer(imgIContainer* aContainer)
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage,
|
|
"RecordStopContainer called before we have an Image");
|
|
// No-op: see imgRequest::OnStopDecode for more information
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStopContainer(imgRequestProxy* aProxy, imgIContainer* aContainer)
|
|
{
|
|
// No-op: see imgRequest::OnStopDecode for more information
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordStopDecode(nsresult aStatus, const PRUnichar* statusArg)
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage,
|
|
"RecordStopDecode called before we have an Image");
|
|
mState |= stateDecodeStopped;
|
|
|
|
if (NS_SUCCEEDED(aStatus))
|
|
mImageStatus |= imgIRequest::STATUS_DECODE_COMPLETE;
|
|
// If we weren't successful, clear all success status bits and set error.
|
|
else
|
|
mImageStatus = imgIRequest::STATUS_ERROR;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStopDecode(imgRequestProxy* aProxy, nsresult aStatus,
|
|
const PRUnichar* statusArg)
|
|
{
|
|
// See imgRequest::OnStopDecode for more information on why we call
|
|
// OnStopContainer from here this, and why imgRequestProxy::OnStopDecode() is
|
|
// called from OnStopRequest() and SyncNotify().
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnStopContainer(mImage);
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordDiscard()
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage,
|
|
"RecordDiscard called before we have an Image");
|
|
// Clear the state bits we no longer deserve.
|
|
PRUint32 stateBitsToClear = stateDecodeStarted | stateDecodeStopped;
|
|
mState &= ~stateBitsToClear;
|
|
|
|
// Clear the status bits we no longer deserve.
|
|
PRUint32 statusBitsToClear = imgIRequest::STATUS_FRAME_COMPLETE
|
|
| imgIRequest::STATUS_DECODE_COMPLETE;
|
|
mImageStatus &= ~statusBitsToClear;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendImageIsAnimated(imgRequestProxy* aProxy)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnImageIsAnimated();
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordImageIsAnimated()
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage,
|
|
"RecordImageIsAnimated called before we have an Image");
|
|
// No bookkeeping necessary here - once decoding is complete, GetAnimated()
|
|
// will accurately return that this is an animated image. Until that time,
|
|
// the OnImageIsAnimated notification is the only indication an observer
|
|
// will have that an image has more than 1 frame.
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendDiscard(imgRequestProxy* aProxy)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnDiscard();
|
|
}
|
|
|
|
/* non-virtual imgIContainerObserver methods */
|
|
void
|
|
imgStatusTracker::RecordFrameChanged(imgIContainer* aContainer,
|
|
const nsIntRect* aDirtyRect)
|
|
{
|
|
NS_ABORT_IF_FALSE(mImage,
|
|
"RecordFrameChanged called before we have an Image");
|
|
// no bookkeeping necessary here - this is only for in-frame updates, which we
|
|
// don't fire while we're recording
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendFrameChanged(imgRequestProxy* aProxy, imgIContainer* aContainer,
|
|
const nsIntRect* aDirtyRect)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->FrameChanged(aContainer, aDirtyRect);
|
|
}
|
|
|
|
/* non-virtual sort-of-nsIRequestObserver methods */
|
|
void
|
|
imgStatusTracker::RecordStartRequest()
|
|
{
|
|
// We're starting a new load, so clear any status and state bits indicating
|
|
// load/decode
|
|
mImageStatus &= ~imgIRequest::STATUS_LOAD_PARTIAL;
|
|
mImageStatus &= ~imgIRequest::STATUS_LOAD_COMPLETE;
|
|
mImageStatus &= ~imgIRequest::STATUS_FRAME_COMPLETE;
|
|
mState &= ~stateRequestStarted;
|
|
mState &= ~stateDecodeStarted;
|
|
mState &= ~stateDecodeStopped;
|
|
mState &= ~stateRequestStopped;
|
|
|
|
mState |= stateRequestStarted;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStartRequest(imgRequestProxy* aProxy)
|
|
{
|
|
if (!aProxy->NotificationsDeferred())
|
|
aProxy->OnStartRequest();
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::RecordStopRequest(bool aLastPart, nsresult aStatus)
|
|
{
|
|
mHadLastPart = aLastPart;
|
|
mState |= stateRequestStopped;
|
|
|
|
// If we were successful in loading, note that the image is complete.
|
|
if (NS_SUCCEEDED(aStatus))
|
|
mImageStatus |= imgIRequest::STATUS_LOAD_COMPLETE;
|
|
}
|
|
|
|
void
|
|
imgStatusTracker::SendStopRequest(imgRequestProxy* aProxy, bool aLastPart, nsresult aStatus)
|
|
{
|
|
// See bug 505385 and imgRequest::OnStopDecode for more information on why
|
|
// OnStopDecode is called with OnStopRequest.
|
|
if (!aProxy->NotificationsDeferred()) {
|
|
aProxy->OnStopDecode(GetResultFromImageStatus(mImageStatus), nsnull);
|
|
aProxy->OnStopRequest(aLastPart);
|
|
}
|
|
}
|