blob: aa4ce2a79e58e5e48f8c05aac163acf86ad55bd1 [file] [log] [blame]
// Copyright 2020 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/update_client/task_send_registration_ping.h"
#include <utility>
#include "base/bind.h"
#include "base/location.h"
#include "base/threading/sequenced_task_runner_handle.h"
#include "base/version.h"
#include "components/update_client/update_client.h"
#include "components/update_client/update_engine.h"
namespace update_client {
TaskSendRegistrationPing::TaskSendRegistrationPing(
scoped_refptr<UpdateEngine> update_engine,
const std::string& id,
const base::Version& version,
Callback callback)
: update_engine_(update_engine),
id_(id),
version_(version),
callback_(std::move(callback)) {}
TaskSendRegistrationPing::~TaskSendRegistrationPing() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
}
void TaskSendRegistrationPing::Run() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (id_.empty()) {
TaskComplete(Error::INVALID_ARGUMENT);
return;
}
update_engine_->SendRegistrationPing(
id_, version_,
base::BindOnce(&TaskSendRegistrationPing::TaskComplete, this));
}
void TaskSendRegistrationPing::Cancel() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
TaskComplete(Error::UPDATE_CANCELED);
}
std::vector<std::string> TaskSendRegistrationPing::GetIds() const {
return std::vector<std::string>{id_};
}
void TaskSendRegistrationPing::TaskComplete(Error error) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
base::SequencedTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::BindOnce(&TaskSendRegistrationPing::RunCallback, this, error));
}
void TaskSendRegistrationPing::RunCallback(Error error) {
std::move(callback_).Run(this, error);
}
} // namespace update_client