2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-09-28 14:19:18 +04: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-23 09:17:09 +04:00
|
|
|
#include "mozilla/dom/NonRefcountedDOMObject.h"
|
2012-09-28 14:19:18 +04:00
|
|
|
#include "mozilla/dom/TextDecoderBinding.h"
|
2013-08-23 09:17:09 +04:00
|
|
|
#include "mozilla/dom/TypedArray.h"
|
2016-06-07 23:10:18 +03:00
|
|
|
#include "nsAutoPtr.h"
|
2017-04-27 13:27:03 +03:00
|
|
|
#include "mozilla/Encoding.h"
|
2012-09-28 14:19:18 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-08-23 09:17:09 +04:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2012-09-28 14:19:18 +04:00
|
|
|
namespace dom {
|
|
|
|
|
2014-11-21 22:58:51 +03:00
|
|
|
class ArrayBufferViewOrArrayBuffer;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class TextDecoder final
|
2013-08-23 09:17:09 +04:00
|
|
|
: public NonRefcountedDOMObject
|
2012-09-28 14:19:18 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// The WebIDL constructor.
|
2013-08-23 09:17:09 +04:00
|
|
|
static TextDecoder*
|
2012-12-03 20:07:49 +04:00
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2012-09-28 14:19:18 +04:00
|
|
|
const nsAString& aEncoding,
|
2012-12-22 04:15:43 +04:00
|
|
|
const TextDecoderOptions& aOptions,
|
2012-09-28 14:19:18 +04:00
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
2013-08-23 09:17:09 +04:00
|
|
|
nsAutoPtr<TextDecoder> txtDecoder(new TextDecoder());
|
2012-12-22 04:15:43 +04:00
|
|
|
txtDecoder->Init(aEncoding, aOptions.mFatal, aRv);
|
2012-09-28 14:19:18 +04:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return txtDecoder.forget();
|
|
|
|
}
|
|
|
|
|
2013-08-23 09:17:09 +04:00
|
|
|
TextDecoder()
|
2013-08-23 09:17:09 +04:00
|
|
|
: mFatal(false)
|
2012-09-28 14:19:18 +04:00
|
|
|
{
|
2013-08-23 09:17:09 +04:00
|
|
|
MOZ_COUNT_CTOR(TextDecoder);
|
2012-09-28 14:19:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
~TextDecoder()
|
2013-08-23 09:17:09 +04:00
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(TextDecoder);
|
|
|
|
}
|
2012-09-28 14:19:18 +04:00
|
|
|
|
Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, Codegen.py, and
StructuredClone.cpp. The rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/WrapObject\((JSContext *\* *(?:aCx|cx)),(\s*)(JS::MutableHandle<JSObject\*> aReflector)/WrapObject(\1,\2JS::Handle<JSObject*> aGivenProto,\2\3/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx)), this, aReflector/\1, this, aGivenProto, aReflector/'
2015-03-19 17:13:32 +03:00
|
|
|
bool WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector)
|
2012-09-28 14:19:18 +04:00
|
|
|
{
|
Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, Codegen.py, and
StructuredClone.cpp. The rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/WrapObject\((JSContext *\* *(?:aCx|cx)),(\s*)(JS::MutableHandle<JSObject\*> aReflector)/WrapObject(\1,\2JS::Handle<JSObject*> aGivenProto,\2\3/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx)), this, aReflector/\1, this, aGivenProto, aReflector/'
2015-03-19 17:13:32 +03:00
|
|
|
return TextDecoderBinding::Wrap(aCx, this, aGivenProto, aReflector);
|
2012-09-28 14:19:18 +04:00
|
|
|
}
|
|
|
|
|
2013-08-23 09:17:09 +04:00
|
|
|
/**
|
2013-12-17 14:47:25 +04:00
|
|
|
* Validates provided label and throws an exception if invalid label.
|
2013-08-23 09:17:09 +04:00
|
|
|
*
|
2013-12-17 14:47:25 +04:00
|
|
|
* @param aLabel The encoding label (case insensitive) provided.
|
|
|
|
* @param aFatal indicates whether to throw an 'EncodingError'
|
|
|
|
* exception or not when decoding.
|
2013-08-23 09:17:09 +04:00
|
|
|
* @return aRv EncodingError exception else null.
|
|
|
|
*/
|
2013-12-17 14:47:25 +04:00
|
|
|
void Init(const nsAString& aLabel, const bool aFatal, ErrorResult& aRv);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs initialization with a Gecko-canonical encoding name (as opposed
|
|
|
|
* to a label.)
|
|
|
|
*
|
2017-06-17 05:54:40 +03:00
|
|
|
* @param aEncoding An Encoding object
|
2013-12-17 14:47:25 +04:00
|
|
|
* @param aFatal indicates whether to throw an 'EncodingError'
|
|
|
|
* exception or not when decoding.
|
|
|
|
*/
|
2017-06-17 05:54:40 +03:00
|
|
|
void InitWithEncoding(NotNull<const Encoding*> aEncoding,
|
|
|
|
const bool aFatal);
|
2013-08-23 09:17:09 +04: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.
|
|
|
|
*/
|
2017-04-27 13:27:03 +03:00
|
|
|
void Decode(mozilla::Span<const uint8_t> aInput,
|
|
|
|
const bool aStream,
|
|
|
|
nsAString& aOutDecodedString,
|
2013-08-23 09:17:09 +04:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-11-21 22:58:51 +03:00
|
|
|
void Decode(const Optional<ArrayBufferViewOrArrayBuffer>& aBuffer,
|
2012-09-28 14:19:18 +04:00
|
|
|
const TextDecodeOptions& aOptions,
|
|
|
|
nsAString& aOutDecodedString,
|
2014-11-21 22:58:51 +03:00
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
bool Fatal() const {
|
|
|
|
return mFatal;
|
2012-12-22 04:15:43 +04:00
|
|
|
}
|
2012-09-28 14:19:18 +04:00
|
|
|
|
|
|
|
private:
|
2013-08-23 09:17:09 +04:00
|
|
|
nsCString mEncoding;
|
2017-04-27 13:27:03 +03:00
|
|
|
mozilla::UniquePtr<mozilla::Decoder> mDecoder;
|
2013-08-23 09:17:09 +04:00
|
|
|
bool mFatal;
|
2012-09-28 14:19:18 +04:00
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2012-09-28 14:19:18 +04:00
|
|
|
|
|
|
|
#endif // mozilla_dom_textdecoder_h_
|