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::Local<v8::Object> result = toV8(m_records, context->Global(), scriptStat
e->isolate())->ToObject(context).ToLocalChecked(); |
| 23 return ScriptValue::from(scriptState, result); |
18 } | 24 } |
19 | 25 |
20 IDBObserverChanges* IDBObserverChanges::create(IDBDatabase* database, IDBTransac
tion* transaction, IDBAny* records) | 26 IDBObserverChanges* IDBObserverChanges::create(IDBDatabase* database, const std:
:vector<WebIDBObservation>& observations, const std::vector<int32_t>& observatio
nIndex) |
21 { | 27 { |
22 return new IDBObserverChanges(database, transaction, records); | 28 return new IDBObserverChanges(database, observations, observationIndex); |
23 } | 29 } |
24 | 30 |
25 IDBObserverChanges::IDBObserverChanges(IDBDatabase* database, IDBTransaction* tr
ansaction, IDBAny* records) | 31 IDBObserverChanges::IDBObserverChanges(IDBDatabase* database, const std::vector<
WebIDBObservation>& observations, const std::vector<int32_t>& observationIndex) |
26 : m_database(database) | 32 : m_database(database) |
27 , m_transaction(transaction) | |
28 , m_records(records) | |
29 { | 33 { |
| 34 createMap(observations, observationIndex); |
| 35 } |
| 36 |
| 37 void IDBObserverChanges::createMap(const std::vector<WebIDBObservation>& observa
tions, const std::vector<int32_t>& observationIndex) |
| 38 { |
| 39 std::map<int64_t, HeapVector<Member<IDBObservation>>> records; |
| 40 for (const auto& idx : observationIndex) { |
| 41 auto it = records.find(observations[idx].objectStoreId); |
| 42 if (it == records.end()) { |
| 43 HeapVector<Member<IDBObservation>> v; |
| 44 it = records.insert(std::make_pair(observations[idx].objectStoreId,
v)).first; |
| 45 } |
| 46 it->second.append(IDBObservation::create(observations[idx])); |
| 47 } |
| 48 for (auto it : records) { |
| 49 String objectStoreName = m_database->getObjectStoreName(it.first); |
| 50 m_records.append(std::make_pair(objectStoreName, it.second)); |
| 51 } |
30 } | 52 } |
31 | 53 |
32 DEFINE_TRACE(IDBObserverChanges) | 54 DEFINE_TRACE(IDBObserverChanges) |
33 { | 55 { |
34 visitor->trace(m_database); | 56 visitor->trace(m_database); |
35 visitor->trace(m_transaction); | 57 visitor->trace(m_transaction); |
36 visitor->trace(m_records); | 58 visitor->trace(m_records); |
37 } | 59 } |
38 | 60 |
39 } // namespace blink | 61 } // namespace blink |
OLD | NEW |