1 | /* $Id: RTCRestJsonPrimaryCursor.cpp 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - C++ REST, RTCRestJsonPrimaryCursor implementation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2018-2024 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 | #define LOG_GROUP RTLOGGROUP_REST
|
---|
42 | #include <iprt/cpp/restbase.h>
|
---|
43 |
|
---|
44 | #include <iprt/errcore.h>
|
---|
45 | #include <iprt/string.h>
|
---|
46 |
|
---|
47 |
|
---|
48 | char *RTCRestJsonPrimaryCursor::getPath(RTCRestJsonCursor const &a_rCursor, char *pszDst, size_t cbDst) const RT_NOEXCEPT
|
---|
49 | {
|
---|
50 | AssertReturn(cbDst > 0, NULL);
|
---|
51 |
|
---|
52 | /*
|
---|
53 | * To avoid using recursion, we need to first do a pass to figure sizes
|
---|
54 | * and depth. To keep things simple, with the exception of the top name
|
---|
55 | * we only copy out full names.
|
---|
56 | */
|
---|
57 | /* Special case: Insufficient space for the top name. */
|
---|
58 | size_t const cchTopName = strlen(a_rCursor.m_pszName);
|
---|
59 | if (cchTopName >= cbDst)
|
---|
60 | {
|
---|
61 | memcpy(pszDst, a_rCursor.m_pszName, cbDst - 1);
|
---|
62 | pszDst[cbDst - 1] = '\0';
|
---|
63 | }
|
---|
64 | else
|
---|
65 | {
|
---|
66 | /* Determin how deep we should go and the resulting length. */
|
---|
67 | size_t iMaxDepth = 0;
|
---|
68 | size_t cchTotal = cchTopName;
|
---|
69 | for (RTCRestJsonCursor const *pCur = a_rCursor.m_pParent; pCur; pCur = pCur->m_pParent)
|
---|
70 | {
|
---|
71 | size_t const cchName = strlen(pCur->m_pszName);
|
---|
72 | size_t cchNewTotal = cchName + 1 + cchTotal;
|
---|
73 | if (cchNewTotal < cbDst)
|
---|
74 | cchTotal = cchNewTotal;
|
---|
75 | else
|
---|
76 | break;
|
---|
77 | iMaxDepth++;
|
---|
78 | }
|
---|
79 |
|
---|
80 | /* Produce the string, in reverse. */
|
---|
81 | char *psz = &pszDst[cchTotal];
|
---|
82 | *psz = '\0';
|
---|
83 | psz -= cchTopName;
|
---|
84 | memcpy(psz, a_rCursor.m_pszName, cchTopName);
|
---|
85 | for (RTCRestJsonCursor const *pCur = a_rCursor.m_pParent; pCur && iMaxDepth > 0; pCur = pCur->m_pParent)
|
---|
86 | {
|
---|
87 | psz -= 1;
|
---|
88 | *psz = '.';
|
---|
89 |
|
---|
90 | size_t const cchName = strlen(pCur->m_pszName);
|
---|
91 | psz -= cchName;
|
---|
92 | memcpy(psz, pCur->m_pszName, cchName);
|
---|
93 |
|
---|
94 | iMaxDepth--;
|
---|
95 | }
|
---|
96 | Assert(psz == pszDst);
|
---|
97 | }
|
---|
98 | return pszDst;
|
---|
99 | }
|
---|
100 |
|
---|
101 |
|
---|
102 | int RTCRestJsonPrimaryCursor::addError(RTCRestJsonCursor const &a_rCursor, int a_rc, const char *a_pszFormat, ...) RT_NOEXCEPT
|
---|
103 | {
|
---|
104 | va_list va;
|
---|
105 | va_start(va, a_pszFormat);
|
---|
106 | char szPath[128];
|
---|
107 | a_rc = RTErrInfoAddF(m_pErrInfo, a_rc, "%s: %N\n", getPath(a_rCursor, szPath, sizeof(szPath)), a_pszFormat, &va);
|
---|
108 | va_end(va);
|
---|
109 | return a_rc;
|
---|
110 | }
|
---|
111 |
|
---|
112 |
|
---|
113 | int RTCRestJsonPrimaryCursor::unknownField(RTCRestJsonCursor const &a_rCursor) RT_NOEXCEPT
|
---|
114 | {
|
---|
115 | char szPath[128];
|
---|
116 | return RTErrInfoAddF(m_pErrInfo, VWRN_NOT_FOUND, "%s: unknown field (type %s)\n",
|
---|
117 | getPath(a_rCursor, szPath, sizeof(szPath)),
|
---|
118 | RTJsonValueTypeName(RTJsonValueGetType(a_rCursor.m_hValue)));
|
---|
119 | }
|
---|
120 |
|
---|