VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/string/straprintf.cpp

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 7.0 KB
Line 
1/* $Id: straprintf.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - Allocating String Formatters.
4 */
5
6/*
7 * Copyright (C) 2006-2023 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 <iprt/string.h>
42#include "internal/iprt.h"
43
44#include <iprt/assert.h>
45#include <iprt/alloc.h>
46
47
48/*********************************************************************************************************************************
49* Structures and Typedefs *
50*********************************************************************************************************************************/
51/** strallocoutput() argument structure. */
52typedef struct STRALLOCARG
53{
54 /** Pointer to current buffer position. */
55 char *psz;
56 /** Number of bytes left in the buffer - not including the trailing zero. */
57 size_t cch;
58 /** Pointer to the start of the buffer. */
59 char *pszBuffer;
60 /** The number of bytes in the buffer. */
61 size_t cchBuffer;
62 /** Set if the buffer was allocated using RTMemRealloc(). If clear
63 * pszBuffer points to the initial stack buffer. */
64 bool fAllocated;
65 /** Allocation tag used for statistics and such. */
66 const char *pszTag;
67} STRALLOCARG;
68/** Pointer to a strallocoutput() argument structure. */
69typedef STRALLOCARG *PSTRALLOCARG;
70
71
72/*********************************************************************************************************************************
73* Internal Functions *
74*********************************************************************************************************************************/
75static DECLCALLBACK(size_t) strallocoutput(void *pvArg, const char *pachChars, size_t cbChars);
76
77
78/**
79 * Output callback.
80 *
81 * @returns number of bytes written.
82 * @param pvArg Pointer to a STRBUFARG structure.
83 * @param pachChars Pointer to an array of utf-8 characters.
84 * @param cbChars Number of bytes in the character array pointed to by pachChars.
85 */
86static DECLCALLBACK(size_t) strallocoutput(void *pvArg, const char *pachChars, size_t cbChars)
87{
88 PSTRALLOCARG pArg = (PSTRALLOCARG)pvArg;
89 if (pArg->psz)
90 {
91 /*
92 * The fast path
93 */
94 if (cbChars <= pArg->cch)
95 {
96 if (cbChars)
97 {
98 memcpy(pArg->psz, pachChars, cbChars);
99 pArg->cch -= cbChars;
100 pArg->psz += cbChars;
101 }
102 *pArg->psz = '\0';
103 return cbChars;
104 }
105
106 /*
107 * Need to (re)allocate the buffer.
108 */
109 size_t cbAdded = RT_MIN(pArg->cchBuffer, _1M);
110 if (cbAdded <= cbChars)
111 cbAdded = RT_ALIGN_Z(cbChars, _4K);
112 if (cbAdded <= _1G)
113 {
114 char *pszBuffer = (char *)RTMemReallocTag(pArg->fAllocated ? pArg->pszBuffer : NULL,
115 cbAdded + pArg->cchBuffer, pArg->pszTag);
116 if (pszBuffer)
117 {
118 size_t off = pArg->psz - pArg->pszBuffer;
119 if (!pArg->fAllocated)
120 {
121 memcpy(pszBuffer, pArg->pszBuffer, off);
122 pArg->fAllocated = true;
123 }
124
125 pArg->pszBuffer = pszBuffer;
126 pArg->cchBuffer += cbAdded;
127 pArg->psz = pszBuffer + off;
128 pArg->cch += cbAdded;
129
130 if (cbChars)
131 {
132 memcpy(pArg->psz, pachChars, cbChars);
133 pArg->cch -= cbChars;
134 pArg->psz += cbChars;
135 }
136 *pArg->psz = '\0';
137 return cbChars;
138 }
139 /* else allocation failure */
140 }
141 /* else wrap around */
142
143 /* failure */
144 pArg->psz = NULL;
145 }
146 return 0;
147}
148
149
150RTDECL(int) RTStrAPrintfVTag(char **ppszBuffer, const char *pszFormat, va_list args, const char *pszTag)
151{
152#ifdef IN_RING3
153 char szBuf[2048];
154#else
155 char szBuf[256];
156#endif
157 STRALLOCARG Arg;
158 Arg.fAllocated = false;
159 Arg.cchBuffer = sizeof(szBuf);
160 Arg.pszBuffer = szBuf;
161 Arg.cch = sizeof(szBuf) - 1;
162 Arg.psz = szBuf;
163 Arg.pszTag = pszTag;
164 szBuf[0] = '\0';
165 int cbRet = (int)RTStrFormatV(strallocoutput, &Arg, NULL, NULL, pszFormat, args);
166 if (Arg.psz)
167 {
168 if (!Arg.fAllocated)
169 {
170 /* duplicate the string in szBuf */
171 Assert(Arg.pszBuffer == szBuf);
172 char *psz = (char *)RTMemAllocTag(cbRet + 1, pszTag);
173 if (psz)
174 memcpy(psz, szBuf, cbRet + 1);
175 *ppszBuffer = psz;
176 }
177 else
178 {
179 /* adjust the allocated buffer */
180 char *psz = (char *)RTMemReallocTag(Arg.pszBuffer, cbRet + 1, pszTag);
181 *ppszBuffer = psz ? psz : Arg.pszBuffer;
182 }
183 }
184 else
185 {
186 /* allocation error */
187 *ppszBuffer = NULL;
188 cbRet = -1;
189
190 /* free any allocated buffer */
191 if (Arg.fAllocated)
192 RTMemFree(Arg.pszBuffer);
193 }
194
195 return cbRet;
196}
197RT_EXPORT_SYMBOL(RTStrAPrintfVTag);
198
199
200RTDECL(char *) RTStrAPrintf2VTag(const char *pszFormat, va_list args, const char *pszTag)
201{
202 char *pszBuffer;
203 RTStrAPrintfVTag(&pszBuffer, pszFormat, args, pszTag);
204 return pszBuffer;
205}
206RT_EXPORT_SYMBOL(RTStrAPrintf2VTag);
207
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use