forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdalmultidim_rat.cpp
446 lines (411 loc) · 15.8 KB
/
gdalmultidim_rat.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
/******************************************************************************
* Name: gdalmultidim_rat.cpp
* Project: GDAL Core
* Purpose: GDALCreateRasterAttributeTableFromMDArrays() implementation
* Author: Even Rouault <even.rouault at spatialys.com>
*
******************************************************************************
* Copyright (c) 2023, Even Rouault <even.rouault at spatialys.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "gdal_priv.h"
#include "gdal_rat.h"
#include "gdalmultidim_priv.h"
/************************************************************************/
/* GDALRasterAttributeTableFromMDArrays() */
/************************************************************************/
class GDALRasterAttributeTableFromMDArrays final
: public GDALRasterAttributeTable
{
const GDALRATTableType m_eTableType;
const std::vector<std::shared_ptr<GDALMDArray>> m_apoArrays;
const std::vector<GDALRATFieldUsage> m_aeUsages;
mutable std::string m_osTmp{};
public:
GDALRasterAttributeTableFromMDArrays(
GDALRATTableType eTableType,
const std::vector<std::shared_ptr<GDALMDArray>> &apoArrays,
const std::vector<GDALRATFieldUsage> &aeUsages);
//
GDALRasterAttributeTable *Clone() const override
{
return new GDALRasterAttributeTableFromMDArrays(
m_eTableType, m_apoArrays, m_aeUsages);
}
//
int GetColumnCount() const override
{
return static_cast<int>(m_apoArrays.size());
}
const char *GetNameOfCol(int iCol) const override
{
if (iCol < 0 || iCol >= GetColumnCount())
return nullptr;
return m_apoArrays[iCol]->GetName().c_str();
}
//
GDALRATFieldUsage GetUsageOfCol(int iCol) const override
{
if (iCol < 0 || iCol >= GetColumnCount() || m_aeUsages.empty())
return GFU_Generic;
return m_aeUsages[iCol];
}
//
GDALRATFieldType GetTypeOfCol(int iCol) const override
{
if (iCol < 0 || iCol >= GetColumnCount())
return GFT_Integer;
switch (m_apoArrays[iCol]->GetDataType().GetNumericDataType())
{
case GDT_Int8:
case GDT_Byte:
case GDT_UInt16:
case GDT_Int16:
case GDT_Int32:
return GFT_Integer;
case GDT_UInt32:
case GDT_Int64:
case GDT_UInt64:
case GDT_Float32:
case GDT_Float64:
return GFT_Real;
default:
break;
}
return GFT_String;
}
//
int GetColOfUsage(GDALRATFieldUsage eUsage) const override
{
const int nColCount = GetColumnCount();
for (int i = 0; i < nColCount; i++)
{
if (GetUsageOfCol(i) == eUsage)
return i;
}
return -1;
}
//
int GetRowCount() const override
{
return static_cast<int>(m_apoArrays[0]->GetDimensions()[0]->GetSize());
}
//
const char *GetValueAsString(int iRow, int iField) const override
{
if (iRow < 0 || iRow >= GetRowCount() || iField < 0 ||
iField >= GetColumnCount())
return nullptr;
const GUInt64 arrayStartIdx[1] = {static_cast<GUInt64>(iRow)};
const size_t count[1] = {1};
const GInt64 arrayStep[1] = {1};
const GPtrDiff_t bufferStride[1] = {1};
char *pszStr = nullptr;
void *pDstBuffer = &pszStr;
if (!m_apoArrays[iField]->Read(
arrayStartIdx, count, arrayStep, bufferStride,
GDALExtendedDataType::CreateString(), pDstBuffer))
return nullptr;
if (!pszStr)
return nullptr;
m_osTmp = pszStr;
CPLFree(pszStr);
return m_osTmp.c_str();
}
//
int GetValueAsInt(int iRow, int iField) const override
{
if (iRow < 0 || iRow >= GetRowCount() || iField < 0 ||
iField >= GetColumnCount())
return 0;
const GUInt64 arrayStartIdx[1] = {static_cast<GUInt64>(iRow)};
const size_t count[1] = {1};
const GInt64 arrayStep[1] = {1};
const GPtrDiff_t bufferStride[1] = {1};
int nVal = 0;
void *pDstBuffer = &nVal;
if (!m_apoArrays[iField]->Read(
arrayStartIdx, count, arrayStep, bufferStride,
GDALExtendedDataType::Create(GDT_Int32), pDstBuffer))
return 0;
return nVal;
}
//
double GetValueAsDouble(int iRow, int iField) const override
{
if (iRow < 0 || iRow >= GetRowCount() || iField < 0 ||
iField >= GetColumnCount())
return 0;
const GUInt64 arrayStartIdx[1] = {static_cast<GUInt64>(iRow)};
const size_t count[1] = {1};
const GInt64 arrayStep[1] = {1};
const GPtrDiff_t bufferStride[1] = {1};
double dfVal = 0;
void *pDstBuffer = &dfVal;
if (!m_apoArrays[iField]->Read(
arrayStartIdx, count, arrayStep, bufferStride,
GDALExtendedDataType::Create(GDT_Float64), pDstBuffer))
return 0;
return dfVal;
}
//
CPLErr ValuesIO(GDALRWFlag eRWFlag, int iField, int iStartRow, int iLength,
double *pdfData) override
{
if (eRWFlag != GF_Read)
{
CPLError(CE_Failure, CPLE_NotSupported,
"GDALRasterAttributeTableFromMDArrays::ValuesIO(): "
"eRWFlag != GF_Read not supported");
return CE_Failure;
}
if (iStartRow < 0 || iLength <= 0 ||
iStartRow > GetRowCount() - iLength)
{
CPLError(CE_Failure, CPLE_AppDefined, "Invalid iStartRow/iLength");
return CE_Failure;
}
if (iField < 0 || iField >= GetColumnCount())
{
CPLError(CE_Failure, CPLE_AppDefined, "Invalid iField");
return CE_Failure;
}
const GUInt64 arrayStartIdx[1] = {static_cast<GUInt64>(iStartRow)};
const size_t count[1] = {static_cast<size_t>(iLength)};
const GInt64 arrayStep[1] = {1};
const GPtrDiff_t bufferStride[1] = {1};
if (!m_apoArrays[iField]->Read(
arrayStartIdx, count, arrayStep, bufferStride,
GDALExtendedDataType::Create(GDT_Float64), pdfData))
return CE_Failure;
return CE_None;
}
//
CPLErr ValuesIO(GDALRWFlag eRWFlag, int iField, int iStartRow, int iLength,
int *pnData) override
{
if (eRWFlag != GF_Read)
{
CPLError(CE_Failure, CPLE_NotSupported,
"GDALRasterAttributeTableFromMDArrays::ValuesIO(): "
"eRWFlag != GF_Read not supported");
return CE_Failure;
}
if (iStartRow < 0 || iLength <= 0 ||
iStartRow > GetRowCount() - iLength)
{
CPLError(CE_Failure, CPLE_AppDefined, "Invalid iStartRow/iLength");
return CE_Failure;
}
if (iField < 0 || iField >= GetColumnCount())
{
CPLError(CE_Failure, CPLE_AppDefined, "Invalid iField");
return CE_Failure;
}
const GUInt64 arrayStartIdx[1] = {static_cast<GUInt64>(iStartRow)};
const size_t count[1] = {static_cast<size_t>(iLength)};
const GInt64 arrayStep[1] = {1};
const GPtrDiff_t bufferStride[1] = {1};
if (!m_apoArrays[iField]->Read(
arrayStartIdx, count, arrayStep, bufferStride,
GDALExtendedDataType::Create(GDT_Int32), pnData))
return CE_Failure;
return CE_None;
}
//
CPLErr ValuesIO(GDALRWFlag eRWFlag, int iField, int iStartRow, int iLength,
char **papszStrList) override
{
if (eRWFlag != GF_Read)
{
CPLError(CE_Failure, CPLE_NotSupported,
"GDALRasterAttributeTableFromMDArrays::ValuesIO(): "
"eRWFlag != GF_Read not supported");
return CE_Failure;
}
if (iStartRow < 0 || iLength <= 0 ||
iStartRow > GetRowCount() - iLength)
{
CPLError(CE_Failure, CPLE_AppDefined, "Invalid iStartRow/iLength");
return CE_Failure;
}
if (iField < 0 || iField >= GetColumnCount())
{
CPLError(CE_Failure, CPLE_AppDefined, "Invalid iField");
return CE_Failure;
}
const GUInt64 arrayStartIdx[1] = {static_cast<GUInt64>(iStartRow)};
const size_t count[1] = {static_cast<size_t>(iLength)};
const GInt64 arrayStep[1] = {1};
const GPtrDiff_t bufferStride[1] = {1};
if (!m_apoArrays[iField]->Read(
arrayStartIdx, count, arrayStep, bufferStride,
GDALExtendedDataType::CreateString(), papszStrList))
return CE_Failure;
return CE_None;
}
//
void SetValue(int, int, const char *) override
{
CPLError(
CE_Failure, CPLE_NotSupported,
"GDALRasterAttributeTableFromMDArrays::SetValue(): not supported");
}
//
void SetValue(int, int, int) override
{
CPLError(
CE_Failure, CPLE_NotSupported,
"GDALRasterAttributeTableFromMDArrays::SetValue(): not supported");
}
//
void SetValue(int, int, double) override
{
CPLError(
CE_Failure, CPLE_NotSupported,
"GDALRasterAttributeTableFromMDArrays::SetValue(): not supported");
}
//
int ChangesAreWrittenToFile() override
{
return false;
}
//
CPLErr SetTableType(const GDALRATTableType) override
{
CPLError(CE_Failure, CPLE_NotSupported,
"GDALRasterAttributeTableFromMDArrays::SetTableType(): not "
"supported");
return CE_Failure;
}
//
void RemoveStatistics() override
{
}
//
GDALRATTableType GetTableType() const override
{
return m_eTableType;
}
};
/************************************************************************/
/* GDALRasterAttributeTableFromMDArrays() */
/************************************************************************/
GDALRasterAttributeTableFromMDArrays::GDALRasterAttributeTableFromMDArrays(
GDALRATTableType eTableType,
const std::vector<std::shared_ptr<GDALMDArray>> &apoArrays,
const std::vector<GDALRATFieldUsage> &aeUsages)
: m_eTableType(eTableType), m_apoArrays(apoArrays), m_aeUsages(aeUsages)
{
}
/************************************************************************/
/* GDALCreateRasterAttributeTableFromMDArrays() */
/************************************************************************/
/** Return a virtual Raster Attribute Table from several GDALMDArray's.
*
* All arrays must be single-dimensional and be indexed by the same dimension.
*
* This is the same as the C function GDALCreateRasterAttributeTableFromMDArrays().
*
* @param eTableType RAT table type
* @param apoArrays Vector of GDALMDArray's (none of them should be nullptr)
* @param aeUsages Vector of GDALRATFieldUsage (of the same size as apoArrays if non-empty), or empty vector to use defaults
* @return a new Raster Attribute Table to free with delete, or nullptr in case of error
* @since 3.9
*/
GDALRasterAttributeTable *GDALCreateRasterAttributeTableFromMDArrays(
GDALRATTableType eTableType,
const std::vector<std::shared_ptr<GDALMDArray>> &apoArrays,
const std::vector<GDALRATFieldUsage> &aeUsages)
{
if (apoArrays.empty())
{
CPLError(CE_Failure, CPLE_AppDefined,
"GDALCreateRasterAttributeTableFromMDArrays(): apoArrays "
"should not be empty");
return nullptr;
}
if (!aeUsages.empty() && apoArrays.size() != aeUsages.size())
{
CPLError(CE_Failure, CPLE_AppDefined,
"GDALCreateRasterAttributeTableFromMDArrays(): aeUsages "
"should be empty or have the same size as apoArrays");
return nullptr;
}
for (size_t i = 0; i < apoArrays.size(); ++i)
{
if (apoArrays[i]->GetDimensionCount() != 1)
{
CPLError(CE_Failure, CPLE_AppDefined,
"GDALCreateRasterAttributeTableFromMDArrays(): "
"apoArrays[%d] has a dimension count != 1",
static_cast<int>(i));
return nullptr;
}
if (i > 0 && (apoArrays[i]->GetDimensions()[0]->GetFullName() !=
apoArrays[0]->GetDimensions()[0]->GetFullName() ||
apoArrays[i]->GetDimensions()[0]->GetSize() !=
apoArrays[0]->GetDimensions()[0]->GetSize()))
{
CPLError(
CE_Failure, CPLE_AppDefined,
"GDALCreateRasterAttributeTableFromMDArrays(): apoArrays[%d] "
"does not have the same dimension has apoArrays[0]",
static_cast<int>(i));
return nullptr;
}
}
return new GDALRasterAttributeTableFromMDArrays(eTableType, apoArrays,
aeUsages);
}
/************************************************************************/
/* GDALCreateRasterAttributeTableFromMDArrays() */
/************************************************************************/
/** Return a virtual Raster Attribute Table from several GDALMDArray's.
*
* All arrays must be single-dimensional and be indexed by the same dimension.
*
* This is the same as the C++ method GDALCreateRasterAttributeTableFromMDArrays().
*
* @param eTableType RAT table type
* @param nArrays Number of elements in ahArrays parameter
* @param ahArrays Array of nArrays GDALMDArray's (none of them should be nullptr)
* @param paeUsages Array of nArray GDALRATFieldUsage, or nullptr to use defaults
* @return a new Raster Attribute Table to free with GDALDestroyRasterAttributeTable(), or nullptr in case of error
* @since 3.9
*/
GDALRasterAttributeTableH GDALCreateRasterAttributeTableFromMDArrays(
GDALRATTableType eTableType, int nArrays, const GDALMDArrayH *ahArrays,
const GDALRATFieldUsage *paeUsages)
{
VALIDATE_POINTER1(ahArrays, __func__, nullptr);
std::vector<std::shared_ptr<GDALMDArray>> apoArrays;
std::vector<GDALRATFieldUsage> aeUsages;
for (int i = 0; i < nArrays; ++i)
{
VALIDATE_POINTER1(ahArrays[i], __func__, nullptr);
apoArrays.emplace_back(ahArrays[i]->m_poImpl);
if (paeUsages)
aeUsages.emplace_back(paeUsages[i]);
}
return GDALRasterAttributeTable::ToHandle(
GDALCreateRasterAttributeTableFromMDArrays(eTableType, apoArrays,
aeUsages));
}