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
|
2016-12-04 01:07:10 +03:00
|
|
|
CheckProgressConsistency(Progress aOldProgress, Progress aNewProgress, bool aIsMultipart)
|
2014-11-15 07:10:48 +03:00
|
|
|
{
|
|
|
|
// Check preconditions for every progress bit.
|
|
|
|
|
2016-12-04 01:07:10 +03:00
|
|
|
// Error's do not get propagated from the tracker for each image part to the
|
|
|
|
// tracker for the multipart image because we don't want one bad part to
|
|
|
|
// prevent the remaining parts from showing. So we need to consider whether
|
|
|
|
// this is a tracker for a multipart image for these assertions to work.
|
|
|
|
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_SIZE_AVAILABLE) {
|
2014-11-18 01:29:56 +03:00
|
|
|
// No preconditions.
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_DECODE_COMPLETE) {
|
|
|
|
MOZ_ASSERT(aNewProgress & FLAG_SIZE_AVAILABLE);
|
2016-12-04 01:07:10 +03:00
|
|
|
MOZ_ASSERT(aIsMultipart || aNewProgress & (FLAG_FRAME_COMPLETE | FLAG_HAS_ERROR));
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_FRAME_COMPLETE) {
|
|
|
|
MOZ_ASSERT(aNewProgress & FLAG_SIZE_AVAILABLE);
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_LOAD_COMPLETE) {
|
2016-12-04 01:07:10 +03:00
|
|
|
MOZ_ASSERT(aIsMultipart || aNewProgress & (FLAG_SIZE_AVAILABLE | FLAG_HAS_ERROR));
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_ONLOAD_BLOCKED) {
|
2015-06-30 12:37:58 +03:00
|
|
|
// No preconditions.
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_ONLOAD_UNBLOCKED) {
|
|
|
|
MOZ_ASSERT(aNewProgress & FLAG_ONLOAD_BLOCKED);
|
2016-12-04 01:07:10 +03:00
|
|
|
MOZ_ASSERT(aIsMultipart || aNewProgress & (FLAG_SIZE_AVAILABLE | FLAG_HAS_ERROR));
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_IS_ANIMATED) {
|
|
|
|
// No preconditions; like FLAG_HAS_TRANSPARENCY, we should normally never
|
|
|
|
// discover this *after* FLAG_SIZE_AVAILABLE, but unfortunately some corrupt
|
|
|
|
// GIFs may fool us.
|
2014-11-17 22:16:45 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_HAS_TRANSPARENCY) {
|
2016-03-22 00:15:20 +03:00
|
|
|
// XXX We'd like to assert that transparency is only set during metadata
|
|
|
|
// decode but we don't have any way to assert that until bug 1254892 is fixed.
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_LAST_PART_COMPLETE) {
|
|
|
|
MOZ_ASSERT(aNewProgress & FLAG_LOAD_COMPLETE);
|
2014-11-15 07:10:48 +03:00
|
|
|
}
|
2016-02-25 22:12:58 +03:00
|
|
|
if (aNewProgress & FLAG_HAS_ERROR) {
|
2014-11-15 07:10:48 +03:00
|
|
|
// 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-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.
|
2016-04-26 03:23:21 +03:00
|
|
|
class AsyncNotifyRunnable : public Runnable
|
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)
|
2017-02-11 09:11:48 +03:00
|
|
|
: Runnable("ProgressTracker::AsyncNotifyRunnable")
|
|
|
|
, 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
|
|
|
|
2016-08-08 05:18:10 +03:00
|
|
|
NS_IMETHOD Run() override
|
2010-07-29 01:52:14 +04:00
|
|
|
{
|
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
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<ProgressTracker> mTracker;
|
|
|
|
nsTArray<RefPtr<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-11-16 20:21:00 +03:00
|
|
|
if (MOZ_LOG_TEST(gImgLog, LogLevel::Debug)) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<Image> image = GetImage();
|
2015-05-11 23:42:30 +03:00
|
|
|
if (image && image->GetURI()) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<ImageURL> uri(image->GetURI());
|
2015-05-11 23:42:30 +03:00
|
|
|
nsAutoCString spec;
|
|
|
|
uri->GetSpec(spec);
|
2015-11-16 20:21:00 +03:00
|
|
|
LOG_FUNC_WITH_PARAM(gImgLog,
|
2015-05-11 23:42:30 +03:00
|
|
|
"ProgressTracker::Notify async", "uri", spec.get());
|
|
|
|
} else {
|
2015-11-16 20:21:00 +03:00
|
|
|
LOG_FUNC_WITH_PARAM(gImgLog,
|
2015-05-11 23:42:30 +03:00
|
|
|
"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.
|
2016-04-26 03:23:21 +03:00
|
|
|
class AsyncNotifyCurrentStateRunnable : public Runnable
|
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
|
|
|
|
2016-08-08 05:18:10 +03:00
|
|
|
NS_IMETHOD Run() override
|
2010-07-29 01:52:14 +04:00
|
|
|
{
|
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:
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<ProgressTracker> mProgressTracker;
|
|
|
|
RefPtr<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.
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<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-11-16 20:21:00 +03:00
|
|
|
if (MOZ_LOG_TEST(gImgLog, LogLevel::Debug)) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<Image> image = GetImage();
|
2015-05-11 23:42:30 +03:00
|
|
|
nsAutoCString spec;
|
|
|
|
if (image && image->GetURI()) {
|
|
|
|
image->GetURI()->GetSpec(spec);
|
|
|
|
}
|
2015-11-16 20:21:00 +03:00
|
|
|
LOG_FUNC_WITH_PARAM(gImgLog,
|
2015-05-11 23:42:30 +03:00
|
|
|
"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-08-26 02:26:43 +03:00
|
|
|
/**
|
|
|
|
* ImageObserverNotifier is a helper type that abstracts over the difference
|
|
|
|
* between sending notifications to all of the observers in an ObserverTable,
|
|
|
|
* and sending them to a single observer. This allows the same notification code
|
|
|
|
* to be used for both cases.
|
|
|
|
*/
|
|
|
|
template <typename T> struct ImageObserverNotifier;
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct MOZ_STACK_CLASS ImageObserverNotifier<const ObserverTable*>
|
|
|
|
{
|
|
|
|
explicit ImageObserverNotifier(const ObserverTable* aObservers,
|
|
|
|
bool aIgnoreDeferral = false)
|
|
|
|
: mObservers(aObservers)
|
|
|
|
, mIgnoreDeferral(aIgnoreDeferral)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
template <typename Lambda>
|
|
|
|
void operator()(Lambda aFunc)
|
|
|
|
{
|
|
|
|
for (auto iter = mObservers->ConstIter(); !iter.Done(); iter.Next()) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<IProgressObserver> observer = iter.Data().get();
|
2015-08-26 02:26:43 +03:00
|
|
|
if (observer &&
|
|
|
|
(mIgnoreDeferral || !observer->NotificationsDeferred())) {
|
|
|
|
aFunc(observer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const ObserverTable* mObservers;
|
|
|
|
const bool mIgnoreDeferral;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct MOZ_STACK_CLASS ImageObserverNotifier<IProgressObserver*>
|
|
|
|
{
|
|
|
|
explicit ImageObserverNotifier(IProgressObserver* aObserver)
|
|
|
|
: mObserver(aObserver)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
template <typename Lambda>
|
|
|
|
void operator()(Lambda aFunc)
|
|
|
|
{
|
|
|
|
if (mObserver && !mObserver->NotificationsDeferred()) {
|
|
|
|
aFunc(mObserver);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
IProgressObserver* mObserver;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T> void
|
|
|
|
SyncNotifyInternal(const T& aObservers,
|
|
|
|
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;
|
2015-08-26 02:26:43 +03:00
|
|
|
ImageObserverNotifier<T> notify(aObservers);
|
2015-01-07 12:35:20 +03:00
|
|
|
|
2014-12-06 02:58:00 +03:00
|
|
|
if (aProgress & FLAG_SIZE_AVAILABLE) {
|
2015-08-26 02:26:43 +03:00
|
|
|
notify([](IProgressObserver* aObs) { aObs->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_ONLOAD_BLOCKED) {
|
2015-08-26 02:26:43 +03:00
|
|
|
notify([](IProgressObserver* aObs) { aObs->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-08-26 02:26:43 +03:00
|
|
|
notify([&](IProgressObserver* aObs) {
|
|
|
|
aObs->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-08-26 02:26:43 +03:00
|
|
|
notify([](IProgressObserver* aObs) { aObs->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-08-26 02:26:43 +03:00
|
|
|
notify([](IProgressObserver* aObs) { aObs->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-08-26 02:26:43 +03:00
|
|
|
notify([](IProgressObserver* aObs) { aObs->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-08-26 02:26:43 +03:00
|
|
|
notify([](IProgressObserver* aObs) { aObs->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-08-26 02:26:43 +03:00
|
|
|
notify([](IProgressObserver* aObs) { aObs->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-08-26 02:26:43 +03:00
|
|
|
notify([=](IProgressObserver* aObs) {
|
|
|
|
aObs->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
|
|
|
}
|
|
|
|
|
2016-12-04 01:07:10 +03:00
|
|
|
CheckProgressConsistency(mProgress, mProgress | progress, mIsMultipart);
|
2016-02-25 22:12:58 +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
|
|
|
|
|
|
|
// Send notifications.
|
2015-08-26 02:26:43 +03:00
|
|
|
mObservers.Read([&](const ObserverTable* aTable) {
|
|
|
|
SyncNotifyInternal(aTable, 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-10-18 08:24:48 +03:00
|
|
|
RefPtr<Image> image = GetImage();
|
2015-05-01 04:13:14 +03:00
|
|
|
|
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
|
|
|
}
|
2015-11-16 20:21:00 +03:00
|
|
|
LOG_SCOPE_WITH_PARAM(gImgLog,
|
2014-12-06 02:58:00 +03:00
|
|
|
"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-08-26 02:26:43 +03:00
|
|
|
SyncNotifyInternal(aObserver, !!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");
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<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-10-18 08:24:48 +03:00
|
|
|
RefPtr<IProgressObserver> observer = aObserver;
|
2015-08-26 02:26:43 +03:00
|
|
|
|
|
|
|
mObservers.Write([=](ObserverTable* aTable) {
|
2015-09-01 17:58:37 +03:00
|
|
|
MOZ_ASSERT(!aTable->Get(observer, nullptr),
|
2015-08-26 02:26:43 +03:00
|
|
|
"Adding duplicate entry for image observer");
|
|
|
|
|
2015-09-01 17:58:37 +03:00
|
|
|
WeakPtr<IProgressObserver> weakPtr = observer.get();
|
|
|
|
aTable->Put(observer, weakPtr);
|
2015-08-26 02:26:43 +03:00
|
|
|
});
|
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());
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<IProgressObserver> observer = aObserver;
|
2012-10-12 20:11:20 +04:00
|
|
|
|
2015-01-07 12:35:20 +03:00
|
|
|
// Remove the observer from the list.
|
2015-08-26 02:26:43 +03:00
|
|
|
bool removed = mObservers.Write([=](ObserverTable* aTable) {
|
2015-09-01 17:58:37 +03:00
|
|
|
bool removed = aTable->Get(observer, nullptr);
|
|
|
|
aTable->Remove(observer);
|
2015-08-26 02:26:43 +03:00
|
|
|
return removed;
|
|
|
|
});
|
2015-01-07 12:35:20 +03:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2015-08-26 02:26:43 +03:00
|
|
|
uint32_t
|
|
|
|
ProgressTracker::ObserverCount() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
return mObservers.Read([](const ObserverTable* aTable) {
|
|
|
|
return aTable->Count();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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-08-26 02:26:43 +03:00
|
|
|
mObservers.Read([](const ObserverTable* aTable) {
|
|
|
|
ImageObserverNotifier<const ObserverTable*> notify(aTable);
|
|
|
|
notify([](IProgressObserver* aObs) {
|
|
|
|
aObs->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;
|
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-08-26 02:26:43 +03:00
|
|
|
mObservers.Read([](const ObserverTable* aTable) {
|
|
|
|
ImageObserverNotifier<const ObserverTable*> notify(aTable);
|
|
|
|
notify([](IProgressObserver* aObs) {
|
|
|
|
aObs->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.
|
2015-08-26 02:26:43 +03:00
|
|
|
mObservers.Read([](const ObserverTable* aTable) {
|
|
|
|
ImageObserverNotifier<const ObserverTable*>
|
|
|
|
notify(aTable, /* aIgnoreDeferral = */ true);
|
|
|
|
notify([](IProgressObserver* aObs) {
|
|
|
|
aObs->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-10-18 08:24:48 +03:00
|
|
|
RefPtr<Image> image = GetImage();
|
2015-05-01 04:13:14 +03:00
|
|
|
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-10-18 08:24:48 +03:00
|
|
|
RefPtr<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
|