OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/browser/indexed_db/indexed_db_database.h" | 5 #include "content/browser/indexed_db/indexed_db_database.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 | 8 |
9 #include <limits> | 9 #include <limits> |
10 #include <memory> | 10 #include <memory> |
(...skipping 11 matching lines...) Expand all Loading... | |
22 #include "base/stl_util.h" | 22 #include "base/stl_util.h" |
23 #include "base/strings/string_number_conversions.h" | 23 #include "base/strings/string_number_conversions.h" |
24 #include "base/strings/utf_string_conversions.h" | 24 #include "base/strings/utf_string_conversions.h" |
25 #include "content/browser/indexed_db/indexed_db_blob_info.h" | 25 #include "content/browser/indexed_db/indexed_db_blob_info.h" |
26 #include "content/browser/indexed_db/indexed_db_class_factory.h" | 26 #include "content/browser/indexed_db/indexed_db_class_factory.h" |
27 #include "content/browser/indexed_db/indexed_db_connection.h" | 27 #include "content/browser/indexed_db/indexed_db_connection.h" |
28 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 28 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
29 #include "content/browser/indexed_db/indexed_db_cursor.h" | 29 #include "content/browser/indexed_db/indexed_db_cursor.h" |
30 #include "content/browser/indexed_db/indexed_db_factory.h" | 30 #include "content/browser/indexed_db/indexed_db_factory.h" |
31 #include "content/browser/indexed_db/indexed_db_index_writer.h" | 31 #include "content/browser/indexed_db/indexed_db_index_writer.h" |
32 #include "content/browser/indexed_db/indexed_db_observation.h" | |
33 #include "content/browser/indexed_db/indexed_db_observer_changes.h" | |
32 #include "content/browser/indexed_db/indexed_db_pending_connection.h" | 34 #include "content/browser/indexed_db/indexed_db_pending_connection.h" |
33 #include "content/browser/indexed_db/indexed_db_return_value.h" | 35 #include "content/browser/indexed_db/indexed_db_return_value.h" |
34 #include "content/browser/indexed_db/indexed_db_tracing.h" | 36 #include "content/browser/indexed_db/indexed_db_tracing.h" |
35 #include "content/browser/indexed_db/indexed_db_transaction.h" | 37 #include "content/browser/indexed_db/indexed_db_transaction.h" |
36 #include "content/browser/indexed_db/indexed_db_value.h" | 38 #include "content/browser/indexed_db/indexed_db_value.h" |
37 #include "content/common/indexed_db/indexed_db_constants.h" | 39 #include "content/common/indexed_db/indexed_db_constants.h" |
38 #include "content/common/indexed_db/indexed_db_key_path.h" | 40 #include "content/common/indexed_db/indexed_db_key_path.h" |
39 #include "content/common/indexed_db/indexed_db_key_range.h" | 41 #include "content/common/indexed_db/indexed_db_key_range.h" |
40 #include "content/public/common/content_switches.h" | 42 #include "content/public/common/content_switches.h" |
41 #include "storage/browser/blob/blob_data_handle.h" | 43 #include "storage/browser/blob/blob_data_handle.h" |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
535 const IndexedDBDatabaseError& error) { | 537 const IndexedDBDatabaseError& error) { |
536 IDB_TRACE1("IndexedDBDatabase::Abort(error)", "txn.id", transaction_id); | 538 IDB_TRACE1("IndexedDBDatabase::Abort(error)", "txn.id", transaction_id); |
537 // If the transaction is unknown, then it has already been aborted by the | 539 // If the transaction is unknown, then it has already been aborted by the |
538 // backend before this call so it is safe to ignore it. | 540 // backend before this call so it is safe to ignore it. |
539 IndexedDBTransaction* transaction = GetTransaction(transaction_id); | 541 IndexedDBTransaction* transaction = GetTransaction(transaction_id); |
540 if (transaction) | 542 if (transaction) |
541 transaction->Abort(error); | 543 transaction->Abort(error); |
542 } | 544 } |
543 | 545 |
544 void IndexedDBDatabase::AddPendingObserver(int64_t transaction_id, | 546 void IndexedDBDatabase::AddPendingObserver(int64_t transaction_id, |
545 int32_t observer_id) { | 547 int32_t observer_id, |
548 IndexedDBObserver::Options options) { | |
546 IndexedDBTransaction* transaction = GetTransaction(transaction_id); | 549 IndexedDBTransaction* transaction = GetTransaction(transaction_id); |
547 if (!transaction) | 550 if (!transaction) |
548 return; | 551 return; |
549 transaction->AddPendingObserver(observer_id); | 552 transaction->AddPendingObserver(observer_id, options); |
550 } | 553 } |
551 | 554 |
552 void IndexedDBDatabase::RemovePendingObservers( | 555 void IndexedDBDatabase::RemovePendingObservers( |
553 IndexedDBConnection* connection, | 556 IndexedDBConnection* connection, |
554 const std::vector<int32_t>& pending_observer_ids) { | 557 const std::vector<int32_t>& pending_observer_ids) { |
555 TransactionMap::iterator it; | 558 TransactionMap::iterator it; |
556 for (it = transactions_.begin(); it != transactions_.end(); it++) { | 559 for (it = transactions_.begin(); it != transactions_.end(); it++) { |
557 // Avoid call to RemovePendingObservers for transactions on other | 560 // Avoid call to RemovePendingObservers for transactions on other |
558 // connections. | 561 // connections. |
559 if (it->second->connection() == connection) | 562 if (it->second->connection() == connection) |
560 it->second->RemovePendingObservers(pending_observer_ids); | 563 it->second->RemovePendingObservers(pending_observer_ids); |
561 } | 564 } |
562 } | 565 } |
563 | 566 |
567 // TODO(palakj): Augment the function with IDBValue later. | |
palmer
2016/07/16 00:03:14
It's always a good idea to refer to a crbug.com li
palakj1
2016/07/18 22:02:29
Done
| |
568 void IndexedDBDatabase::FilterObservation(IndexedDBTransaction* transaction, | |
569 int64_t object_store_id, | |
570 blink::WebIDBOperationType type, | |
571 const IndexedDBKeyRange& key_range) { | |
572 for (const auto* connection : connections_) { | |
573 bool recorded = false; | |
574 for (const auto& observer : connection->active_observers()) { | |
575 if (!observer->IsRecordingType(type) || | |
576 !observer->IsRecordingObjectStore(object_store_id)) | |
577 continue; | |
578 if (!recorded) { | |
579 if (type == blink::WebIDBClear) { | |
580 transaction->AddObservation(connection->id(), | |
581 base::WrapUnique(new IndexedDBObservation( | |
582 object_store_id, type))); | |
583 } else { | |
584 transaction->AddObservation(connection->id(), | |
585 base::WrapUnique(new IndexedDBObservation( | |
586 object_store_id, type, key_range))); | |
587 } | |
588 recorded = true; | |
589 } | |
590 transaction->RecordObserverForLastObservation(connection->id(), | |
591 observer->id()); | |
592 } | |
593 } | |
594 } | |
595 | |
596 void IndexedDBDatabase::SendObservations( | |
597 std::map<int32_t, std::unique_ptr<IndexedDBObserverChanges>> changes_map) { | |
598 for (const auto& conn : connections_) { | |
palmer
2016/07/16 00:03:14
Nit: Up above (line 572) you said
for (const
palakj1
2016/07/18 22:02:29
Done
| |
599 auto it = changes_map.find(conn->id()); | |
600 if (it != changes_map.end()) | |
601 conn->callbacks()->OnDatabaseChange(it->first, std::move(it->second)); | |
602 } | |
603 } | |
604 | |
564 void IndexedDBDatabase::GetAll(int64_t transaction_id, | 605 void IndexedDBDatabase::GetAll(int64_t transaction_id, |
565 int64_t object_store_id, | 606 int64_t object_store_id, |
566 int64_t index_id, | 607 int64_t index_id, |
567 std::unique_ptr<IndexedDBKeyRange> key_range, | 608 std::unique_ptr<IndexedDBKeyRange> key_range, |
568 bool key_only, | 609 bool key_only, |
569 int64_t max_count, | 610 int64_t max_count, |
570 scoped_refptr<IndexedDBCallbacks> callbacks) { | 611 scoped_refptr<IndexedDBCallbacks> callbacks) { |
571 IDB_TRACE1("IndexedDBDatabase::GetAll", "txn.id", transaction_id); | 612 IDB_TRACE1("IndexedDBDatabase::GetAll", "txn.id", transaction_id); |
572 IndexedDBTransaction* transaction = GetTransaction(transaction_id); | 613 IndexedDBTransaction* transaction = GetTransaction(transaction_id); |
573 if (!transaction) | 614 if (!transaction) |
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1108 if (s.IsCorruption()) | 1149 if (s.IsCorruption()) |
1109 factory_->HandleBackingStoreCorruption(backing_store_->origin(), error); | 1150 factory_->HandleBackingStoreCorruption(backing_store_->origin(), error); |
1110 return; | 1151 return; |
1111 } | 1152 } |
1112 } | 1153 } |
1113 { | 1154 { |
1114 IDB_TRACE1("IndexedDBDatabase::PutOperation.Callbacks", "txn.id", | 1155 IDB_TRACE1("IndexedDBDatabase::PutOperation.Callbacks", "txn.id", |
1115 transaction->id()); | 1156 transaction->id()); |
1116 params->callbacks->OnSuccess(*key); | 1157 params->callbacks->OnSuccess(*key); |
1117 } | 1158 } |
1159 FilterObservation(transaction, params->object_store_id, | |
1160 params->put_mode == blink::WebIDBPutModeAddOnly | |
1161 ? blink::WebIDBAdd | |
1162 : blink::WebIDBPut, | |
1163 IndexedDBKeyRange(*key)); | |
1118 } | 1164 } |
1119 | 1165 |
1120 void IndexedDBDatabase::SetIndexKeys(int64_t transaction_id, | 1166 void IndexedDBDatabase::SetIndexKeys(int64_t transaction_id, |
1121 int64_t object_store_id, | 1167 int64_t object_store_id, |
1122 std::unique_ptr<IndexedDBKey> primary_key, | 1168 std::unique_ptr<IndexedDBKey> primary_key, |
1123 const std::vector<IndexKeys>& index_keys) { | 1169 const std::vector<IndexKeys>& index_keys) { |
1124 IDB_TRACE1("IndexedDBDatabase::SetIndexKeys", "txn.id", transaction_id); | 1170 IDB_TRACE1("IndexedDBDatabase::SetIndexKeys", "txn.id", transaction_id); |
1125 IndexedDBTransaction* transaction = GetTransaction(transaction_id); | 1171 IndexedDBTransaction* transaction = GetTransaction(transaction_id); |
1126 if (!transaction) | 1172 if (!transaction) |
1127 return; | 1173 return; |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1451 if (s.IsCorruption()) { | 1497 if (s.IsCorruption()) { |
1452 factory_->HandleBackingStoreCorruption(backing_store_->origin(), error); | 1498 factory_->HandleBackingStoreCorruption(backing_store_->origin(), error); |
1453 } | 1499 } |
1454 return; | 1500 return; |
1455 } | 1501 } |
1456 if (experimental_web_platform_features_enabled_) { | 1502 if (experimental_web_platform_features_enabled_) { |
1457 callbacks->OnSuccess(base::checked_cast<int64_t>(delete_count)); | 1503 callbacks->OnSuccess(base::checked_cast<int64_t>(delete_count)); |
1458 } else { | 1504 } else { |
1459 callbacks->OnSuccess(); | 1505 callbacks->OnSuccess(); |
1460 } | 1506 } |
1507 FilterObservation(transaction, object_store_id, blink::WebIDBDelete, | |
1508 *key_range); | |
1461 } | 1509 } |
1462 | 1510 |
1463 void IndexedDBDatabase::Clear(int64_t transaction_id, | 1511 void IndexedDBDatabase::Clear(int64_t transaction_id, |
1464 int64_t object_store_id, | 1512 int64_t object_store_id, |
1465 scoped_refptr<IndexedDBCallbacks> callbacks) { | 1513 scoped_refptr<IndexedDBCallbacks> callbacks) { |
1466 IDB_TRACE1("IndexedDBDatabase::Clear", "txn.id", transaction_id); | 1514 IDB_TRACE1("IndexedDBDatabase::Clear", "txn.id", transaction_id); |
1467 IndexedDBTransaction* transaction = GetTransaction(transaction_id); | 1515 IndexedDBTransaction* transaction = GetTransaction(transaction_id); |
1468 if (!transaction) | 1516 if (!transaction) |
1469 return; | 1517 return; |
1470 DCHECK_NE(transaction->mode(), blink::WebIDBTransactionModeReadOnly); | 1518 DCHECK_NE(transaction->mode(), blink::WebIDBTransactionModeReadOnly); |
(...skipping 15 matching lines...) Expand all Loading... | |
1486 if (!s.ok()) { | 1534 if (!s.ok()) { |
1487 IndexedDBDatabaseError error(blink::WebIDBDatabaseExceptionUnknownError, | 1535 IndexedDBDatabaseError error(blink::WebIDBDatabaseExceptionUnknownError, |
1488 "Internal error clearing object store"); | 1536 "Internal error clearing object store"); |
1489 callbacks->OnError(error); | 1537 callbacks->OnError(error); |
1490 if (s.IsCorruption()) { | 1538 if (s.IsCorruption()) { |
1491 factory_->HandleBackingStoreCorruption(backing_store_->origin(), error); | 1539 factory_->HandleBackingStoreCorruption(backing_store_->origin(), error); |
1492 } | 1540 } |
1493 return; | 1541 return; |
1494 } | 1542 } |
1495 callbacks->OnSuccess(); | 1543 callbacks->OnSuccess(); |
1544 | |
1545 FilterObservation(transaction, object_store_id, blink::WebIDBClear, | |
1546 IndexedDBKeyRange()); | |
1496 } | 1547 } |
1497 | 1548 |
1498 void IndexedDBDatabase::DeleteObjectStoreOperation( | 1549 void IndexedDBDatabase::DeleteObjectStoreOperation( |
1499 int64_t object_store_id, | 1550 int64_t object_store_id, |
1500 IndexedDBTransaction* transaction) { | 1551 IndexedDBTransaction* transaction) { |
1501 IDB_TRACE1("IndexedDBDatabase::DeleteObjectStoreOperation", | 1552 IDB_TRACE1("IndexedDBDatabase::DeleteObjectStoreOperation", |
1502 "txn.id", | 1553 "txn.id", |
1503 transaction->id()); | 1554 transaction->id()); |
1504 | 1555 |
1505 const IndexedDBObjectStoreMetadata object_store_metadata = | 1556 const IndexedDBObjectStoreMetadata object_store_metadata = |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1970 | 2021 |
1971 void IndexedDBDatabase::VersionChangeAbortOperation( | 2022 void IndexedDBDatabase::VersionChangeAbortOperation( |
1972 int64_t previous_version, | 2023 int64_t previous_version, |
1973 IndexedDBTransaction* transaction) { | 2024 IndexedDBTransaction* transaction) { |
1974 DCHECK(!transaction); | 2025 DCHECK(!transaction); |
1975 IDB_TRACE("IndexedDBDatabase::VersionChangeAbortOperation"); | 2026 IDB_TRACE("IndexedDBDatabase::VersionChangeAbortOperation"); |
1976 metadata_.version = previous_version; | 2027 metadata_.version = previous_version; |
1977 } | 2028 } |
1978 | 2029 |
1979 } // namespace content | 2030 } // namespace content |
OLD | NEW |