-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbag_metadatatypes.cpp
515 lines (419 loc) · 16.3 KB
/
bag_metadatatypes.cpp
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
//************************************************************************
//
// Open Navigation Surface Working Group, 2013
//
//************************************************************************
#include "bag_metadatatypes.h"
#include <cstring>
#include <H5Cpp.h>
#include <string>
namespace {
//! Make a copy of the input string.
/*!
\param source
The source string to copy.
\return
A copy of the input string.
*/
char* copyString(const char* source)
{
if (!source || source[0] == '\0')
return nullptr;
char* result = new char[strlen(source) + 1];
strcpy(result, source);
return result;
}
} // namespace
//************************************************************************
/*!
\brief Initialize a BagResponsibleParty structure.
\param responsibleParty
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e responsibleParty
is NULL.
*/
//************************************************************************
void initResponsibleParty(BagResponsibleParty& responsibleParty) noexcept
{
responsibleParty.individualName = nullptr;
responsibleParty.organisationName = nullptr;
responsibleParty.positionName = nullptr;
responsibleParty.role = nullptr;
}
//************************************************************************
/*!
\brief Free a BagResponsibleParty structure.
\param responsibleParty
\li The structure to be freed.
*/
//************************************************************************
void freeResponsibleParty(BagResponsibleParty& responsibleParty) noexcept
{
delete[] responsibleParty.individualName;
delete[] responsibleParty.organisationName;
delete[] responsibleParty.positionName;
delete[] responsibleParty.role;
}
//************************************************************************
/*!
\brief Initialize a BagIdentification structure.
\param dataIdentificationInfo
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e dataIdentificationInfo
is NULL.
*/
//************************************************************************
void initDataIdentificationInfo(BagIdentification& dataIdentificationInfo) noexcept
{
dataIdentificationInfo.title = nullptr;
dataIdentificationInfo.date = nullptr;
dataIdentificationInfo.dateType = nullptr;
dataIdentificationInfo.abstractString = nullptr;
dataIdentificationInfo.status = nullptr;
dataIdentificationInfo.spatialRepresentationType = nullptr;
dataIdentificationInfo.language = nullptr;
dataIdentificationInfo.characterSet = nullptr;
dataIdentificationInfo.topicCategory = nullptr;
dataIdentificationInfo.verticalUncertaintyType = nullptr;
dataIdentificationInfo.depthCorrectionType = nullptr;
dataIdentificationInfo.elevationSolutionGroupType = nullptr;
dataIdentificationInfo.nodeGroupType = nullptr;
dataIdentificationInfo.westBoundingLongitude = INIT_VALUE;
dataIdentificationInfo.eastBoundingLongitude = INIT_VALUE;
dataIdentificationInfo.southBoundingLatitude = INIT_VALUE;
dataIdentificationInfo.northBoundingLatitude = INIT_VALUE;
dataIdentificationInfo.responsibleParties = nullptr;
dataIdentificationInfo.numberOfResponsibleParties = 0;
}
//************************************************************************
/*!
\brief Free a BagIdentification structure.
\param dataIdentificationInfo
\li The structure to be freed.
*/
//************************************************************************
void freeDataIdentificationInfo(BagIdentification& dataIdentificationInfo) noexcept
{
delete[] dataIdentificationInfo.title;
delete[] dataIdentificationInfo.date;
delete[] dataIdentificationInfo.dateType;
delete[] dataIdentificationInfo.abstractString;
delete[] dataIdentificationInfo.status;
delete[] dataIdentificationInfo.spatialRepresentationType;
delete[] dataIdentificationInfo.language;
delete[] dataIdentificationInfo.characterSet;
delete[] dataIdentificationInfo.topicCategory;
delete[] dataIdentificationInfo.verticalUncertaintyType;
delete[] dataIdentificationInfo.depthCorrectionType;
delete[] dataIdentificationInfo.elevationSolutionGroupType;
delete[] dataIdentificationInfo.nodeGroupType;
for (uint32_t i = 0; i < dataIdentificationInfo.numberOfResponsibleParties; ++i)
freeResponsibleParty(dataIdentificationInfo.responsibleParties[i]);
delete[] dataIdentificationInfo.responsibleParties;
}
//************************************************************************
/*!
\brief Initialize a BagLegalConstraints structure.
\param legalConstraints
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e legalConstraints
is NULL.
*/
//************************************************************************
void initLegalConstraints(BagLegalConstraints& legalConstraints) noexcept
{
legalConstraints.useConstraints = nullptr;
legalConstraints.otherConstraints = nullptr;
}
//************************************************************************
/*!
\brief Free a BagLegalConstraints structure.
\param legalConstraints
\li The structure to be freed.
*/
//************************************************************************
void freeLegalConstraints(BagLegalConstraints& legalConstraints) noexcept
{
delete[] legalConstraints.useConstraints;
delete[] legalConstraints.otherConstraints;
}
//************************************************************************
/*!
\brief Initialize a BagSecurityConstraints structure.
\param securityConstraints
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e securityConstraints
is NULL.
*/
//************************************************************************
void initSecurityConstraints(BagSecurityConstraints& securityConstraints) noexcept
{
securityConstraints.classification = nullptr;
securityConstraints.userNote = nullptr;
}
//************************************************************************
/*!
\brief Free a BagSecurityConstraints structure.
\param securityConstraints
\li The structure to be freed.
*/
//************************************************************************
void freeSecurityConstraints(BagSecurityConstraints& securityConstraints) noexcept
{
delete[] securityConstraints.classification;
delete[] securityConstraints.userNote;
}
//************************************************************************
/*!
\brief Initialize a BagSource structure.
\param sourceInfo
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e sourceInfo
is NULL.
*/
//************************************************************************
void initSourceInfo(BagSource& sourceInfo) noexcept
{
sourceInfo.description = nullptr;
sourceInfo.title = nullptr;
sourceInfo.date = nullptr;
sourceInfo.dateType = nullptr;
sourceInfo.responsibleParties = nullptr;
sourceInfo.numberOfResponsibleParties = 0;
}
//************************************************************************
/*!
\brief Free a BagSource structure.
\param sourceInfo
\li The structure to be freed.
*/
//************************************************************************
void freeSourceInfo(BagSource& sourceInfo) noexcept
{
delete[] sourceInfo.description;
delete[] sourceInfo.title;
delete[] sourceInfo.date;
delete[] sourceInfo.dateType;
for (uint32_t i = 0; i < sourceInfo.numberOfResponsibleParties; i++)
freeResponsibleParty(sourceInfo.responsibleParties[i]);
delete[] sourceInfo.responsibleParties;
}
//************************************************************************
/*!
\brief Initialize a BagProcessStep structure.
\param processStep
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e processStep
is NULL.
*/
//************************************************************************
void initProcessStep(BagProcessStep& processStep) noexcept
{
processStep.description = nullptr;
processStep.dateTime = nullptr;
processStep.trackingId = nullptr;
processStep.lineageSources = nullptr;
processStep.numberOfSources = 0;
processStep.processors = nullptr;
processStep.numberOfProcessors = 0;
}
//************************************************************************
/*!
\brief Free a BagProcessStep structure.
\param processStep
\li The structure to be freed.
*/
//************************************************************************
void freeProcessStep(BagProcessStep& processStep) noexcept
{
delete[] processStep.description;
delete[] processStep.dateTime;
delete[] processStep.trackingId;
for (uint32_t i = 0; i < processStep.numberOfSources; i++)
freeSourceInfo(processStep.lineageSources[i]);
delete[] processStep.lineageSources;
for (uint32_t i = 0; i < processStep.numberOfProcessors; i++)
freeResponsibleParty(processStep.processors[i]);
delete[] processStep.processors;
}
//************************************************************************
/*!
\brief Initialize a BagDataQuality structure.
\param dataQualityInfo
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e dataQualityInfo
is NULL.
*/
//************************************************************************
void initDataQualityInfo(BagDataQuality& dataQualityInfo) noexcept
{
dataQualityInfo.scope = copyString("dataset");
dataQualityInfo.lineageProcessSteps = nullptr;
dataQualityInfo.numberOfProcessSteps = 0;
}
//************************************************************************
/*!
\brief Free a BagDataQuality structure.
\param dataQualityInfo
\li The structure to be freed.
*/
//************************************************************************
void freeDataQualityInfo(BagDataQuality& dataQualityInfo) noexcept
{
delete[] dataQualityInfo.scope;
for (uint32_t i = 0; i < dataQualityInfo.numberOfProcessSteps; ++i)
freeProcessStep(dataQualityInfo.lineageProcessSteps[i]);
delete[] dataQualityInfo.lineageProcessSteps;
}
//************************************************************************
/*!
\brief Initialize a BagSpatialRepresentation structure.
\param spatialRepresentationInfo
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e spatialRepresentationInfo
is NULL.
*/
//************************************************************************
void initSpatialRepresentationInfo(BagSpatialRepresentation& spatialRepresentationInfo)
{
spatialRepresentationInfo.numberOfRows = 0;
spatialRepresentationInfo.rowResolution = 0.0;
spatialRepresentationInfo.numberOfColumns = 0;
spatialRepresentationInfo.columnResolution = 0.0;
spatialRepresentationInfo.resolutionUnit = nullptr;
spatialRepresentationInfo.cellGeometry = copyString("point");
spatialRepresentationInfo.transformationParameterAvailability = false;
spatialRepresentationInfo.checkPointAvailability = false;
spatialRepresentationInfo.llCornerX = INIT_VALUE;
spatialRepresentationInfo.llCornerY = INIT_VALUE;
spatialRepresentationInfo.urCornerX = INIT_VALUE;
spatialRepresentationInfo.urCornerY = INIT_VALUE;
spatialRepresentationInfo.transformationDimensionDescription = nullptr;
spatialRepresentationInfo.transformationDimensionMapping = nullptr;
}
//************************************************************************
/*!
\brief Free a BagSpatialRepresentation structure.
\param spatialRepresentationInfo
\li The structure to be freed.
*/
//************************************************************************
void freeSpatialRepresentationInfo(BagSpatialRepresentation& spatialRepresentationInfo) noexcept
{
delete[] spatialRepresentationInfo.resolutionUnit;
delete[] spatialRepresentationInfo.cellGeometry;
delete[] spatialRepresentationInfo.transformationDimensionDescription;
delete[] spatialRepresentationInfo.transformationDimensionMapping;
}
//************************************************************************
/*!
\brief Initialize a BagReferenceSystem structure.
\param referenceInfo
\li The structure to be initialized.
\return
\li true if the structure is initialized, false if \e referenceInfo
is NULL.
*/
//************************************************************************
void initReferenceSystemInfo(BagReferenceSystem& referenceInfo) noexcept
{
referenceInfo.definition = nullptr;
referenceInfo.type = nullptr;
}
//************************************************************************
/*!
\brief Free a BagReferenceSystem structure.
\param referenceInfo
\li The structure to be freed.
*/
//************************************************************************
void freeReferenceSystemInfo(BagReferenceSystem& referenceInfo) noexcept
{
delete[] referenceInfo.definition;
delete[] referenceInfo.type;
}
//************************************************************************
/*!
\brief Initialize the BagMetadata structure.
The caller must call bagFreeMetadata() to ensure no memory leaks
during cleanup.
\param metadata
\li The structure to be initialized.
\return
\li 0 on success, a BagError if an error occurs.
*/
//************************************************************************
void bagInitMetadata(BagMetadata& metadata)
{
metadata.fileIdentifier = nullptr;
metadata.dateStamp = nullptr;
metadata.language = copyString("en");
metadata.characterSet = copyString("utf8");
metadata.hierarchyLevel = copyString("dataset");
metadata.metadataStandardName = copyString("ISO 19115");
metadata.metadataStandardVersion = copyString("2003/Cor.1:2006");
metadata.contact = new BagResponsibleParty;
initResponsibleParty(*metadata.contact);
metadata.spatialRepresentationInfo = new BagSpatialRepresentation;
initSpatialRepresentationInfo(*metadata.spatialRepresentationInfo);
metadata.horizontalReferenceSystem = new BagReferenceSystem;
initReferenceSystemInfo(*metadata.horizontalReferenceSystem);
metadata.verticalReferenceSystem = new BagReferenceSystem;
initReferenceSystemInfo(*metadata.verticalReferenceSystem);
metadata.identificationInfo = new BagIdentification;
initDataIdentificationInfo(*metadata.identificationInfo);
metadata.dataQualityInfo = new BagDataQuality;
initDataQualityInfo(*metadata.dataQualityInfo);
metadata.legalConstraints = new BagLegalConstraints;
initLegalConstraints(*metadata.legalConstraints);
metadata.securityConstraints = new BagSecurityConstraints;
initSecurityConstraints(*metadata.securityConstraints);
}
//************************************************************************
/*!
\brief Free a BagMetadata structure.
\param metadata
\li The structure to be freed.
*/
//************************************************************************
void bagFreeMetadata(BagMetadata& metadata) noexcept
{
delete[] metadata.fileIdentifier;
delete[] metadata.dateStamp;
delete[] metadata.language;
delete[] metadata.hierarchyLevel;
delete[] metadata.metadataStandardName;
delete[] metadata.metadataStandardVersion;
if (metadata.contact)
freeResponsibleParty(*metadata.contact);
delete metadata.contact;
if (metadata.spatialRepresentationInfo)
freeSpatialRepresentationInfo(*metadata.spatialRepresentationInfo);
delete metadata.spatialRepresentationInfo;
if (metadata.horizontalReferenceSystem)
freeReferenceSystemInfo(*metadata.horizontalReferenceSystem);
delete metadata.horizontalReferenceSystem;
if (metadata.verticalReferenceSystem)
freeReferenceSystemInfo(*metadata.verticalReferenceSystem);
delete metadata.verticalReferenceSystem;
if (metadata.identificationInfo)
freeDataIdentificationInfo(*metadata.identificationInfo);
delete metadata.identificationInfo;
if (metadata.dataQualityInfo)
freeDataQualityInfo(*metadata.dataQualityInfo);
delete metadata.dataQualityInfo;
if (metadata.legalConstraints)
freeLegalConstraints(*metadata.legalConstraints);
delete metadata.legalConstraints;
if (metadata.securityConstraints)
freeSecurityConstraints(*metadata.securityConstraints);
delete metadata.securityConstraints;
}