Chromium Code Reviews

Issue 23653024: IndexedDB: Have IDBCursor and IDBRequest explicitly break ref cycles (Closed)

Created:
7 years, 3 months ago by jsbell
Modified:
7 years, 3 months ago
Reviewers:
alecflett, dgrogan
CC:
blink-reviews, dgrogan, eae+blinkwatch, dglazkov+blink, alecflett, jsbell
Visibility:
Public.

Description

IndexedDB: Have IDBCursor and IDBRequest explicitly break ref cycles Until (1) a transaction ends or (2) a cursor hits the end of its range, an IDBRequest holds on to an IDBCursor as its result. Per spec, calling continue() or advance() on the cursor re-uses the same IDBRequest, requiring a reference cycle. Previously, the cycle was broken explicitly on either of those two conditions, but until that time a cursor-request pair would "leak", holding on to potentially large script value results. This patch makes both classes RefCountedBase::deref() and check to see if they have a partner object and both refcounts are 1. If so, the cycle is broken. Special case cruft for condition #1 is removed to simplify the code - just rely on GC to reclaim the objects if necessary. R=alecflett@chromium.org,dgrogan@chromium.org BUG=225860 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=157382

Patch Set 1 #

Total comments: 9
Unified diffs Side-by-side diffs Stats (+163 lines, -113 lines)
A LayoutTests/storage/indexeddb/cursor-request-cycle.html View 1 chunk +68 lines, -0 lines 2 comments
A + LayoutTests/storage/indexeddb/cursor-request-cycle-expected.txt View 1 chunk +16 lines, -10 lines 2 comments
M Source/modules/indexeddb/IDBAny.h View 1 chunk +8 lines, -8 lines 1 comment
M Source/modules/indexeddb/IDBAny.cpp View 1 chunk +16 lines, -16 lines 0 comments
M Source/modules/indexeddb/IDBCallbacks.h View 1 chunk +3 lines, -1 line 0 comments
M Source/modules/indexeddb/IDBCursor.h View 4 chunks +11 lines, -2 lines 2 comments
M Source/modules/indexeddb/IDBCursor.cpp View 2 chunks +14 lines, -6 lines 0 comments
M Source/modules/indexeddb/IDBRequest.h View 4 chunks +13 lines, -5 lines 0 comments
M Source/modules/indexeddb/IDBRequest.cpp View 5 chunks +14 lines, -7 lines 2 comments
M Source/modules/indexeddb/IDBTransaction.h View 3 chunks +0 lines, -16 lines 0 comments
M Source/modules/indexeddb/IDBTransaction.cpp View 3 chunks +0 lines, -42 lines 0 comments

Messages

Total messages: 6 (0 generated)
jsbell
This is another attempt with the same test as http://crrev.com/22918013
7 years, 3 months ago (2013-09-06 00:25:14 UTC) #1
jsbell
https://codereview.chromium.org/23653024/diff/1/Source/modules/indexeddb/IDBAny.h File Source/modules/indexeddb/IDBAny.h (right): https://codereview.chromium.org/23653024/diff/1/Source/modules/indexeddb/IDBAny.h#newcode94 Source/modules/indexeddb/IDBAny.h:94: DOMStringList* domStringList(); This may seem unrelated, but without this ...
7 years, 3 months ago (2013-09-06 00:27:51 UTC) #2
alecflett
lgtm This is great! So glad to see the opencursornotifier going away! https://codereview.chromium.org/23653024/diff/1/LayoutTests/storage/indexeddb/cursor-request-cycle-expected.txt File LayoutTests/storage/indexeddb/cursor-request-cycle-expected.txt ...
7 years, 3 months ago (2013-09-06 17:56:34 UTC) #3
jsbell
https://codereview.chromium.org/23653024/diff/1/LayoutTests/storage/indexeddb/cursor-request-cycle-expected.txt File LayoutTests/storage/indexeddb/cursor-request-cycle-expected.txt (right): https://codereview.chromium.org/23653024/diff/1/LayoutTests/storage/indexeddb/cursor-request-cycle-expected.txt#newcode6 LayoutTests/storage/indexeddb/cursor-request-cycle-expected.txt:6: indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.msIndexedDB ...
7 years, 3 months ago (2013-09-06 18:07:43 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/jsbell@chromium.org/23653024/1
7 years, 3 months ago (2013-09-06 18:08:24 UTC) #5
commit-bot: I haz the power
7 years, 3 months ago (2013-09-06 19:25:18 UTC) #6
Message was sent while issue was closed.
Change committed as 157382

Powered by Google App Engine