/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */
void CacheStreamControlChild::StartDestroy() {
NS_ASSERT_OWNINGTHREAD(CacheStreamControlChild); // This can get called twice under some circumstances. For example, if the // actor is added to a CacheWorkerRef that has already been notified and // the Cache actor has no mListener. if (mDestroyStarted) { return;
}
mDestroyStarted = true;
// If any of the streams have started to be read, then wait for them to close // naturally. if (HasEverBeenRead()) { // Note that we are delaying so that we can re-check for active streams // in NoteClosedAfterForget().
mDestroyDelayed = true; return;
}
// Otherwise, if the streams have not been touched then just pre-emptively // close them now. This handles the case where someone retrieves a Response // from the Cache, but never accesses the body. We should not keep the // Worker alive until that Response is GC'd just because of its ignored // body stream.
// Begin shutting down all streams. This is the same as if the parent had // asked us to shutdown. So simulate the CloseAll IPC message.
RecvCloseAll();
}
if (mDestroyStarted) {
aResolver(nullptr); return;
}
// If we are on a worker, then we need to hold it alive until the async // IPC operation below completes. While the IPC layer will trigger a // rejection here in many cases, we must handle the case where the // MozPromise resolve runnable is already in the event queue when the // worker wants to shut down. const SafeRefPtr<CacheWorkerRef> holder = GetWorkerRefPtr().clonePtr();
// A stream has closed. If we delayed StartDestry() due to this stream // being read, then we should check to see if any of the remaining streams // are active. If none of our other streams have been read, then we can // proceed with the shutdown now. if (mDestroyDelayed && !HasEverBeenRead()) {
mDestroyDelayed = false;
RecvCloseAll();
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.