rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | /* Copyright Statement: |
| 2 | * |
| 3 | * This software/firmware and related documentation ("MediaTek Software") are |
| 4 | * protected under relevant copyright laws. The information contained herein |
| 5 | * is confidential and proprietary to MediaTek Inc. and/or its licensors. |
| 6 | * Without the prior written permission of MediaTek inc. and/or its licensors, |
| 7 | * any reproduction, modification, use or disclosure of MediaTek Software, |
| 8 | * and information contained herein, in whole or in part, shall be strictly prohibited. |
| 9 | */ |
| 10 | /* MediaTek Inc. (C) 2010. All rights reserved. |
| 11 | * |
| 12 | * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES |
| 13 | * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE") |
| 14 | * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON |
| 15 | * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES, |
| 16 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF |
| 17 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. |
| 18 | * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE |
| 19 | * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR |
| 20 | * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH |
| 21 | * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES |
| 22 | * THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES |
| 23 | * CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK |
| 24 | * SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR |
| 25 | * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND |
| 26 | * CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE, |
| 27 | * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE, |
| 28 | * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO |
| 29 | * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. |
| 30 | * |
| 31 | * The following software/firmware and/or related documentation ("MediaTek Software") |
| 32 | * have been modified by MediaTek Inc. All revisions are subject to any receiver's |
| 33 | * applicable license agreements with MediaTek Inc. |
| 34 | */ |
| 35 | |
| 36 | #ifndef HEXDUMP_H_ |
| 37 | #define HEXDUMP_H_ |
| 38 | #include <string> |
| 39 | #include <cstdint> |
| 40 | #include <vector> |
| 41 | |
| 42 | class HexDump { |
| 43 | public: |
| 44 | HexDump(); |
| 45 | virtual ~HexDump(); |
| 46 | static std::string dumpHexString(uint8_t* array, int length); |
| 47 | static std::string dumpHexString(uint8_t* array, uint32_t offset, int length); |
| 48 | static std::string toHexString(uint8_t b); |
| 49 | static std::string toHexString(uint8_t* array, int length, bool free); |
| 50 | static std::string toHexString(uint8_t* array, int length, bool upperCase, |
| 51 | bool free); |
| 52 | static std::string toHexString(uint8_t* array, int offset, int length, |
| 53 | bool free); |
| 54 | static std::string toHexString(uint8_t* array, int offset, int length, |
| 55 | bool upperCase, bool free); |
| 56 | |
| 57 | static std::string toHexString(uint32_t i); |
| 58 | static uint8_t* toByteArray(uint8_t b, int* length); |
| 59 | static uint8_t* toByteArray(uint32_t i, int* length); |
| 60 | static uint32_t toByte(char c); |
| 61 | static uint8_t* hexStringToByteArray(std::string hexString, int* length); |
| 62 | static std::string appendByteAsHex(std::string& sb, uint8_t b, |
| 63 | bool upperCase); |
| 64 | static std::string toHexString(std::vector<uint8_t> v); |
| 65 | private: |
| 66 | static const char HEX_DIGITS[]; |
| 67 | static const char HEX_LOWER_CASE_DIGITS[]; |
| 68 | }; |
| 69 | |
| 70 | #endif /* HEXDUMP_H_ */ |