Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 1 | #ifndef CPER_UTILS_H |
| 2 | #define CPER_UTILS_H |
| 3 | |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame^] | 4 | #define GUID_STRING_LENGTH 48 |
| 5 | #define TIMESTAMP_LENGTH 24 |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 6 | |
Lawrence Tang | aacf0e2 | 2022-07-20 13:28:52 +0100 | [diff] [blame] | 7 | #include "common-utils.h" |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame^] | 8 | #include <json.h> |
Lawrence Tang | aacf0e2 | 2022-07-20 13:28:52 +0100 | [diff] [blame] | 9 | |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame^] | 10 | json_object * |
| 11 | cper_generic_error_status_to_ir(EFI_GENERIC_ERROR_STATUS *error_status); |
| 12 | void ir_generic_error_status_to_cper( |
| 13 | json_object *error_status, EFI_GENERIC_ERROR_STATUS *error_status_cper); |
| 14 | json_object *uniform_struct_to_ir(UINT32 *start, int len, const char *names[]); |
| 15 | json_object *uniform_struct64_to_ir(UINT64 *start, int len, |
| 16 | const char *names[]); |
| 17 | void ir_to_uniform_struct(json_object *ir, UINT32 *start, int len, |
| 18 | const char *names[]); |
| 19 | void ir_to_uniform_struct64(json_object *ir, UINT64 *start, int len, |
| 20 | const char *names[]); |
| 21 | json_object *integer_to_readable_pair(UINT64 value, int len, int keys[], |
| 22 | const char *values[], |
| 23 | const char *default_value); |
| 24 | json_object *integer_to_readable_pair_with_desc(int value, int len, int keys[], |
| 25 | const char *values[], |
| 26 | const char *descriptions[], |
| 27 | const char *default_value); |
| 28 | UINT64 readable_pair_to_integer(json_object *pair); |
| 29 | json_object *bitfield_to_ir(UINT64 bitfield, int num_fields, |
| 30 | const char *names[]); |
| 31 | UINT64 ir_to_bitfield(json_object *ir, int num_fields, const char *names[]); |
| 32 | json_object *uint64_array_to_ir_array(UINT64 *array, int len); |
| 33 | json_object *revision_to_ir(UINT16 revision); |
| 34 | const char *severity_to_string(UINT32 severity); |
| 35 | void timestamp_to_string(char *out, EFI_ERROR_TIME_STAMP *timestamp); |
| 36 | void string_to_timestamp(EFI_ERROR_TIME_STAMP *out, const char *timestamp); |
| 37 | void guid_to_string(char *out, EFI_GUID *guid); |
| 38 | void string_to_guid(EFI_GUID *out, const char *guid); |
| 39 | int guid_equal(EFI_GUID *a, EFI_GUID *b); |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 40 | |
| 41 | //The available severity types for CPER. |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame^] | 42 | extern const char *CPER_SEVERITY_TYPES[4]; |
Lawrence Tang | 1b0b00e | 2022-07-05 10:33:10 +0100 | [diff] [blame] | 43 | |
John Chung | f8fc705 | 2024-05-03 20:05:29 +0800 | [diff] [blame^] | 44 | #endif |