/* * Copyright (C) 2010 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// NB: Need to make sure we're not competing with the loader thread. const_cast<HRTFDatabaseLoader*>(this)->waitForLoaderThreadCompletion();
if (m_hrtfDatabase) {
amount += m_hrtfDatabase->sizeOfIncludingThis(aMallocSizeOf);
}
return amount;
}
class HRTFDatabaseLoader::ProxyReleaseEvent final : public Runnable { public: explicit ProxyReleaseEvent(HRTFDatabaseLoader* loader)
: mozilla::Runnable("WebCore::HRTFDatabaseLoader::ProxyReleaseEvent"),
mLoader(loader) {}
NS_IMETHOD Run() override {
mLoader->MainThreadRelease(); return NS_OK;
}
private: // Ownership transferred by ProxyRelease
HRTFDatabaseLoader* MOZ_OWNING_REF mLoader;
};
void HRTFDatabaseLoader::ProxyRelease() {
nsCOMPtr<nsIEventTarget> mainTarget = GetMainThreadSerialEventTarget(); if (MOZ_LIKELY(mainTarget)) {
RefPtr<ProxyReleaseEvent> event = new ProxyReleaseEvent(this);
DebugOnly<nsresult> rv = mainTarget->Dispatch(event, NS_DISPATCH_NORMAL);
MOZ_ASSERT(NS_SUCCEEDED(rv), "Failed to dispatch release event");
} else { // Should be in XPCOM shutdown.
MOZ_ASSERT(NS_IsMainThread(), "Main thread is not available for dispatch.");
MainThreadRelease();
}
}
void HRTFDatabaseLoader::MainThreadRelease() {
MOZ_ASSERT(NS_IsMainThread()); int count = --m_refCnt;
MOZ_ASSERT(count >= 0, "extra release");
NS_LOG_RELEASE(this, count, "HRTFDatabaseLoader"); if (count == 0) { // It is safe to delete here as the first reference can only be added // on this (main) thread. deletethis;
}
}
// Asynchronously load the database in this thread. staticvoid databaseLoaderEntry(void* threadData) {
AUTO_PROFILER_REGISTER_THREAD("HRTFDatabaseLdr");
NS_SetCurrentThreadName("HRTFDatabaseLdr");
// waitForThreadCompletion() should not be called twice for the same thread. if (m_databaseLoaderThread) {
DebugOnly<PRStatus> status = PR_JoinThread(m_databaseLoaderThread);
MOZ_ASSERT(status == PR_SUCCESS, "PR_JoinThread failed");
}
m_databaseLoaderThread = nullptr;
}
void HRTFDatabaseLoader::shutdown() {
MOZ_ASSERT(NS_IsMainThread()); if (s_loaderMap) { // Set s_loaderMap to nullptr so that the hashtable is not modified on // reference release during enumeration.
nsTHashtable<LoaderByRateEntry>* loaderMap = s_loaderMap;
s_loaderMap = nullptr; for (auto iter = loaderMap->Iter(); !iter.Done(); iter.Next()) {
iter.Get()->mLoader->waitForLoaderThreadCompletion();
} delete loaderMap;
}
}
} // namespace WebCore
Messung V0.5
¤ Dauer der Verarbeitung: 0.10 Sekunden
(vorverarbeitet)
¤
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 und die Messung sind noch experimentell.