From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- image/IDecodingTask.h | 126 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 image/IDecodingTask.h (limited to 'image/IDecodingTask.h') diff --git a/image/IDecodingTask.h b/image/IDecodingTask.h new file mode 100644 index 000000000..196ce5fdc --- /dev/null +++ b/image/IDecodingTask.h @@ -0,0 +1,126 @@ +/* -*- 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 + +#include "mozilla/NotNull.h" +#include "mozilla/RefPtr.h" + +#include "imgFrame.h" +#include "SourceBuffer.h" + +namespace mozilla { +namespace image { + +class Decoder; +class RasterImage; + +/// 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: + /// Notify @aImage of @aDecoder's progress. + static void NotifyProgress(NotNull aImage, + NotNull aDecoder); + + /// Notify @aImage that @aDecoder has finished. + static void NotifyDecodeComplete(NotNull aImage, + NotNull aDecoder); + + virtual ~IDecodingTask() { } +}; + + +/** + * An IDecodingTask implementation for metadata decodes of images. + */ +class MetadataDecodingTask final : public IDecodingTask +{ +public: + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(MetadataDecodingTask, override) + + explicit MetadataDecodingTask(NotNull 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() { } + + /// Mutex protecting access to mDecoder. + Mutex mMutex; + + NotNull> 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) + + explicit AnonymousDecodingTask(NotNull aDecoder); + + void Run() override; + + bool ShouldPreferSyncRun() const override { return true; } + TaskPriority Priority() const override { return TaskPriority::eLow; } + + // Anonymous decoders normally get all their data at once. We have tests where + // they don't; in these situations, the test re-runs them manually. So no + // matter what, we don't want to resume by posting a task to the DecodePool. + void Resume() override { } + +private: + virtual ~AnonymousDecodingTask() { } + + NotNull> mDecoder; +}; + +} // namespace image +} // namespace mozilla + +#endif // mozilla_image_IDecodingTask_h -- cgit v1.2.3