1 #pragma once 2 3 #include <string> 4 #include <unordered_map> 5 6 namespace vpd 7 { 8 enum error_code 9 { 10 // File exceptions 11 FILE_NOT_FOUND = 2001, /*Just a random value*/ 12 FILE_ACCESS_ERROR, 13 EMPTY_FILE, 14 FILE_SYSTEM_ERROR, 15 16 // JSON exceptions 17 INVALID_JSON, 18 MISSING_FLAG, 19 MISSING_ACTION_TAG, 20 FRU_PATH_NOT_FOUND, 21 JSON_PARSE_ERROR, 22 JSON_MISSING_GPIO_INFO, 23 JSON_MISSING_SERVICE_NAME, 24 REDUNDANT_PATH_NOT_FOUND, 25 ERROR_GETTING_REDUNDANT_PATH, 26 NO_EEPROM_PATH, 27 28 // Generic errors. 29 INVALID_INPUT_PARAMETER, 30 DEVICE_NOT_PRESENT, 31 DEVICE_PRESENCE_UNKNOWN, 32 GPIO_LINE_EXCEPTION, 33 ERROR_PROCESSING_SYSTEM_CMD, 34 STANDARD_EXCEPTION, 35 DBUS_FAILURE, 36 POPEN_FAILED, 37 INVALID_HEXADECIMAL_VALUE_LENGTH, 38 INVALID_HEXADECIMAL_VALUE, 39 40 // VPD specific errors 41 UNSUPPORTED_VPD_TYPE, 42 KEYWORD_NOT_FOUND, 43 OUT_OF_BOUND_EXCEPTION, 44 FAILED_TO_DETECT_LOCATION_CODE_TYPE, 45 RECEIVED_INVALID_KWD_TYPE_FROM_DBUS, 46 INVALID_KEYWORD_LENGTH, 47 INVALID_VALUE_READ_FROM_DBUS, 48 RECORD_NOT_FOUND 49 }; 50 51 const std::unordered_map<int, std::string> errorCodeMap = { 52 {error_code::FILE_NOT_FOUND, "File does not exist."}, 53 {error_code::FILE_ACCESS_ERROR, "Failed to access the file."}, 54 {error_code::EMPTY_FILE, "Empty file."}, 55 {error_code::INVALID_JSON, 56 "Either JSON is missing FRU tag or invalid JSON object."}, 57 {error_code::MISSING_FLAG, 58 "JSON is missing the flag to procees for the FRU."}, 59 {error_code::MISSING_ACTION_TAG, 60 "JSON is missing the action tag to be performed for the FRU."}, 61 {error_code::FRU_PATH_NOT_FOUND, "The FRU path is not found in the JSON."}, 62 {error_code::JSON_PARSE_ERROR, "Error while parsing JSON file."}, 63 {error_code::INVALID_INPUT_PARAMETER, 64 "Either one of the input parameter is invalid or empty."}, 65 {error_code::JSON_MISSING_GPIO_INFO, "JSON missing required GPIO info."}, 66 {error_code::JSON_MISSING_SERVICE_NAME, 67 "JSON missing the service name for the FRU"}, 68 {error_code::REDUNDANT_PATH_NOT_FOUND, "No redundant path for the FRU."}, 69 {error_code::ERROR_GETTING_REDUNDANT_PATH, 70 "Error while trying to get redundant path for the FRU"}, 71 {error_code::NO_EEPROM_PATH, "EEPROM path not found."}, 72 {error_code::DEVICE_NOT_PRESENT, 73 "Presence pin read successfully but device was absent."}, 74 {error_code::DEVICE_PRESENCE_UNKNOWN, "Exception on presence line GPIO."}, 75 {error_code::GPIO_LINE_EXCEPTION, "There was an exception in GPIO line."}, 76 {error_code::ERROR_PROCESSING_SYSTEM_CMD, 77 "Error while executing system command tag."}, 78 {error_code::KEYWORD_NOT_FOUND, "Keyword not found"}, 79 {error_code::OUT_OF_BOUND_EXCEPTION, "Out of bound error"}, 80 {error_code::UNSUPPORTED_VPD_TYPE, "This VPD type is not supported"}, 81 {error_code::STANDARD_EXCEPTION, "Standard Exception thrown"}, 82 {error_code::FILE_SYSTEM_ERROR, "File system error."}, 83 {error_code::INVALID_KEYWORD_LENGTH, "Invalid keyword length."}, 84 {error_code::INVALID_VALUE_READ_FROM_DBUS, "Invalid value read from DBus"}, 85 {error_code::RECORD_NOT_FOUND, "Record not found."}, 86 {error_code::FAILED_TO_DETECT_LOCATION_CODE_TYPE, 87 "Failed to detect location code type"}, 88 {error_code::DBUS_FAILURE, "Dbus call failed"}, 89 {error_code::RECEIVED_INVALID_KWD_TYPE_FROM_DBUS, 90 "Received invalid keyword data type from DBus."}, 91 {error_code::POPEN_FAILED, "popen failed"}, 92 {error_code::INVALID_HEXADECIMAL_VALUE_LENGTH, 93 "Invalid hexadecimal value length."}, 94 {error_code::INVALID_HEXADECIMAL_VALUE, "Invalid hexadecimal value."}}; 95 } // namespace vpd 96