2010-05-15 00:47:59 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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/. */
|
2010-05-15 00:47:59 +04:00
|
|
|
|
2014-08-23 00:12:38 +04:00
|
|
|
#include "ImageLogging.h"
|
2014-11-15 07:10:47 +03:00
|
|
|
#include "ProgressTracker.h"
|
2010-05-15 00:47:59 +04:00
|
|
|
|
|
|
|
#include "imgIContainer.h"
|
2015-01-07 12:35:20 +03:00
|
|
|
#include "imgINotificationObserver.h"
|
|
|
|
#include "imgIRequest.h"
|
2010-08-14 08:09:48 +04:00
|
|
|
#include "Image.h"
|
2013-09-28 22:28:42 +04:00
|
|
|
#include "nsNetUtil.h"
|
2012-10-12 20:11:21 +04:00
|
|
|
#include "nsIObserverService.h"
|
2012-10-12 05:34:22 +04:00
|
|
|
|
2012-10-12 20:11:20 +04:00
|
|
|
#include "mozilla/Assertions.h"
|
2012-10-12 20:11:21 +04:00
|
|
|
#include "mozilla/Services.h"
|
2012-10-12 20:11:20 +04:00
|
|
|
|
2013-12-13 01:17:35 +04:00
|
|
|
using mozilla::WeakPtr;
|
2010-08-14 08:09:49 +04:00
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace image {
|
|
|
|
|
2014-11-15 07:10:48 +03:00
|
|
|
static void
|
|
|
|
CheckProgressConsistency(Progress aProgress)
|
|
|
|
{
|
|
|
|
// Check preconditions for every progress bit.
|
|
|
|
|
2014-11-18 01:29:56 +03:00
|
|
|
if (aProgress & FLAG_SIZE_AVAILABLE) {
|
2014-11-18 01:29:56 +03:00
|
|
|
// No preconditions.
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
|
|
|
if (aProgress & FLAG_DECODE_STARTED) {
|
2014-11-18 01:29:56 +03:00
|
|
|
// No preconditions.
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2014-11-18 01:29:56 +03:00
|
|
|
if (aProgress & FLAG_DECODE_COMPLETE) {
|
2014-11-15 07:10:48 +03:00
|
|
|
MOZ_ASSERT(aProgress & FLAG_DECODE_STARTED);
|
|
|
|
}
|
2014-11-18 01:29:56 +03:00
|
|
|
if (aProgress & FLAG_FRAME_COMPLETE) {
|
2014-11-15 07:10:48 +03:00
|
|
|
MOZ_ASSERT(aProgress & FLAG_DECODE_STARTED);
|
|
|
|
}
|
2014-11-18 01:29:56 +03:00
|
|
|
if (aProgress & FLAG_LOAD_COMPLETE) {
|
2014-11-18 01:29:56 +03:00
|
|
|
// No preconditions.
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
|
|
|
if (aProgress & FLAG_ONLOAD_BLOCKED) {
|
2015-01-07 12:37:20 +03:00
|
|
|
MOZ_ASSERT(aProgress & FLAG_DECODE_STARTED);
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
|
|
|
if (aProgress & FLAG_ONLOAD_UNBLOCKED) {
|
|
|
|
MOZ_ASSERT(aProgress & FLAG_ONLOAD_BLOCKED);
|
2015-01-07 12:37:20 +03:00
|
|
|
MOZ_ASSERT(aProgress & (FLAG_FRAME_COMPLETE | FLAG_HAS_ERROR));
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
|
|
|
if (aProgress & FLAG_IS_ANIMATED) {
|
|
|
|
MOZ_ASSERT(aProgress & FLAG_DECODE_STARTED);
|
2014-11-18 01:29:56 +03:00
|
|
|
MOZ_ASSERT(aProgress & FLAG_SIZE_AVAILABLE);
|
2014-11-17 22:16:45 +03:00
|
|
|
}
|
|
|
|
if (aProgress & FLAG_HAS_TRANSPARENCY) {
|
2014-11-18 01:29:56 +03:00
|
|
|
MOZ_ASSERT(aProgress & FLAG_SIZE_AVAILABLE);
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2014-11-18 01:29:56 +03:00
|
|
|
if (aProgress & FLAG_LAST_PART_COMPLETE) {
|
|
|
|
MOZ_ASSERT(aProgress & FLAG_LOAD_COMPLETE);
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
|
|
|
if (aProgress & FLAG_HAS_ERROR) {
|
|
|
|
// No preconditions.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-24 02:44:07 +04:00
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::SetImage(Image* aImage)
|
2010-08-24 02:44:07 +04:00
|
|
|
{
|
2015-05-01 04:13:14 +03:00
|
|
|
MutexAutoLock lock(mImageMutex);
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aImage, "Setting null image");
|
|
|
|
MOZ_ASSERT(!mImage, "Setting image when we already have one");
|
2010-08-24 02:44:07 +04:00
|
|
|
mImage = aImage;
|
|
|
|
}
|
|
|
|
|
2013-09-28 22:28:44 +04:00
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::ResetImage()
|
2013-09-28 22:28:44 +04:00
|
|
|
{
|
2015-05-01 04:13:14 +03:00
|
|
|
MutexAutoLock lock(mImageMutex);
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(mImage, "Resetting image when it's already null!");
|
2013-09-28 22:28:44 +04:00
|
|
|
mImage = nullptr;
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::GetImageStatus() const
|
2010-05-15 00:47:59 +04:00
|
|
|
{
|
2014-11-07 04:34:00 +03:00
|
|
|
uint32_t status = imgIRequest::STATUS_NONE;
|
|
|
|
|
|
|
|
// Translate our current state to a set of imgIRequest::STATE_* flags.
|
2014-11-18 01:29:56 +03:00
|
|
|
if (mProgress & FLAG_SIZE_AVAILABLE) {
|
2014-11-07 04:34:00 +03:00
|
|
|
status |= imgIRequest::STATUS_SIZE_AVAILABLE;
|
|
|
|
}
|
2014-11-15 07:10:47 +03:00
|
|
|
if (mProgress & FLAG_DECODE_STARTED) {
|
2014-11-07 04:34:00 +03:00
|
|
|
status |= imgIRequest::STATUS_DECODE_STARTED;
|
|
|
|
}
|
2014-11-18 01:29:56 +03:00
|
|
|
if (mProgress & FLAG_DECODE_COMPLETE) {
|
2014-11-07 04:34:00 +03:00
|
|
|
status |= imgIRequest::STATUS_DECODE_COMPLETE;
|
|
|
|
}
|
2014-11-18 01:29:56 +03:00
|
|
|
if (mProgress & FLAG_FRAME_COMPLETE) {
|
2014-11-07 04:34:00 +03:00
|
|
|
status |= imgIRequest::STATUS_FRAME_COMPLETE;
|
|
|
|
}
|
2014-11-18 01:29:56 +03:00
|
|
|
if (mProgress & FLAG_LOAD_COMPLETE) {
|
2014-11-07 04:34:00 +03:00
|
|
|
status |= imgIRequest::STATUS_LOAD_COMPLETE;
|
|
|
|
}
|
2014-11-25 10:42:43 +03:00
|
|
|
if (mProgress & FLAG_IS_ANIMATED) {
|
|
|
|
status |= imgIRequest::STATUS_IS_ANIMATED;
|
|
|
|
}
|
|
|
|
if (mProgress & FLAG_HAS_TRANSPARENCY) {
|
|
|
|
status |= imgIRequest::STATUS_HAS_TRANSPARENCY;
|
|
|
|
}
|
2014-11-15 07:10:47 +03:00
|
|
|
if (mProgress & FLAG_HAS_ERROR) {
|
2014-11-07 04:34:00 +03:00
|
|
|
status |= imgIRequest::STATUS_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
2010-05-15 00:47:59 +04:00
|
|
|
}
|
|
|
|
|
2010-07-29 01:52:14 +04:00
|
|
|
// A helper class to allow us to call SyncNotify asynchronously.
|
2014-11-15 07:10:47 +03:00
|
|
|
class AsyncNotifyRunnable : public nsRunnable
|
2010-07-29 01:52:14 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-11-15 07:10:47 +03:00
|
|
|
AsyncNotifyRunnable(ProgressTracker* aTracker,
|
2015-01-07 12:35:20 +03:00
|
|
|
IProgressObserver* aObserver)
|
2012-12-20 01:28:54 +04:00
|
|
|
: mTracker(aTracker)
|
2010-08-12 19:59:28 +04:00
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Should be created on the main thread");
|
|
|
|
MOZ_ASSERT(aTracker, "aTracker should not be null");
|
2015-01-07 12:35:20 +03:00
|
|
|
MOZ_ASSERT(aObserver, "aObserver should not be null");
|
|
|
|
mObservers.AppendElement(aObserver);
|
2010-08-12 19:59:28 +04:00
|
|
|
}
|
2010-07-29 01:52:14 +04:00
|
|
|
|
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Should be running on the main thread");
|
|
|
|
MOZ_ASSERT(mTracker, "mTracker should not be null");
|
2015-01-07 12:35:20 +03:00
|
|
|
for (uint32_t i = 0; i < mObservers.Length(); ++i) {
|
|
|
|
mObservers[i]->SetNotificationsDeferred(false);
|
|
|
|
mTracker->SyncNotify(mObservers[i]);
|
2010-08-12 19:59:28 +04:00
|
|
|
}
|
2010-07-29 01:52:14 +04:00
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
mTracker->mRunnable = nullptr;
|
2010-07-29 01:52:14 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
void AddObserver(IProgressObserver* aObserver)
|
2010-08-12 19:59:28 +04:00
|
|
|
{
|
2015-01-07 12:35:20 +03:00
|
|
|
mObservers.AppendElement(aObserver);
|
2010-08-12 19:59:28 +04:00
|
|
|
}
|
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
void RemoveObserver(IProgressObserver* aObserver)
|
2013-01-19 01:47:18 +04:00
|
|
|
{
|
2015-01-07 12:35:20 +03:00
|
|
|
mObservers.RemoveElement(aObserver);
|
2013-01-19 01:47:18 +04:00
|
|
|
}
|
|
|
|
|
2010-07-29 01:52:14 +04:00
|
|
|
private:
|
2014-11-15 07:10:47 +03:00
|
|
|
friend class ProgressTracker;
|
2010-08-12 19:59:28 +04:00
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
nsRefPtr<ProgressTracker> mTracker;
|
2015-01-07 12:35:20 +03:00
|
|
|
nsTArray<nsRefPtr<IProgressObserver>> mObservers;
|
2010-07-29 01:52:14 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2015-01-07 12:35:20 +03:00
|
|
|
ProgressTracker::Notify(IProgressObserver* aObserver)
|
2010-07-29 01:52:14 +04:00
|
|
|
{
|
2015-01-07 12:35:20 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2015-06-04 01:22:28 +03:00
|
|
|
if (MOZ_LOG_TEST(GetImgLog(), PR_LOG_DEBUG)) {
|
2015-05-11 23:42:30 +03:00
|
|
|
nsRefPtr<Image> image = GetImage();
|
|
|
|
if (image && image->GetURI()) {
|
|
|
|
nsRefPtr<ImageURL> uri(image->GetURI());
|
|
|
|
nsAutoCString spec;
|
|
|
|
uri->GetSpec(spec);
|
|
|
|
LOG_FUNC_WITH_PARAM(GetImgLog(),
|
|
|
|
"ProgressTracker::Notify async", "uri", spec.get());
|
|
|
|
} else {
|
|
|
|
LOG_FUNC_WITH_PARAM(GetImgLog(),
|
|
|
|
"ProgressTracker::Notify async", "uri", "<unknown>");
|
|
|
|
}
|
2012-12-20 01:28:54 +04:00
|
|
|
}
|
2010-07-29 01:52:34 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
aObserver->SetNotificationsDeferred(true);
|
2010-07-29 01:52:14 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
// If we have an existing runnable that we can use, we just append this
|
|
|
|
// observer to its list of observers to be notified. This ensures we don't
|
|
|
|
// unnecessarily delay onload.
|
2014-11-15 07:10:47 +03:00
|
|
|
AsyncNotifyRunnable* runnable =
|
|
|
|
static_cast<AsyncNotifyRunnable*>(mRunnable.get());
|
|
|
|
|
2012-12-20 01:28:54 +04:00
|
|
|
if (runnable) {
|
2015-01-07 12:35:20 +03:00
|
|
|
runnable->AddObserver(aObserver);
|
2010-08-12 19:59:28 +04:00
|
|
|
} else {
|
2015-01-07 12:35:20 +03:00
|
|
|
mRunnable = new AsyncNotifyRunnable(this, aObserver);
|
2014-11-15 07:10:47 +03:00
|
|
|
NS_DispatchToCurrentThread(mRunnable);
|
2010-08-12 19:59:28 +04:00
|
|
|
}
|
2010-07-29 01:52:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// A helper class to allow us to call SyncNotify asynchronously for a given,
|
|
|
|
// fixed, state.
|
2014-11-15 07:10:47 +03:00
|
|
|
class AsyncNotifyCurrentStateRunnable : public nsRunnable
|
2010-07-29 01:52:14 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-11-15 07:10:47 +03:00
|
|
|
AsyncNotifyCurrentStateRunnable(ProgressTracker* aProgressTracker,
|
2015-01-07 12:35:20 +03:00
|
|
|
IProgressObserver* aObserver)
|
2014-11-15 07:10:47 +03:00
|
|
|
: mProgressTracker(aProgressTracker)
|
2015-01-07 12:35:20 +03:00
|
|
|
, mObserver(aObserver)
|
2013-09-28 22:28:43 +04:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Should be created on the main thread");
|
2014-11-15 07:10:47 +03:00
|
|
|
MOZ_ASSERT(mProgressTracker, "mProgressTracker should not be null");
|
2015-01-07 12:35:20 +03:00
|
|
|
MOZ_ASSERT(mObserver, "mObserver should not be null");
|
2014-11-15 07:10:47 +03:00
|
|
|
mImage = mProgressTracker->GetImage();
|
2013-09-28 22:28:43 +04:00
|
|
|
}
|
2010-07-29 01:52:14 +04:00
|
|
|
|
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Should be running on the main thread");
|
2015-01-07 12:35:20 +03:00
|
|
|
mObserver->SetNotificationsDeferred(false);
|
2010-07-29 01:52:14 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
mProgressTracker->SyncNotify(mObserver);
|
2010-07-29 01:52:14 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-11-15 07:10:47 +03:00
|
|
|
nsRefPtr<ProgressTracker> mProgressTracker;
|
2015-01-07 12:35:20 +03:00
|
|
|
nsRefPtr<IProgressObserver> mObserver;
|
2014-11-15 07:10:47 +03:00
|
|
|
|
2010-07-29 01:52:14 +04:00
|
|
|
// 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.
|
2010-08-14 08:09:49 +04:00
|
|
|
nsRefPtr<Image> mImage;
|
2010-07-29 01:52:14 +04:00
|
|
|
};
|
|
|
|
|
2010-05-15 00:47:59 +04:00
|
|
|
void
|
2015-01-07 12:35:20 +03:00
|
|
|
ProgressTracker::NotifyCurrentState(IProgressObserver* aObserver)
|
2010-05-15 00:47:59 +04:00
|
|
|
{
|
2015-01-07 12:35:20 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2015-06-04 01:22:28 +03:00
|
|
|
if (MOZ_LOG_TEST(GetImgLog(), PR_LOG_DEBUG)) {
|
2015-05-11 23:42:30 +03:00
|
|
|
nsRefPtr<Image> image = GetImage();
|
|
|
|
nsAutoCString spec;
|
|
|
|
if (image && image->GetURI()) {
|
|
|
|
image->GetURI()->GetSpec(spec);
|
|
|
|
}
|
|
|
|
LOG_FUNC_WITH_PARAM(GetImgLog(),
|
|
|
|
"ProgressTracker::NotifyCurrentState", "uri", spec.get());
|
2015-01-07 12:35:20 +03:00
|
|
|
}
|
2010-07-29 01:52:34 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
aObserver->SetNotificationsDeferred(true);
|
2010-07-29 01:52:14 +04:00
|
|
|
|
2015-03-31 20:56:00 +03:00
|
|
|
nsCOMPtr<nsIRunnable> ev = new AsyncNotifyCurrentStateRunnable(this,
|
|
|
|
aObserver);
|
2010-07-29 01:52:14 +04:00
|
|
|
NS_DispatchToCurrentThread(ev);
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
#define NOTIFY_IMAGE_OBSERVERS(OBSERVERS, FUNC) \
|
2013-01-19 01:47:18 +04:00
|
|
|
do { \
|
2015-01-07 12:35:20 +03:00
|
|
|
ObserverArray::ForwardIterator iter(OBSERVERS); \
|
2013-01-19 01:47:18 +04:00
|
|
|
while (iter.HasMore()) { \
|
2015-01-07 12:35:20 +03:00
|
|
|
nsRefPtr<IProgressObserver> observer = iter.GetNext().get(); \
|
|
|
|
if (observer && !observer->NotificationsDeferred()) { \
|
|
|
|
observer->FUNC; \
|
2013-01-19 01:47:18 +04:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (false);
|
|
|
|
|
2013-01-19 01:47:17 +04:00
|
|
|
/* static */ void
|
2015-01-07 12:35:20 +03:00
|
|
|
ProgressTracker::SyncNotifyInternal(ObserverArray& aObservers,
|
2014-11-15 07:10:47 +03:00
|
|
|
bool aHasImage,
|
|
|
|
Progress aProgress,
|
|
|
|
const nsIntRect& aDirtyRect)
|
2010-07-29 01:52:14 +04:00
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2010-05-15 00:47:59 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
typedef imgINotificationObserver I;
|
|
|
|
|
2014-12-06 02:58:00 +03:00
|
|
|
if (aProgress & FLAG_SIZE_AVAILABLE) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, Notify(I::SIZE_AVAILABLE));
|
2014-12-06 02:58:00 +03:00
|
|
|
}
|
2012-10-12 05:58:24 +04:00
|
|
|
|
2014-12-06 02:58:00 +03:00
|
|
|
if (aProgress & FLAG_DECODE_STARTED) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, OnStartDecode());
|
2014-12-06 02:58:00 +03:00
|
|
|
}
|
2012-12-20 01:28:54 +04:00
|
|
|
|
2014-12-06 02:58:00 +03:00
|
|
|
if (aProgress & FLAG_ONLOAD_BLOCKED) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, BlockOnload());
|
2014-12-06 02:58:00 +03:00
|
|
|
}
|
2012-08-14 02:58:53 +04:00
|
|
|
|
2014-11-10 23:37:35 +03:00
|
|
|
if (aHasImage) {
|
2013-01-19 01:47:17 +04:00
|
|
|
// OnFrameUpdate
|
2012-12-18 02:05:18 +04:00
|
|
|
// If there's any content in this frame at all (always true for
|
|
|
|
// vector images, true for raster images that have decoded at
|
|
|
|
// least one frame) then send OnFrameUpdate.
|
2014-12-06 02:58:00 +03:00
|
|
|
if (!aDirtyRect.IsEmpty()) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, Notify(I::FRAME_UPDATE, &aDirtyRect));
|
2014-12-06 02:58:00 +03:00
|
|
|
}
|
2010-05-15 00:47:59 +04:00
|
|
|
|
2014-12-06 02:58:00 +03:00
|
|
|
if (aProgress & FLAG_FRAME_COMPLETE) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, Notify(I::FRAME_COMPLETE));
|
2014-12-06 02:58:00 +03:00
|
|
|
}
|
2011-11-10 01:39:15 +04:00
|
|
|
|
2014-12-06 02:58:00 +03:00
|
|
|
if (aProgress & FLAG_HAS_TRANSPARENCY) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, Notify(I::HAS_TRANSPARENCY));
|
2014-12-06 02:58:00 +03:00
|
|
|
}
|
2014-11-17 22:16:45 +03:00
|
|
|
|
2014-12-06 02:58:00 +03:00
|
|
|
if (aProgress & FLAG_IS_ANIMATED) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, Notify(I::IS_ANIMATED));
|
2014-12-06 02:58:00 +03:00
|
|
|
}
|
2010-05-15 00:47:59 +04:00
|
|
|
}
|
|
|
|
|
2014-11-07 04:33:57 +03:00
|
|
|
// Send UnblockOnload before OnStopDecode and OnStopRequest. This allows
|
|
|
|
// observers that can fire events when they receive those notifications to do
|
|
|
|
// so then, instead of being forced to wait for UnblockOnload.
|
2014-11-15 07:10:47 +03:00
|
|
|
if (aProgress & FLAG_ONLOAD_UNBLOCKED) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, UnblockOnload());
|
2014-11-07 04:33:57 +03:00
|
|
|
}
|
|
|
|
|
2014-11-18 01:29:56 +03:00
|
|
|
if (aProgress & FLAG_DECODE_COMPLETE) {
|
2014-11-10 23:37:35 +03:00
|
|
|
MOZ_ASSERT(aHasImage, "Stopped decoding without ever having an image?");
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers, Notify(I::DECODE_COMPLETE));
|
2010-08-24 02:44:07 +04:00
|
|
|
}
|
2010-05-15 00:47:59 +04:00
|
|
|
|
2014-11-18 01:29:56 +03:00
|
|
|
if (aProgress & FLAG_LOAD_COMPLETE) {
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(aObservers,
|
2014-11-18 01:29:56 +03:00
|
|
|
OnLoadComplete(aProgress & FLAG_LAST_PART_COMPLETE));
|
2013-01-19 01:47:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-02 03:17:24 +04:00
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::SyncNotifyProgress(Progress aProgress,
|
2014-12-06 02:58:00 +03:00
|
|
|
const nsIntRect& aInvalidRect
|
|
|
|
/* = nsIntRect() */)
|
2013-03-02 03:17:24 +04:00
|
|
|
{
|
2015-01-07 12:35:20 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Use mObservers on main thread only");
|
2013-03-02 03:17:24 +04:00
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
// Don't unblock onload if we're not blocked.
|
2014-11-15 07:10:47 +03:00
|
|
|
Progress progress = Difference(aProgress);
|
|
|
|
if (!((mProgress | progress) & FLAG_ONLOAD_BLOCKED)) {
|
|
|
|
progress &= ~FLAG_ONLOAD_UNBLOCKED;
|
2014-11-15 07:10:47 +03:00
|
|
|
}
|
|
|
|
|
2015-01-22 04:36:20 +03:00
|
|
|
// XXX(seth): Hack to work around the fact that some observers have bugs and
|
|
|
|
// need to get onload blocking notifications multiple times. We should fix
|
|
|
|
// those observers and remove this.
|
|
|
|
if ((aProgress & FLAG_DECODE_COMPLETE) &&
|
|
|
|
(mProgress & FLAG_ONLOAD_BLOCKED) &&
|
|
|
|
(mProgress & FLAG_ONLOAD_UNBLOCKED)) {
|
|
|
|
progress |= FLAG_ONLOAD_BLOCKED | FLAG_ONLOAD_UNBLOCKED;
|
|
|
|
}
|
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
// Apply the changes.
|
2014-11-15 07:10:47 +03:00
|
|
|
mProgress |= progress;
|
2014-11-15 07:10:47 +03:00
|
|
|
|
2014-11-15 07:10:48 +03:00
|
|
|
CheckProgressConsistency(mProgress);
|
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
// Send notifications.
|
2015-05-01 04:13:14 +03:00
|
|
|
SyncNotifyInternal(mObservers, HasImage(), progress, aInvalidRect);
|
2013-03-02 03:17:24 +04:00
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
if (progress & FLAG_HAS_ERROR) {
|
2013-01-19 01:47:17 +04:00
|
|
|
FireFailureNotification();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-19 01:47:17 +04:00
|
|
|
void
|
2015-01-07 12:35:20 +03:00
|
|
|
ProgressTracker::SyncNotify(IProgressObserver* aObserver)
|
2013-01-19 01:47:17 +04:00
|
|
|
{
|
2015-01-07 12:35:20 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2015-05-01 04:13:14 +03:00
|
|
|
nsRefPtr<Image> image = GetImage();
|
|
|
|
|
2013-01-19 01:47:17 +04:00
|
|
|
nsAutoCString spec;
|
2015-05-01 04:13:14 +03:00
|
|
|
if (image && image->GetURI()) {
|
|
|
|
image->GetURI()->GetSpec(spec);
|
2015-01-07 12:35:20 +03:00
|
|
|
}
|
2014-12-06 02:58:00 +03:00
|
|
|
LOG_SCOPE_WITH_PARAM(GetImgLog(),
|
|
|
|
"ProgressTracker::SyncNotify", "uri", spec.get());
|
2013-01-19 01:47:17 +04:00
|
|
|
|
2015-01-07 12:40:23 +03:00
|
|
|
nsIntRect rect;
|
2015-05-01 04:13:14 +03:00
|
|
|
if (image) {
|
|
|
|
if (NS_FAILED(image->GetWidth(&rect.width)) ||
|
|
|
|
NS_FAILED(image->GetHeight(&rect.height))) {
|
2015-01-07 12:40:23 +03:00
|
|
|
// Either the image has no intrinsic size, or it has an error.
|
2015-04-21 18:04:57 +03:00
|
|
|
rect = GetMaxSizedIntRect();
|
2015-01-07 12:40:23 +03:00
|
|
|
}
|
2010-05-15 00:47:59 +04:00
|
|
|
}
|
2013-01-19 01:47:17 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
ObserverArray array;
|
|
|
|
array.AppendElement(aObserver);
|
2015-05-01 04:13:14 +03:00
|
|
|
SyncNotifyInternal(array, !!image, mProgress, rect);
|
2013-01-19 01:47:18 +04:00
|
|
|
}
|
|
|
|
|
2010-05-15 00:47:59 +04:00
|
|
|
void
|
2015-01-07 12:37:20 +03:00
|
|
|
ProgressTracker::EmulateRequestFinished(IProgressObserver* aObserver)
|
2010-05-15 00:47:59 +04:00
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread(),
|
2015-01-07 12:35:20 +03:00
|
|
|
"SyncNotifyState and mObservers are not threadsafe");
|
|
|
|
nsRefPtr<IProgressObserver> kungFuDeathGrip(aObserver);
|
2010-05-15 00:47:59 +04:00
|
|
|
|
2014-11-15 07:10:47 +03:00
|
|
|
if (mProgress & FLAG_ONLOAD_BLOCKED && !(mProgress & FLAG_ONLOAD_UNBLOCKED)) {
|
2015-01-07 12:35:20 +03:00
|
|
|
aObserver->UnblockOnload();
|
2012-10-09 20:47:14 +04:00
|
|
|
}
|
|
|
|
|
2014-11-18 01:29:56 +03:00
|
|
|
if (!(mProgress & FLAG_LOAD_COMPLETE)) {
|
2015-01-07 12:35:20 +03:00
|
|
|
aObserver->OnLoadComplete(true);
|
2010-05-15 00:47:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-12 20:11:20 +04:00
|
|
|
void
|
2015-01-07 12:35:20 +03:00
|
|
|
ProgressTracker::AddObserver(IProgressObserver* aObserver)
|
2012-10-12 20:11:20 +04:00
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-01-07 12:35:20 +03:00
|
|
|
mObservers.AppendElementUnlessExists(aObserver);
|
2012-10-12 20:11:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2015-01-07 12:37:20 +03:00
|
|
|
ProgressTracker::RemoveObserver(IProgressObserver* aObserver)
|
2012-10-12 20:11:20 +04:00
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2012-10-12 20:11:20 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
// Remove the observer from the list.
|
|
|
|
bool removed = mObservers.RemoveElement(aObserver);
|
|
|
|
|
|
|
|
// Observers can get confused if they don't get all the proper teardown
|
2012-10-12 20:11:20 +04:00
|
|
|
// notifications. Part ways on good terms.
|
2015-01-07 12:35:20 +03:00
|
|
|
if (removed && !aObserver->NotificationsDeferred()) {
|
2015-01-07 12:37:20 +03:00
|
|
|
EmulateRequestFinished(aObserver);
|
2013-01-19 01:47:18 +04:00
|
|
|
}
|
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
// Make sure we don't give callbacks to an observer that isn't interested in
|
2013-01-19 01:47:18 +04:00
|
|
|
// them any more.
|
2014-11-15 07:10:47 +03:00
|
|
|
AsyncNotifyRunnable* runnable =
|
|
|
|
static_cast<AsyncNotifyRunnable*>(mRunnable.get());
|
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
if (aObserver->NotificationsDeferred() && runnable) {
|
|
|
|
runnable->RemoveObserver(aObserver);
|
|
|
|
aObserver->SetNotificationsDeferred(false);
|
2013-01-19 01:47:18 +04:00
|
|
|
}
|
|
|
|
|
2012-10-12 20:11:20 +04:00
|
|
|
return removed;
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:17:35 +04:00
|
|
|
bool
|
2015-01-07 12:35:20 +03:00
|
|
|
ProgressTracker::FirstObserverIs(IProgressObserver* aObserver)
|
2013-12-13 01:17:35 +04:00
|
|
|
{
|
2015-01-07 12:35:20 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "Use mObservers on main thread only");
|
|
|
|
ObserverArray::ForwardIterator iter(mObservers);
|
2013-12-13 01:17:35 +04:00
|
|
|
while (iter.HasMore()) {
|
2015-01-07 12:35:20 +03:00
|
|
|
nsRefPtr<IProgressObserver> observer = iter.GetNext().get();
|
|
|
|
if (observer) {
|
|
|
|
return observer.get() == aObserver;
|
2013-12-13 01:17:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-19 01:47:18 +04:00
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::OnUnlockedDraw()
|
2013-01-19 01:47:18 +04:00
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(mObservers,
|
|
|
|
Notify(imgINotificationObserver::UNLOCKED_DRAW));
|
2014-11-15 07:06:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::ResetForNewRequest()
|
2014-11-15 07:06:19 +03:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-01-07 12:37:20 +03:00
|
|
|
mProgress = NoProgress;
|
2014-11-15 07:10:48 +03:00
|
|
|
CheckProgressConsistency(mProgress);
|
2010-05-15 00:47:59 +04:00
|
|
|
}
|
2012-08-14 02:58:53 +04:00
|
|
|
|
2013-02-08 02:22:38 +04:00
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::OnDiscard()
|
2013-02-08 02:22:38 +04:00
|
|
|
{
|
2013-09-28 22:28:43 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-01-07 12:35:20 +03:00
|
|
|
NOTIFY_IMAGE_OBSERVERS(mObservers,
|
|
|
|
Notify(imgINotificationObserver::DISCARD));
|
2013-02-08 02:22:38 +04:00
|
|
|
}
|
|
|
|
|
2012-10-12 20:11:21 +04:00
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::OnImageAvailable()
|
2012-10-12 20:11:21 +04:00
|
|
|
{
|
2015-03-24 05:37:45 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2015-02-17 00:15:04 +03:00
|
|
|
// Notify any imgRequestProxys that are observing us that we have an Image.
|
|
|
|
ObserverArray::ForwardIterator iter(mObservers);
|
|
|
|
while (iter.HasMore()) {
|
|
|
|
nsRefPtr<IProgressObserver> observer = iter.GetNext().get();
|
|
|
|
if (observer) {
|
|
|
|
observer->SetHasImage();
|
|
|
|
}
|
|
|
|
}
|
2012-08-14 02:58:53 +04:00
|
|
|
}
|
2012-10-12 20:11:21 +04:00
|
|
|
|
2012-11-17 17:33:20 +04:00
|
|
|
void
|
2014-11-15 07:10:47 +03:00
|
|
|
ProgressTracker::FireFailureNotification()
|
2012-11-17 17:33:20 +04:00
|
|
|
{
|
2013-01-19 01:47:18 +04:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2012-12-20 01:28:54 +04:00
|
|
|
// Some kind of problem has happened with image decoding.
|
|
|
|
// Report the URI to net:failed-to-process-uri-conent observers.
|
2015-05-01 04:13:14 +03:00
|
|
|
nsRefPtr<Image> image = GetImage();
|
|
|
|
if (image) {
|
2013-09-28 22:28:42 +04:00
|
|
|
// Should be on main thread, so ok to create a new nsIURI.
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
{
|
2015-05-01 04:13:14 +03:00
|
|
|
nsRefPtr<ImageURL> threadsafeUriData = image->GetURI();
|
2013-09-28 22:28:42 +04:00
|
|
|
uri = threadsafeUriData ? threadsafeUriData->ToIURI() : nullptr;
|
|
|
|
}
|
2013-02-02 05:06:34 +04:00
|
|
|
if (uri) {
|
|
|
|
nsCOMPtr<nsIObserverService> os = mozilla::services::GetObserverService();
|
|
|
|
if (os) {
|
|
|
|
os->NotifyObservers(uri, "net:failed-to-process-uri-content", nullptr);
|
|
|
|
}
|
2012-12-20 01:28:54 +04:00
|
|
|
}
|
|
|
|
}
|
2012-11-17 17:33:20 +04:00
|
|
|
}
|
2014-11-15 07:10:47 +03:00
|
|
|
|
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|