Bug 35341

Summary: Expose Database object of currently active task on the database thread
Product: WebKit Reporter: jochen
Component: New BugsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, jorlow
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: OS X 10.5   
Attachments:
Description Flags
Patch
none
patch none

jochen
Reported 2010-02-24 07:19:36 PST
Expose Database object of currently active task on the database thread
Attachments
Patch (2.35 KB, patch)
2010-02-24 07:22 PST, jochen
no flags
patch (2.40 KB, patch)
2010-02-24 07:38 PST, jochen
no flags
jochen
Comment 1 2010-02-24 07:22:31 PST
jochen
Comment 2 2010-02-24 07:24:16 PST
I can't think of any way to test this using a html file
Jeremy Orlow
Comment 3 2010-02-24 07:32:45 PST
Comment on attachment 49390 [details] Patch Close...but I think it's worth adding an assert. > diff --git a/WebCore/storage/DatabaseThread.cpp b/WebCore/storage/DatabaseThread.cpp > index ec4c6d1..e5a21d1 100644 > --- a/WebCore/storage/DatabaseThread.cpp > +++ b/WebCore/storage/DatabaseThread.cpp > @@ -42,6 +42,7 @@ namespace WebCore { > > DatabaseThread::DatabaseThread() > : m_threadID(0) > + , m_databaseOfCurrentTask(0) > , m_transactionClient(new SQLTransactionClient()) > , m_transactionCoordinator(new SQLTransactionCoordinator()) > , m_cleanupSync(0) > @@ -96,7 +97,9 @@ void* DatabaseThread::databaseThread() > > AutodrainedPool pool; > while (OwnPtr<DatabaseTask> task = m_queue.waitForMessage()) { ASSERT it's 0 first > + m_databaseOfCurrentTask = task->database(); > task->performTask(); > + m_databaseOfCurrentTask = 0; > pool.cycle(); > }
jochen
Comment 4 2010-02-24 07:38:05 PST
Jeremy Orlow
Comment 5 2010-02-24 07:38:50 PST
Comment on attachment 49392 [details] patch r=me
WebKit Commit Bot
Comment 6 2010-02-24 19:51:15 PST
Comment on attachment 49392 [details] patch Clearing flags on attachment: 49392 Committed r55214: <http://trac.webkit.org/changeset/55214>
WebKit Commit Bot
Comment 7 2010-02-24 19:51:20 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.