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
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
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,
|
|
|
|
const Optional<HeadersOrByteStringSequenceSequenceOrByteStringMozMap>& aInit,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
2014-10-02 21:59:20 +04:00
|
|
|
nsRefPtr<InternalHeaders> ih = new InternalHeaders();
|
|
|
|
nsRefPtr<Headers> headers = new Headers(aGlobal.GetAsSupports(), ih);
|
2014-07-28 23:28:20 +04:00
|
|
|
|
|
|
|
if (!aInit.WasPassed()) {
|
|
|
|
return headers.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aInit.Value().IsHeaders()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(*aInit.Value().GetAsHeaders().mInternalHeaders, aRv);
|
2014-07-28 23:28:20 +04:00
|
|
|
} else if (aInit.Value().IsByteStringSequenceSequence()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(aInit.Value().GetAsByteStringSequenceSequence(), aRv);
|
2014-07-28 23:28:20 +04:00
|
|
|
} else if (aInit.Value().IsByteStringMozMap()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(aInit.Value().GetAsByteStringMozMap(), 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,
|
|
|
|
const OwningHeadersOrByteStringSequenceSequenceOrByteStringMozMap& aInit,
|
|
|
|
ErrorResult& aRv)
|
2015-03-19 21:41:42 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
return Create(global, aInit, aRv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<Headers>
|
|
|
|
Headers::Create(nsIGlobalObject* aGlobal,
|
|
|
|
const OwningHeadersOrByteStringSequenceSequenceOrByteStringMozMap& aInit,
|
|
|
|
ErrorResult& aRv)
|
2014-09-24 09:03:20 +04:00
|
|
|
{
|
2014-10-02 21:59:20 +04:00
|
|
|
nsRefPtr<InternalHeaders> ih = new InternalHeaders();
|
2015-03-19 21:41:42 +03:00
|
|
|
nsRefPtr<Headers> headers = new Headers(aGlobal, ih);
|
2014-09-24 09:03:20 +04:00
|
|
|
|
|
|
|
if (aInit.IsHeaders()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(*(aInit.GetAsHeaders().get()->mInternalHeaders), aRv);
|
2014-09-24 09:03:20 +04:00
|
|
|
} else if (aInit.IsByteStringSequenceSequence()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(aInit.GetAsByteStringSequenceSequence(), aRv);
|
2014-09-24 09:03:20 +04:00
|
|
|
} else if (aInit.IsByteStringMozMap()) {
|
2014-10-02 21:59:20 +04:00
|
|
|
ih->Fill(aInit.GetAsByteStringMozMap(), aRv);
|
2014-09-24 09:03:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return headers.forget();
|
|
|
|
}
|
|
|
|
|
2014-07-28 23:28:20 +04:00
|
|
|
JSObject*
|
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
|
|
|
Headers::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2014-07-28 23:28:20 +04:00
|
|
|
{
|
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
|
|
|
return mozilla::dom::HeadersBinding::Wrap(aCx, this, aGivenProto);
|
2014-07-28 23:28:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Headers::~Headers()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|