blob: 8aaf437ff2a26192af4d51b5e69da5baddcfa796 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8ScriptValueSerializer_h
#define V8ScriptValueSerializer_h
#include "bindings/core/v8/ExceptionState.h"
#include "bindings/core/v8/ScriptState.h"
#include "bindings/core/v8/SerializationTag.h"
#include "bindings/core/v8/SerializedScriptValue.h"
#include "core/CoreExport.h"
#include "v8/include/v8.h"
#include "wtf/Allocator.h"
#include "wtf/Noncopyable.h"
#include "wtf/RefPtr.h"
namespace blink {
class File;
class Transferables;
// Serializes V8 values according to the HTML structured clone algorithm:
// https://html.spec.whatwg.org/multipage/infrastructure.html#structured-clone
//
// Supports only basic JavaScript objects and core DOM types. Support for
// modules types is implemented in a subclass.
//
// A serializer cannot be used multiple times; it is expected that its serialize
// method will be invoked exactly once.
class GC_PLUGIN_IGNORE("https://crbug.com/644725")
CORE_EXPORT V8ScriptValueSerializer : public v8::ValueSerializer::Delegate {
STACK_ALLOCATED();
WTF_MAKE_NONCOPYABLE(V8ScriptValueSerializer);
public:
explicit V8ScriptValueSerializer(RefPtr<ScriptState>);
// If not null, blobs will have info written into this array and be
// serialized by index.
void setBlobInfoArray(WebBlobInfoArray* blobInfoArray) {
m_blobInfoArray = blobInfoArray;
}
RefPtr<SerializedScriptValue> serialize(v8::Local<v8::Value>,
Transferables*,
ExceptionState&);
protected:
// Returns true if the DOM object was successfully written.
// If false is returned and no more specific exception is thrown, a generic
// DataCloneError message will be used.
virtual bool writeDOMObject(ScriptWrappable*, ExceptionState&);
void writeTag(SerializationTag tag) {
uint8_t tagByte = tag;
m_serializer.WriteRawBytes(&tagByte, 1);
}
void writeUint32(uint32_t value) { m_serializer.WriteUint32(value); }
void writeUint64(uint64_t value) { m_serializer.WriteUint64(value); }
void writeDouble(double value) { m_serializer.WriteDouble(value); }
void writeRawBytes(const void* data, size_t size) {
m_serializer.WriteRawBytes(data, size);
}
void writeUTF8String(const String&);
private:
// Transfer is split into two phases: scanning the transferables so that we
// don't have to serialize the data (just an index), and finalizing (to
// neuter objects in the source context).
// This separation is required by the spec (it prevents neutering from
// happening if there's a failure earlier in serialization).
void prepareTransfer(Transferables*, ExceptionState&);
void finalizeTransfer(ExceptionState&);
// Shared between File and FileList logic; does not write a leading tag.
bool writeFile(File*, ExceptionState&);
// v8::ValueSerializer::Delegate
void ThrowDataCloneError(v8::Local<v8::String> message) override;
v8::Maybe<bool> WriteHostObject(v8::Isolate*,
v8::Local<v8::Object> message) override;
v8::Maybe<uint32_t> GetSharedArrayBufferId(
v8::Isolate*,
v8::Local<v8::SharedArrayBuffer>) override;
void* ReallocateBufferMemory(void* oldBuffer,
size_t,
size_t* actualSize) override;
void FreeBufferMemory(void* buffer) override;
RefPtr<ScriptState> m_scriptState;
RefPtr<SerializedScriptValue> m_serializedScriptValue;
v8::ValueSerializer m_serializer;
const Transferables* m_transferables = nullptr;
const ExceptionState* m_exceptionState = nullptr;
WebBlobInfoArray* m_blobInfoArray = nullptr;
ArrayBufferArray m_sharedArrayBuffers;
#if DCHECK_IS_ON()
bool m_serializeInvoked = false;
#endif
};
} // namespace blink
#endif // V8ScriptValueSerializer_h