mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
243 lines
6.4 KiB
C++
243 lines
6.4 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=40: */
|
|
/* 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 "base/basictypes.h"
|
|
|
|
#include "BluetoothService.h"
|
|
#include "BluetoothTypes.h"
|
|
#include "BluetoothReplyRunnable.h"
|
|
|
|
#include "nsIDOMDOMRequest.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "nsXPCOMCIDInternal.h"
|
|
#include "nsObserverService.h"
|
|
#include "mozilla/Services.h"
|
|
#include "mozilla/LazyIdleThread.h"
|
|
#include "mozilla/Util.h"
|
|
|
|
using namespace mozilla;
|
|
|
|
USING_BLUETOOTH_NAMESPACE
|
|
|
|
nsRefPtr<BluetoothService> gBluetoothService;
|
|
nsCOMPtr<nsIThread> gToggleBtThread;
|
|
int gPendingInitCount = 0;
|
|
bool gInShutdown = false;
|
|
|
|
NS_IMPL_ISUPPORTS1(BluetoothService, nsIObserver)
|
|
|
|
class ToggleBtAck : public nsRunnable
|
|
{
|
|
public:
|
|
NS_IMETHOD Run()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
gPendingInitCount--;
|
|
|
|
if (gPendingInitCount) {
|
|
return NS_OK;
|
|
}
|
|
|
|
if (gInShutdown) {
|
|
gBluetoothService = nsnull;
|
|
}
|
|
|
|
nsCOMPtr<nsIThread> t;
|
|
gToggleBtThread.swap(t);
|
|
t->Shutdown();
|
|
return NS_OK;
|
|
}
|
|
};
|
|
|
|
class ToggleBtTask : public nsRunnable
|
|
{
|
|
public:
|
|
ToggleBtTask(bool aEnabled,
|
|
BluetoothReplyRunnable* aRunnable)
|
|
: mEnabled(aEnabled),
|
|
mRunnable(aRunnable)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
}
|
|
|
|
NS_IMETHOD Run()
|
|
{
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
nsString replyError;
|
|
if (mEnabled) {
|
|
if (NS_FAILED(gBluetoothService->StartInternal())) {
|
|
replyError.AssignLiteral("Bluetooth service not available - We should never reach this point!");
|
|
}
|
|
}
|
|
else {
|
|
if (NS_FAILED(gBluetoothService->StopInternal())) {
|
|
replyError.AssignLiteral("Bluetooth service not available - We should never reach this point!");
|
|
}
|
|
}
|
|
|
|
// Always has to be called since this is where we take care of our reference
|
|
// count for runnables. If there's an error, replyError won't be empty, so
|
|
// consider our status flipped.
|
|
nsCOMPtr<nsIRunnable> ackTask = new ToggleBtAck();
|
|
if (NS_FAILED(NS_DispatchToMainThread(ackTask))) {
|
|
NS_WARNING("Failed to dispatch to main thread!");
|
|
}
|
|
|
|
if (!mRunnable) {
|
|
return NS_OK;
|
|
}
|
|
|
|
// Reply will be deleted by the runnable after running on main thread
|
|
BluetoothReply* reply;
|
|
if (!replyError.IsEmpty()) {
|
|
reply = new BluetoothReply(BluetoothReplyError(replyError));
|
|
}
|
|
else {
|
|
reply = new BluetoothReply(BluetoothReplySuccess());
|
|
}
|
|
mRunnable->SetReply(reply);
|
|
|
|
if (NS_FAILED(NS_DispatchToMainThread(mRunnable))) {
|
|
NS_WARNING("Failed to dispatch to main thread!");
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
private:
|
|
bool mEnabled;
|
|
nsRefPtr<BluetoothReplyRunnable> mRunnable;
|
|
};
|
|
|
|
nsresult
|
|
BluetoothService::RegisterBluetoothSignalHandler(const nsAString& aNodeName,
|
|
BluetoothSignalObserver* aHandler)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
BluetoothSignalObserverList* ol;
|
|
if (!mBluetoothSignalObserverTable.Get(aNodeName, &ol)) {
|
|
ol = new BluetoothSignalObserverList();
|
|
mBluetoothSignalObserverTable.Put(aNodeName, ol);
|
|
}
|
|
ol->AddObserver(aHandler);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
BluetoothService::UnregisterBluetoothSignalHandler(const nsAString& aNodeName,
|
|
BluetoothSignalObserver* aHandler)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
BluetoothSignalObserverList* ol;
|
|
if (!mBluetoothSignalObserverTable.Get(aNodeName, &ol)) {
|
|
NS_WARNING("Node does not exist to remove BluetoothSignalListener from!");
|
|
return NS_OK;
|
|
}
|
|
ol->RemoveObserver(aHandler);
|
|
if (ol->Length() == 0) {
|
|
mBluetoothSignalObserverTable.Remove(aNodeName);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
BluetoothService::DistributeSignal(const BluetoothSignal& signal)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
// Notify observers that a message has been sent
|
|
BluetoothSignalObserverList* ol;
|
|
if (!mBluetoothSignalObserverTable.Get(signal.path(), &ol)) {
|
|
return NS_OK;
|
|
}
|
|
ol->Broadcast(signal);
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
BluetoothService::StartStopBluetooth(BluetoothReplyRunnable* aResultRunnable,
|
|
bool aStart)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
// If we're shutting down, bail early.
|
|
if (gInShutdown && aStart) {
|
|
NS_ERROR("Start called while in shutdown!");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
if (!gToggleBtThread) {
|
|
nsresult rv = NS_NewNamedThread("BluetoothCtrl",
|
|
getter_AddRefs(gToggleBtThread));
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
}
|
|
nsCOMPtr<nsIRunnable> r = new ToggleBtTask(aStart, aResultRunnable);
|
|
if (NS_FAILED(gToggleBtThread->Dispatch(r, NS_DISPATCH_NORMAL))) {
|
|
NS_WARNING("Cannot dispatch firmware loading task!");
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
gPendingInitCount++;
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
BluetoothService::Start(BluetoothReplyRunnable* aResultRunnable)
|
|
{
|
|
return StartStopBluetooth(aResultRunnable, true);
|
|
}
|
|
|
|
nsresult
|
|
BluetoothService::Stop(BluetoothReplyRunnable* aResultRunnable)
|
|
{
|
|
return StartStopBluetooth(aResultRunnable, false);
|
|
}
|
|
|
|
// static
|
|
BluetoothService*
|
|
BluetoothService::Get()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
// If we already exist, exit early
|
|
if (gBluetoothService) {
|
|
return gBluetoothService;
|
|
}
|
|
|
|
// If we're in shutdown, don't create a new instance
|
|
if (gInShutdown) {
|
|
NS_WARNING("BluetoothService returns null during shutdown");
|
|
return nsnull;
|
|
}
|
|
|
|
// Create new instance, register, return
|
|
gBluetoothService = BluetoothService::Create();
|
|
if (!gBluetoothService) {
|
|
NS_WARNING("Cannot create bluetooth service!");
|
|
return nsnull;
|
|
}
|
|
nsCOMPtr<nsIObserverService> obs = services::GetObserverService();
|
|
MOZ_ASSERT(obs);
|
|
|
|
if (NS_FAILED(obs->AddObserver(gBluetoothService, "xpcom-shutdown", false))) {
|
|
NS_ERROR("AddObserver failed!");
|
|
}
|
|
return gBluetoothService;
|
|
}
|
|
|
|
nsresult
|
|
BluetoothService::Observe(nsISupports* aSubject, const char* aTopic,
|
|
const PRUnichar* aData)
|
|
{
|
|
NS_ASSERTION(!strcmp(aTopic, "xpcom-shutdown"),
|
|
"BluetoothService got unexpected topic!");
|
|
gInShutdown = true;
|
|
nsCOMPtr<nsIObserverService> obs = services::GetObserverService();
|
|
if (obs && NS_FAILED(obs->RemoveObserver(this, "xpcom-shutdown"))) {
|
|
NS_WARNING("Can't unregister bluetooth service with xpcom shutdown!");
|
|
}
|
|
|
|
return Stop(nsnull);
|
|
}
|