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"
|
2017-04-27 13:27:03 +03:00
|
|
|
#include "mozilla/Encoding.h"
|
2020-04-04 00:05:19 +03:00
|
|
|
#include "mozilla/UniquePtr.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;
|
|
|
|
|
2013-08-23 09:17:09 +04:00
|
|
|
class TextDecoder final : public NonRefcountedDOMObject {
|
2012-09-28 14:19:18 +04:00
|
|
|
public:
|
|
|
|
// The WebIDL constructor.
|
2012-12-03 20:07:49 +04:00
|
|
|
static TextDecoder* 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) {
|
2020-04-04 00:05:19 +03:00
|
|
|
auto txtDecoder = MakeUnique<TextDecoder>();
|
2018-08-08 21:30:01 +03:00
|
|
|
txtDecoder->Init(aEncoding, aOptions, aRv);
|
2012-09-28 14:19:18 +04:00
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-04-04 00:05:19 +03:00
|
|
|
return txtDecoder.release();
|
2012-09-28 14:19:18 +04:00
|
|
|
}
|
|
|
|
|
2018-08-08 21:30:01 +03:00
|
|
|
TextDecoder() : mFatal(false), mIgnoreBOM(false) {
|
2013-08-23 09:17:09 +04:00
|
|
|
MOZ_COUNT_CTOR(TextDecoder);
|
2012-09-28 14:19:18 +04:00
|
|
|
}
|
|
|
|
|
2020-02-20 14:40:14 +03:00
|
|
|
MOZ_COUNTED_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) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return TextDecoder_Binding::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.
|
2018-08-08 21:30:01 +03:00
|
|
|
* @param aOptions The TextDecoderOptions to use.
|
2013-08-23 09:17:09 +04:00
|
|
|
* @return aRv EncodingError exception else null.
|
|
|
|
*/
|
2018-08-08 21:30:01 +03:00
|
|
|
void Init(const nsAString& aLabel, const TextDecoderOptions& aOptions,
|
|
|
|
ErrorResult& aRv);
|
2013-12-17 14:47:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2018-08-08 21:30:01 +03:00
|
|
|
* @param aOptions The TextDecoderOptions to use.
|
2013-12-17 14:47:25 +04:00
|
|
|
*/
|
2017-06-17 05:54:40 +03:00
|
|
|
void InitWithEncoding(NotNull<const Encoding*> aEncoding,
|
2018-08-08 21:30:01 +03:00
|
|
|
const TextDecoderOptions& aOptions);
|
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, ErrorResult& aRv);
|
2013-08-23 09:17:09 +04:00
|
|
|
|
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-09-28 14:19:18 +04:00
|
|
|
|
2018-08-08 21:30:01 +03:00
|
|
|
bool IgnoreBOM() const { return mIgnoreBOM; }
|
|
|
|
|
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;
|
2018-08-08 21:30:01 +03:00
|
|
|
bool mIgnoreBOM;
|
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_
|