2014-07-28 23:28:20 +04: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: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/Headers.h"
|
|
|
|
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2014-07-30 01:24:22 +04:00
|
|
|
#include "mozilla/dom/WorkerPrivate.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
2014-07-28 23:28:20 +04:00
|
|
|
|
2020-11-04 20:04:01 +03:00
|
|
|
namespace mozilla::dom {
|
2014-07-28 23:28:20 +04:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(Headers)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(Headers)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(Headers, mOwner)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(Headers)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
// static
|
|
|
|
already_AddRefed<Headers> Headers::Constructor(
|
|
|
|
const GlobalObject& aGlobal,
|
2020-02-12 01:25:58 +03:00
|
|
|
const Optional<ByteStringSequenceSequenceOrByteStringByteStringRecord>&
|
|
|
|
aInit,
|
2014-07-28 23:28:20 +04:00
|
|
|
ErrorResult& aRv) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<InternalHeaders> ih = new InternalHeaders();
|
|
|
|
RefPtr<Headers> headers = new Headers(aGlobal.GetAsSupports(), ih);
|
2014-07-28 23:28:20 +04:00
|
|
|
|
|
|
|
if (!aInit.WasPassed()) {
|
|
|
|
return headers.forget();
|
|
|
|
}
|
|
|
|
|
2020-02-12 01:25:58 +03:00
|
|
|
if (aInit.Value().IsByteStringSequenceSequence()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(aInit.Value().GetAsByteStringSequenceSequence(), aRv);
|
2017-02-15 08:00:17 +03:00
|
|
|
} else if (aInit.Value().IsByteStringByteStringRecord()) {
|
|
|
|
ih->Fill(aInit.Value().GetAsByteStringByteStringRecord(), aRv);
|
2014-07-28 23:28:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aRv.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return headers.forget();
|
|
|
|
}
|
|
|
|
|
2014-09-24 09:03:20 +04:00
|
|
|
// static
|
|
|
|
already_AddRefed<Headers> Headers::Constructor(
|
|
|
|
const GlobalObject& aGlobal,
|
2020-02-12 01:25:58 +03:00
|
|
|
const OwningByteStringSequenceSequenceOrByteStringByteStringRecord& aInit,
|
2014-09-24 09:03:20 +04:00
|
|
|
ErrorResult& aRv) {
|
2015-03-19 21:41:42 +03:00
|
|
|
nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
return Create(global, aInit, aRv);
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* static */
|
|
|
|
already_AddRefed<Headers> Headers::Create(
|
2015-03-19 21:41:42 +03:00
|
|
|
nsIGlobalObject* aGlobal,
|
2020-02-12 01:25:58 +03:00
|
|
|
const OwningByteStringSequenceSequenceOrByteStringByteStringRecord& aInit,
|
2015-03-19 21:41:42 +03:00
|
|
|
ErrorResult& aRv) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<InternalHeaders> ih = new InternalHeaders();
|
|
|
|
RefPtr<Headers> headers = new Headers(aGlobal, ih);
|
2014-09-24 09:03:20 +04:00
|
|
|
|
2020-02-12 01:25:58 +03:00
|
|
|
if (aInit.IsByteStringSequenceSequence()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(aInit.GetAsByteStringSequenceSequence(), aRv);
|
2017-02-15 08:00:17 +03:00
|
|
|
} else if (aInit.IsByteStringByteStringRecord()) {
|
|
|
|
ih->Fill(aInit.GetAsByteStringByteStringRecord(), aRv);
|
2014-09-24 09:03:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return headers.forget();
|
|
|
|
}
|
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.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/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
JSObject* Headers::WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return mozilla::dom::Headers_Binding::Wrap(aCx, this, aGivenProto);
|
2014-07-28 23:28:20 +04:00
|
|
|
}
|
|
|
|
|
2020-02-20 19:53:06 +03:00
|
|
|
Headers::~Headers() = default;
|
2015-07-13 18:25:42 +03:00
|
|
|
|
2020-11-04 20:04:01 +03:00
|
|
|
} // namespace mozilla::dom
|