mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
191 lines
4.3 KiB
C++
191 lines
4.3 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=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/. */
|
|
|
|
#ifndef mozilla_dom_bluetooth_ipc_bluetoothparent_h__
|
|
#define mozilla_dom_bluetooth_ipc_bluetoothparent_h__
|
|
|
|
#include "mozilla/dom/bluetooth/BluetoothCommon.h"
|
|
|
|
#include "mozilla/dom/bluetooth/PBluetoothParent.h"
|
|
#include "mozilla/dom/bluetooth/PBluetoothRequestParent.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/Observer.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsTArray.h"
|
|
|
|
template <class T>
|
|
class nsRevocableEventPtr;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class ContentParent;
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
BEGIN_BLUETOOTH_NAMESPACE
|
|
|
|
class BluetoothService;
|
|
|
|
/*******************************************************************************
|
|
* BluetoothParent
|
|
******************************************************************************/
|
|
|
|
class BluetoothParent : public PBluetoothParent,
|
|
public mozilla::Observer<BluetoothSignal>
|
|
{
|
|
friend class mozilla::dom::ContentParent;
|
|
|
|
enum ShutdownState
|
|
{
|
|
Running = 0,
|
|
SentBeginShutdown,
|
|
ReceivedStopNotifying,
|
|
SentNotificationsStopped,
|
|
Dead
|
|
};
|
|
|
|
nsRefPtr<BluetoothService> mService;
|
|
ShutdownState mShutdownState;
|
|
bool mReceivedStopNotifying;
|
|
bool mSentBeginShutdown;
|
|
|
|
public:
|
|
void
|
|
BeginShutdown();
|
|
|
|
protected:
|
|
BluetoothParent();
|
|
virtual ~BluetoothParent();
|
|
|
|
bool
|
|
InitWithService(BluetoothService* aService);
|
|
|
|
virtual void
|
|
ActorDestroy(ActorDestroyReason aWhy) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
RecvRegisterSignalHandler(const nsString& aNode) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
RecvUnregisterSignalHandler(const nsString& aNode) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
RecvStopNotifying() MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
RecvPBluetoothRequestConstructor(PBluetoothRequestParent* aActor,
|
|
const Request& aRequest) MOZ_OVERRIDE;
|
|
|
|
virtual PBluetoothRequestParent*
|
|
AllocPBluetoothRequest(const Request& aRequest) MOZ_OVERRIDE;
|
|
|
|
virtual bool
|
|
DeallocPBluetoothRequest(PBluetoothRequestParent* aActor) MOZ_OVERRIDE;
|
|
|
|
virtual void
|
|
Notify(const BluetoothSignal& aSignal) MOZ_OVERRIDE;
|
|
|
|
private:
|
|
void
|
|
UnregisterAllSignalHandlers();
|
|
};
|
|
|
|
/*******************************************************************************
|
|
* BluetoothAdapterRequestParent
|
|
******************************************************************************/
|
|
|
|
class BluetoothRequestParent : public PBluetoothRequestParent
|
|
{
|
|
class ReplyRunnable;
|
|
friend class BluetoothParent;
|
|
|
|
friend class ReplyRunnable;
|
|
|
|
nsRefPtr<BluetoothService> mService;
|
|
nsRevocableEventPtr<ReplyRunnable> mReplyRunnable;
|
|
|
|
#ifdef DEBUG
|
|
Request::Type mRequestType;
|
|
#endif
|
|
|
|
protected:
|
|
BluetoothRequestParent(BluetoothService* aService);
|
|
virtual ~BluetoothRequestParent();
|
|
|
|
virtual void
|
|
ActorDestroy(ActorDestroyReason aWhy) MOZ_OVERRIDE;
|
|
|
|
void
|
|
RequestComplete();
|
|
|
|
bool
|
|
DoRequest(const DefaultAdapterPathRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const SetPropertyRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const GetPropertyRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const StartDiscoveryRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const StopDiscoveryRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const PairRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const UnpairRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const DevicePropertiesRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const SetPinCodeRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const SetPasskeyRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const ConfirmPairingConfirmationRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const DenyPairingConfirmationRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const ConfirmAuthorizationRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const DenyAuthorizationRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const ConnectRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const DisconnectRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const SendFileRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const StopSendingFileRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const ConfirmReceivingFileRequest& aRequest);
|
|
|
|
bool
|
|
DoRequest(const DenyReceivingFileRequest& aRequest);
|
|
};
|
|
|
|
END_BLUETOOTH_NAMESPACE
|
|
|
|
#endif // mozilla_dom_bluetooth_ipc_bluetoothparent_h__
|