VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/asn1/asn1-ut-null.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 Author Date Id Revision
File size: 4.5 KB
Line 
1/* $Id: asn1-ut-null.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - ASN.1, NULL type.
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 "internal/iprt.h"
42#include <iprt/asn1.h>
43
44#include <iprt/err.h>
45#include <iprt/string.h>
46
47#include <iprt/formats/asn1.h>
48
49
50/*
51 * ASN.1 NULL - Special Methods.
52 */
53
54
55/*
56 * ASN.1 NULL - Standard Methods.
57 */
58
59
60RT_DECL_DATA_CONST(RTASN1COREVTABLE const) g_RTAsn1Null_Vtable =
61{
62 "RTAsn1Null",
63 sizeof(RTASN1NULL),
64 ASN1_TAG_NULL,
65 ASN1_TAGCLASS_UNIVERSAL | ASN1_TAGFLAG_PRIMITIVE,
66 0,
67 (PFNRTASN1COREVTDTOR)RTAsn1Null_Delete,
68 (PFNRTASN1COREVTENUM)RTAsn1Null_Enum,
69 (PFNRTASN1COREVTCLONE)RTAsn1Null_Clone,
70 (PFNRTASN1COREVTCOMPARE)RTAsn1Null_Compare,
71 (PFNRTASN1COREVTCHECKSANITY)RTAsn1Null_CheckSanity,
72 NULL,
73 NULL
74};
75
76
77RTDECL(int) RTAsn1Null_Init(PRTASN1NULL pThis, PCRTASN1ALLOCATORVTABLE pAllocator)
78{
79 RT_NOREF_PV(pAllocator);
80 return RTAsn1Core_InitEx(&pThis->Asn1Core, ASN1_TAG_NULL, ASN1_TAGCLASS_UNIVERSAL | ASN1_TAGFLAG_PRIMITIVE,
81 &g_RTAsn1Null_Vtable, RTASN1CORE_F_PRESENT | RTASN1CORE_F_PRIMITE_TAG_STRUCT);
82}
83
84
85RTDECL(int) RTAsn1Null_Clone(PRTASN1NULL pThis, PCRTASN1NULL pSrc, PCRTASN1ALLOCATORVTABLE pAllocator)
86{
87 AssertPtr(pSrc); AssertPtr(pThis); AssertPtr(pAllocator); RT_NOREF_PV(pAllocator);
88 RT_ZERO(*pThis);
89 if (RTAsn1Null_IsPresent(pSrc))
90 {
91 AssertReturn(pSrc->Asn1Core.pOps == &g_RTAsn1Null_Vtable, VERR_INTERNAL_ERROR_3);
92 AssertReturn(pSrc->Asn1Core.cb == 0, VERR_INTERNAL_ERROR_4);
93
94 int rc = RTAsn1Core_CloneNoContent(&pThis->Asn1Core, &pSrc->Asn1Core);
95 if (RT_FAILURE(rc))
96 return rc;
97 }
98 return VINF_SUCCESS;
99}
100
101
102RTDECL(void) RTAsn1Null_Delete(PRTASN1NULL pThis)
103{
104 if ( pThis
105 && RTAsn1Null_IsPresent(pThis))
106 {
107 Assert(pThis->Asn1Core.pOps == &g_RTAsn1Null_Vtable);
108 RT_ZERO(*pThis);
109 }
110}
111
112
113RTDECL(int) RTAsn1Null_Enum(PRTASN1NULL pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser)
114{
115 RT_NOREF_PV(pThis); RT_NOREF_PV(pfnCallback); RT_NOREF_PV(uDepth); RT_NOREF_PV(pvUser);
116 Assert(pThis && (!RTAsn1Null_IsPresent(pThis) || pThis->Asn1Core.pOps == &g_RTAsn1Null_Vtable));
117
118 /* No children to enumerate. */
119 return VINF_SUCCESS;
120}
121
122
123RTDECL(int) RTAsn1Null_Compare(PCRTASN1NULL pLeft, PCRTASN1NULL pRight)
124{
125 Assert(pLeft && (!RTAsn1Null_IsPresent(pLeft) || pLeft->Asn1Core.pOps == &g_RTAsn1Null_Vtable));
126 Assert(pRight && (!RTAsn1Null_IsPresent(pRight) || pRight->Asn1Core.pOps == &g_RTAsn1Null_Vtable));
127
128 return (int)RTAsn1Null_IsPresent(pLeft) - (int)RTAsn1Null_IsPresent(pRight);
129}
130
131
132RTDECL(int) RTAsn1Null_CheckSanity(PCRTASN1NULL pThis, uint32_t fFlags, PRTERRINFO pErrInfo, const char *pszErrorTag)
133{
134 RT_NOREF_PV(fFlags);
135 if (RT_UNLIKELY(!RTAsn1Null_IsPresent(pThis)))
136 return RTErrInfoSetF(pErrInfo, VERR_ASN1_NOT_PRESENT, "%s: Missing (NULL).", pszErrorTag);
137 return VINF_SUCCESS;
138}
139
140/* No NULL object collections. */
141
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use