2011-04-25 02:30:54 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: set ts=8 sw=2 et tw=80:
|
|
|
|
*
|
2012-05-21 11:12:37 +00: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/. */
|
2011-04-25 02:30:54 +00:00
|
|
|
|
|
|
|
#include "nsStructuredCloneContainer.h"
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIJSContextStack.h"
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIVariant.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsContentUtils.h"
|
2011-12-28 08:13:38 +00:00
|
|
|
|
|
|
|
#include "mozilla/Base64.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
2011-04-25 02:30:54 +00:00
|
|
|
|
|
|
|
NS_IMPL_ADDREF(nsStructuredCloneContainer)
|
|
|
|
NS_IMPL_RELEASE(nsStructuredCloneContainer)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsStructuredCloneContainer)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIStructuredCloneContainer)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
nsStructuredCloneContainer::nsStructuredCloneContainer()
|
2012-07-30 14:20:58 +00:00
|
|
|
: mData(nullptr), mSize(0), mVersion(0)
|
2011-04-25 02:30:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsStructuredCloneContainer::~nsStructuredCloneContainer()
|
|
|
|
{
|
|
|
|
free(mData);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsStructuredCloneContainer::InitFromVariant(nsIVariant *aData, JSContext *aCx)
|
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(!mData);
|
|
|
|
NS_ENSURE_ARG_POINTER(aData);
|
|
|
|
NS_ENSURE_ARG_POINTER(aCx);
|
|
|
|
|
|
|
|
// First, try to extract a jsval from the variant |aData|. This works only
|
|
|
|
// if the variant implements GetAsJSVal.
|
|
|
|
jsval jsData;
|
|
|
|
nsresult rv = aData->GetAsJSVal(&jsData);
|
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
// Make sure that we serialize in the right context.
|
|
|
|
JSAutoRequest ar(aCx);
|
2012-08-22 01:42:53 +00:00
|
|
|
JSAutoCompartment ac(aCx, JS_GetGlobalObject(aCx));
|
2012-03-27 18:43:11 +00:00
|
|
|
JS_WrapValue(aCx, &jsData);
|
2011-04-25 02:30:54 +00:00
|
|
|
|
|
|
|
nsCxPusher cxPusher;
|
|
|
|
cxPusher.Push(aCx);
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
uint64_t* jsBytes = nullptr;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool success = JS_WriteStructuredClone(aCx, jsData, &jsBytes, &mSize,
|
2012-07-30 14:20:58 +00:00
|
|
|
nullptr, nullptr);
|
2011-04-25 02:30:54 +00:00
|
|
|
NS_ENSURE_STATE(success);
|
|
|
|
NS_ENSURE_STATE(jsBytes);
|
|
|
|
|
|
|
|
// Copy jsBytes into our own buffer.
|
Bug 714332 - Fix uint64 types usage in dom/workers and dom/base; r=bent
Use uint64_t where appropriate for mData, fails to build on OpenBSD
otherwise with wrong casts/no matching template.
dom/base/nsStructuredCloneContainer.cpp:96: error: invalid conversion from 'PRUint64*' to 'uint64_t*'
dom/base/nsStructuredCloneContainer.cpp:131: error: invalid conversion from 'PRUint64*' to 'uint64_t*'
dom/workers/WorkerPrivate.cpp:822: error: no matching function for call to 'JSAutoStructuredCloneBuffer::steal(uint64**, size_t*)'
../../dist/include/jsapi.h:4641: note: candidates are: void
JSAutoStructuredCloneBuffer::steal(uint64_t**, size_t*, uint32_t*) <near
match>
dom/workers/WorkerPrivate.cpp:833: error: no matching function for call to 'JSAutoStructuredCloneBuffer::adopt(uint64*&, size_t&)'
../../dist/include/jsapi.h:4634: note: candidates are: void
JSAutoStructuredCloneBuffer::adopt(uint64_t*, size_t, uint32_t) <near
match>
dom/workers/WorkerPrivate.cpp:853: error: no matching function for call to 'JSAutoStructuredCloneBuffer::steal(uint64**, size_t*)'
../../dist/include/jsapi.h:4641: note: candidates are: void
JSAutoStructuredCloneBuffer::steal(uint64_t**, size_t*, uint32_t*) <near
match>
2012-01-02 18:08:14 +00:00
|
|
|
mData = (uint64_t*) malloc(mSize);
|
2011-04-25 02:30:54 +00:00
|
|
|
if (!mData) {
|
|
|
|
mSize = 0;
|
|
|
|
mVersion = 0;
|
2011-05-16 20:36:12 +00:00
|
|
|
|
|
|
|
// FIXME This should really be js::Foreground::Free, but that's not public.
|
|
|
|
JS_free(aCx, jsBytes);
|
|
|
|
|
2011-04-25 02:30:54 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mVersion = JS_STRUCTURED_CLONE_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(mData, jsBytes, mSize);
|
2011-05-16 20:36:12 +00:00
|
|
|
|
|
|
|
// FIXME Similarly, this should be js::Foreground::free.
|
|
|
|
JS_free(aCx, jsBytes);
|
2011-04-25 02:30:54 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsStructuredCloneContainer::InitFromBase64(const nsAString &aData,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aFormatVersion,
|
2011-04-25 02:30:54 +00:00
|
|
|
JSContext *aCx)
|
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(!mData);
|
|
|
|
|
|
|
|
NS_ConvertUTF16toUTF8 data(aData);
|
|
|
|
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString binaryData;
|
2011-12-28 08:13:38 +00:00
|
|
|
nsresult rv = Base64Decode(data, binaryData);
|
2011-04-25 02:30:54 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Copy the string's data into our own buffer.
|
Bug 714332 - Fix uint64 types usage in dom/workers and dom/base; r=bent
Use uint64_t where appropriate for mData, fails to build on OpenBSD
otherwise with wrong casts/no matching template.
dom/base/nsStructuredCloneContainer.cpp:96: error: invalid conversion from 'PRUint64*' to 'uint64_t*'
dom/base/nsStructuredCloneContainer.cpp:131: error: invalid conversion from 'PRUint64*' to 'uint64_t*'
dom/workers/WorkerPrivate.cpp:822: error: no matching function for call to 'JSAutoStructuredCloneBuffer::steal(uint64**, size_t*)'
../../dist/include/jsapi.h:4641: note: candidates are: void
JSAutoStructuredCloneBuffer::steal(uint64_t**, size_t*, uint32_t*) <near
match>
dom/workers/WorkerPrivate.cpp:833: error: no matching function for call to 'JSAutoStructuredCloneBuffer::adopt(uint64*&, size_t&)'
../../dist/include/jsapi.h:4634: note: candidates are: void
JSAutoStructuredCloneBuffer::adopt(uint64_t*, size_t, uint32_t) <near
match>
dom/workers/WorkerPrivate.cpp:853: error: no matching function for call to 'JSAutoStructuredCloneBuffer::steal(uint64**, size_t*)'
../../dist/include/jsapi.h:4641: note: candidates are: void
JSAutoStructuredCloneBuffer::steal(uint64_t**, size_t*, uint32_t*) <near
match>
2012-01-02 18:08:14 +00:00
|
|
|
mData = (uint64_t*) malloc(binaryData.Length());
|
2011-04-25 02:30:54 +00:00
|
|
|
NS_ENSURE_STATE(mData);
|
|
|
|
memcpy(mData, binaryData.get(), binaryData.Length());
|
|
|
|
|
|
|
|
mSize = binaryData.Length();
|
|
|
|
mVersion = aFormatVersion;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsStructuredCloneContainer::DeserializeToVariant(JSContext *aCx,
|
|
|
|
nsIVariant **aData)
|
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(mData);
|
|
|
|
NS_ENSURE_ARG_POINTER(aData);
|
2012-07-30 14:20:58 +00:00
|
|
|
*aData = nullptr;
|
2011-04-25 02:30:54 +00:00
|
|
|
|
|
|
|
// Deserialize to a jsval.
|
|
|
|
jsval jsStateObj;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool success = JS_ReadStructuredClone(aCx, mData, mSize, mVersion,
|
2012-07-30 14:20:58 +00:00
|
|
|
&jsStateObj, nullptr, nullptr);
|
2011-04-25 02:30:54 +00:00
|
|
|
NS_ENSURE_STATE(success);
|
|
|
|
|
|
|
|
// Now wrap the jsval as an nsIVariant.
|
|
|
|
nsCOMPtr<nsIVariant> varStateObj;
|
|
|
|
nsCOMPtr<nsIXPConnect> xpconnect = do_GetService(nsIXPConnect::GetCID());
|
|
|
|
NS_ENSURE_STATE(xpconnect);
|
|
|
|
xpconnect->JSValToVariant(aCx, &jsStateObj, getter_AddRefs(varStateObj));
|
|
|
|
NS_ENSURE_STATE(varStateObj);
|
|
|
|
|
|
|
|
NS_IF_ADDREF(*aData = varStateObj);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsStructuredCloneContainer::GetDataAsBase64(nsAString &aOut)
|
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(mData);
|
|
|
|
aOut.Truncate();
|
|
|
|
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString binaryData(reinterpret_cast<char*>(mData), mSize);
|
|
|
|
nsAutoCString base64Data;
|
2011-12-28 08:13:38 +00:00
|
|
|
nsresult rv = Base64Encode(binaryData, base64Data);
|
2011-04-25 02:30:54 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
aOut.Assign(NS_ConvertASCIItoUTF16(base64Data));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
nsStructuredCloneContainer::GetSerializedNBytes(uint64_t *aSize)
|
2011-04-25 02:30:54 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(mData);
|
|
|
|
NS_ENSURE_ARG_POINTER(aSize);
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
// mSize is a size_t, while aSize is a uint64_t. We rely on an implicit cast
|
2011-04-25 02:30:54 +00:00
|
|
|
// here so that we'll get a compile error if a size_t-to-uint64 cast is
|
|
|
|
// narrowing.
|
|
|
|
*aSize = mSize;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
nsStructuredCloneContainer::GetFormatVersion(uint32_t *aFormatVersion)
|
2011-04-25 02:30:54 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_STATE(mData);
|
|
|
|
NS_ENSURE_ARG_POINTER(aFormatVersion);
|
|
|
|
*aFormatVersion = mVersion;
|
|
|
|
return NS_OK;
|
|
|
|
}
|