2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2013-04-16 19:40:08 +04:00
|
|
|
/* vim: set sw=2 ts=8 et 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/. */
|
|
|
|
|
|
|
|
#ifndef _nsCacheUtils_h_
|
|
|
|
#define _nsCacheUtils_h_
|
|
|
|
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2016-05-13 09:56:22 +03:00
|
|
|
#include "mozilla/Monitor.h"
|
2013-04-16 19:40:08 +04:00
|
|
|
|
|
|
|
class nsIThread;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A class with utility methods for shutting down nsIThreads easily.
|
|
|
|
*/
|
2016-04-26 03:23:21 +03:00
|
|
|
class nsShutdownThread : public mozilla::Runnable {
|
2013-04-16 19:40:08 +04:00
|
|
|
public:
|
2014-08-05 17:20:24 +04:00
|
|
|
explicit nsShutdownThread(nsIThread *aThread);
|
2018-04-30 19:46:04 +03:00
|
|
|
~nsShutdownThread() = default;
|
2013-04-16 19:40:08 +04:00
|
|
|
|
2017-11-06 06:37:28 +03:00
|
|
|
NS_IMETHOD Run() override;
|
2013-04-16 19:40:08 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shutdown ensures that aThread->Shutdown() is called on a main thread
|
|
|
|
*/
|
|
|
|
static nsresult Shutdown(nsIThread *aThread);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* BlockingShutdown ensures that by the time it returns, aThread->Shutdown()
|
|
|
|
* has been called and no pending events have been processed on the current
|
|
|
|
* thread.
|
|
|
|
*/
|
|
|
|
static nsresult BlockingShutdown(nsIThread *aThread);
|
|
|
|
|
|
|
|
private:
|
2016-05-13 09:56:22 +03:00
|
|
|
mozilla::Monitor mMonitor;
|
|
|
|
bool mShuttingDown;
|
2013-04-16 19:40:08 +04:00
|
|
|
nsCOMPtr<nsIThread> mThread;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|