Bug 1540028 [wpt PR 16099] - Catch more exceptions in Document-createElement-namespac...
[gecko.git] / image / imgIRequest.idl
blob9f683ea47dcd963f3181afc6e5dd9eb48449b792
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "nsISupports.idl"
8 #include "nsIRequest.idl"
10 interface imgIContainer;
11 interface imgINotificationObserver;
12 interface nsIURI;
13 interface nsIPrincipal;
15 /**
16 * imgIRequest interface
18 * @author Stuart Parmenter <stuart@mozilla.com>
19 * @version 0.1
20 * @see imagelib2
22 [scriptable, builtinclass, uuid(db0a945c-3883-424a-98d0-2ee0523b0255)]
23 interface imgIRequest : nsIRequest
25 /**
26 * the image container...
27 * @return the image object associated with the request.
28 * @attention NEED DOCS
30 readonly attribute imgIContainer image;
32 /**
33 * Producer ID for image containers created by this image.
35 [infallible] readonly attribute unsigned long producerId;
37 /**
38 * Bits set in the return value from imageStatus
39 * @name statusflags
41 * Meanings:
43 * STATUS_NONE: Nothing to report.
45 * STATUS_SIZE_AVAILABLE: We received enough image data
46 * from the network or filesystem that we know the width
47 * and height of the image, and have thus called SetSize()
48 * on the container.
50 * STATUS_LOAD_COMPLETE: The data has been fully loaded
51 * to memory, but not necessarily fully decoded.
53 * STATUS_ERROR: An error occurred loading the image.
55 * STATUS_FRAME_COMPLETE: The first frame has been
56 * completely decoded.
58 * STATUS_DECODE_COMPLETE: The whole image has been decoded.
60 * STATUS_IS_ANIMATED: The image is animated.
62 * STATUS_HAS_TRANSPARENCY: The image is partially or completely transparent.
64 //@{
65 const long STATUS_NONE = 0x0;
66 const long STATUS_SIZE_AVAILABLE = 0x1;
67 const long STATUS_LOAD_COMPLETE = 0x2;
68 const long STATUS_ERROR = 0x4;
69 const long STATUS_FRAME_COMPLETE = 0x8;
70 const long STATUS_DECODE_COMPLETE = 0x10;
71 const long STATUS_IS_ANIMATED = 0x20;
72 const long STATUS_HAS_TRANSPARENCY = 0x40;
73 //@}
75 /**
76 * Status flags of the STATUS_* variety.
78 readonly attribute unsigned long imageStatus;
81 * Actual error code that generated a STATUS_ERROR imageStatus
82 * (see xpcom/base/ErrorList.h)
84 [noscript] readonly attribute nsresult imageErrorCode;
86 /**
87 * The URI the image load was started with. Note that this might not be the
88 * actual URI for the image (e.g. if HTTP redirects happened during the
89 * load).
91 readonly attribute nsIURI URI;
93 /**
94 * The URI of the resource we ended up loading after all redirects, etc.
96 readonly attribute nsIURI finalURI;
98 readonly attribute imgINotificationObserver notificationObserver;
100 readonly attribute string mimeType;
103 * Clone this request; the returned request will have aObserver as the
104 * observer. aObserver will be notified synchronously (before the clone()
105 * call returns) with all the notifications that have already been dispatched
106 * for this image load.
108 imgIRequest clone(in imgINotificationObserver aObserver);
111 * The principal gotten from the channel the image was loaded from.
113 readonly attribute nsIPrincipal imagePrincipal;
116 * Whether the request is multipart (ie, multipart/x-mixed-replace)
118 readonly attribute bool multipart;
121 * CORS modes images can be loaded with.
123 * By default, all images are loaded with CORS_NONE and cannot be used
124 * cross-origin in context like WebGL.
126 * If an HTML img element has the crossorigin attribute set, the imgIRequest
127 * will be validated for cross-origin usage with CORS, and, if successful,
128 * will have its CORS mode set to the relevant type.
130 //@{
131 const long CORS_NONE = 1;
132 const long CORS_ANONYMOUS = 2;
133 const long CORS_USE_CREDENTIALS = 3;
134 //@}
137 * The CORS mode that this image was loaded with.
139 readonly attribute long CORSMode;
142 * Cancels this request as in nsIRequest::Cancel(); further, also nulls out
143 * decoderObserver so it gets no further notifications from us.
145 * NOTE: You should not use this in any new code; instead, use cancel(). Note
146 * that cancel() is asynchronous, which means that some time after you call
147 * it, the listener/observer will get an OnStopRequest(). This means that, if
148 * you're the observer, you can't call cancel() from your destructor.
150 void cancelAndForgetObserver(in nsresult aStatus);
153 * Requests a synchronous decode for the image.
155 * imgIContainer has a startDecoding() method, but callers may want to request
156 * a decode before the container has necessarily been instantiated. Calling
157 * startDecoding() on the imgIRequest simply forwards along the request if the
158 * container already exists, or calls it once the container becomes available
159 * if it does not yet exist.
161 void startDecoding(in uint32_t aFlags);
164 * Exactly like startDecoding above except returns whether the current frame
165 * of the image is complete or not.
167 * @param aFlags Flags of the FLAG_* variety. Only FLAG_ASYNC_NOTIFY
168 * is accepted; all others are ignored.
170 [noscript, notxpcom] boolean startDecodingWithResult(in uint32_t aFlags);
173 * This method triggers decoding for an image, but unlike startDecoding() it
174 * enables the caller to provide more detailed information about the decode
175 * request.
177 * @param aFlags Flags of the FLAG_* variety.
178 * @return True there is a surface that satisfies the request and it is
179 * fully decoded, else false.
181 [noscript, notxpcom] boolean requestDecodeWithResult(in uint32_t aFlags);
184 * Locks an image. If the image does not exist yet, locks it once it becomes
185 * available. The lock persists for the lifetime of the imgIRequest (until
186 * unlockImage is called) even if the underlying image changes.
188 * If you don't call unlockImage() by the time this imgIRequest goes away, it
189 * will be called for you automatically.
191 * @see imgIContainer::lockImage for documentation of the underlying call.
193 void lockImage();
196 * Unlocks an image.
198 * @see imgIContainer::unlockImage for documentation of the underlying call.
200 void unlockImage();
203 * If this image is unlocked, discard the image's decoded data. If the image
204 * is locked or is already discarded, do nothing.
206 void requestDiscard();
209 * If this request is for an animated image, the method creates a new
210 * request which contains the current frame of the image.
211 * Otherwise returns the same request.
213 imgIRequest getStaticRequest();
216 * Requests that the image animate (if it has an animation).
218 * @see Image::IncrementAnimationConsumers for documentation of the
219 * underlying call.
221 void incrementAnimationConsumers();
224 * Tell the image it can forget about a request that the image animate.
226 * @see Image::DecrementAnimationConsumers for documentation of the
227 * underlying call.
229 void decrementAnimationConsumers();
232 * Request loading priority boost to requested category, each category
233 * of request increases priority only one time.
235 * CATEGORY_FRAME_INIT: increase priority when the imgRequest is associated
236 * with an nsImageFrame.
238 * CATEGORY_FRAME_STYLE: increase priority when the imgRequest is for a CSS
239 * background-image, list-style-image, etc. on a ComputedStyle, and a frame
240 * has been assigned this ComputedStyle.
242 * CATEGORY_SIZE_QUERY: increase priority when size decoding is necessary to
243 * determine the layout size of an associated nsImageFrame.
245 * CATEGORY_DISPLAY: increase priority when the image is about to be displayed
246 * in the viewport.
248 const uint32_t CATEGORY_FRAME_INIT = 1 << 0;
249 const uint32_t CATEGORY_FRAME_STYLE = 1 << 1;
250 const uint32_t CATEGORY_SIZE_QUERY = 1 << 2;
251 const uint32_t CATEGORY_DISPLAY = 1 << 3;
252 void boostPriority(in uint32_t aCategory);