John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "erase.hpp" |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 4 | #include "util.hpp" |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 5 | |
| 6 | #include <string_view> |
| 7 | |
John Edward Broadbent | d3bfa7b | 2022-01-13 17:41:32 -0800 | [diff] [blame] | 8 | namespace estoraged |
| 9 | { |
| 10 | |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 11 | class VerifyDriveGeometry : public Erase |
| 12 | { |
| 13 | public: |
| 14 | /** @brief Creates a verifyDriveGeomentry erase object. |
| 15 | * |
| 16 | * @param[in] inDevPath - the linux device path for the block device. |
| 17 | */ |
| 18 | VerifyDriveGeometry(std::string_view inDevPath) : Erase(inDevPath) |
| 19 | {} |
| 20 | |
| 21 | /** @brief Test if input is in between the max and min expected sizes, |
| 22 | * and throws errors accordingly. |
| 23 | * |
| 24 | * @param[in] bytes - Size of the block device |
| 25 | */ |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 26 | void geometryOkay() |
| 27 | { |
John Edward Broadbent | 5d799bb | 2022-03-22 16:14:24 -0700 | [diff] [blame^] | 28 | geometryOkay(util::findSizeOfBlockDevice(devPath)); |
John Edward Broadbent | a6e3b99 | 2022-03-17 14:33:15 -0700 | [diff] [blame] | 29 | } |
John Edward Broadbent | e6ffe70 | 2021-10-14 14:03:11 -0700 | [diff] [blame] | 30 | void geometryOkay(uint64_t bytes); |
| 31 | }; |
John Edward Broadbent | d3bfa7b | 2022-01-13 17:41:32 -0800 | [diff] [blame] | 32 | |
| 33 | } // namespace estoraged |