OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "modules/indexeddb/IDBObserverChanges.h" | 5 #include "modules/indexeddb/IDBObserverChanges.h" |
6 | 6 |
7 #include "bindings/core/v8/ExceptionState.h" | 7 #include "bindings/core/v8/ExceptionState.h" |
8 #include "bindings/core/v8/ScriptState.h" | 8 #include "bindings/core/v8/ScriptState.h" |
9 #include "bindings/core/v8/V8Binding.h" | |
9 #include "bindings/modules/v8/ToV8ForModules.h" | 10 #include "bindings/modules/v8/ToV8ForModules.h" |
10 #include "bindings/modules/v8/V8BindingForModules.h" | 11 #include "bindings/modules/v8/V8BindingForModules.h" |
11 #include "modules/indexeddb/IDBAny.h" | 12 #include "modules/indexeddb/IDBAny.h" |
13 #include "modules/indexeddb/IDBObservation.h" | |
14 #include "public/platform/modules/indexeddb/WebIDBObservation.h" | |
15 #include "public/platform/modules/indexeddb/WebIDBTypes.h" | |
12 | 16 |
13 namespace blink { | 17 namespace blink { |
14 | 18 |
15 ScriptValue IDBObserverChanges::records(ScriptState* scriptState) | 19 ScriptValue IDBObserverChanges::records(ScriptState* scriptState) |
16 { | 20 { |
17 return ScriptValue::from(scriptState, m_records); | 21 v8::Local<v8::Context> context(scriptState->context()); |
22 v8::Isolate* isolate(scriptState->isolate()); | |
23 v8::Local<v8::Map> map = v8::Map::New(isolate); | |
24 for (const auto& it : m_records) { | |
25 v8::Local<v8::String> key = v8String(isolate, m_database->getObjectStore Name(it.key)); | |
26 v8::Local<v8::Value> value = toV8(it.value, context->Global(), isolate); | |
27 v8CallOrCrash(map->Set(context, key, value)); | |
28 } | |
29 return ScriptValue::from(scriptState, map); | |
18 } | 30 } |
19 | 31 |
20 IDBObserverChanges* IDBObserverChanges::create(IDBDatabase* database, IDBTransac tion* transaction, IDBAny* records) | 32 IDBObserverChanges* IDBObserverChanges::create(IDBDatabase* database, const std: :vector<WebIDBObservation>& observations, const std::vector<int32_t>& observatio nIndex) |
21 { | 33 { |
22 return new IDBObserverChanges(database, transaction, records); | 34 return new IDBObserverChanges(database, observations, observationIndex); |
23 } | 35 } |
24 | 36 |
25 IDBObserverChanges::IDBObserverChanges(IDBDatabase* database, IDBTransaction* tr ansaction, IDBAny* records) | 37 IDBObserverChanges::IDBObserverChanges(IDBDatabase* database, const std::vector< WebIDBObservation>& observations, const std::vector<int32_t>& observationIndex) |
26 : m_database(database) | 38 : m_database(database) |
27 , m_transaction(transaction) | |
28 , m_records(records) | |
29 { | 39 { |
40 createMap(observations, observationIndex); | |
41 } | |
42 | |
43 void IDBObserverChanges::createMap(const std::vector<WebIDBObservation>& observa tions, const std::vector<int32_t>& observationIndex) | |
dmurph
2016/07/13 23:29:13
maybe extractChanges is a better name? I'm expecti
palakj1
2016/07/14 17:52:06
True. changed.
| |
44 { | |
45 for (const auto& idx : observationIndex) { | |
46 int64_t key = observations[idx].objectStoreId; | |
47 HeapVector<Member<IDBObservation>> result; | |
dmurph
2016/07/13 23:29:13
Do you always have to get/set here? It's doing a l
Marijn Kruisselbrink
2016/07/13 23:34:39
Or just something like (since add returns the exis
palakj1
2016/07/14 17:52:06
Wow! I was really looking for some suggestions her
| |
48 if (m_records.contains(key)) | |
49 result = m_records.get(key); | |
50 result.append(IDBObservation::create(observations[idx])); | |
51 m_records.set(key, result); | |
52 } | |
30 } | 53 } |
31 | 54 |
32 DEFINE_TRACE(IDBObserverChanges) | 55 DEFINE_TRACE(IDBObserverChanges) |
33 { | 56 { |
34 visitor->trace(m_database); | 57 visitor->trace(m_database); |
35 visitor->trace(m_transaction); | 58 visitor->trace(m_transaction); |
36 visitor->trace(m_records); | 59 visitor->trace(m_records); |
37 } | 60 } |
38 | 61 |
39 } // namespace blink | 62 } // namespace blink |
OLD | NEW |