Rekha Aparna | 5e3ff85 | 2025-08-12 10:51:23 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Rekha Aparna | 9443af2 | 2025-08-28 02:40:08 -0500 | [diff] [blame] | 3 | #include <string> |
| 4 | #include <unordered_map> |
| 5 | |
Rekha Aparna | 5e3ff85 | 2025-08-12 10:51:23 -0500 | [diff] [blame] | 6 | namespace vpd |
| 7 | { |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 8 | enum error_code |
Rekha Aparna | 5e3ff85 | 2025-08-12 10:51:23 -0500 | [diff] [blame] | 9 | { |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 10 | // File exceptions |
| 11 | FILE_NOT_FOUND = 2001, /*Just a random value*/ |
| 12 | FILE_ACCESS_ERROR, |
| 13 | EMPTY_FILE, |
Rekha Aparna | 5e3ff85 | 2025-08-12 10:51:23 -0500 | [diff] [blame] | 14 | |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 15 | // JSON exceptions |
| 16 | INVALID_JSON, |
| 17 | MISSING_FLAG, |
| 18 | MISSING_ACTION_TAG, |
| 19 | FRU_PATH_NOT_FOUND, |
| 20 | JSON_PARSE_ERROR, |
| 21 | JSON_MISSING_GPIO_INFO, |
Rekha Aparna | e0d24c0 | 2025-09-02 00:15:06 -0500 | [diff] [blame] | 22 | JSON_MISSING_SERVICE_NAME, |
Rekha Aparna | 2d6f071 | 2025-09-02 03:52:57 -0500 | [diff] [blame] | 23 | REDUNDANT_PATH_NOT_FOUND, |
| 24 | ERROR_GETTING_REDUNDANT_PATH, |
| 25 | NO_EEPROM_PATH, |
Rekha Aparna | 5e3ff85 | 2025-08-12 10:51:23 -0500 | [diff] [blame] | 26 | |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 27 | // Generic errors. |
| 28 | INVALID_INPUT_PARAMETER, |
| 29 | DEVICE_NOT_PRESENT, |
| 30 | DEVICE_PRESENCE_UNKNOWN, |
Rekha Aparna | 41f47e7 | 2025-09-18 01:44:09 -0500 | [diff] [blame^] | 31 | GPIO_LINE_EXCEPTION, |
| 32 | ERROR_PROCESSING_SYSTEM_CMD |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 33 | }; |
Rekha Aparna | 9443af2 | 2025-08-28 02:40:08 -0500 | [diff] [blame] | 34 | |
| 35 | const std::unordered_map<int, std::string> errorCodeMap = { |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 36 | {error_code::FILE_NOT_FOUND, "File does not exist."}, |
| 37 | {error_code::FILE_ACCESS_ERROR, "Failed to access the file."}, |
| 38 | {error_code::EMPTY_FILE, "Empty file."}, |
| 39 | {error_code::INVALID_JSON, |
| 40 | "Either JSON is missing FRU tag or invalid JSON object."}, |
| 41 | {error_code::MISSING_FLAG, |
| 42 | "JSON is missing the flag to procees for the FRU."}, |
| 43 | {error_code::MISSING_ACTION_TAG, |
Rekha Aparna | 9443af2 | 2025-08-28 02:40:08 -0500 | [diff] [blame] | 44 | "JSON is missing the action tag to be performed for the FRU."}, |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 45 | {error_code::FRU_PATH_NOT_FOUND, "The FRU path is not found in the JSON."}, |
| 46 | {error_code::JSON_PARSE_ERROR, "Error while parsing JSON file."}, |
| 47 | {error_code::INVALID_INPUT_PARAMETER, |
Sunny Srivastava | 84c3d23 | 2025-09-03 00:47:10 -0500 | [diff] [blame] | 48 | "Either one of the input parameter is invalid or empty."}, |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 49 | {error_code::JSON_MISSING_GPIO_INFO, "JSON missing required GPIO info."}, |
Rekha Aparna | e0d24c0 | 2025-09-02 00:15:06 -0500 | [diff] [blame] | 50 | {error_code::JSON_MISSING_SERVICE_NAME, |
| 51 | "JSON missing the service name for the FRU"}, |
Rekha Aparna | 2d6f071 | 2025-09-02 03:52:57 -0500 | [diff] [blame] | 52 | {error_code::REDUNDANT_PATH_NOT_FOUND, "No redundant path for the FRU."}, |
| 53 | {error_code::ERROR_GETTING_REDUNDANT_PATH, |
| 54 | "Error while trying to get redundant path for the FRU"}, |
| 55 | {error_code::NO_EEPROM_PATH, "EEPROM path not found."}, |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 56 | {error_code::DEVICE_NOT_PRESENT, |
Sunny Srivastava | 84c3d23 | 2025-09-03 00:47:10 -0500 | [diff] [blame] | 57 | "Presence pin read successfully but device was absent."}, |
Sunny Srivastava | ad7e25e | 2025-09-04 09:43:21 -0500 | [diff] [blame] | 58 | {error_code::DEVICE_PRESENCE_UNKNOWN, "Exception on presence line GPIO."}, |
Rekha Aparna | 41f47e7 | 2025-09-18 01:44:09 -0500 | [diff] [blame^] | 59 | {error_code::GPIO_LINE_EXCEPTION, "There was an exception in GPIO line."}, |
| 60 | {error_code::ERROR_PROCESSING_SYSTEM_CMD, |
| 61 | "Error while executing system command tag."}}; |
Rekha Aparna | 5e3ff85 | 2025-08-12 10:51:23 -0500 | [diff] [blame] | 62 | } // namespace vpd |