blob: 724a1bba96555e8efb6e8618786520b637ee2fd2 [file] [log] [blame]
// Copyright 2019 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_FETCHERS_DISK_FETCHER_H_
#define DIAGNOSTICS_CROS_HEALTHD_FETCHERS_DISK_FETCHER_H_
#include <memory>
#include <base/files/file_path.h>
#include "diagnostics/cros_healthd/fetchers/storage/device_manager.h"
#include "mojo/cros_healthd_probe.mojom.h"
namespace diagnostics {
// The DiskFetcher class is responsible for gathering disk info reported by
// cros_healthd.
class DiskFetcher {
public:
DiskFetcher() = default;
~DiskFetcher() = default;
DiskFetcher(const DiskFetcher&) = delete;
DiskFetcher& operator=(const DiskFetcher&) = delete;
// Returns a structure with either the device's non-removable block device
// info or the error that occurred fetching the information.
chromeos::cros_healthd::mojom::NonRemovableBlockDeviceResultPtr
FetchNonRemovableBlockDevicesInfo(const base::FilePath& root_dir);
private:
std::unique_ptr<StorageDeviceManager> manager_;
Status InitManager(const base::FilePath& root);
};
} // namespace diagnostics
#endif // DIAGNOSTICS_CROS_HEALTHD_FETCHERS_DISK_FETCHER_H_