1 | /* $Id: RTStrPrintHexBytes.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - RTStrPrintHexBytes.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include "internal/iprt.h"
|
---|
42 | #include <iprt/string.h>
|
---|
43 |
|
---|
44 | #include <iprt/assert.h>
|
---|
45 | #include <iprt/errcore.h>
|
---|
46 |
|
---|
47 |
|
---|
48 | RTDECL(int) RTStrPrintHexBytes(char *pszBuf, size_t cbBuf, void const *pv, size_t cb, uint32_t fFlags)
|
---|
49 | {
|
---|
50 | AssertReturn( !(fFlags & ~(RTSTRPRINTHEXBYTES_F_UPPER | RTSTRPRINTHEXBYTES_F_SEP_SPACE | RTSTRPRINTHEXBYTES_F_SEP_COLON))
|
---|
51 | && (fFlags & (RTSTRPRINTHEXBYTES_F_SEP_SPACE | RTSTRPRINTHEXBYTES_F_SEP_COLON))
|
---|
52 | != (RTSTRPRINTHEXBYTES_F_SEP_SPACE | RTSTRPRINTHEXBYTES_F_SEP_COLON),
|
---|
53 | VERR_INVALID_FLAGS);
|
---|
54 | AssertPtrReturn(pszBuf, VERR_INVALID_POINTER);
|
---|
55 | AssertReturn(cb * 2 >= cb, VERR_BUFFER_OVERFLOW);
|
---|
56 | char const chSep = fFlags & RTSTRPRINTHEXBYTES_F_SEP_SPACE ? ' '
|
---|
57 | : fFlags & RTSTRPRINTHEXBYTES_F_SEP_COLON ? ':' : '\0';
|
---|
58 | AssertReturn(cbBuf >= cb * (2 + (chSep != '\0')) - (chSep != '\0') + 1, VERR_BUFFER_OVERFLOW);
|
---|
59 | if (cb)
|
---|
60 | AssertPtrReturn(pv, VERR_INVALID_POINTER);
|
---|
61 |
|
---|
62 | static char const s_szHexDigitsLower[17] = "0123456789abcdef";
|
---|
63 | static char const s_szHexDigitsUpper[17] = "0123456789ABCDEF";
|
---|
64 | const char *pszHexDigits = !(fFlags & RTSTRPRINTHEXBYTES_F_UPPER) ? s_szHexDigitsLower : s_szHexDigitsUpper;
|
---|
65 |
|
---|
66 | uint8_t const *pb = (uint8_t const *)pv;
|
---|
67 |
|
---|
68 | if (!chSep)
|
---|
69 | {
|
---|
70 | while (cb-- > 0)
|
---|
71 | {
|
---|
72 | uint8_t b = *pb++;
|
---|
73 | *pszBuf++ = pszHexDigits[b >> 4];
|
---|
74 | *pszBuf++ = pszHexDigits[b & 0xf];
|
---|
75 | }
|
---|
76 | }
|
---|
77 | else if (cb-- > 0)
|
---|
78 | {
|
---|
79 | uint8_t b = *pb++;
|
---|
80 | *pszBuf++ = pszHexDigits[b >> 4];
|
---|
81 | *pszBuf++ = pszHexDigits[b & 0xf];
|
---|
82 |
|
---|
83 | while (cb-- > 0)
|
---|
84 | {
|
---|
85 | b = *pb++;
|
---|
86 | *pszBuf++ = chSep;
|
---|
87 | *pszBuf++ = pszHexDigits[b >> 4];
|
---|
88 | *pszBuf++ = pszHexDigits[b & 0xf];
|
---|
89 | }
|
---|
90 | }
|
---|
91 |
|
---|
92 | *pszBuf = '\0';
|
---|
93 | return VINF_SUCCESS;
|
---|
94 | }
|
---|
95 |
|
---|