2016-06-29 23:43:19 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An interface for tasks which can execute on the ImageLib DecodePool, and
|
|
|
|
* various implementations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef mozilla_image_IDecodingTask_h
|
|
|
|
#define mozilla_image_IDecodingTask_h
|
|
|
|
|
2017-10-25 01:22:55 +03:00
|
|
|
#include "imgFrame.h"
|
2016-06-29 23:43:19 +03:00
|
|
|
#include "mozilla/NotNull.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
2017-10-25 01:22:55 +03:00
|
|
|
#include "nsIEventTarget.h"
|
2016-06-29 23:43:19 +03:00
|
|
|
#include "SourceBuffer.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace image {
|
|
|
|
|
|
|
|
class Decoder;
|
2016-08-05 04:59:10 +03:00
|
|
|
class RasterImage;
|
2016-06-29 23:43:19 +03:00
|
|
|
|
|
|
|
/// A priority hint that DecodePool can use when scheduling an IDecodingTask.
|
|
|
|
enum class TaskPriority : uint8_t
|
|
|
|
{
|
|
|
|
eLow,
|
|
|
|
eHigh
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An interface for tasks which can execute on the ImageLib DecodePool.
|
|
|
|
*/
|
|
|
|
class IDecodingTask : public IResumable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Run the task.
|
|
|
|
virtual void Run() = 0;
|
|
|
|
|
|
|
|
/// @return true if, given the option, this task prefers to run synchronously.
|
|
|
|
virtual bool ShouldPreferSyncRun() const = 0;
|
|
|
|
|
|
|
|
/// @return a priority hint that DecodePool can use when scheduling this task.
|
|
|
|
virtual TaskPriority Priority() const = 0;
|
|
|
|
|
|
|
|
/// A default implementation of IResumable which resubmits the task to the
|
|
|
|
/// DecodePool. Subclasses can override this if they need different behavior.
|
|
|
|
void Resume() override;
|
|
|
|
|
|
|
|
protected:
|
2017-07-19 21:15:11 +03:00
|
|
|
virtual ~IDecodingTask() { }
|
|
|
|
|
2016-07-28 05:40:56 +03:00
|
|
|
/// Notify @aImage of @aDecoder's progress.
|
2017-07-19 21:15:11 +03:00
|
|
|
void NotifyProgress(NotNull<RasterImage*> aImage,
|
|
|
|
NotNull<Decoder*> aDecoder);
|
2016-07-28 05:40:56 +03:00
|
|
|
|
|
|
|
/// Notify @aImage that @aDecoder has finished.
|
2017-07-19 21:15:11 +03:00
|
|
|
void NotifyDecodeComplete(NotNull<RasterImage*> aImage,
|
|
|
|
NotNull<Decoder*> aDecoder);
|
2016-07-28 05:40:56 +03:00
|
|
|
|
2017-07-19 21:15:11 +03:00
|
|
|
private:
|
|
|
|
void EnsureHasEventTarget(NotNull<RasterImage*> aImage);
|
|
|
|
|
|
|
|
bool IsOnEventTarget() const;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEventTarget> mEventTarget;
|
2016-06-29 23:43:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An IDecodingTask implementation for metadata decodes of images.
|
|
|
|
*/
|
|
|
|
class MetadataDecodingTask final : public IDecodingTask
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(MetadataDecodingTask, override)
|
|
|
|
|
|
|
|
explicit MetadataDecodingTask(NotNull<Decoder*> aDecoder);
|
|
|
|
|
|
|
|
void Run() override;
|
|
|
|
|
|
|
|
// Metadata decodes are very fast (since they only need to examine an image's
|
|
|
|
// header) so there's no reason to refuse to run them synchronously if the
|
|
|
|
// caller will allow us to.
|
|
|
|
bool ShouldPreferSyncRun() const override { return true; }
|
|
|
|
|
|
|
|
// Metadata decodes run at the highest priority because they block layout and
|
|
|
|
// page load.
|
|
|
|
TaskPriority Priority() const override { return TaskPriority::eHigh; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~MetadataDecodingTask() { }
|
|
|
|
|
2016-08-18 17:23:42 +03:00
|
|
|
/// Mutex protecting access to mDecoder.
|
|
|
|
Mutex mMutex;
|
|
|
|
|
2016-06-29 23:43:19 +03:00
|
|
|
NotNull<RefPtr<Decoder>> mDecoder;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An IDecodingTask implementation for anonymous decoders - that is, decoders
|
|
|
|
* with no associated Image object.
|
|
|
|
*/
|
|
|
|
class AnonymousDecodingTask final : public IDecodingTask
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(AnonymousDecodingTask, override)
|
|
|
|
|
2018-11-01 23:36:16 +03:00
|
|
|
explicit AnonymousDecodingTask(NotNull<Decoder*> aDecoder,
|
|
|
|
bool aResumable);
|
2016-06-29 23:43:19 +03:00
|
|
|
|
|
|
|
void Run() override;
|
|
|
|
|
|
|
|
bool ShouldPreferSyncRun() const override { return true; }
|
|
|
|
TaskPriority Priority() const override { return TaskPriority::eLow; }
|
|
|
|
|
2018-11-01 23:36:16 +03:00
|
|
|
void Resume() override;
|
2016-06-29 23:43:19 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~AnonymousDecodingTask() { }
|
|
|
|
|
|
|
|
NotNull<RefPtr<Decoder>> mDecoder;
|
2018-11-01 23:36:16 +03:00
|
|
|
bool mResumable;
|
2016-06-29 23:43:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_image_IDecodingTask_h
|