forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdaljp2box.cpp
569 lines (439 loc) · 17.7 KB
/
gdaljp2box.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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
/******************************************************************************
*
* Project: GDAL
* Purpose: GDALJP2Box Implementation - Low level JP2 box reader.
* Author: Frank Warmerdam, [email protected]
*
******************************************************************************
* Copyright (c) 2005, Frank Warmerdam <[email protected]>
* Copyright (c) 2010-2012, Even Rouault <even dot rouault at spatialys.com>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#include "cpl_port.h"
#include "gdaljp2metadata.h"
#include <cstddef>
#include <cstdio>
#include <cstring>
#if HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <algorithm>
#include "cpl_conv.h"
#include "cpl_error.h"
#include "cpl_string.h"
#include "cpl_vsi.h"
/*! @cond Doxygen_Suppress */
/************************************************************************/
/* GDALJP2Box() */
/************************************************************************/
// GDALJP2Box does *not* take ownership of fpIn
GDALJP2Box::GDALJP2Box(VSILFILE *fpIn) : fpVSIL(fpIn)
{
}
/************************************************************************/
/* ~GDALJP2Box() */
/************************************************************************/
GDALJP2Box::~GDALJP2Box()
{
// Do not close fpVSIL. Ownership remains to the caller of GDALJP2Box
// constructor
CPLFree(pabyData);
}
/************************************************************************/
/* SetOffset() */
/************************************************************************/
int GDALJP2Box::SetOffset(GIntBig nNewOffset)
{
szBoxType[0] = '\0';
return VSIFSeekL(fpVSIL, nNewOffset, SEEK_SET) == 0;
}
/************************************************************************/
/* ReadFirst() */
/************************************************************************/
int GDALJP2Box::ReadFirst()
{
return SetOffset(0) && ReadBox();
}
/************************************************************************/
/* ReadNext() */
/************************************************************************/
int GDALJP2Box::ReadNext()
{
return SetOffset(nBoxOffset + nBoxLength) && ReadBox();
}
/************************************************************************/
/* ReadFirstChild() */
/************************************************************************/
int GDALJP2Box::ReadFirstChild(GDALJP2Box *poSuperBox)
{
if (poSuperBox == nullptr)
return ReadFirst();
szBoxType[0] = '\0';
if (!poSuperBox->IsSuperBox())
return FALSE;
return SetOffset(poSuperBox->nDataOffset) && ReadBox();
}
/************************************************************************/
/* ReadNextChild() */
/************************************************************************/
int GDALJP2Box::ReadNextChild(GDALJP2Box *poSuperBox)
{
if (poSuperBox == nullptr)
return ReadNext();
if (!ReadNext())
return FALSE;
if (nBoxOffset >= poSuperBox->nBoxOffset + poSuperBox->nBoxLength)
{
szBoxType[0] = '\0';
return FALSE;
}
return TRUE;
}
/************************************************************************/
/* ReadBox() */
/************************************************************************/
int GDALJP2Box::ReadBox()
{
GUInt32 nLBox = 0;
GUInt32 nTBox = 0;
nBoxOffset = VSIFTellL(fpVSIL);
if (VSIFReadL(&nLBox, 4, 1, fpVSIL) != 1 ||
VSIFReadL(&nTBox, 4, 1, fpVSIL) != 1)
{
return FALSE;
}
memcpy(szBoxType, &nTBox, 4);
szBoxType[4] = '\0';
nLBox = CPL_MSBWORD32(nLBox);
if (nLBox != 1)
{
nBoxLength = nLBox;
nDataOffset = nBoxOffset + 8;
}
else
{
GByte abyXLBox[8] = {0};
if (VSIFReadL(abyXLBox, 8, 1, fpVSIL) != 1)
return FALSE;
#ifdef CPL_HAS_GINT64
CPL_MSBPTR64(abyXLBox);
memcpy(&nBoxLength, abyXLBox, 8);
#else
// In case we lack a 64 bit integer type
if (abyXLBox[0] != 0 || abyXLBox[1] != 0 || abyXLBox[2] != 0 ||
abyXLBox[3] != 0)
{
CPLError(CE_Failure, CPLE_AppDefined,
"Box size requires a 64 bit integer type");
return FALSE;
}
CPL_MSBPTR32(abyXLBox + 4);
memcpy(&nBoxLength, abyXLBox + 4, 4);
#endif
if (nBoxLength < 0)
{
CPLDebug("GDALJP2", "Invalid length for box %s", szBoxType);
return FALSE;
}
nDataOffset = nBoxOffset + 16;
}
if (nBoxLength == 0 && m_bAllowGetFileSize)
{
if (VSIFSeekL(fpVSIL, 0, SEEK_END) != 0)
return FALSE;
nBoxLength = VSIFTellL(fpVSIL) - nBoxOffset;
if (VSIFSeekL(fpVSIL, nDataOffset, SEEK_SET) != 0)
return FALSE;
}
if (EQUAL(szBoxType, "uuid"))
{
if (VSIFReadL(abyUUID, 16, 1, fpVSIL) != 1)
return FALSE;
nDataOffset += 16;
}
if (m_bAllowGetFileSize && GetDataLength() < 0)
{
CPLDebug("GDALJP2", "Invalid length for box %s", szBoxType);
return FALSE;
}
return TRUE;
}
/************************************************************************/
/* IsSuperBox() */
/************************************************************************/
int GDALJP2Box::IsSuperBox()
{
if (EQUAL(GetType(), "asoc") || EQUAL(GetType(), "jp2h") ||
EQUAL(GetType(), "res ") || EQUAL(GetType(), "jumb"))
return TRUE;
return FALSE;
}
/************************************************************************/
/* ReadBoxData() */
/************************************************************************/
GByte *GDALJP2Box::ReadBoxData()
{
GIntBig nDataLength = GetDataLength();
if (nDataLength > 100 * 1024 * 1024)
{
CPLError(CE_Failure, CPLE_AppDefined,
"Too big box : " CPL_FRMT_GIB " bytes", nDataLength);
return nullptr;
}
if (VSIFSeekL(fpVSIL, nDataOffset, SEEK_SET) != 0)
return nullptr;
char *pszData = static_cast<char *>(
VSI_MALLOC_VERBOSE(static_cast<int>(nDataLength) + 1));
if (pszData == nullptr)
return nullptr;
if (static_cast<GIntBig>(VSIFReadL(
pszData, 1, static_cast<int>(nDataLength), fpVSIL)) != nDataLength)
{
CPLError(CE_Failure, CPLE_AppDefined, "Cannot read box content");
CPLFree(pszData);
return nullptr;
}
pszData[nDataLength] = '\0';
return reinterpret_cast<GByte *>(pszData);
}
/************************************************************************/
/* GetDataLength() */
/************************************************************************/
GIntBig GDALJP2Box::GetDataLength() const
{
return nBoxLength - (nDataOffset - nBoxOffset);
}
/************************************************************************/
/* DumpReadable() */
/************************************************************************/
int GDALJP2Box::DumpReadable(FILE *fpOut, int nIndentLevel)
{
if (fpOut == nullptr)
fpOut = stdout;
for (int i = 0; i < nIndentLevel; ++i)
fprintf(fpOut, " ");
char szBuffer[128];
CPLsnprintf(szBuffer, sizeof(szBuffer),
" Type=%s, Offset=" CPL_FRMT_GIB "/" CPL_FRMT_GIB
", Data Size=" CPL_FRMT_GIB,
szBoxType, nBoxOffset, nDataOffset, GetDataLength());
fprintf(fpOut, "%s", szBuffer);
if (IsSuperBox())
{
fprintf(fpOut, " (super)");
}
fprintf(fpOut, "\n");
if (IsSuperBox())
{
GDALJP2Box oSubBox(GetFILE());
for (oSubBox.ReadFirstChild(this); strlen(oSubBox.GetType()) > 0;
oSubBox.ReadNextChild(this))
{
oSubBox.DumpReadable(fpOut, nIndentLevel + 1);
}
}
if (EQUAL(GetType(), "uuid"))
{
char *pszHex = CPLBinaryToHex(16, GetUUID());
for (int i = 0; i < nIndentLevel; ++i)
fprintf(fpOut, " ");
fprintf(fpOut, " UUID=%s", pszHex);
if (EQUAL(pszHex, "B14BF8BD083D4B43A5AE8CD7D5A6CE03"))
fprintf(fpOut, " (GeoTIFF)");
if (EQUAL(pszHex, "96A9F1F1DC98402DA7AED68E34451809"))
fprintf(fpOut, " (MSI Worldfile)");
if (EQUAL(pszHex, "BE7ACFCB97A942E89C71999491E3AFAC"))
fprintf(fpOut, " (XMP)");
CPLFree(pszHex);
fprintf(fpOut, "\n");
}
return 0;
}
/************************************************************************/
/* SetType() */
/************************************************************************/
void GDALJP2Box::SetType(const char *pszType)
{
CPLAssert(strlen(pszType) == 4);
memcpy(szBoxType, pszType, 4);
szBoxType[4] = '\0';
}
/************************************************************************/
/* GetWritableBoxData() */
/************************************************************************/
GByte *GDALJP2Box::GetWritableBoxData() const
{
GByte *pabyRet =
static_cast<GByte *>(CPLMalloc(static_cast<GUInt32>(nBoxLength)));
const GUInt32 nLBox = CPL_MSBWORD32(static_cast<GUInt32>(nBoxLength));
memcpy(pabyRet, &nLBox, sizeof(GUInt32));
memcpy(pabyRet + 4, szBoxType, 4);
memcpy(pabyRet + 8, pabyData, static_cast<GUInt32>(nBoxLength) - 8);
return pabyRet;
}
/************************************************************************/
/* SetWritableData() */
/************************************************************************/
void GDALJP2Box::SetWritableData(int nLength, const GByte *pabyDataIn)
{
CPLFree(pabyData);
pabyData = static_cast<GByte *>(CPLMalloc(nLength));
memcpy(pabyData, pabyDataIn, nLength);
nBoxOffset = -9; // Virtual offsets for data length computation.
nDataOffset = -1;
nBoxLength = 8 + nLength;
}
/************************************************************************/
/* AppendWritableData() */
/************************************************************************/
void GDALJP2Box::AppendWritableData(int nLength, const void *pabyDataIn)
{
if (pabyData == nullptr)
{
nBoxOffset = -9; // Virtual offsets for data length computation.
nDataOffset = -1;
nBoxLength = 8;
}
pabyData = static_cast<GByte *>(
CPLRealloc(pabyData, static_cast<size_t>(GetDataLength() + nLength)));
memcpy(pabyData + GetDataLength(), pabyDataIn, nLength);
nBoxLength += nLength;
}
/************************************************************************/
/* AppendUInt32() */
/************************************************************************/
void GDALJP2Box::AppendUInt32(GUInt32 nVal)
{
CPL_MSBPTR32(&nVal);
AppendWritableData(4, &nVal);
}
/************************************************************************/
/* AppendUInt16() */
/************************************************************************/
void GDALJP2Box::AppendUInt16(GUInt16 nVal)
{
CPL_MSBPTR16(&nVal);
AppendWritableData(2, &nVal);
}
/************************************************************************/
/* AppendUInt8() */
/************************************************************************/
void GDALJP2Box::AppendUInt8(GByte nVal)
{
AppendWritableData(1, &nVal);
}
/************************************************************************/
/* CreateUUIDBox() */
/************************************************************************/
GDALJP2Box *GDALJP2Box::CreateUUIDBox(const GByte *pabyUUID, int nDataSize,
const GByte *pabyDataIn)
{
GDALJP2Box *const poBox = new GDALJP2Box();
poBox->SetType("uuid");
poBox->AppendWritableData(16, pabyUUID);
poBox->AppendWritableData(nDataSize, pabyDataIn);
return poBox;
}
/************************************************************************/
/* CreateAsocBox() */
/************************************************************************/
GDALJP2Box *GDALJP2Box::CreateAsocBox(int nCount,
const GDALJP2Box *const *papoBoxes)
{
return CreateSuperBox("asoc", nCount, papoBoxes);
}
/************************************************************************/
/* CreateAsocBox() */
/************************************************************************/
GDALJP2Box *GDALJP2Box::CreateSuperBox(const char *pszType, int nCount,
const GDALJP2Box *const *papoBoxes)
{
int nDataSize = 0;
/* -------------------------------------------------------------------- */
/* Compute size of data area of asoc box. */
/* -------------------------------------------------------------------- */
for (int iBox = 0; iBox < nCount; ++iBox)
nDataSize += 8 + static_cast<int>(papoBoxes[iBox]->GetDataLength());
GByte *pabyNext = static_cast<GByte *>(CPLMalloc(nDataSize));
GByte *pabyCompositeData = pabyNext;
/* -------------------------------------------------------------------- */
/* Copy subboxes headers and data into buffer. */
/* -------------------------------------------------------------------- */
for (int iBox = 0; iBox < nCount; ++iBox)
{
GUInt32 nLBox =
CPL_MSBWORD32(static_cast<GUInt32>(papoBoxes[iBox]->nBoxLength));
memcpy(pabyNext, &nLBox, 4);
pabyNext += 4;
memcpy(pabyNext, papoBoxes[iBox]->szBoxType, 4);
pabyNext += 4;
memcpy(pabyNext, papoBoxes[iBox]->pabyData,
static_cast<int>(papoBoxes[iBox]->GetDataLength()));
pabyNext += papoBoxes[iBox]->GetDataLength();
}
/* -------------------------------------------------------------------- */
/* Create asoc box. */
/* -------------------------------------------------------------------- */
GDALJP2Box *const poAsoc = new GDALJP2Box();
poAsoc->SetType(pszType);
poAsoc->SetWritableData(nDataSize, pabyCompositeData);
CPLFree(pabyCompositeData);
return poAsoc;
}
/************************************************************************/
/* CreateLblBox() */
/************************************************************************/
GDALJP2Box *GDALJP2Box::CreateLblBox(const char *pszLabel)
{
GDALJP2Box *const poBox = new GDALJP2Box();
poBox->SetType("lbl ");
poBox->SetWritableData(static_cast<int>(strlen(pszLabel) + 1),
reinterpret_cast<const GByte *>(pszLabel));
return poBox;
}
/************************************************************************/
/* CreateLabelledXMLAssoc() */
/************************************************************************/
GDALJP2Box *GDALJP2Box::CreateLabelledXMLAssoc(const char *pszLabel,
const char *pszXML)
{
GDALJP2Box oLabel;
oLabel.SetType("lbl ");
oLabel.SetWritableData(static_cast<int>(strlen(pszLabel) + 1),
reinterpret_cast<const GByte *>(pszLabel));
GDALJP2Box oXML;
oXML.SetType("xml ");
oXML.SetWritableData(static_cast<int>(strlen(pszXML) + 1),
reinterpret_cast<const GByte *>(pszXML));
GDALJP2Box *aoList[2] = {&oLabel, &oXML};
return CreateAsocBox(2, aoList);
}
/************************************************************************/
/* CreateJUMBFDescriptionBox() */
/************************************************************************/
GDALJP2Box *GDALJP2Box::CreateJUMBFDescriptionBox(const GByte *pabyUUIDType,
const char *pszLabel)
{
GDALJP2Box *const poBox = new GDALJP2Box();
poBox->SetType("jumd");
poBox->AppendWritableData(16, pabyUUIDType);
poBox->AppendUInt8(3); // requestable field
const size_t nLabelLen = strlen(pszLabel) + 1;
poBox->AppendWritableData(static_cast<int>(nLabelLen), pszLabel);
return poBox;
}
/************************************************************************/
/* CreateJUMBFBox() */
/************************************************************************/
GDALJP2Box *GDALJP2Box::CreateJUMBFBox(const GDALJP2Box *poJUMBFDescriptionBox,
int nCount,
const GDALJP2Box *const *papoBoxes)
{
std::vector<const GDALJP2Box *> apoBoxes;
apoBoxes.push_back(poJUMBFDescriptionBox);
apoBoxes.insert(apoBoxes.end(), papoBoxes, papoBoxes + nCount);
return CreateSuperBox("jumb", static_cast<int>(apoBoxes.size()),
apoBoxes.data());
}
/*! @endcond */