1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
|
/** @file
* IPRT - C++ Representational State Transfer (REST) Output Classes.
*/
/*
* Copyright (C) 2008-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_cpp_restoutput_h
#define IPRT_INCLUDED_cpp_restoutput_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/stdarg.h>
#include <iprt/cpp/ministring.h>
/** @defgroup grp_rt_cpp_restoutput C++ Representational State Transfer (REST) Output Classes.
* @ingroup grp_rt_cpp
* @{
*/
/**
* Abstract base class for serializing data objects.
*/
class RT_DECL_CLASS RTCRestOutputBase
{
public:
RTCRestOutputBase() RT_NOEXCEPT;
virtual ~RTCRestOutputBase();
RTCRestOutputBase(const RTCRestOutputBase &a_rThat) RT_NOEXCEPT;
RTCRestOutputBase &operator=(const RTCRestOutputBase &a_rThat) RT_NOEXCEPT;
/**
* Raw output function.
*
* @returns Number of bytes outputted.
* @param a_pchString The string to output (not necessarily terminated).
* @param a_cchToWrite The length of the string
*/
virtual size_t output(const char *a_pchString, size_t a_cchToWrite) RT_NOEXCEPT = 0;
/**
* RTStrPrintf like function (see @ref pg_rt_str_format).
*
* @returns Number of bytes outputted.
* @param pszFormat The format string.
* @param ... Argument specfied in @a pszFormat.
*/
inline size_t printf(const char *pszFormat, ...) RT_NOEXCEPT RT_IPRT_FORMAT_ATTR(2, 3)
{
va_list va;
va_start(va, pszFormat);
size_t cchWritten = this->vprintf(pszFormat, va);
va_end(va);
return cchWritten;
}
/**
* RTStrPrintfV like function (see @ref pg_rt_str_format).
*
* @returns Number of bytes outputted.
* @param pszFormat The format string.
* @param va Argument specfied in @a pszFormat.
*/
size_t vprintf(const char *pszFormat, va_list va) RT_NOEXCEPT RT_IPRT_FORMAT_ATTR(2, 0);
/**
* Begins an array.
* @returns Previous output state. Pass to endArray() when done.
*/
virtual uint32_t beginArray() RT_NOEXCEPT;
/**
* Ends an array.
* @param a_uOldState Previous output state (returned by beginArray()).
*/
virtual void endArray(uint32_t a_uOldState) RT_NOEXCEPT;
/**
* Begins an object.
* @returns Previous output state. Pass to endObject() when done.
*/
virtual uint32_t beginObject() RT_NOEXCEPT;
/**
* Ends an array.
* @param a_uOldState Previous output state (returned by beginObject()).
*/
virtual void endObject(uint32_t a_uOldState) RT_NOEXCEPT;
/**
* Outputs a value separator.
* This is called before a value, not after.
*/
virtual void valueSeparator() RT_NOEXCEPT;
/**
* Outputs a value separator, name and name separator.
*/
virtual void valueSeparatorAndName(const char *a_pszName, size_t a_cchName) RT_NOEXCEPT;
/** Outputs a null-value. */
void nullValue() RT_NOEXCEPT;
protected:
/** The current indentation level (bits 15:0) and separator state (bit 31). */
uint32_t m_uState;
/** @callback_method_impl{FNRTSTROUTPUT} */
static DECLCALLBACK(size_t) printfOutputCallback(void *pvArg, const char *pachChars, size_t cbChars) RT_NOEXCEPT;
};
/**
* Abstract base class for pretty output.
*/
class RT_DECL_CLASS RTCRestOutputPrettyBase : public RTCRestOutputBase
{
public:
RTCRestOutputPrettyBase() RT_NOEXCEPT;
virtual ~RTCRestOutputPrettyBase();
RTCRestOutputPrettyBase(const RTCRestOutputPrettyBase &a_rThat) RT_NOEXCEPT;
RTCRestOutputPrettyBase &operator=(const RTCRestOutputPrettyBase &a_rThat) RT_NOEXCEPT;
/**
* Begins an array.
* @returns Previous output state. Pass to endArray() when done.
*/
virtual uint32_t beginArray() RT_NOEXCEPT RT_OVERRIDE;
/**
* Ends an array.
* @param a_uOldState Previous output state (returned by beginArray()).
*/
virtual void endArray(uint32_t a_uOldState) RT_NOEXCEPT RT_OVERRIDE;
/**
* Begins an object.
* @returns Previous output state. Pass to endObject() when done.
*/
virtual uint32_t beginObject() RT_NOEXCEPT RT_OVERRIDE;
/**
* Ends an array.
* @param a_uOldState Previous output state (returned by beginObject()).
*/
virtual void endObject(uint32_t a_uOldState) RT_NOEXCEPT RT_OVERRIDE;
/**
* Outputs a value separator.
* This is called before a value, not after.
*/
virtual void valueSeparator() RT_NOEXCEPT RT_OVERRIDE;
/**
* Outputs a value separator, name and name separator.
*/
virtual void valueSeparatorAndName(const char *a_pszName, size_t a_cchName) RT_NOEXCEPT RT_OVERRIDE;
protected:
/** Helper for outputting the correct amount of indentation. */
void outputIndentation() RT_NOEXCEPT;
};
/**
* Serialize to a string object.
*/
class RT_DECL_CLASS RTCRestOutputToString : public RTCRestOutputBase
{
public:
/**
* Creates an instance that appends to @a a_pDst.
* @param a_pDst Pointer to the destination string object.
* NULL is not accepted and will assert.
* @param a_fAppend Whether to append to the current string value, or
* nuke the string content before starting the output.
*/
RTCRestOutputToString(RTCString *a_pDst, bool a_fAppend = false) RT_NOEXCEPT;
virtual ~RTCRestOutputToString();
virtual size_t output(const char *a_pchString, size_t a_cchToWrite) RT_NOEXCEPT RT_OVERRIDE;
/**
* Finalizes the output and releases the string object to the caller.
*
* @returns The released string object. NULL if we ran out of memory or if
* called already.
*
* @remark This sets m_pDst to NULL and the object cannot be use for any
* more output afterwards.
*/
virtual RTCString *finalize() RT_NOEXCEPT;
protected:
/** Pointer to the destination string. NULL after finalize(). */
RTCString *m_pDst;
/** Set if we ran out of memory and should ignore subsequent calls. */
bool m_fOutOfMemory;
/* Make non-copyable (RTCNonCopyable causes warnings): */
#if RT_CPLUSPLUS_PREREQ(201100)
RTCRestOutputToString(RTCRestOutputToString const &) = delete;
RTCRestOutputToString *operator=(RTCRestOutputToString const &) = delete;
#else
RTCRestOutputToString(RTCRestOutputToString const &);
RTCRestOutputToString *operator=(RTCRestOutputToString const &);
#endif
};
/**
* Serialize pretty JSON to a string object.
*/
class RT_DECL_CLASS RTCRestOutputPrettyToString : public RTCRestOutputPrettyBase
{
public:
/**
* Creates an instance that appends to @a a_pDst.
* @param a_pDst Pointer to the destination string object.
* NULL is not accepted and will assert.
* @param a_fAppend Whether to append to the current string value, or
* nuke the string content before starting the output.
*/
RTCRestOutputPrettyToString(RTCString *a_pDst, bool a_fAppend = false) RT_NOEXCEPT;
virtual ~RTCRestOutputPrettyToString();
virtual size_t output(const char *a_pchString, size_t a_cchToWrite) RT_NOEXCEPT RT_OVERRIDE;
/**
* Finalizes the output and releases the string object to the caller.
*
* @returns The released string object. NULL if we ran out of memory or if
* called already.
*
* @remark This sets m_pDst to NULL and the object cannot be use for any
* more output afterwards.
*/
virtual RTCString *finalize() RT_NOEXCEPT;
protected:
/** Pointer to the destination string. NULL after finalize(). */
RTCString *m_pDst;
/** Set if we ran out of memory and should ignore subsequent calls. */
bool m_fOutOfMemory;
/* Make non-copyable (RTCNonCopyable causes warnings): */
#if RT_CPLUSPLUS_PREREQ(201100)
RTCRestOutputPrettyToString(RTCRestOutputToString const &) = delete;
RTCRestOutputPrettyToString *operator=(RTCRestOutputToString const &) = delete;
#else
RTCRestOutputPrettyToString(RTCRestOutputToString const &);
RTCRestOutputPrettyToString *operator=(RTCRestOutputToString const &);
#endif
};
/** @} */
#endif /* !IPRT_INCLUDED_cpp_restoutput_h */
|