blob: a7f0a4517d639f776c2be0ed5dfa289d94131dae [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 DIAGNOSTICS_CROS_HEALTHD_CROS_HEALTHD_ROUTINE_FACTORY_H_
#define DIAGNOSTICS_CROS_HEALTHD_CROS_HEALTHD_ROUTINE_FACTORY_H_
#include <cstdint>
#include <memory>
#include <string>
#include <base/optional.h>
#include <base/time/time.h>
#include "diagnostics/common/system/debugd_adapter_impl.h"
#include "diagnostics/cros_healthd/routines/diag_routine.h"
#include "mojo/cros_healthd.mojom.h"
namespace diagnostics {
// Interface for constructing DiagnosticRoutines.
class CrosHealthdRoutineFactory {
public:
virtual ~CrosHealthdRoutineFactory() = default;
// Constructs a new instance of the urandom routine. See
// diagnostics/routines/urandom for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeUrandomRoutine(
uint32_t length_seconds) = 0;
// Constructs a new instance of the battery capacity routine. See
// diagnostics/routines/battery for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeBatteryCapacityRoutine(
uint32_t low_mah, uint32_t high_mah) = 0;
// Constructs a new instance of the battery health routine. See
// diagnostics/routines/battery_sysfs for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeBatteryHealthRoutine(
uint32_t maximum_cycle_count, uint32_t percent_battery_wear_allowed) = 0;
// Constructs a new instance of the smartctl check routine. See
// diagnostics/routines/smartctl_check for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeSmartctlCheckRoutine() = 0;
// Constructs a new instance of the AC power routine. See
// diagnostics/routines/battery_sysfs for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeAcPowerRoutine(
chromeos::cros_healthd::mojom::AcPowerStatusEnum expected_status,
const base::Optional<std::string>& expected_power_type) = 0;
// Constructs a new instance of the CPU cache routine. See
// diagnostics/routines/cpu_cache for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeCpuCacheRoutine(
base::TimeDelta exec_duration) = 0;
// Constructs a new instance of the CPU stress routine. See
// diagnostics/routines/cpu_stress for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeCpuStressRoutine(
base::TimeDelta exec_duration) = 0;
// Constructs a new instance of the floating point accuracy routine. See
// diagnostics/routines/floating_point for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeFloatingPointAccuracyRoutine(
base::TimeDelta exec_duration) = 0;
// Constructs a new instance of the nvme_wear_level routine. See
// diagnostics/routines/nvme_wear_level for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeNvmeWearLevelRoutine(
DebugdAdapter* debugd_adapter, uint32_t wear_level_threshold) = 0;
// Constructs a new instance of the NvmeSelfTest routine. See
// diagnostics/routines/nvme_self_test for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeNvmeSelfTestRoutine(
DebugdAdapter* debugd_adapter,
chromeos::cros_healthd::mojom::NvmeSelfTestTypeEnum
nvme_self_test_type) = 0;
// Constructs a new instance of the disk read routine. See
// diagnostics/routines/disk_read for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeDiskReadRoutine(
chromeos::cros_healthd::mojom::DiskReadRoutineTypeEnum type,
base::TimeDelta exec_duration,
uint32_t file_size_mb) = 0;
// Constructs a new instance of the prime search routine. See
// diagnostics/routines/prime_search for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakePrimeSearchRoutine(
base::TimeDelta exec_duration, uint64_t max_num) = 0;
// Constructs a new instance of the battery discharge routine. See
// diagnostics/routines/battery_discharge for details on the routine itself.
virtual std::unique_ptr<DiagnosticRoutine> MakeBatteryDischargeRoutine(
base::TimeDelta exec_duration,
uint32_t maximum_discharge_percent_allowed) = 0;
};
} // namespace diagnostics
#endif // DIAGNOSTICS_CROS_HEALTHD_CROS_HEALTHD_ROUTINE_FACTORY_H_