summaryrefslogtreecommitdiffstats
path: root/sql/connection.cc
diff options
context:
space:
mode:
authorssid <ssid@chromium.org>2016-01-13 06:21:57 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-13 14:23:13 +0000
commit3be5b1ecdf66f6eaaa0ba98f9b36cc2d93bf54d9 (patch)
tree20326a0c236d72a2e28b007f1782116cf301b07c /sql/connection.cc
parent3a6f49f649c3c413ca10fc60ec85f39532ac9e45 (diff)
downloadchromium_src-3be5b1ecdf66f6eaaa0ba98f9b36cc2d93bf54d9.zip
chromium_src-3be5b1ecdf66f6eaaa0ba98f9b36cc2d93bf54d9.tar.gz
chromium_src-3be5b1ecdf66f6eaaa0ba98f9b36cc2d93bf54d9.tar.bz2
[tracing] Add separate dump provider for sql connection
The sql connection memory dump is not thread safe since the connections can get deleted while a dump is happening. To make this thread safe, this CL introduces a dump provider class owned by the connection. This class holds a lock when dumping and deleting the database. Also, to workaround thread safe dump provider registration, it uses the UnregisterAndDeleteDumpProviderAsync api added in crrev.com/1430073002. BUG=466141 Review URL: https://codereview.chromium.org/1434993002 Cr-Commit-Position: refs/heads/master@{#369161}
Diffstat (limited to 'sql/connection.cc')
-rw-r--r--sql/connection.cc61
1 files changed, 18 insertions, 43 deletions
diff --git a/sql/connection.cc b/sql/connection.cc
index 9daa7d1..003005a 100644
--- a/sql/connection.cc
+++ b/sql/connection.cc
@@ -27,7 +27,7 @@
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/lock.h"
#include "base/trace_event/memory_dump_manager.h"
-#include "base/trace_event/process_memory_dump.h"
+#include "sql/connection_memory_dump_provider.h"
#include "sql/meta_table.h"
#include "sql/statement.h"
#include "third_party/sqlite/sqlite3.h"
@@ -254,44 +254,6 @@ bool Connection::ShouldIgnoreSqliteCompileError(int error) {
basic_error == SQLITE_CORRUPT;
}
-bool Connection::OnMemoryDump(const base::trace_event::MemoryDumpArgs& args,
- base::trace_event::ProcessMemoryDump* pmd) {
- if (args.level_of_detail ==
- base::trace_event::MemoryDumpLevelOfDetail::LIGHT ||
- !db_) {
- return true;
- }
-
- // The high water mark is not tracked for the following usages.
- int cache_size, dummy_int;
- sqlite3_db_status(db_, SQLITE_DBSTATUS_CACHE_USED, &cache_size, &dummy_int,
- 0 /* resetFlag */);
- int schema_size;
- sqlite3_db_status(db_, SQLITE_DBSTATUS_SCHEMA_USED, &schema_size, &dummy_int,
- 0 /* resetFlag */);
- int statement_size;
- sqlite3_db_status(db_, SQLITE_DBSTATUS_STMT_USED, &statement_size, &dummy_int,
- 0 /* resetFlag */);
-
- std::string name = base::StringPrintf(
- "sqlite/%s_connection/%p",
- histogram_tag_.empty() ? "Unknown" : histogram_tag_.c_str(), this);
- base::trace_event::MemoryAllocatorDump* dump = pmd->CreateAllocatorDump(name);
- dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize,
- base::trace_event::MemoryAllocatorDump::kUnitsBytes,
- cache_size + schema_size + statement_size);
- dump->AddScalar("cache_size",
- base::trace_event::MemoryAllocatorDump::kUnitsBytes,
- cache_size);
- dump->AddScalar("schema_size",
- base::trace_event::MemoryAllocatorDump::kUnitsBytes,
- schema_size);
- dump->AddScalar("statement_size",
- base::trace_event::MemoryAllocatorDump::kUnitsBytes,
- statement_size);
- return true;
-}
-
void Connection::ReportDiagnosticInfo(int extended_error, Statement* stmt) {
AssertIOAllowed();
@@ -386,13 +348,9 @@ Connection::Connection()
update_time_histogram_(NULL),
query_time_histogram_(NULL),
clock_(new TimeSource()) {
- base::trace_event::MemoryDumpManager::GetInstance()->RegisterDumpProvider(
- this, "sql::Connection", nullptr);
}
Connection::~Connection() {
- base::trace_event::MemoryDumpManager::GetInstance()->UnregisterDumpProvider(
- this);
Close();
}
@@ -511,6 +469,17 @@ void Connection::CloseInternal(bool forced) {
// of the function. http://crbug.com/136655.
AssertIOAllowed();
+ // Reseting acquires a lock to ensure no dump is happening on the database
+ // at the same time. Unregister takes ownership of provider and it is safe
+ // since the db is reset. memory_dump_provider_ could be null if db_ was
+ // poisoned.
+ if (memory_dump_provider_) {
+ memory_dump_provider_->ResetDatabase();
+ base::trace_event::MemoryDumpManager::GetInstance()
+ ->UnregisterAndDeleteDumpProviderSoon(
+ std::move(memory_dump_provider_));
+ }
+
int rc = sqlite3_close(db_);
if (rc != SQLITE_OK) {
UMA_HISTOGRAM_SPARSE_SLOWLY("Sqlite.CloseFailure", rc);
@@ -1848,6 +1817,12 @@ bool Connection::OpenInternal(const std::string& file_name,
mmap_enabled_ = true;
}
+ DCHECK(!memory_dump_provider_);
+ memory_dump_provider_.reset(
+ new ConnectionMemoryDumpProvider(db_, histogram_tag_));
+ base::trace_event::MemoryDumpManager::GetInstance()->RegisterDumpProvider(
+ memory_dump_provider_.get(), "sql::Connection", nullptr);
+
return true;
}