2012-09-28 03:19:18 -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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_textdecoder_h_
|
|
|
|
#define mozilla_dom_textdecoder_h_
|
|
|
|
|
2013-08-22 22:17:09 -07:00
|
|
|
#include "mozilla/dom/NonRefcountedDOMObject.h"
|
2012-09-28 03:19:18 -07:00
|
|
|
#include "mozilla/dom/TextDecoderBinding.h"
|
2013-08-22 22:17:09 -07:00
|
|
|
#include "mozilla/dom/TypedArray.h"
|
|
|
|
#include "nsIUnicodeDecoder.h"
|
2012-09-28 03:19:18 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-08-22 22:17:09 -07:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2012-09-28 03:19:18 -07:00
|
|
|
namespace dom {
|
|
|
|
|
2012-12-21 16:15:43 -08:00
|
|
|
class TextDecoder MOZ_FINAL
|
2013-08-22 22:17:09 -07:00
|
|
|
: public NonRefcountedDOMObject
|
2012-09-28 03:19:18 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// The WebIDL constructor.
|
2013-08-22 22:17:09 -07:00
|
|
|
static TextDecoder*
|
2012-12-03 08:07:49 -08:00
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2012-09-28 03:19:18 -07:00
|
|
|
const nsAString& aEncoding,
|
2012-12-21 16:15:43 -08:00
|
|
|
const TextDecoderOptions& aOptions,
|
2012-09-28 03:19:18 -07:00
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
2013-08-22 22:17:09 -07:00
|
|
|
nsAutoPtr<TextDecoder> txtDecoder(new TextDecoder());
|
2012-12-21 16:15:43 -08:00
|
|
|
txtDecoder->Init(aEncoding, aOptions.mFatal, aRv);
|
2012-09-28 03:19:18 -07:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return txtDecoder.forget();
|
|
|
|
}
|
|
|
|
|
2013-08-22 22:17:09 -07:00
|
|
|
TextDecoder()
|
2013-08-22 22:17:09 -07:00
|
|
|
: mFatal(false)
|
2012-09-28 03:19:18 -07:00
|
|
|
{
|
2013-08-22 22:17:09 -07:00
|
|
|
MOZ_COUNT_CTOR(TextDecoder);
|
2012-09-28 03:19:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
~TextDecoder()
|
2013-08-22 22:17:09 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(TextDecoder);
|
|
|
|
}
|
2012-09-28 03:19:18 -07:00
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
JSObject* WrapObject(JSContext* aCx, bool* aTookOwnership)
|
2012-09-28 03:19:18 -07:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return TextDecoderBinding::Wrap(aCx, this, aTookOwnership);
|
2012-09-28 03:19:18 -07:00
|
|
|
}
|
|
|
|
|
2013-08-22 22:17:09 -07:00
|
|
|
/**
|
2013-12-17 02:47:25 -08:00
|
|
|
* Validates provided label and throws an exception if invalid label.
|
2013-08-22 22:17:09 -07:00
|
|
|
*
|
2013-12-17 02:47:25 -08:00
|
|
|
* @param aLabel The encoding label (case insensitive) provided.
|
|
|
|
* @param aFatal indicates whether to throw an 'EncodingError'
|
|
|
|
* exception or not when decoding.
|
2013-08-22 22:17:09 -07:00
|
|
|
* @return aRv EncodingError exception else null.
|
|
|
|
*/
|
2013-12-17 02:47:25 -08:00
|
|
|
void Init(const nsAString& aLabel, const bool aFatal, ErrorResult& aRv);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs initialization with a Gecko-canonical encoding name (as opposed
|
|
|
|
* to a label.)
|
|
|
|
*
|
|
|
|
* @param aEncoding A Gecko-canonical encoding name
|
|
|
|
* @param aFatal indicates whether to throw an 'EncodingError'
|
|
|
|
* exception or not when decoding.
|
|
|
|
*/
|
|
|
|
void InitWithEncoding(const nsACString& aEncoding, const bool aFatal);
|
2013-08-22 22:17:09 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the encoding name.
|
|
|
|
*
|
|
|
|
* @param aEncoding, current encoding.
|
|
|
|
*/
|
|
|
|
void GetEncoding(nsAString& aEncoding);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decodes incoming byte stream of characters in charset indicated by
|
|
|
|
* encoding.
|
|
|
|
*
|
|
|
|
* The encoding algorithm state is reset if aOptions.mStream is not set.
|
|
|
|
*
|
|
|
|
* If the fatal flag is set then a decoding error will throw EncodingError.
|
|
|
|
* Else the decoder will return a decoded string with replacement
|
|
|
|
* character(s) for unidentified character(s).
|
|
|
|
*
|
|
|
|
* @param aView, incoming byte stream of characters to be decoded to
|
|
|
|
* to UTF-16 code points.
|
|
|
|
* @param aOptions, indicates if streaming or not.
|
|
|
|
* @param aOutDecodedString, decoded string of UTF-16 code points.
|
|
|
|
* @param aRv, error result.
|
|
|
|
*/
|
|
|
|
void Decode(const char* aInput, const int32_t aLength,
|
|
|
|
const bool aStream, nsAString& aOutDecodedString,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2012-12-28 16:55:32 -08:00
|
|
|
void Decode(nsAString& aOutDecodedString,
|
|
|
|
ErrorResult& aRv) {
|
2013-08-22 22:17:09 -07:00
|
|
|
Decode(nullptr, 0, false, aOutDecodedString, aRv);
|
2012-12-28 16:55:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Decode(const ArrayBufferView& aView,
|
2012-09-28 03:19:18 -07:00
|
|
|
const TextDecodeOptions& aOptions,
|
|
|
|
nsAString& aOutDecodedString,
|
2012-12-21 16:15:43 -08:00
|
|
|
ErrorResult& aRv) {
|
2013-08-22 22:17:09 -07:00
|
|
|
Decode(reinterpret_cast<char*>(aView.Data()), aView.Length(),
|
|
|
|
aOptions.mStream, aOutDecodedString, aRv);
|
2012-12-21 16:15:43 -08:00
|
|
|
}
|
2012-09-28 03:19:18 -07:00
|
|
|
|
|
|
|
private:
|
2013-08-22 22:17:09 -07:00
|
|
|
nsCString mEncoding;
|
|
|
|
nsCOMPtr<nsIUnicodeDecoder> mDecoder;
|
|
|
|
bool mFatal;
|
2012-09-28 03:19:18 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // dom
|
|
|
|
} // mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_textdecoder_h_
|