2010-08-22 19:30:45 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
#ifndef MOZILLA_IMAGELIB_DECODER_H_
|
|
|
|
#define MOZILLA_IMAGELIB_DECODER_H_
|
|
|
|
|
|
|
|
#include "RasterImage.h"
|
|
|
|
|
|
|
|
#include "imgIDecoderObserver.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
2012-01-06 08:02:27 -08:00
|
|
|
namespace image {
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
class Decoder
|
2010-08-22 19:30:45 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2011-09-29 06:17:13 -07:00
|
|
|
Decoder(RasterImage& aImage, imgIDecoderObserver* aObserver);
|
2010-08-22 19:30:45 -07:00
|
|
|
virtual ~Decoder();
|
|
|
|
|
|
|
|
/**
|
2010-08-22 19:30:46 -07:00
|
|
|
* Initialize an image decoder. Decoders may not be re-initialized.
|
2010-08-22 19:30:45 -07:00
|
|
|
*
|
|
|
|
* @param aContainer The image container to decode to.
|
|
|
|
* @param aObserver The observer for decode notification events.
|
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
2011-09-27 09:24:03 -07:00
|
|
|
void Init();
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a decoder whose aImage and aObserver is already being used by a
|
|
|
|
* parent decoder. Decoders may not be re-initialized.
|
|
|
|
*
|
|
|
|
* @param aContainer The image container to decode to.
|
|
|
|
* @param aObserver The observer for decode notification events.
|
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
2011-09-27 09:24:03 -07:00
|
|
|
void InitSharedDecoder();
|
2011-08-25 13:09:01 -07:00
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
/**
|
|
|
|
* Writes data to the decoder.
|
|
|
|
*
|
|
|
|
* @param aBuffer buffer containing the data to be written
|
|
|
|
* @param aCount the number of bytes to write
|
|
|
|
*
|
|
|
|
* Any errors are reported by setting the appropriate state on the decoder.
|
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
void Write(const char* aBuffer, uint32_t aCount);
|
2010-08-22 19:30:45 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the decoder that all the data has been written.
|
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
2012-11-16 11:43:24 -08:00
|
|
|
void Finish(RasterImage::eShutdownIntent aShutdownIntent);
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2011-08-25 13:09:01 -07:00
|
|
|
/**
|
|
|
|
* Informs the shared decoder that all the data has been written.
|
|
|
|
* Should only be used if InitSharedDecoder was useed
|
|
|
|
*
|
|
|
|
* Notifications Sent: TODO
|
|
|
|
*/
|
|
|
|
void FinishSharedDecoder();
|
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
/**
|
2010-08-25 13:11:09 -07:00
|
|
|
* Tells the decoder to flush any pending invalidations. This informs the image
|
|
|
|
* frame of its decoded region, and sends the appropriate OnDataAvailable call
|
|
|
|
* to consumers.
|
|
|
|
*
|
|
|
|
* This can be called any time when we're midway through decoding a frame,
|
|
|
|
* and must be called after finishing a frame (before starting a new one).
|
2010-08-24 13:40:45 -07:00
|
|
|
*/
|
|
|
|
void FlushInvalidations();
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
// We're not COM-y, so we don't get refcounts by default
|
2010-08-22 19:30:46 -07:00
|
|
|
NS_INLINE_DECL_REFCOUNTING(Decoder)
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
/*
|
|
|
|
* State.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// If we're doing a "size decode", we more or less pass through the image
|
|
|
|
// data, stopping only to scoop out the image dimensions. A size decode
|
|
|
|
// must be enabled by SetSizeDecode() _before_calling Init().
|
|
|
|
bool IsSizeDecode() { return mSizeDecode; };
|
|
|
|
void SetSizeDecode(bool aSizeDecode)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(!mInitialized, "Can't set size decode after Init()!");
|
|
|
|
mSizeDecode = aSizeDecode;
|
|
|
|
}
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
// The number of frames we have, including anything in-progress. Thus, this
|
|
|
|
// is only 0 if we haven't begun any frames.
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetFrameCount() { return mFrameCount; }
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
// The number of complete frames we have (ie, not including anything in-progress).
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetCompleteFrameCount() { return mInFrame ? mFrameCount - 1 : mFrameCount; }
|
2010-09-12 08:22:30 -07:00
|
|
|
|
2010-09-12 08:22:27 -07:00
|
|
|
// Error tracking
|
2010-09-12 08:22:31 -07:00
|
|
|
bool HasError() { return HasDataError() || HasDecoderError(); };
|
|
|
|
bool HasDataError() { return mDataError; };
|
|
|
|
bool HasDecoderError() { return NS_FAILED(mFailCode); };
|
2010-09-12 08:22:27 -07:00
|
|
|
nsresult GetDecoderError() { return mFailCode; };
|
2011-05-11 02:46:59 -07:00
|
|
|
void PostResizeError() { PostDataError(); }
|
2011-08-25 13:09:01 -07:00
|
|
|
bool GetDecodeDone() const {
|
|
|
|
return mDecodeDone;
|
|
|
|
}
|
2010-09-12 08:22:27 -07:00
|
|
|
|
2011-01-12 17:45:13 -08:00
|
|
|
// flags. Keep these in sync with imgIContainer.idl.
|
|
|
|
// SetDecodeFlags must be called before Init(), otherwise
|
|
|
|
// default flags are assumed.
|
|
|
|
enum {
|
2012-03-23 15:10:50 -07:00
|
|
|
DECODER_NO_PREMULTIPLY_ALPHA = 0x2, // imgIContainer::FLAG_DECODE_NO_PREMULTIPLY_ALPHA
|
|
|
|
DECODER_NO_COLORSPACE_CONVERSION = 0x4 // imgIContainer::FLAG_DECODE_NO_COLORSPACE_CONVERSION
|
2011-01-12 17:45:13 -08:00
|
|
|
};
|
2012-11-18 17:18:52 -08:00
|
|
|
|
|
|
|
enum DecodeStyle {
|
|
|
|
PROGRESSIVE, // produce intermediate frames representing the partial state of the image
|
|
|
|
SEQUENTIAL // decode to final image immediately
|
|
|
|
};
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
void SetDecodeFlags(uint32_t aFlags) { mDecodeFlags = aFlags; }
|
|
|
|
uint32_t GetDecodeFlags() { return mDecodeFlags; }
|
2011-01-12 17:45:13 -08:00
|
|
|
|
2011-09-22 13:25:56 -07:00
|
|
|
// Use HistogramCount as an invalid Histogram ID
|
|
|
|
virtual Telemetry::ID SpeedHistogram() { return Telemetry::HistogramCount; }
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal hooks. Decoder implementations may override these and
|
|
|
|
* only these methods.
|
|
|
|
*/
|
2010-09-12 08:22:30 -07:00
|
|
|
virtual void InitInternal();
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual void WriteInternal(const char* aBuffer, uint32_t aCount);
|
2010-09-12 08:22:30 -07:00
|
|
|
virtual void FinishInternal();
|
2010-08-22 19:30:45 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
/*
|
|
|
|
* Progress notifications.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Called by decoders when they determine the size of the image. Informs
|
|
|
|
// the image of its size and sends notifications.
|
2012-08-22 08:56:38 -07:00
|
|
|
void PostSize(int32_t aWidth, int32_t aHeight);
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
// Called by decoders when they begin/end a frame. Informs the image, sends
|
|
|
|
// notifications, and does internal book-keeping.
|
|
|
|
void PostFrameStart();
|
|
|
|
void PostFrameStop();
|
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
// Called by the decoders when they have a region to invalidate. We may not
|
|
|
|
// actually pass these invalidations on right away.
|
|
|
|
void PostInvalidation(nsIntRect& aRect);
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
// Called by the decoders when they have successfully decoded the image. This
|
|
|
|
// may occur as the result of the decoder getting to the appropriate point in
|
|
|
|
// the stream, or by us calling FinishInternal().
|
|
|
|
//
|
|
|
|
// May not be called mid-frame.
|
|
|
|
void PostDecodeDone();
|
|
|
|
|
2010-09-12 08:22:27 -07:00
|
|
|
// Data errors are the fault of the source data, decoder errors are our fault
|
|
|
|
void PostDataError();
|
|
|
|
void PostDecoderError(nsresult aFailCode);
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
/*
|
|
|
|
* Member variables.
|
|
|
|
*
|
|
|
|
*/
|
2011-09-29 06:17:13 -07:00
|
|
|
RasterImage &mImage;
|
2011-08-25 13:09:01 -07:00
|
|
|
nsCOMPtr<imgIDecoderObserver> mObserver;
|
2010-09-12 08:22:30 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mDecodeFlags;
|
2011-08-25 13:09:01 -07:00
|
|
|
bool mDecodeDone;
|
|
|
|
bool mDataError;
|
2011-01-12 17:45:13 -08:00
|
|
|
|
2010-09-12 08:22:30 -07:00
|
|
|
private:
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFrameCount; // Number of frames, including anything in-progress
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2010-08-24 13:40:45 -07:00
|
|
|
nsIntRect mInvalidRect; // Tracks an invalidation region in the current frame.
|
|
|
|
|
2010-09-12 08:22:27 -07:00
|
|
|
nsresult mFailCode;
|
|
|
|
|
2010-08-22 19:30:45 -07:00
|
|
|
bool mInitialized;
|
2010-08-22 19:30:46 -07:00
|
|
|
bool mSizeDecode;
|
2010-08-22 19:30:46 -07:00
|
|
|
bool mInFrame;
|
2011-11-09 13:39:16 -08:00
|
|
|
bool mIsAnimated;
|
2010-08-22 19:30:45 -07:00
|
|
|
};
|
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
} // namespace image
|
2010-08-22 19:30:45 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // MOZILLA_IMAGELIB_DECODER_H_
|