-
Notifications
You must be signed in to change notification settings - Fork 4
/
RedfishCsMemory.c
234 lines (192 loc) · 6.34 KB
/
RedfishCsMemory.c
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
/** @file
Copyright Notice:
Copyright 2019-2024 Distributed Management Task Force, Inc. All rights reserved.
License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-JSON-C-Struct-Converter/blob/master/LICENSE.md
**/
#include "RedfishCsMemoryInternal.h"
#include <stdlib.h>
#include <string.h>
RedfishCS_Link CsMemRoot = { &CsMemRoot, &CsMemRoot };
/**
This function records the memory allocation to
the C Structure instance that owns the memory block.
memCs C Structure instance.
Return RedfishCS_status
**/
RedfishCS_status
recordCsRootMemory (
void *memCs
)
{
RedfishCS_Internal_memory_root *memRoot;
memRoot = malloc (sizeof (RedfishCS_Internal_memory_root));
if (memRoot == NULL) {
return RedfishCS_status_insufficient_memory;
}
InitializeLinkHead (&memRoot->nextRoot);
InitializeLinkHead (&memRoot->memBlocks);
memRoot->CsPtr = memCs;
InsertTailLink (&CsMemRoot, &memRoot->nextRoot);
return RedfishCS_status_success;
}
/**
This function allocates and records the memory allocation
to the C Structure instance that owns the memory block.
rootCs C Structure instance.
size The size to allocate.
Dst Pointer to retrieve the pointer to memory
block.
Return RedfishCS_status
**/
RedfishCS_status
allocateRecordCsMemory (
RedfishCS_void *rootCs,
RedfishCS_uint32 size,
RedfishCS_void **Dst
)
{
RedfishCS_Internal_memory_root *memRoot;
RedfishCS_Internal_memory_link *memLink;
if (IsLinkEmpty (&CsMemRoot)) {
return RedfishCS_status_invalid_parameter;
}
memRoot = (RedfishCS_Internal_memory_root *)GetFirstLink (&CsMemRoot);
while (RedfishCS_boolean_true) {
if (memRoot->CsPtr == rootCs) {
// Allocation memory and record it.
memLink = malloc (sizeof (RedfishCS_Internal_memory_link));
if (memLink == NULL) {
return RedfishCS_status_insufficient_memory;
}
*Dst = malloc (size);
if (*Dst == NULL) {
free (memLink);
return RedfishCS_status_insufficient_memory;
}
memset (*Dst, 0, size);
memset (memLink, 0, sizeof (RedfishCS_Internal_memory_link));
InitializeLinkHead (&memLink->nextLink);
memLink->memoryPtr = *Dst;
InsertTailLink (&memRoot->memBlocks, &memLink->nextLink);
return RedfishCS_status_success;
}
if (IsLinkAtEnd (&CsMemRoot, (RedfishCS_Link *)&memRoot->nextRoot)) {
break;
}
memRoot = (RedfishCS_Internal_memory_root *)GetNextLink (&CsMemRoot, &memRoot->nextRoot);
}
return RedfishCS_status_invalid_parameter;
}
/**
This function allocates, records and zero out the memory
to the C Structure instance that owns the memory block.
rootCs C Structure instance.
size The size to allocate.
Dst Pointer to retrieve the pointer to memory
block.
Return RedfishCS_status
**/
RedfishCS_status
allocateRecordCsZeroMemory (
RedfishCS_void *rootCs,
RedfishCS_uint32 size,
RedfishCS_void **Dst
)
{
RedfishCS_status Status;
Status = allocateRecordCsMemory (rootCs, size, Dst);
if ((Status != RedfishCS_status_success) || (*Dst == NULL)) {
return Status;
}
memset (*Dst, 0, size);
return RedfishCS_status_success;
}
/**
This function destroies all memory allocations belong
to the C Structure instance.
rootCs C Structure instance.
Return RedfishCS_status
**/
RedfishCS_status
DestoryCsMemory (
RedfishCS_void *rootCs
)
{
RedfishCS_Internal_memory_root *memRoot;
RedfishCS_Internal_memory_link *memLink;
if (IsLinkEmpty (&CsMemRoot)) {
return RedfishCS_status_invalid_parameter;
}
memRoot = (RedfishCS_Internal_memory_root *)GetFirstLink (&CsMemRoot);
while (RedfishCS_boolean_true) {
if (memRoot->CsPtr == rootCs) {
if (IsLinkEmpty (&memRoot->memBlocks)) {
return RedfishCS_status_success;
}
while (RedfishCS_boolean_true) {
memLink = (RedfishCS_Internal_memory_link *)GetLastLink (&memRoot->memBlocks);
if (memLink->memoryPtr != NULL) {
free (memLink->memoryPtr);
RemoveLink (&memLink->nextLink);
free (memLink);
}
if (IsLinkEmpty (&memRoot->memBlocks)) {
RemoveLink (&memRoot->nextRoot);
free (memRoot);
free (rootCs);
return RedfishCS_status_success;
}
}
}
if (IsLinkAtEnd (&CsMemRoot, (RedfishCS_Link *)&memRoot->nextRoot)) {
break;
}
memRoot = (RedfishCS_Internal_memory_root *)GetNextLink (&CsMemRoot, &memRoot->nextRoot);
}
return RedfishCS_status_invalid_parameter;
}
/**
This function allocates an array of memory blocks owned
by the C Structure instance.
rootCs C Structure instance.
ArrayInstanceSize Number of items in array.
ArraySize The size of each array.
Dst Pointer to retrieve the pointer to memory
block.
Return RedfishCS_status
**/
RedfishCS_status
allocateArrayRecordCsMemory (
RedfishCS_void *rootCs,
RedfishCS_uint32 ArrayInstanceSize,
RedfishCS_uint64 ArraySize,
RedfishCS_void **Dst
)
{
RedfishCS_uint16 Index;
RedfishCS_void *ArrayInstance;
RedfishCS_void *PreArrayInstance;
RedfishCS_status Status;
RedfishCS_uint16 SizeOfVoid;
for (Index = 0; Index < ArraySize; Index++) {
Status = allocateRecordCsMemory (rootCs, ArrayInstanceSize, &ArrayInstance);
if (Status != RedfishCS_status_success) {
return Status;
}
memset (ArrayInstance, 0, ArrayInstanceSize);
if (Index == 0) {
*Dst = ArrayInstance;
} else {
SizeOfVoid = sizeof (RedfishCS_void *);
if (SizeOfVoid == sizeof (RedfishCS_uint32)) {
*((RedfishCS_uint32 *)PreArrayInstance) = (RedfishCS_uint32)(unsigned long long)ArrayInstance; // Next link.
} else if (SizeOfVoid == sizeof (RedfishCS_uint64)) {
*((RedfishCS_uint64 *)PreArrayInstance) = (RedfishCS_uint64)ArrayInstance; // Next link.
} else {
return RedfishCS_status_invalid_parameter;
}
}
PreArrayInstance = ArrayInstance;
}
return RedfishCS_status_success;
}