blob: d49113e24a2dc8560c80f47d8d1d4ef91c17f580 [file] [log] [blame]
// Copyright 2014 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.
#include "components/pairing/shark_connection_listener.h"
#include <utility>
#include "base/logging.h"
#include "base/threading/thread_restrictions.h"
#include "components/pairing/bluetooth_host_pairing_controller.h"
#include "services/service_manager/public/cpp/connector.h"
namespace pairing_chromeos {
SharkConnectionListener::SharkConnectionListener(
service_manager::Connector* connector,
OnConnectedCallback callback)
: callback_(callback) {
controller_.reset(new BluetoothHostPairingController(connector));
controller_->AddObserver(this);
controller_->StartPairing();
}
SharkConnectionListener::~SharkConnectionListener() {
if (controller_.get())
controller_->RemoveObserver(this);
}
void SharkConnectionListener::ResetController() {
if (controller_.get()) {
controller_->RemoveObserver(this);
controller_->Reset();
}
}
BluetoothHostPairingController*
SharkConnectionListener::GetControllerForTesting() {
return static_cast<BluetoothHostPairingController*>(controller_.get());
}
void SharkConnectionListener::PairingStageChanged(Stage new_stage) {
if (new_stage == HostPairingController::STAGE_WAITING_FOR_CODE_CONFIRMATION
// Code confirmation stage can be skipped if devices were paired before.
|| new_stage == HostPairingController::STAGE_SETUP_BASIC_CONFIGURATION) {
controller_->RemoveObserver(this);
callback_.Run(std::move(controller_));
callback_.Reset();
} else if (new_stage != HostPairingController::STAGE_WAITING_FOR_CONTROLLER) {
LOG(ERROR) << "Unexpected stage " << new_stage;
}
}
} // namespace pairing_chromeos