1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "ConcurrentConnection.h"
#include "Database.h"
#include "Helpers.h"
#include "SQLFunctions.h"
#include "mozilla/AppShutdown.h"
#include "mozilla/Assertions.h"
#include "mozilla/ClearOnShutdown.h"
#include "mozilla/DebugOnly.h"
#include "mozilla/Services.h"
#include "mozIStorageBindingParamsArray.h"
#include "mozIStorageError.h"
#include "mozIStorageResultSet.h"
#include "mozIStorageRow.h"
#include "mozIStorageService.h"
#include "nsAppDirectoryServiceDefs.h"
#include "nsComponentManagerUtils.h"
#include "nsDirectoryServiceUtils.h"
#include "nsError.h"
#include "nsINavHistoryService.h"
#include "nsIObserverService.h"
#include "nsIWritablePropertyBag.h"
#include "nsPlacesMacros.h"
#include "nsServiceManagerUtils.h"
#include "nsThreadUtils.h"
#include "nsVariant.h"
#include "nsXULAppAPI.h"
namespace mozilla::places {
namespace {
already_AddRefed<nsIFile> GetDatabaseFileInProfile(const nsString& aName) {
nsCOMPtr<nsIFile> file;
NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR, getter_AddRefs(file));
if (file) {
if (NS_SUCCEEDED(file->Append(aName))) {
return file.forget();
}
}
return nullptr;
}
class CallbackOnError final : public AsyncStatementCallback {
using Method = void (ConcurrentConnection::*)();
public:
explicit CallbackOnError(ConcurrentConnection* aTarget, Method aMethod)
: mMethod(aMethod), mTarget(aTarget) {}
NS_IMETHOD HandleCompletion(uint16_t aReason) override {
if (aReason == mozIStorageStatementCallback::REASON_ERROR) {
(mTarget->*mMethod)();
}
return NS_OK;
}
private:
Method mMethod;
RefPtr<ConcurrentConnection> mTarget;
};
class CallbackOnComplete final : public mozIStorageCompletionCallback {
using Method = void (ConcurrentConnection::*)(nsresult);
public:
NS_DECL_ISUPPORTS
explicit CallbackOnComplete(ConcurrentConnection* aTarget, Method aMethod)
: mMethod(aMethod), mTarget(aTarget) {}
NS_IMETHOD Complete(nsresult aRv, nsISupports* aData) override {
(mTarget->*mMethod)(aRv);
return NS_OK;
}
private:
~CallbackOnComplete() = default;
Method mMethod;
RefPtr<ConcurrentConnection> mTarget;
};
NS_IMPL_ISUPPORTS(CallbackOnComplete, mozIStorageCompletionCallback)
} // anonymous namespace
NS_IMPL_ISUPPORTS(ConcurrentConnection, nsIObserver, nsISupportsWeakReference,
nsIAsyncShutdownBlocker, mozIStorageCompletionCallback,
mozIStorageStatementCallback)
ConcurrentConnection::ConcurrentConnection() {
MOZ_DIAGNOSTIC_ASSERT(XRE_IsParentProcess(),
"Can only instantiate in the parent process");
MOZ_DIAGNOSTIC_ASSERT(NS_IsMainThread(), "Must be on the main-thread");
// Check shutdown and try to add this as a blocker.
nsCOMPtr<nsIAsyncShutdownService> asyncShutdownSvc =
services::GetAsyncShutdownService();
MOZ_ASSERT(asyncShutdownSvc);
if (AppShutdown::IsInOrBeyond(ShutdownPhase::AppShutdownConfirmed) ||
!asyncShutdownSvc) {
Shutdown();
return;
}
// Can't use quit-application-granted here because gtests don't send it.
nsCOMPtr<nsIAsyncShutdownClient> shutdownPhase;
DebugOnly<nsresult> rv =
asyncShutdownSvc->GetProfileChangeTeardown(getter_AddRefs(shutdownPhase));
MOZ_ASSERT(NS_SUCCEEDED(rv), "Should be able to get shutdown phase");
if (shutdownPhase) {
nsresult rv = shutdownPhase->AddBlocker(
this, NS_LITERAL_STRING_FROM_CSTRING(__FILE__), __LINE__, u""_ns);
if (NS_FAILED(rv)) {
this->Shutdown();
MOZ_ASSERT(false, "Cannot add shutdown blocker");
return;
}
}
nsCOMPtr<nsIObserverService> os = mozilla::services::GetObserverService();
if (os) {
MOZ_ALWAYS_SUCCEEDS(
os->AddObserver(this, TOPIC_PLACES_INIT_COMPLETE, true));
}
mState = AWAITING_DATABASE_READY;
TryToOpenConnection();
}
Maybe<ConcurrentConnection*> ConcurrentConnection::GetInstance() {
static StaticRefPtr<ConcurrentConnection> sInstance;
if (!sInstance &&
!AppShutdown::IsInOrBeyond(ShutdownPhase::AppShutdownTeardown)) {
sInstance = new ConcurrentConnection();
ClearOnShutdown(&sInstance, ShutdownPhase::AppShutdownTeardown);
}
if (!sInstance) {
return Nothing();
}
return Some(sInstance.get());
}
// nsIAsyncShutdownBlocker
NS_IMETHODIMP
ConcurrentConnection::GetName(nsAString& aName) {
aName.AssignLiteral("PlacesConcurrentConnection");
return NS_OK;
}
// nsIAsyncShutdownBlocker
NS_IMETHODIMP
ConcurrentConnection::GetState(nsIPropertyBag** _state) {
NS_ENSURE_ARG_POINTER(_state);
nsCOMPtr<nsIWritablePropertyBag> bag =
do_CreateInstance("@mozilla.org/hash-property-bag;1");
NS_ENSURE_TRUE(bag, NS_ERROR_OUT_OF_MEMORY);
RefPtr<nsVariant> progress = new nsVariant();
MOZ_ALWAYS_SUCCEEDS(progress->SetAsUint8(mState));
MOZ_ALWAYS_SUCCEEDS(
bag->SetProperty(u"ConcurrentConnectionState"_ns, progress));
bag.forget(_state);
return NS_OK;
}
// nsIAsyncShutdownBlocker
NS_IMETHODIMP
ConcurrentConnection::BlockShutdown(nsIAsyncShutdownClient* aBarrierClient) {
MOZ_ASSERT(NS_IsMainThread(), "Must be on the main-thread");
mShutdownBarrierClient = aBarrierClient;
mState = AWAITING_DATABASE_CLOSED;
mIsShuttingDown = true;
// Start closing the connection, then call aBarrierClient.RemoveBlocker(this)
// once done.
if (mConn) {
(void)mConn->Interrupt();
CloseConnection();
} else {
Shutdown();
}
return NS_OK;
}
// mozIStorageCompletionCallback
NS_IMETHODIMP
ConcurrentConnection::Complete(nsresult aRv, nsISupports* aData) {
MOZ_ASSERT(NS_IsMainThread(), "Must be on main-thread");
// This is invoked only for connection opening.
MOZ_ASSERT(!mConn);
MOZ_ASSERT(!mIsConnectionReady);
// It's possible we got shutdown while the connection was being opened. We
// don't even assign the connection, just try to close it.
if (mIsShuttingDown && aData) {
nsCOMPtr<mozIStorageAsyncConnection> conn = do_QueryInterface(aData);
if (conn) {
(void)conn->AsyncClose(nullptr);
}
mIsOpening = false;
return NS_OK;
}
if (NS_FAILED(aRv)) {
// The database file is not present or cannot be opened.
// It's possible in the meanwhile Places was initialized, then we can try
// again.
if (mPlacesIsInitialized && mRetryOpening) {
// We only retry once.
mRetryOpening = false;
TryToOpenConnection();
}
mIsOpening = false;
return NS_OK;
}
// Assign and setup connection.
mConn = do_QueryInterface(aData);
mIsOpening = false;
// First of all we must check schema version, if the schema is outdated, we
// must await for Places initialization.
nsCOMPtr<mozIStoragePendingStatement> ps;
nsresult rv = mConn->ExecuteSimpleSQLAsync("PRAGMA user_version"_ns, this,
getter_AddRefs(ps));
if (NS_FAILED(rv)) {
CloseConnection();
Shutdown();
}
return NS_OK;
}
// mozIStorageStatementCallback
NS_IMETHODIMP ConcurrentConnection::HandleResult(
mozIStorageResultSet* aResultSet) {
// This is only invoked for PRAGMA user_version.
nsCOMPtr<mozIStorageRow> row;
if (NS_FAILED(aResultSet->GetNextRow(getter_AddRefs(row)))) {
CloseConnection();
Shutdown();
return NS_OK;
}
mSchemaVersion = row->AsInt32(0);
return NS_OK;
}
// mozIStorageStatementCallback
NS_IMETHODIMP ConcurrentConnection::HandleError(mozIStorageError* aError) {
#ifdef DEBUG
int32_t result;
nsresult rv = aError->GetResult(&result);
NS_ENSURE_SUCCESS(rv, rv);
nsAutoCString message;
rv = aError->GetMessage(message);
NS_ENSURE_SUCCESS(rv, rv);
nsAutoCString warnMsg;
warnMsg.AppendLiteral(
"An error occurred while executing an async statement: ");
warnMsg.AppendInt(result);
warnMsg.Append(' ');
warnMsg.Append(message);
NS_WARNING(warnMsg.get());
#endif
CloseConnection();
return NS_OK;
}
// mozIStorageStatementCallback
NS_IMETHODIMP ConcurrentConnection::HandleCompletion(uint16_t aReason) {
// This is only invoked for PRAGMA user_version.
// Note mConn may have been destroyed at this point, for example during
// shutdown. In that case we just do nothing.
if (mConn && aReason == mozIStorageStatementCallback::REASON_FINISHED) {
// If the schema version is not up to date we'll just retry later, once
// Places initialization is complete.
if (mSchemaVersion == nsINavHistoryService::DATABASE_SCHEMA_VERSION) {
SetupConnection();
} else {
CloseConnection();
}
}
return NS_OK;
}
void ConcurrentConnection::CloseConnection() {
mIsConnectionReady = false;
nsCOMPtr<mozIStorageAsyncConnection> conn = mConn.forget();
if (mAsyncStatements) {
mAsyncStatements->FinalizeStatements();
}
if (mHelperThreadStatements && conn) {
RefPtr<FinalizeStatementCacheProxy<mozIStorageStatement>> event =
new FinalizeStatementCacheProxy<mozIStorageStatement>(
*mHelperThreadStatements, NS_ISUPPORTS_CAST(nsIObserver*, this));
nsCOMPtr<nsIEventTarget> target = do_GetInterface(conn);
if (target) {
MOZ_ALWAYS_SUCCEEDS(target->Dispatch(event, NS_DISPATCH_NORMAL));
}
}
nsCOMPtr<mozIStorageCompletionCallback> cb =
MakeAndAddRef<CallbackOnComplete>(
this, &ConcurrentConnection::CloseConnectionComplete);
if (NS_FAILED(conn->AsyncClose(cb))) {
Shutdown();
}
}
void ConcurrentConnection::CloseConnectionComplete(nsresult rv) {
if (mIsShuttingDown || NS_FAILED(rv)) {
Shutdown();
}
}
void ConcurrentConnection::SetupConnection() {
MOZ_ASSERT(mConn, "Connection must be defined at this point");
// Create common functions.
nsresult rv = Database::InitFunctions(mConn);
if (NS_WARN_IF(NS_FAILED(rv))) {
CloseConnection();
Shutdown();
return;
}
// Attach favicons database.
rv = AttachDatabase(DATABASE_FAVICONS_FILENAME, DATABASE_FAVICONS_SCHEMANAME);
if (NS_WARN_IF(NS_FAILED(rv))) {
CloseConnection();
Shutdown();
return;
}
// Create the statements caches.
mAsyncStatements = MakeUnique<AsyncStatementCache>(mConn);
mHelperThreadStatements = MakeUnique<StatementCache>(mConn);
mIsConnectionReady = true;
TryToConsumeQueues();
}
nsresult ConcurrentConnection::AttachDatabase(const nsString& aFileName,
const nsCString& aSchemaName) {
// No reason to cache this statement, so not using GetStatement here.
nsCOMPtr<mozIStorageAsyncStatement> stmt;
nsresult rv = mConn->CreateAsyncStatement(
"ATTACH DATABASE :path AS "_ns + DATABASE_FAVICONS_SCHEMANAME,
getter_AddRefs(stmt));
NS_ENSURE_SUCCESS(rv, rv);
nsCOMPtr<nsIFile> databaseFile =
GetDatabaseFileInProfile(DATABASE_FAVICONS_FILENAME);
NS_ENSURE_SUCCESS(rv, rv);
nsString path;
rv = databaseFile->GetPath(path);
NS_ENSURE_SUCCESS(rv, rv);
rv = stmt->BindStringByName("path"_ns, path);
NS_ENSURE_SUCCESS(rv, rv);
nsCOMPtr<mozIStoragePendingStatement> ps;
nsCOMPtr<mozIStorageStatementCallback> cb = MakeAndAddRef<CallbackOnError>(
this, &ConcurrentConnection::CloseConnection);
rv = stmt->ExecuteAsync(cb, getter_AddRefs(ps));
NS_ENSURE_SUCCESS(rv, rv);
return NS_OK;
}
// nsIObserver
NS_IMETHODIMP
ConcurrentConnection::Observe(nsISupports* aSubject, const char* aTopic,
const char16_t* aData) {
MOZ_ASSERT(NS_IsMainThread());
if (strcmp(aTopic, TOPIC_PLACES_INIT_COMPLETE) == 0) {
mPlacesIsInitialized = true;
TryToOpenConnection();
}
return NS_OK;
}
void ConcurrentConnection::Queue(const nsCString& aSQL,
PendingStatementCallback* aCallback) {
MOZ_DIAGNOSTIC_ASSERT(NS_IsMainThread(), "Must be on the main-thread");
if (mIsShuttingDown) {
return;
}
mPendingQueries.PushFront(MakeAndAddRef<PendingQuery>(aSQL, aCallback));
TryToConsumeQueues();
}
void ConcurrentConnection::Queue(Runnable* aRunnable) {
MOZ_DIAGNOSTIC_ASSERT(NS_IsMainThread(), "Must be on the main-thread");
if (mIsShuttingDown) {
return;
}
mPendingRunnables.PushFront(aRunnable);
TryToConsumeQueues();
}
already_AddRefed<mozIStorageStatement>
ConcurrentConnection::GetStatementOnHelperThread(const nsCString& aQuery) {
if (NS_IsMainThread()) {
MOZ_DIAGNOSTIC_CRASH("Use `GetStatement()` on the main-thread");
return nullptr;
}
nsCOMPtr<mozIStorageStatement> stmt =
mHelperThreadStatements->GetCachedStatement(aQuery);
if (stmt) {
return stmt.forget();
}
return nullptr;
}
already_AddRefed<mozIStorageAsyncStatement> ConcurrentConnection::GetStatement(
const nsCString& aQuery) {
if (!NS_IsMainThread()) {
MOZ_DIAGNOSTIC_CRASH(
"Use `GetStatementOnHelperThread()` on the helper thread");
return nullptr;
}
nsCOMPtr<mozIStorageAsyncStatement> stmt =
mAsyncStatements->GetCachedStatement(aQuery);
if (stmt) {
return stmt.forget();
}
return nullptr;
}
void ConcurrentConnection::TryToConsumeQueues() {
if (!mConn || !mIsConnectionReady) {
return;
}
// Consume Runnables queue.
nsCOMPtr<nsIEventTarget> target = do_GetInterface(mConn);
while (target && mPendingRunnables.GetSize()) {
RefPtr<Runnable> runnable = mPendingRunnables.Pop();
MOZ_ALWAYS_SUCCEEDS(target->Dispatch(runnable, NS_DISPATCH_NORMAL));
}
// Consume Statements queue.
while (mPendingQueries.GetSize()) {
RefPtr<PendingQuery> query = mPendingQueries.Pop();
nsCOMPtr<mozIStorageAsyncStatement> stmt = GetStatement(query->mSQL);
if (NS_WARN_IF(!stmt)) continue;
nsCOMPtr<mozIStorageBindingParamsArray> paramsArray;
nsresult rv = stmt->NewBindingParamsArray(getter_AddRefs(paramsArray));
if (NS_WARN_IF(NS_FAILED(rv))) continue;
rv = query->mCallback->BindParams(paramsArray);
if (NS_WARN_IF(NS_FAILED(rv))) continue;
rv = stmt->BindParameters(paramsArray);
if (NS_WARN_IF(NS_FAILED(rv))) continue;
nsCOMPtr<mozIStoragePendingStatement> ps;
rv = stmt->ExecuteAsync(query->mCallback, getter_AddRefs(ps));
if (NS_WARN_IF(NS_FAILED(rv))) continue;
}
}
void ConcurrentConnection::TryToOpenConnection() {
// This is invoked at different times, thus it may try to re-enter.
if (mIsShuttingDown || mIsOpening || mIsConnectionReady) {
return;
}
mIsOpening = true;
// Any error here means we'll be unable to do anything, thus we just shutdown.
#define SHUTDOWN_AND_RETURN_IF_FALSE(condition) \
PR_BEGIN_MACRO \
if (!(condition)) { \
Shutdown(); \
return; \
} \
PR_END_MACRO
nsCOMPtr<mozIStorageService> storageSvc =
do_GetService(MOZ_STORAGE_SERVICE_CONTRACTID);
SHUTDOWN_AND_RETURN_IF_FALSE(storageSvc);
nsCOMPtr<nsIFile> dbFile = GetDatabaseFileInProfile(DATABASE_FILENAME);
SHUTDOWN_AND_RETURN_IF_FALSE(dbFile);
RefPtr<nsVariant> variant = new nsVariant();
nsresult rv = variant->SetAsInterface(NS_GET_IID(nsIFile), dbFile);
SHUTDOWN_AND_RETURN_IF_FALSE(NS_SUCCEEDED(rv));
// We use no locking to avoid interfering with Database trying to get an
// exclusive lock later as the only writer.
rv = storageSvc->OpenAsyncDatabase(
variant, mozIStorageService::OPEN_READONLY,
mozIStorageService::CONNECTION_INTERRUPTIBLE, this);
SHUTDOWN_AND_RETURN_IF_FALSE(NS_SUCCEEDED(rv));
#undef SHUTDOWN_AND_RETURN_IF_FALSE
}
void ConcurrentConnection::Shutdown() {
MOZ_ASSERT(!mConn, "Connection should have been closed");
mConn = nullptr;
mIsOpening = false;
mIsShuttingDown = true;
mState = CLOSED;
// Clear the queues, as we can't handle them anymore.
mPendingQueries.Erase();
mPendingRunnables.Erase();
// Stop blocking shutdown.
if (mShutdownBarrierClient) {
MOZ_ALWAYS_SUCCEEDS(mShutdownBarrierClient->RemoveBlocker(this));
}
}
} // namespace mozilla::places
|