mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
d76c717d3c
--HG-- extra : rebase_source : 7e0b1e2f60757b7758704dab3672ee829f3e4085
139 lines
3.8 KiB
C++
139 lines
3.8 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* vim: set sw=4 ts=8 et 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 "StructuredCloneUtils.h"
|
|
|
|
#include "nsIDOMDOMException.h"
|
|
#include "nsIMutable.h"
|
|
#include "nsIXPConnect.h"
|
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
#include "mozilla/dom/BlobBinding.h"
|
|
#include "mozilla/dom/File.h"
|
|
#include "nsContentUtils.h"
|
|
#include "nsJSEnvironment.h"
|
|
#include "MainThreadUtils.h"
|
|
#include "StructuredCloneTags.h"
|
|
#include "jsapi.h"
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
namespace {
|
|
|
|
void
|
|
Error(JSContext* aCx, uint32_t aErrorId)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
NS_DOMStructuredCloneError(aCx, aErrorId);
|
|
}
|
|
|
|
JSObject*
|
|
Read(JSContext* aCx, JSStructuredCloneReader* aReader, uint32_t aTag,
|
|
uint32_t aData, void* aClosure)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(aClosure);
|
|
|
|
StructuredCloneClosure* closure =
|
|
static_cast<StructuredCloneClosure*>(aClosure);
|
|
|
|
if (aTag == SCTAG_DOM_BLOB) {
|
|
// nsRefPtr<File> needs to go out of scope before toObjectOrNull() is
|
|
// called because the static analysis thinks dereferencing XPCOM objects
|
|
// can GC (because in some cases it can!), and a return statement with a
|
|
// JSObject* type means that JSObject* is on the stack as a raw pointer
|
|
// while destructors are running.
|
|
JS::Rooted<JS::Value> val(aCx);
|
|
{
|
|
MOZ_ASSERT(aData < closure->mBlobs.Length());
|
|
nsRefPtr<File> blob = closure->mBlobs[aData];
|
|
|
|
#ifdef DEBUG
|
|
{
|
|
// File should not be mutable.
|
|
bool isMutable;
|
|
MOZ_ASSERT(NS_SUCCEEDED(blob->GetMutable(&isMutable)));
|
|
MOZ_ASSERT(!isMutable);
|
|
}
|
|
#endif
|
|
|
|
// Let's create a new blob with the correct parent.
|
|
nsIGlobalObject *global = xpc::NativeGlobal(JS::CurrentGlobalOrNull(aCx));
|
|
MOZ_ASSERT(global);
|
|
|
|
nsRefPtr<File> newBlob = new File(global, blob->Impl());
|
|
if (!WrapNewBindingObject(aCx, newBlob, &val)) {
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
return &val.toObject();
|
|
}
|
|
|
|
return NS_DOMReadStructuredClone(aCx, aReader, aTag, aData, nullptr);
|
|
}
|
|
|
|
bool
|
|
Write(JSContext* aCx, JSStructuredCloneWriter* aWriter,
|
|
JS::Handle<JSObject*> aObj, void* aClosure)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(aClosure);
|
|
|
|
StructuredCloneClosure* closure =
|
|
static_cast<StructuredCloneClosure*>(aClosure);
|
|
|
|
// See if the wrapped native is a File/Blob.
|
|
{
|
|
File* blob = nullptr;
|
|
if (NS_SUCCEEDED(UNWRAP_OBJECT(Blob, aObj, blob)) &&
|
|
NS_SUCCEEDED(blob->SetMutable(false)) &&
|
|
JS_WriteUint32Pair(aWriter, SCTAG_DOM_BLOB,
|
|
closure->mBlobs.Length())) {
|
|
closure->mBlobs.AppendElement(blob);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return NS_DOMWriteStructuredClone(aCx, aWriter, aObj, nullptr);
|
|
}
|
|
|
|
JSStructuredCloneCallbacks gCallbacks = {
|
|
Read,
|
|
Write,
|
|
Error,
|
|
nullptr,
|
|
nullptr,
|
|
nullptr
|
|
};
|
|
|
|
} // anonymous namespace
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
bool
|
|
ReadStructuredClone(JSContext* aCx, uint64_t* aData, size_t aDataLength,
|
|
const StructuredCloneClosure& aClosure,
|
|
JS::MutableHandle<JS::Value> aClone)
|
|
{
|
|
void* closure = &const_cast<StructuredCloneClosure&>(aClosure);
|
|
return !!JS_ReadStructuredClone(aCx, aData, aDataLength,
|
|
JS_STRUCTURED_CLONE_VERSION, aClone,
|
|
&gCallbacks, closure);
|
|
}
|
|
|
|
bool
|
|
WriteStructuredClone(JSContext* aCx, JS::Handle<JS::Value> aSource,
|
|
JSAutoStructuredCloneBuffer& aBuffer,
|
|
StructuredCloneClosure& aClosure)
|
|
{
|
|
return aBuffer.write(aCx, aSource, &gCallbacks, &aClosure);
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|