OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ScriptValueSerializer_h | 5 #ifndef ScriptValueSerializer_h |
6 #define ScriptValueSerializer_h | 6 #define ScriptValueSerializer_h |
7 | 7 |
8 #include "bindings/core/v8/SerializationTag.h" | 8 #include "bindings/core/v8/SerializationTag.h" |
9 #include "bindings/core/v8/SerializedScriptValue.h" | 9 #include "bindings/core/v8/SerializedScriptValue.h" |
10 #include "bindings/core/v8/V8Binding.h" | 10 #include "bindings/core/v8/V8Binding.h" |
11 #include "core/CoreExport.h" | 11 #include "core/CoreExport.h" |
12 #include "wtf/ArrayBufferContents.h" | 12 #include "wtf/ArrayBufferContents.h" |
13 #include "wtf/HashMap.h" | 13 #include "wtf/HashMap.h" |
14 #include "wtf/Noncopyable.h" | 14 #include "wtf/Noncopyable.h" |
15 #include "wtf/Vector.h" | 15 #include "wtf/Vector.h" |
16 #include "wtf/text/WTFString.h" | 16 #include "wtf/text/WTFString.h" |
17 #include <v8.h> | 17 #include <v8.h> |
18 | 18 |
19 namespace blink { | 19 namespace blink { |
20 | 20 |
21 class CompositorProxy; | 21 class CompositorProxy; |
22 class DOMArrayBuffer; | 22 class DOMArrayBuffer; |
23 class DOMArrayBufferView; | 23 class DOMArrayBufferView; |
| 24 class DOMSharedArrayBuffer; |
24 class File; | 25 class File; |
25 class FileList; | 26 class FileList; |
26 | 27 |
27 typedef Vector<WTF::ArrayBufferContents, 1> ArrayBufferContentsArray; | 28 typedef Vector<WTF::ArrayBufferContents, 1> ArrayBufferContentsArray; |
28 | 29 |
29 // V8ObjectMap is a map from V8 objects to arbitrary values of type T. | 30 // V8ObjectMap is a map from V8 objects to arbitrary values of type T. |
30 // V8 objects (or handles to V8 objects) cannot be used as keys in ordinary wtf:
:HashMaps; | 31 // V8 objects (or handles to V8 objects) cannot be used as keys in ordinary wtf:
:HashMaps; |
31 // this class should be used instead. GCObject must be a subtype of v8::Object. | 32 // this class should be used instead. GCObject must be a subtype of v8::Object. |
32 // Suggested usage: | 33 // Suggested usage: |
33 // V8ObjectMap<v8::Object, int> map; | 34 // V8ObjectMap<v8::Object, int> map; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 void writeFile(const File&); | 128 void writeFile(const File&); |
128 void writeFileIndex(int blobIndex); | 129 void writeFileIndex(int blobIndex); |
129 void writeFileList(const FileList&); | 130 void writeFileList(const FileList&); |
130 void writeFileListIndex(const Vector<int>& blobIndices); | 131 void writeFileListIndex(const Vector<int>& blobIndices); |
131 void writeArrayBuffer(const DOMArrayBuffer&); | 132 void writeArrayBuffer(const DOMArrayBuffer&); |
132 void writeArrayBufferView(const DOMArrayBufferView&); | 133 void writeArrayBufferView(const DOMArrayBufferView&); |
133 void writeImageData(uint32_t width, uint32_t height, const uint8_t* pixelDat
a, uint32_t pixelDataLength); | 134 void writeImageData(uint32_t width, uint32_t height, const uint8_t* pixelDat
a, uint32_t pixelDataLength); |
134 void writeRegExp(v8::Local<v8::String> pattern, v8::RegExp::Flags); | 135 void writeRegExp(v8::Local<v8::String> pattern, v8::RegExp::Flags); |
135 void writeTransferredMessagePort(uint32_t index); | 136 void writeTransferredMessagePort(uint32_t index); |
136 void writeTransferredArrayBuffer(uint32_t index); | 137 void writeTransferredArrayBuffer(uint32_t index); |
| 138 void writeTransferredSharedArrayBuffer(uint32_t index); |
137 void writeObjectReference(uint32_t reference); | 139 void writeObjectReference(uint32_t reference); |
138 void writeObject(uint32_t numProperties); | 140 void writeObject(uint32_t numProperties); |
139 void writeSparseArray(uint32_t numProperties, uint32_t length); | 141 void writeSparseArray(uint32_t numProperties, uint32_t length); |
140 void writeDenseArray(uint32_t numProperties, uint32_t length); | 142 void writeDenseArray(uint32_t numProperties, uint32_t length); |
141 String takeWireString(); | 143 String takeWireString(); |
142 void writeReferenceCount(uint32_t numberOfReferences); | 144 void writeReferenceCount(uint32_t numberOfReferences); |
143 void writeGenerateFreshObject(); | 145 void writeGenerateFreshObject(); |
144 void writeGenerateFreshSparseArray(uint32_t length); | 146 void writeGenerateFreshSparseArray(uint32_t length); |
145 void writeGenerateFreshDenseArray(uint32_t length); | 147 void writeGenerateFreshDenseArray(uint32_t length); |
146 void writeGenerateFreshMap(); | 148 void writeGenerateFreshMap(); |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 void writeBooleanObject(v8::Local<v8::Value>); | 391 void writeBooleanObject(v8::Local<v8::Value>); |
390 StateBase* writeBlob(v8::Local<v8::Value>, StateBase* next); | 392 StateBase* writeBlob(v8::Local<v8::Value>, StateBase* next); |
391 StateBase* writeCompositorProxy(v8::Local<v8::Value>, StateBase* next); | 393 StateBase* writeCompositorProxy(v8::Local<v8::Value>, StateBase* next); |
392 StateBase* writeFile(v8::Local<v8::Value>, StateBase* next); | 394 StateBase* writeFile(v8::Local<v8::Value>, StateBase* next); |
393 StateBase* writeFileList(v8::Local<v8::Value>, StateBase* next); | 395 StateBase* writeFileList(v8::Local<v8::Value>, StateBase* next); |
394 void writeImageData(v8::Local<v8::Value>); | 396 void writeImageData(v8::Local<v8::Value>); |
395 void writeRegExp(v8::Local<v8::Value>); | 397 void writeRegExp(v8::Local<v8::Value>); |
396 StateBase* writeAndGreyArrayBufferView(v8::Local<v8::Object>, StateBase* nex
t); | 398 StateBase* writeAndGreyArrayBufferView(v8::Local<v8::Object>, StateBase* nex
t); |
397 StateBase* writeArrayBuffer(v8::Local<v8::Value>, StateBase* next); | 399 StateBase* writeArrayBuffer(v8::Local<v8::Value>, StateBase* next); |
398 StateBase* writeTransferredArrayBuffer(v8::Local<v8::Value>, uint32_t index,
StateBase* next); | 400 StateBase* writeTransferredArrayBuffer(v8::Local<v8::Value>, uint32_t index,
StateBase* next); |
| 401 StateBase* writeTransferredSharedArrayBuffer(v8::Local<v8::Value>, uint32_t
index, StateBase* next); |
399 static bool shouldSerializeDensely(uint32_t length, uint32_t propertyCount); | 402 static bool shouldSerializeDensely(uint32_t length, uint32_t propertyCount); |
400 | 403 |
401 StateBase* startArrayState(v8::Local<v8::Array>, StateBase* next); | 404 StateBase* startArrayState(v8::Local<v8::Array>, StateBase* next); |
402 StateBase* startObjectState(v8::Local<v8::Object>, StateBase* next); | 405 StateBase* startObjectState(v8::Local<v8::Object>, StateBase* next); |
403 StateBase* startMapState(v8::Local<v8::Map>, StateBase* next); | 406 StateBase* startMapState(v8::Local<v8::Map>, StateBase* next); |
404 StateBase* startSetState(v8::Local<v8::Set>, StateBase* next); | 407 StateBase* startSetState(v8::Local<v8::Set>, StateBase* next); |
405 | 408 |
406 bool appendBlobInfo(const String& uuid, const String& type, unsigned long lo
ng size, int* index); | 409 bool appendBlobInfo(const String& uuid, const String& type, unsigned long lo
ng size, int* index); |
407 bool appendFileInfo(const File*, int* index); | 410 bool appendFileInfo(const File*, int* index); |
408 | 411 |
(...skipping 30 matching lines...) Expand all Loading... |
439 public: | 442 public: |
440 ScriptValueCompositeCreator() { } | 443 ScriptValueCompositeCreator() { } |
441 virtual ~ScriptValueCompositeCreator() { } | 444 virtual ~ScriptValueCompositeCreator() { } |
442 | 445 |
443 virtual bool consumeTopOfStack(v8::Local<v8::Value>*) = 0; | 446 virtual bool consumeTopOfStack(v8::Local<v8::Value>*) = 0; |
444 virtual uint32_t objectReferenceCount() = 0; | 447 virtual uint32_t objectReferenceCount() = 0; |
445 virtual void pushObjectReference(const v8::Local<v8::Value>&) = 0; | 448 virtual void pushObjectReference(const v8::Local<v8::Value>&) = 0; |
446 virtual bool tryGetObjectFromObjectReference(uint32_t reference, v8::Local<v
8::Value>*) = 0; | 449 virtual bool tryGetObjectFromObjectReference(uint32_t reference, v8::Local<v
8::Value>*) = 0; |
447 virtual bool tryGetTransferredMessagePort(uint32_t index, v8::Local<v8::Valu
e>*) = 0; | 450 virtual bool tryGetTransferredMessagePort(uint32_t index, v8::Local<v8::Valu
e>*) = 0; |
448 virtual bool tryGetTransferredArrayBuffer(uint32_t index, v8::Local<v8::Valu
e>*) = 0; | 451 virtual bool tryGetTransferredArrayBuffer(uint32_t index, v8::Local<v8::Valu
e>*) = 0; |
| 452 virtual bool tryGetTransferredSharedArrayBuffer(uint32_t index, v8::Local<v8
::Value>*) = 0; |
449 virtual bool newSparseArray(uint32_t length) = 0; | 453 virtual bool newSparseArray(uint32_t length) = 0; |
450 virtual bool newDenseArray(uint32_t length) = 0; | 454 virtual bool newDenseArray(uint32_t length) = 0; |
451 virtual bool newMap() = 0; | 455 virtual bool newMap() = 0; |
452 virtual bool newSet() = 0; | 456 virtual bool newSet() = 0; |
453 virtual bool newObject() = 0; | 457 virtual bool newObject() = 0; |
454 virtual bool completeObject(uint32_t numProperties, v8::Local<v8::Value>*) =
0; | 458 virtual bool completeObject(uint32_t numProperties, v8::Local<v8::Value>*) =
0; |
455 virtual bool completeSparseArray(uint32_t numProperties, uint32_t length, v8
::Local<v8::Value>*) = 0; | 459 virtual bool completeSparseArray(uint32_t numProperties, uint32_t length, v8
::Local<v8::Value>*) = 0; |
456 virtual bool completeDenseArray(uint32_t numProperties, uint32_t length, v8:
:Local<v8::Value>*) = 0; | 460 virtual bool completeDenseArray(uint32_t numProperties, uint32_t length, v8:
:Local<v8::Value>*) = 0; |
457 virtual bool completeMap(uint32_t length, v8::Local<v8::Value>*) = 0; | 461 virtual bool completeMap(uint32_t length, v8::Local<v8::Value>*) = 0; |
458 virtual bool completeSet(uint32_t length, v8::Local<v8::Value>*) = 0; | 462 virtual bool completeSet(uint32_t length, v8::Local<v8::Value>*) = 0; |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 bool consumeTopOfStack(v8::Local<v8::Value>*) override; | 585 bool consumeTopOfStack(v8::Local<v8::Value>*) override; |
582 bool newObject() override; | 586 bool newObject() override; |
583 bool completeObject(uint32_t numProperties, v8::Local<v8::Value>*) override; | 587 bool completeObject(uint32_t numProperties, v8::Local<v8::Value>*) override; |
584 bool completeSparseArray(uint32_t numProperties, uint32_t length, v8::Local<
v8::Value>*) override; | 588 bool completeSparseArray(uint32_t numProperties, uint32_t length, v8::Local<
v8::Value>*) override; |
585 bool completeDenseArray(uint32_t numProperties, uint32_t length, v8::Local<v
8::Value>*) override; | 589 bool completeDenseArray(uint32_t numProperties, uint32_t length, v8::Local<v
8::Value>*) override; |
586 bool completeMap(uint32_t length, v8::Local<v8::Value>*) override; | 590 bool completeMap(uint32_t length, v8::Local<v8::Value>*) override; |
587 bool completeSet(uint32_t length, v8::Local<v8::Value>*) override; | 591 bool completeSet(uint32_t length, v8::Local<v8::Value>*) override; |
588 void pushObjectReference(const v8::Local<v8::Value>&) override; | 592 void pushObjectReference(const v8::Local<v8::Value>&) override; |
589 bool tryGetTransferredMessagePort(uint32_t index, v8::Local<v8::Value>*) ove
rride; | 593 bool tryGetTransferredMessagePort(uint32_t index, v8::Local<v8::Value>*) ove
rride; |
590 bool tryGetTransferredArrayBuffer(uint32_t index, v8::Local<v8::Value>*) ove
rride; | 594 bool tryGetTransferredArrayBuffer(uint32_t index, v8::Local<v8::Value>*) ove
rride; |
| 595 bool tryGetTransferredSharedArrayBuffer(uint32_t index, v8::Local<v8::Value>
*) override; |
591 bool tryGetObjectFromObjectReference(uint32_t reference, v8::Local<v8::Value
>*) override; | 596 bool tryGetObjectFromObjectReference(uint32_t reference, v8::Local<v8::Value
>*) override; |
592 uint32_t objectReferenceCount() override; | 597 uint32_t objectReferenceCount() override; |
593 | 598 |
594 protected: | 599 protected: |
595 SerializedScriptValueReader& reader() { return m_reader; } | 600 SerializedScriptValueReader& reader() { return m_reader; } |
596 virtual bool read(v8::Local<v8::Value>*); | 601 virtual bool read(v8::Local<v8::Value>*); |
597 | 602 |
598 private: | 603 private: |
599 bool initializeObject(v8::Local<v8::Object>, uint32_t numProperties, v8::Loc
al<v8::Value>*); | 604 bool initializeObject(v8::Local<v8::Object>, uint32_t numProperties, v8::Loc
al<v8::Value>*); |
600 bool doDeserialize(); | 605 bool doDeserialize(); |
(...skipping 15 matching lines...) Expand all Loading... |
616 Vector<uint32_t> m_openCompositeReferenceStack; | 621 Vector<uint32_t> m_openCompositeReferenceStack; |
617 MessagePortArray* m_transferredMessagePorts; | 622 MessagePortArray* m_transferredMessagePorts; |
618 ArrayBufferContentsArray* m_arrayBufferContents; | 623 ArrayBufferContentsArray* m_arrayBufferContents; |
619 Vector<v8::Local<v8::Value>> m_arrayBuffers; | 624 Vector<v8::Local<v8::Value>> m_arrayBuffers; |
620 uint32_t m_version; | 625 uint32_t m_version; |
621 }; | 626 }; |
622 | 627 |
623 } // namespace blink | 628 } // namespace blink |
624 | 629 |
625 #endif // ScriptValueSerializer_h | 630 #endif // ScriptValueSerializer_h |
OLD | NEW |