Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: components/proximity_auth/ble/bluetooth_low_energy_weave_client_connection.h

Issue 2189913002: Revert of Substituting legacy protocol with uWeave protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/proximity_auth/ble/bluetooth_low_energy_weave_client_connection.h
diff --git a/components/proximity_auth/ble/bluetooth_low_energy_weave_client_connection.h b/components/proximity_auth/ble/bluetooth_low_energy_weave_client_connection.h
deleted file mode 100644
index bda1ee7b2efc8d73aa1b90fd7f8a4f6e8e188ba7..0000000000000000000000000000000000000000
--- a/components/proximity_auth/ble/bluetooth_low_energy_weave_client_connection.h
+++ /dev/null
@@ -1,316 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_PROXIMITY_AUTH_BLE_BLUETOOTH_LOW_ENERGY_WEAVE_CLIENT_CONNECTION_H_
-#define COMPONENTS_PROXIMITY_AUTH_BLE_BLUETOOTH_LOW_ENERGY_WEAVE_CLIENT_CONNECTION_H_
-
-#include <stddef.h>
-#include <stdint.h>
-
-#include <map>
-#include <memory>
-#include <queue>
-#include <string>
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/weak_ptr.h"
-#include "base/time/time.h"
-#include "components/proximity_auth/ble/bluetooth_low_energy_characteristics_finder.h"
-#include "components/proximity_auth/ble/bluetooth_low_energy_weave_packet_generator.h"
-#include "components/proximity_auth/ble/bluetooth_low_energy_weave_packet_receiver.h"
-#include "components/proximity_auth/ble/fake_wire_message.h"
-#include "components/proximity_auth/ble/remote_attribute.h"
-#include "components/proximity_auth/connection.h"
-#include "device/bluetooth/bluetooth_adapter.h"
-#include "device/bluetooth/bluetooth_device.h"
-#include "device/bluetooth/bluetooth_gatt_notify_session.h"
-#include "device/bluetooth/bluetooth_remote_gatt_characteristic.h"
-#include "device/bluetooth/bluetooth_uuid.h"
-
-namespace base {
-class TaskRunner;
-}
-
-namespace proximity_auth {
-class BluetoothThrottler;
-
-namespace weave {
-// Creates GATT connection on top of the BLE connection and act as a Client.
-// uWeave communication follows the flow:
-// Client | Server
-// ---------------------------------|--------------------------------
-// send connection request |
-// | receive connection request
-// | send connection response
-// receive connection response |
-// opt: send data | opt: send data
-// receive data | receive data
-// opt: close connection | opt: close connection
-class BluetoothLowEnergyWeaveClientConnection
- : public Connection,
- public device::BluetoothAdapter::Observer {
- public:
- class Factory {
- public:
- static std::unique_ptr<BluetoothLowEnergyWeaveClientConnection>
- NewInstance();
-
- // Exposed for testing.
- static void SetInstanceForTesting(Factory* factory);
-
- protected:
- // Exposed for testing.
- virtual std::unique_ptr<BluetoothLowEnergyWeaveClientConnection>
- BuildInstance();
-
- private:
- static Factory* factory_instance_;
- };
-
- // The sub-state of a proximity_auth::BluetoothLowEnergyWeaveClientConnection
- // extends the IN_PROGRESS state of proximity_auth::Connection::Status.
- enum SubStatus {
- DISCONNECTED,
- WAITING_GATT_CONNECTION,
- WAITING_CHARACTERISTICS,
- CHARACTERISTICS_FOUND,
- WAITING_NOTIFY_SESSION,
- NOTIFY_SESSION_READY,
- WAITING_CONNECTION_RESPONSE,
- CONNECTED,
- };
-
- // Constructs a Bluetooth low energy connection to the service with
- // |remote_service_| on the |remote_device|. The |adapter| must be already
- // initialized and ready. The GATT connection may alreaady be established and
- // pass through |gatt_connection|. A subsequent call to Connect() must be
- // made.
- BluetoothLowEnergyWeaveClientConnection(
- const RemoteDevice& remote_device,
- scoped_refptr<device::BluetoothAdapter> adapter,
- const device::BluetoothUUID remote_service_uuid,
- BluetoothThrottler* bluetooth_throttler,
- int max_number_of_write_attempts);
-
- ~BluetoothLowEnergyWeaveClientConnection() override;
-
- // proximity_auth::Connection:
- void Connect() override;
- void Disconnect() override;
- std::string GetDeviceAddress() override;
-
- protected:
- // Exposed for testing.
- void DestroyConnection();
-
- // Exposed for testing.
- SubStatus sub_status() { return sub_status_; }
-
- // Sets |task_runner_| for testing.
- void SetTaskRunnerForTesting(scoped_refptr<base::TaskRunner> task_runner);
-
- // Virtual for testing.
- virtual BluetoothLowEnergyCharacteristicsFinder* CreateCharacteristicsFinder(
- const BluetoothLowEnergyCharacteristicsFinder::SuccessCallback&
- success_callback,
- const BluetoothLowEnergyCharacteristicsFinder::ErrorCallback&
- error_callback);
-
- // proximity_auth::Connection:
- void SendMessageImpl(std::unique_ptr<WireMessage> message) override;
-
- // device::BluetoothAdapter::Observer:
- void DeviceChanged(device::BluetoothAdapter* adapter,
- device::BluetoothDevice* device) override;
- void DeviceRemoved(device::BluetoothAdapter* adapter,
- device::BluetoothDevice* device) override;
- void GattCharacteristicValueChanged(
- device::BluetoothAdapter* adapter,
- device::BluetoothRemoteGattCharacteristic* characteristic,
- const Packet& value) override;
-
- private:
- enum WriteRequestType {
- REGULAR,
- MESSAGE_COMPLETE,
- CONNECTION_REQUEST,
- CONNECTION_CLOSE
- };
-
- // Represents a request to write |value| to a some characteristic.
- // |is_last_write_for_wire_messsage| indicates whether this request
- // corresponds to the last write request for some wire message.
- struct WriteRequest {
- WriteRequest(const Packet& val,
- WriteRequestType request_type,
- std::shared_ptr<WireMessage> message);
- WriteRequest(const Packet& val, WriteRequestType request_type);
- WriteRequest(const WriteRequest& other);
- ~WriteRequest();
-
- Packet value;
- WriteRequestType request_type;
- std::shared_ptr<WireMessage> message;
- int number_of_failed_attempts;
- };
-
- void SetSubStatus(SubStatus status);
-
- // Creates the GATT connection with |remote_device|.
- void CreateGattConnection();
-
- // Called when a GATT connection is created.
- void OnGattConnectionCreated(
- std::unique_ptr<device::BluetoothGattConnection> gatt_connection);
-
- // Callback called when there is an error creating the GATT connection.
- void OnCreateGattConnectionError(
- device::BluetoothDevice::ConnectErrorCode error_code);
-
- // Callback called when |tx_characteristic_| and |rx_characteristic_| were
- // found.
- void OnCharacteristicsFound(const RemoteAttribute& service,
- const RemoteAttribute& tx_characteristic,
- const RemoteAttribute& rx_characteristic);
-
- // Callback called there was an error finding the characteristics.
- void OnCharacteristicsFinderError(const RemoteAttribute& tx_characteristic,
- const RemoteAttribute& rx_characteristic);
-
- // Starts a notify session for |rx_characteristic_| when ready
- // (SubStatus::CHARACTERISTICS_FOUND).
- void StartNotifySession();
-
- // Called when a notification session is successfully started for
- // |rx_characteristic_| characteristic.
- void OnNotifySessionStarted(
- std::unique_ptr<device::BluetoothGattNotifySession> notify_session);
-
- // Called when there is an error starting a notification session for
- // |rx_characteristic_| characteristic.
- void OnNotifySessionError(device::BluetoothGattService::GattErrorCode);
-
- // Stops |notify_session_|.
- void StopNotifySession();
-
- // Sends a connection request to server if ready
- // (SubStatus::NOTIFY_SESSION_READY).
- void SendConnectionRequest();
-
- // Completes and updates the status accordingly.
- void CompleteConnection();
-
- // This is the only entry point for WriteRequests, which are processed
- // accordingly the following flow:
- // 1) |request| is enqueued;
- // 2) |request| will be processed by ProcessNextWriteRequest() when there is
- // no pending write request;
- // 3) |request| will be dequeued when it's successfully processed
- // (OnRemoteCharacteristicWritten());
- // 4) |request| is not dequeued if it fails
- // (OnWriteRemoteCharacteristicError()), it remains on the queue and will be
- // retried. |request| will remain on the queue until it succeeds or it
- // triggers a Disconnect() call (after |max_number_of_tries_|).
- void WriteRemoteCharacteristic(const WriteRequest& request);
-
- // Processes the next request in |write_requests_queue_|.
- void ProcessNextWriteRequest();
-
- // Called when the
- // BluetoothRemoteGattCharacteristic::RemoteCharacteristicWrite() is
- // successfully complete.
- void OnRemoteCharacteristicWritten();
-
- // Called when there is an error writing to the remote characteristic
- // |tx_characteristic_|.
- void OnWriteRemoteCharacteristicError(
- device::BluetoothRemoteGattService::GattErrorCode error);
-
- void OnPacketReceiverError();
-
- // Prints the time elapsed since |Connect()| was called.
- void PrintTimeElapsed();
-
- // Returns the device corresponding to |remote_device_address_|.
- device::BluetoothDevice* GetRemoteDevice();
-
- // Returns the service corresponding to |remote_service_| in the current
- // device.
- device::BluetoothRemoteGattService* GetRemoteService();
-
- // Returns the characteristic corresponding to |identifier| in the current
- // service.
- device::BluetoothRemoteGattCharacteristic* GetGattCharacteristic(
- const std::string& identifier);
-
- // Get the reason that the other side of the connection decided to close the
- // connection.
- // Will crash if the receiver is not in CONNECTION_CLOSED state.
- std::string GetReasonForClose();
-
- // The Bluetooth adapter over which the Bluetooth connection will be made.
- scoped_refptr<device::BluetoothAdapter> adapter_;
-
- // Remote service the |gatt_connection_| was established with.
- RemoteAttribute remote_service_;
-
- // uWeave packet generator.
- std::unique_ptr<BluetoothLowEnergyWeavePacketGenerator> packet_generator_;
-
- // uWeave packet receiver.
- std::unique_ptr<BluetoothLowEnergyWeavePacketReceiver> packet_receiver_;
-
- // Characteristic used to send data to the remote device.
- RemoteAttribute tx_characteristic_;
-
- // Characteristic used to receive data from the remote device.
- RemoteAttribute rx_characteristic_;
-
- // Throttles repeated connection attempts to the same device. This is a
- // workaround for crbug.com/508919. Not owned, must outlive this instance.
- BluetoothThrottler* bluetooth_throttler_;
-
- scoped_refptr<base::TaskRunner> task_runner_;
-
- // The GATT connection with the remote device.
- std::unique_ptr<device::BluetoothGattConnection> gatt_connection_;
-
- // The characteristics finder for remote device.
- std::unique_ptr<BluetoothLowEnergyCharacteristicsFinder>
- characteristic_finder_;
-
- // The notify session for |rx_characteristic|.
- std::unique_ptr<device::BluetoothGattNotifySession> notify_session_;
-
- // Internal connection status
- SubStatus sub_status_;
-
- // Bytes already received for the current receive operation.
- std::string incoming_bytes_buffer_;
-
- // Indicates there is a
- // BluetoothRemoteGattCharacteristic::WriteRemoteCharacteristic
- // operation pending.
- bool write_remote_characteristic_pending_;
-
- std::queue<WriteRequest> write_requests_queue_;
-
- // Maximum number of tries to send any write request.
- int max_number_of_write_attempts_;
-
- // Stores when the instace was created.
- base::TimeTicks start_time_;
-
- base::WeakPtrFactory<BluetoothLowEnergyWeaveClientConnection>
- weak_ptr_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(BluetoothLowEnergyWeaveClientConnection);
-};
-
-} // namespace weave
-
-} // namespace proximity_auth
-
-#endif // COMPONENTS_PROXIMITY_AUTH_BLE_BLUETOOTH_LOW_ENERGY_WEAVE_CLIENT_CONNECTION_H_
« no previous file with comments | « components/proximity_auth/ble/BUILD.gn ('k') | components/proximity_auth/ble/bluetooth_low_energy_weave_client_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698