Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Side by Side Diff: src/value-serializer.h

Issue 2269923004: Blink-compatible serialization of Map and Set objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: StackLimitCheck + HandleScope Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/value-serializer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project 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 V8_VALUE_SERIALIZER_H_ 5 #ifndef V8_VALUE_SERIALIZER_H_
6 #define V8_VALUE_SERIALIZER_H_ 6 #define V8_VALUE_SERIALIZER_H_
7 7
8 #include <cstdint> 8 #include <cstdint>
9 #include <vector> 9 #include <vector>
10 10
11 #include "include/v8.h" 11 #include "include/v8.h"
12 #include "src/base/compiler-specific.h" 12 #include "src/base/compiler-specific.h"
13 #include "src/base/macros.h" 13 #include "src/base/macros.h"
14 #include "src/identity-map.h" 14 #include "src/identity-map.h"
15 #include "src/vector.h" 15 #include "src/vector.h"
16 #include "src/zone.h" 16 #include "src/zone.h"
17 17
18 namespace v8 { 18 namespace v8 {
19 namespace internal { 19 namespace internal {
20 20
21 class HeapNumber; 21 class HeapNumber;
22 class Isolate; 22 class Isolate;
23 class JSDate; 23 class JSDate;
24 class JSMap;
24 class JSRegExp; 25 class JSRegExp;
26 class JSSet;
25 class JSValue; 27 class JSValue;
26 class Object; 28 class Object;
27 class Oddball; 29 class Oddball;
28 class Smi; 30 class Smi;
29 31
30 enum class SerializationTag : uint8_t; 32 enum class SerializationTag : uint8_t;
31 33
32 /** 34 /**
33 * Writes V8 objects in a binary format that allows the objects to be cloned 35 * Writes V8 objects in a binary format that allows the objects to be cloned
34 * according to the HTML structured clone algorithm. 36 * according to the HTML structured clone algorithm.
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 void WriteOddball(Oddball* oddball); 74 void WriteOddball(Oddball* oddball);
73 void WriteSmi(Smi* smi); 75 void WriteSmi(Smi* smi);
74 void WriteHeapNumber(HeapNumber* number); 76 void WriteHeapNumber(HeapNumber* number);
75 void WriteString(Handle<String> string); 77 void WriteString(Handle<String> string);
76 Maybe<bool> WriteJSReceiver(Handle<JSReceiver> receiver) WARN_UNUSED_RESULT; 78 Maybe<bool> WriteJSReceiver(Handle<JSReceiver> receiver) WARN_UNUSED_RESULT;
77 Maybe<bool> WriteJSObject(Handle<JSObject> object) WARN_UNUSED_RESULT; 79 Maybe<bool> WriteJSObject(Handle<JSObject> object) WARN_UNUSED_RESULT;
78 Maybe<bool> WriteJSArray(Handle<JSArray> array) WARN_UNUSED_RESULT; 80 Maybe<bool> WriteJSArray(Handle<JSArray> array) WARN_UNUSED_RESULT;
79 void WriteJSDate(JSDate* date); 81 void WriteJSDate(JSDate* date);
80 Maybe<bool> WriteJSValue(Handle<JSValue> value) WARN_UNUSED_RESULT; 82 Maybe<bool> WriteJSValue(Handle<JSValue> value) WARN_UNUSED_RESULT;
81 void WriteJSRegExp(JSRegExp* regexp); 83 void WriteJSRegExp(JSRegExp* regexp);
84 Maybe<bool> WriteJSMap(Handle<JSMap> map) WARN_UNUSED_RESULT;
85 Maybe<bool> WriteJSSet(Handle<JSSet> map) WARN_UNUSED_RESULT;
82 86
83 /* 87 /*
84 * Reads the specified keys from the object and writes key-value pairs to the 88 * Reads the specified keys from the object and writes key-value pairs to the
85 * buffer. Returns the number of keys actually written, which may be smaller 89 * buffer. Returns the number of keys actually written, which may be smaller
86 * if some keys are not own properties when accessed. 90 * if some keys are not own properties when accessed.
87 */ 91 */
88 Maybe<uint32_t> WriteJSObjectProperties( 92 Maybe<uint32_t> WriteJSObjectProperties(
89 Handle<JSObject> object, Handle<FixedArray> keys) WARN_UNUSED_RESULT; 93 Handle<JSObject> object, Handle<FixedArray> keys) WARN_UNUSED_RESULT;
90 94
91 Isolate* const isolate_; 95 Isolate* const isolate_;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 // Reading V8 objects of specific kinds. 149 // Reading V8 objects of specific kinds.
146 // The tag is assumed to have already been read. 150 // The tag is assumed to have already been read.
147 MaybeHandle<String> ReadUtf8String() WARN_UNUSED_RESULT; 151 MaybeHandle<String> ReadUtf8String() WARN_UNUSED_RESULT;
148 MaybeHandle<String> ReadTwoByteString() WARN_UNUSED_RESULT; 152 MaybeHandle<String> ReadTwoByteString() WARN_UNUSED_RESULT;
149 MaybeHandle<JSObject> ReadJSObject() WARN_UNUSED_RESULT; 153 MaybeHandle<JSObject> ReadJSObject() WARN_UNUSED_RESULT;
150 MaybeHandle<JSArray> ReadSparseJSArray() WARN_UNUSED_RESULT; 154 MaybeHandle<JSArray> ReadSparseJSArray() WARN_UNUSED_RESULT;
151 MaybeHandle<JSArray> ReadDenseJSArray() WARN_UNUSED_RESULT; 155 MaybeHandle<JSArray> ReadDenseJSArray() WARN_UNUSED_RESULT;
152 MaybeHandle<JSDate> ReadJSDate() WARN_UNUSED_RESULT; 156 MaybeHandle<JSDate> ReadJSDate() WARN_UNUSED_RESULT;
153 MaybeHandle<JSValue> ReadJSValue(SerializationTag tag) WARN_UNUSED_RESULT; 157 MaybeHandle<JSValue> ReadJSValue(SerializationTag tag) WARN_UNUSED_RESULT;
154 MaybeHandle<JSRegExp> ReadJSRegExp() WARN_UNUSED_RESULT; 158 MaybeHandle<JSRegExp> ReadJSRegExp() WARN_UNUSED_RESULT;
159 MaybeHandle<JSMap> ReadJSMap() WARN_UNUSED_RESULT;
160 MaybeHandle<JSSet> ReadJSSet() WARN_UNUSED_RESULT;
155 161
156 /* 162 /*
157 * Reads key-value pairs into the object until the specified end tag is 163 * Reads key-value pairs into the object until the specified end tag is
158 * encountered. If successful, returns the number of properties read. 164 * encountered. If successful, returns the number of properties read.
159 */ 165 */
160 Maybe<uint32_t> ReadJSObjectProperties(Handle<JSObject> object, 166 Maybe<uint32_t> ReadJSObjectProperties(Handle<JSObject> object,
161 SerializationTag end_tag); 167 SerializationTag end_tag);
162 168
163 // Manipulating the map from IDs to reified objects. 169 // Manipulating the map from IDs to reified objects.
164 bool HasObjectWithID(uint32_t id); 170 bool HasObjectWithID(uint32_t id);
165 MaybeHandle<JSReceiver> GetObjectWithID(uint32_t id); 171 MaybeHandle<JSReceiver> GetObjectWithID(uint32_t id);
166 void AddObjectWithID(uint32_t id, Handle<JSReceiver> object); 172 void AddObjectWithID(uint32_t id, Handle<JSReceiver> object);
167 173
168 Isolate* const isolate_; 174 Isolate* const isolate_;
169 const uint8_t* position_; 175 const uint8_t* position_;
170 const uint8_t* const end_; 176 const uint8_t* const end_;
171 uint32_t version_ = 0; 177 uint32_t version_ = 0;
172 Handle<SeededNumberDictionary> id_map_; // Always a global handle. 178 Handle<SeededNumberDictionary> id_map_; // Always a global handle.
173 uint32_t next_id_ = 0; 179 uint32_t next_id_ = 0;
174 180
175 DISALLOW_COPY_AND_ASSIGN(ValueDeserializer); 181 DISALLOW_COPY_AND_ASSIGN(ValueDeserializer);
176 }; 182 };
177 183
178 } // namespace internal 184 } // namespace internal
179 } // namespace v8 185 } // namespace v8
180 186
181 #endif // V8_VALUE_SERIALIZER_H_ 187 #endif // V8_VALUE_SERIALIZER_H_
OLDNEW
« no previous file with comments | « no previous file | src/value-serializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698