forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIDecodingTask.h
133 lines (98 loc) · 3.65 KB
/
IDecodingTask.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* -*- 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 "imgFrame.h"
#include "mozilla/NotNull.h"
#include "mozilla/RefPtr.h"
#include "nsIEventTarget.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:
virtual ~IDecodingTask() { }
/// Notify @aImage of @aDecoder's progress.
void NotifyProgress(NotNull<RasterImage*> aImage,
NotNull<Decoder*> aDecoder);
/// Notify @aImage that @aDecoder has finished.
void NotifyDecodeComplete(NotNull<RasterImage*> aImage,
NotNull<Decoder*> aDecoder);
private:
void EnsureHasEventTarget(NotNull<RasterImage*> aImage);
bool IsOnEventTarget() const;
nsCOMPtr<nsIEventTarget> mEventTarget;
};
/**
* 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() { }
/// Mutex protecting access to mDecoder.
Mutex mMutex;
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)
explicit AnonymousDecodingTask(NotNull<Decoder*> 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<RefPtr<Decoder>> mDecoder;
};
} // namespace image
} // namespace mozilla
#endif // mozilla_image_IDecodingTask_h