blob: 3e082b96a704c81227b8ed90a013054cf1f63767 [file] [log] [blame]
// Copyright 2017 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/action_runner.h"
#include <utility>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/command_line.h"
#include "base/location.h"
#include "base/process/launch.h"
#include "base/process/process.h"
#include "base/single_thread_task_runner.h"
#include "base/task_scheduler/post_task.h"
#include "components/update_client/task_traits.h"
namespace {
const base::FilePath::CharType kRecoveryFileName[] =
FILE_PATH_LITERAL("ChromeRecovery.exe");
} // namespace
namespace update_client {
void ActionRunner::RunCommand(const base::CommandLine& cmdline) {
base::LaunchOptions options;
options.start_hidden = true;
base::Process process = base::LaunchProcess(cmdline, options);
base::PostTaskWithTraits(
FROM_HERE, kTaskTraitsRunCommand,
base::BindOnce(&ActionRunner::WaitForCommand, base::Unretained(this),
std::move(process)));
}
void ActionRunner::WaitForCommand(base::Process process) {
int exit_code = 0;
const base::TimeDelta kMaxWaitTime = base::TimeDelta::FromSeconds(600);
const bool succeeded =
process.WaitForExitWithTimeout(kMaxWaitTime, &exit_code);
main_task_runner_->PostTask(
FROM_HERE, base::BindOnce(run_complete_, succeeded, exit_code, 0));
}
base::CommandLine ActionRunner::MakeCommandLine(
const base::FilePath& unpack_path) const {
return base::CommandLine(unpack_path.Append(kRecoveryFileName));
}
} // namespace update_client