149{
152
153 text *formattext = NULL;
154 char *format = NULL;
155 char **options = NULL;
156 text *optiontext = NULL;
157 char *option = NULL;
159 char *srs = NULL;
160
161 ArrayType *array;
162 Oid etype;
163 Datum *e;
164 bool *nulls;
165 int16 typlen;
166 bool typbyval;
167 char typalign;
168 int n = 0;
169 int i = 0;
170 int j = 0;
171
172 uint8_t *gdal = NULL;
173 uint64_t gdal_size = 0;
174 bytea *result = NULL;
175 uint64_t result_size = 0;
176
178
179
180 if (PG_ARGISNULL(0)) PG_RETURN_NULL();
181 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
182
184 if (!raster) {
185 PG_FREE_IF_COPY(pgraster, 0);
186 elog(ERROR, "RASTER_asGDALRaster: Could not deserialize raster");
187 PG_RETURN_NULL();
188 }
189
190
191 if (PG_ARGISNULL(1)) {
192 elog(NOTICE, "Format must be provided");
194 PG_FREE_IF_COPY(pgraster, 0);
195 PG_RETURN_NULL();
196 }
197 else {
198 formattext = PG_GETARG_TEXT_P(1);
200 }
201
203
204
205 if (!PG_ARGISNULL(2)) {
207 array = PG_GETARG_ARRAYTYPE_P(2);
208 etype = ARR_ELEMTYPE(array);
209 get_typlenbyvalalign(etype, &typlen, &typbyval, &typalign);
210
211 switch (etype) {
212 case TEXTOID:
213 break;
214 default:
216 PG_FREE_IF_COPY(pgraster, 0);
217 elog(ERROR, "RASTER_asGDALRaster: Invalid data type for options");
218 PG_RETURN_NULL();
219 break;
220 }
221
222 deconstruct_array(array, etype, typlen, typbyval, typalign, &e,
223 &nulls, &n);
224
225 if (n) {
226 options = (char **) palloc(sizeof(char *) * (n + 1));
227 if (options == NULL) {
229 PG_FREE_IF_COPY(pgraster, 0);
230 elog(ERROR, "RASTER_asGDALRaster: Could not allocate memory for options");
231 PG_RETURN_NULL();
232 }
233
234
235 for (i = 0, j = 0; i < n; i++) {
236 if (nulls[i]) continue;
237
238 option = NULL;
239 switch (etype) {
240 case TEXTOID:
241 optiontext = (text *) DatumGetPointer(e[i]);
242 if (NULL == optiontext) break;
244
245
248 break;
249 }
250
251 if (strlen(option)) {
252 options[j] = (char *) palloc(sizeof(char) * (strlen(option) + 1));
253 strcpy(options[j], option);
254 j++;
255 }
256 }
257
258 if (j > 0) {
259
260 options = repalloc(options, (j + 1) * sizeof(char *));
261
262
263 options[j] = NULL;
264
265 }
266 else {
267 pfree(options);
268 options = NULL;
269 }
270 }
271 }
272
273
274
275 if (PG_ARGISNULL(3))
277 else
278 srid = PG_GETARG_INT32(3);
279
280
283 if (NULL == srs) {
284 if (NULL != options) {
285 for (i = j - 1; i >= 0; i--) pfree(options[i]);
286 pfree(options);
287 }
289 PG_FREE_IF_COPY(pgraster, 0);
290 elog(ERROR, "RASTER_asGDALRaster: Could not find srtext for SRID (%d)", srid);
291 PG_RETURN_NULL();
292 }
294 }
295 else
296 srs = NULL;
297
300
301
302 if (NULL != options) {
303 for (i = j - 1; i >= 0; i--) pfree(options[i]);
304 pfree(options);
305 }
306 if (NULL != srs) pfree(srs);
308 PG_FREE_IF_COPY(pgraster, 0);
309
310 if (!gdal) {
311 elog(ERROR, "RASTER_asGDALRaster: Could not allocate and generate GDAL raster");
312 PG_RETURN_NULL();
313 }
314 POSTGIS_RT_DEBUGF(3,
"RASTER_asGDALRaster: GDAL raster generated with %d bytes", (
int) gdal_size);
315
316
317 result_size = gdal_size + VARHDRSZ;
318 result = (bytea *) palloc(result_size);
319 if (NULL == result) {
320 elog(ERROR, "RASTER_asGDALRaster: Insufficient virtual memory for GDAL raster");
321 PG_RETURN_NULL();
322 }
323 SET_VARSIZE(result, result_size);
324 memcpy(VARDATA(result), gdal, VARSIZE_ANY_EXHDR(result));
325
326
327 CPLFree(gdal);
328
329 POSTGIS_RT_DEBUG(3,
"RASTER_asGDALRaster: Returning pointer to GDAL raster");
330 PG_RETURN_POINTER(result);
331}
#define SRID_UNKNOWN
Unknown SRID value.
int32_t clamp_srid(int32_t srid)
Return a valid SRID from an arbitrary integer Raises a notice if what comes out is different from wha...
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
uint8_t * rt_raster_to_gdal(rt_raster raster, const char *srs, char *format, char **options, uint64_t *gdalsize)
Return formatted GDAL raster from raster.
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
char * text_to_cstring(const text *textptr)
char * rtpg_getSR(int32_t srid)
char * rtpg_trim(const char *input)
#define POSTGIS_RT_DEBUG(level, msg)
#define POSTGIS_RT_DEBUGF(level, msg,...)