mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
102 lines
2.9 KiB
C++
102 lines
2.9 KiB
C++
/* -*- 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/. */
|
|
|
|
#ifndef mozilla_dom_bluetooth_bluedroid_BluetoothSocket_h
|
|
#define mozilla_dom_bluetooth_bluedroid_BluetoothSocket_h
|
|
|
|
#include "BluetoothCommon.h"
|
|
#include "mozilla/ipc/DataSocket.h"
|
|
|
|
class MessageLoop;
|
|
|
|
BEGIN_BLUETOOTH_NAMESPACE
|
|
|
|
class BluetoothSocketObserver;
|
|
class BluetoothSocketResultHandler;
|
|
class DroidSocketImpl;
|
|
|
|
class BluetoothSocket final : public mozilla::ipc::DataSocket
|
|
{
|
|
public:
|
|
BluetoothSocket(BluetoothSocketObserver* aObserver);
|
|
~BluetoothSocket();
|
|
|
|
nsresult Connect(const nsAString& aDeviceAddress,
|
|
const BluetoothUuid& aServiceUuid,
|
|
BluetoothSocketType aType,
|
|
int aChannel,
|
|
bool aAuth, bool aEncrypt,
|
|
MessageLoop* aConsumerLoop,
|
|
MessageLoop* aIOLoop);
|
|
|
|
nsresult Connect(const nsAString& aDeviceAddress,
|
|
const BluetoothUuid& aServiceUuid,
|
|
BluetoothSocketType aType,
|
|
int aChannel,
|
|
bool aAuth, bool aEncrypt);
|
|
|
|
nsresult Listen(const nsAString& aServiceName,
|
|
const BluetoothUuid& aServiceUuid,
|
|
BluetoothSocketType aType,
|
|
int aChannel,
|
|
bool aAuth, bool aEncrypt,
|
|
MessageLoop* aConsumerLoop,
|
|
MessageLoop* aIOLoop);
|
|
|
|
nsresult Listen(const nsAString& aServiceName,
|
|
const BluetoothUuid& aServiceUuid,
|
|
BluetoothSocketType aType,
|
|
int aChannel,
|
|
bool aAuth, bool aEncrypt);
|
|
|
|
/**
|
|
* Method to be called whenever data is received. This is only called on the
|
|
* consumer thread.
|
|
*
|
|
* @param aBuffer Data received from the socket.
|
|
*/
|
|
void ReceiveSocketData(nsAutoPtr<mozilla::ipc::UnixSocketBuffer>& aBuffer);
|
|
|
|
inline void GetAddress(nsAString& aDeviceAddress)
|
|
{
|
|
aDeviceAddress = mDeviceAddress;
|
|
}
|
|
|
|
inline void SetAddress(const nsAString& aDeviceAddress)
|
|
{
|
|
mDeviceAddress = aDeviceAddress;
|
|
}
|
|
|
|
inline void SetCurrentResultHandler(BluetoothSocketResultHandler* aRes)
|
|
{
|
|
mCurrentRes = aRes;
|
|
}
|
|
|
|
// Methods for |DataSocket|
|
|
//
|
|
|
|
void SendSocketData(mozilla::ipc::UnixSocketIOBuffer* aBuffer) override;
|
|
|
|
// Methods for |SocketBase|
|
|
//
|
|
|
|
void Close() override;
|
|
|
|
void OnConnectSuccess() override;
|
|
void OnConnectError() override;
|
|
void OnDisconnect() override;
|
|
|
|
private:
|
|
BluetoothSocketObserver* mObserver;
|
|
BluetoothSocketResultHandler* mCurrentRes;
|
|
DroidSocketImpl* mImpl;
|
|
nsString mDeviceAddress;
|
|
};
|
|
|
|
END_BLUETOOTH_NAMESPACE
|
|
|
|
#endif // mozilla_dom_bluetooth_bluedroid_BluetoothSocket_h
|