summaryrefslogtreecommitdiffstats
path: root/dom/ipc/StructuredCloneData.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/ipc/StructuredCloneData.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/ipc/StructuredCloneData.h')
-rw-r--r--dom/ipc/StructuredCloneData.h160
1 files changed, 160 insertions, 0 deletions
diff --git a/dom/ipc/StructuredCloneData.h b/dom/ipc/StructuredCloneData.h
new file mode 100644
index 000000000..9e427e938
--- /dev/null
+++ b/dom/ipc/StructuredCloneData.h
@@ -0,0 +1,160 @@
+/* -*- 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/. */
+
+#ifndef mozilla_dom_ipc_StructuredCloneData_h
+#define mozilla_dom_ipc_StructuredCloneData_h
+
+#include <algorithm>
+#include "mozilla/RefPtr.h"
+#include "mozilla/dom/StructuredCloneHolder.h"
+#include "nsISupportsImpl.h"
+
+namespace IPC {
+class Message;
+}
+class PickleIterator;
+
+namespace mozilla {
+namespace dom {
+namespace ipc {
+
+class SharedJSAllocatedData final
+{
+public:
+ explicit SharedJSAllocatedData(JSStructuredCloneData&& aData)
+ : mData(Move(aData))
+ { }
+
+ static already_AddRefed<SharedJSAllocatedData>
+ CreateFromExternalData(const char* aData, size_t aDataLength)
+ {
+ JSStructuredCloneData buf;
+ buf.WriteBytes(aData, aDataLength);
+ RefPtr<SharedJSAllocatedData> sharedData =
+ new SharedJSAllocatedData(Move(buf));
+ return sharedData.forget();
+ }
+
+ static already_AddRefed<SharedJSAllocatedData>
+ CreateFromExternalData(const JSStructuredCloneData& aData)
+ {
+ JSStructuredCloneData buf;
+ auto iter = aData.Iter();
+ while (!iter.Done()) {
+ buf.WriteBytes(iter.Data(), iter.RemainingInSegment());
+ iter.Advance(aData, iter.RemainingInSegment());
+ }
+ RefPtr<SharedJSAllocatedData> sharedData =
+ new SharedJSAllocatedData(Move(buf));
+ return sharedData.forget();
+ }
+
+ NS_INLINE_DECL_REFCOUNTING(SharedJSAllocatedData)
+
+ JSStructuredCloneData& Data() { return mData; }
+ size_t DataLength() const { return mData.Size(); }
+
+private:
+ ~SharedJSAllocatedData() { }
+
+ JSStructuredCloneData mData;
+};
+
+class StructuredCloneData : public StructuredCloneHolder
+{
+public:
+ StructuredCloneData()
+ : StructuredCloneHolder(StructuredCloneHolder::CloningSupported,
+ StructuredCloneHolder::TransferringSupported,
+ StructuredCloneHolder::StructuredCloneScope::DifferentProcess)
+ , mInitialized(false)
+ {}
+
+ StructuredCloneData(const StructuredCloneData&) = delete;
+
+ StructuredCloneData(StructuredCloneData&& aOther) = default;
+
+ ~StructuredCloneData()
+ {}
+
+ StructuredCloneData&
+ operator=(const StructuredCloneData& aOther) = delete;
+
+ StructuredCloneData&
+ operator=(StructuredCloneData&& aOther) = default;
+
+ const nsTArray<RefPtr<BlobImpl>>& BlobImpls() const
+ {
+ return mBlobImplArray;
+ }
+
+ nsTArray<RefPtr<BlobImpl>>& BlobImpls()
+ {
+ return mBlobImplArray;
+ }
+
+ bool Copy(const StructuredCloneData& aData);
+
+ void Read(JSContext* aCx,
+ JS::MutableHandle<JS::Value> aValue,
+ ErrorResult &aRv);
+
+ void Write(JSContext* aCx,
+ JS::Handle<JS::Value> aValue,
+ ErrorResult &aRv);
+
+ void Write(JSContext* aCx,
+ JS::Handle<JS::Value> aValue,
+ JS::Handle<JS::Value> aTransfers,
+ ErrorResult &aRv);
+
+ bool UseExternalData(const JSStructuredCloneData& aData)
+ {
+ auto iter = aData.Iter();
+ bool success = false;
+ mExternalData =
+ aData.Borrow<js::SystemAllocPolicy>(iter, aData.Size(), &success);
+ mInitialized = true;
+ return success;
+ }
+
+ bool CopyExternalData(const char* aData, size_t aDataLength);
+
+ JSStructuredCloneData& Data()
+ {
+ return mSharedData ? mSharedData->Data() : mExternalData;
+ }
+
+ const JSStructuredCloneData& Data() const
+ {
+ return mSharedData ? mSharedData->Data() : mExternalData;
+ }
+
+ size_t DataLength() const
+ {
+ return mSharedData ? mSharedData->DataLength() : mExternalData.Size();
+ }
+
+ SharedJSAllocatedData* SharedData() const
+ {
+ return mSharedData;
+ }
+
+ // For IPC serialization
+ void WriteIPCParams(IPC::Message* aMessage) const;
+ bool ReadIPCParams(const IPC::Message* aMessage, PickleIterator* aIter);
+
+private:
+ JSStructuredCloneData mExternalData;
+ RefPtr<SharedJSAllocatedData> mSharedData;
+ bool mInitialized;
+};
+
+} // namespace ipc
+} // namespace dom
+} // namespace mozilla
+
+#endif // mozilla_dom_ipc_StructuredCloneData_h