forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaults.c
488 lines (394 loc) · 12.3 KB
/
defaults.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
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
#include <stdlib.h>
#include <stdio.h>
#include <grass/raster3d.h>
#include "raster3d_intern.h"
/*---------------------------------------------------------------------------*/
#define RASTER3D_NO_DEFAULT -10
#define RASTER3D_COMPRESSION_DEFAULT RASTER3D_COMPRESSION
#define RASTER3D_PRECISION_DEFAULT RASTER3D_MAX_PRECISION
#define RASTER3D_CACHE_SIZE_DEFAULT 1000
#define RASTER3D_CACHE_SIZE_MAX_DEFAULT 16777216
#define RASTER3D_FILE_TYPE_DEFAULT DCELL_TYPE
#define RASTER3D_TILE_X_DEFAULT 16
#define RASTER3D_TILE_Y_DEFAULT 16
#define RASTER3D_TILE_Z_DEFAULT 8
#define RASTER3D_ERROR_FUN_DEFAULT Rast3d_skip_error
#define RASTER3D_UNIT_DEFAULT "none"
#define RASTER3D_VERTICAL_UNIT_DEFAULT U_UNKNOWN
/*---------------------------------------------------------------------------*/
/*!
\brief Name of the environmental variable specifying that compression
should be used.
Setting the environmental variable to any value will cause that the
compression will be used (set when calling Rast3d_init_defaults
for the first time).
This environmental variable takes precedence before the environmental
variable specified by RASTER3D_COMPRESSION_ENV_VAR_NO.
*/
#define RASTER3D_COMPRESSION_ENV_VAR_YES "RASTER3D_USE_COMPRESSION"
/*!
\brief Name of the environmental variable specifying that compression
should not be used.
\see RASTER3D_COMPRESSION_ENV_VAR_YES
*/
#define RASTER3D_COMPRESSION_ENV_VAR_NO "RASTER3D_NO_COMPRESSION"
#define RASTER3D_PRECISION_ENV_VAR "RASTER3D_PRECISION"
#define RASTER3D_PRECISION_ENV_VAR_MAX "RASTER3D_MAX_PRECISION"
#define RASTER3D_CACHE_SIZE_ENV_VAR "RASTER3D_DEFAULT_CACHE_SIZE"
#define RASTER3D_CACHE_SIZE_MAX_ENV_VAR "RASTER3D_MAX_CACHE_SIZE"
#define RASTER3D_FILE_FLOAT_ENV_VAR "RASTER3D_WRITE_FLOAT"
#define RASTER3D_FILE_DOUBLE_ENV_VAR "RASTER3D_WRITE_DOUBLE"
#define RASTER3D_TILE_DIM_X_ENV_VAR "RASTER3D_TILE_DIMENSION_X"
#define RASTER3D_TILE_DIM_Y_ENV_VAR "RASTER3D_TILE_DIMENSION_Y"
#define RASTER3D_TILE_DIM_Z_ENV_VAR "RASTER3D_TILE_DIMENSION_Z"
#define RASTER3D_FATAL_ERROR_ENV_VAR "RASTER3D_USE_FATAL_ERROR"
#define RASTER3D_PRINT_ERROR_ENV_VAR "RASTER3D_USE_PRINT_ERROR"
#define RASTER3D_DEFAULT_WINDOW3D "RASTER3D_DEFAULT_WINDOW3D"
/*---------------------------------------------------------------------------*/
int g3d_version = RASTER3D_MAP_VERSION;
int g3d_do_compression = RASTER3D_NO_DEFAULT;
int g3d_precision = RASTER3D_NO_DEFAULT;
int g3d_cache_default = RASTER3D_NO_DEFAULT;
int g3d_cache_max = RASTER3D_NO_DEFAULT;
int g3d_file_type = RASTER3D_NO_DEFAULT;
int g3d_tile_dimension[3] =
{ RASTER3D_NO_DEFAULT, RASTER3D_NO_DEFAULT, RASTER3D_NO_DEFAULT };
void (*g3d_error_fun) (const char *) = NULL;
char *g3d_unit_default = NULL;
int g3d_vertical_unit_default = U_UNDEFINED;
/*---------------------------------------------------------------------------*/
/*!
* \brief set compression mode
*
* <em>doCompress</em> should be one of RASTER3D_NO_COMPRESSION and
* RASTER3D_COMPRESSION. <em>precision</em> should be either
* RASTER3D_MAX_PRECISION or a positive integer.
*
* \note Note that older parameters <em>doLzw</em> and <em>doRle</em>
* (RASTER3D_NO_RLE or RASTER3D_USE_RLE) are no longer in the API.
*
* Calls Rast3d_fatal_error() if a wrong parameter value is provided.
*
* \param doCompress specifies if a compression should be performed
* \param precision a precision of compression
*/
void
Rast3d_set_compression_mode(int doCompress, int precision)
{
if ((doCompress != RASTER3D_NO_COMPRESSION) && (doCompress != RASTER3D_COMPRESSION))
Rast3d_fatal_error("Rast3d_set_compression_mode: wrong value for doCompress.");
g3d_do_compression = doCompress;
if (doCompress == RASTER3D_NO_COMPRESSION)
return;
if (precision < -1)
Rast3d_fatal_error("Rast3d_set_compression_mode: wrong value for precision.");
g3d_precision = precision;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Gets compression mode
*
* \param doCompress pointer to the integer where the compression mode will
* be stored
* \param precision pointer to the integer where the precision mode will
* be stored
*
* \see Rast3d_set_compression_mode, RASTER3D_COMPRESSION_ENV_VAR_YES,
RASTER3D_COMPRESSION_ENV_VAR_YES
*/
void
Rast3d_get_compression_mode(int *doCompress, int *precision)
{
if (doCompress != NULL)
*doCompress = g3d_do_compression;
if (precision != NULL)
*precision = g3d_precision;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief set cache size
*
* \param nTiles
* \return void
*/
void Rast3d_set_cache_size(int nTiles)
{
if (nTiles < 0)
Rast3d_fatal_error("Rast3d_set_cache_size: size out of range.");
g3d_cache_default = nTiles;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief get cache size
*
* \return int
*/
int Rast3d_get_cache_size()
{
return g3d_cache_default;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Set cache limit
*
* \param nBytes
* \return void
*/
void Rast3d_set_cache_limit(int nBytes)
{
if (nBytes <= 0)
Rast3d_fatal_error("Rast3d_set_cache_limit: size out of range.");
g3d_cache_max = nBytes;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Get cache limit
*
* \return int
*/
int Rast3d_get_cache_limit()
{
return g3d_cache_max;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief set G3d file type
*
* \param type
* \return void
*/
void Rast3d_set_file_type(int type)
{
if ((type != FCELL_TYPE) && (type != DCELL_TYPE))
Rast3d_fatal_error("Rast3d_setFileTypeDefault: invalid type");
g3d_file_type = type;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief get G3d file type
*
* \return int
*/
int Rast3d_get_file_type()
{
return g3d_file_type;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief set Tile Dimension
*
* \param tileX
* \param tileY
* \param tileZ
* \return void
*/
void Rast3d_set_tile_dimension(int tileX, int tileY, int tileZ)
{
if ((g3d_tile_dimension[0] = tileX) <= 0)
Rast3d_fatal_error
("Rast3d_set_tile_dimension: value for tile x environment variable out of range");
if ((g3d_tile_dimension[1] = tileY) <= 0)
Rast3d_fatal_error
("Rast3d_set_tile_dimension: value for tile y environment variable out of range");
if ((g3d_tile_dimension[2] = tileZ) <= 0)
Rast3d_fatal_error
("Rast3d_set_tile_dimension: value for tile z environment variable out of range");
}
/*---------------------------------------------------------------------------*/
/*!
* \brief get Tile Dimension
*
* \param tileX
* \param tileY
* \param tileZ
* \return void
*/
void Rast3d_get_tile_dimension(int *tileX, int *tileY, int *tileZ)
{
*tileX = g3d_tile_dimension[0];
*tileY = g3d_tile_dimension[1];
*tileZ = g3d_tile_dimension[2];
}
/*---------------------------------------------------------------------------*/
/*!
* \brief set error function
*
* \param fun
* \return void
*/
void Rast3d_set_error_fun(void (*fun) (const char *))
{
g3d_error_fun = fun;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief Initializes the default values described
* in RASTER3D Defaults. Applications have to use this function only if they need to
* query the default values before the first file (either old or new) has been
* opened.
*
* \return void
*/
void Rast3d_init_defaults(void)
{
static int firstTime = 1;
const char *value, *windowName;
RASTER3D_Region window;
if (!firstTime)
return;
firstTime = 0;
if (g3d_do_compression == RASTER3D_NO_DEFAULT) {
if (NULL != getenv(RASTER3D_COMPRESSION_ENV_VAR_YES)) {
g3d_do_compression = RASTER3D_COMPRESSION;
}
else {
if (NULL != getenv(RASTER3D_COMPRESSION_ENV_VAR_NO)) {
g3d_do_compression = RASTER3D_NO_COMPRESSION;
}
else {
g3d_do_compression = RASTER3D_COMPRESSION_DEFAULT;
}
}
}
if (g3d_precision == RASTER3D_NO_DEFAULT) {
if (NULL != getenv(RASTER3D_PRECISION_ENV_VAR_MAX)) {
g3d_precision = RASTER3D_MAX_PRECISION;
}
else {
value = getenv(RASTER3D_PRECISION_ENV_VAR);
if (value == NULL) {
g3d_precision = RASTER3D_PRECISION_DEFAULT;
}
else {
if (sscanf(value, "%d", &g3d_precision) != 1) {
Rast3d_fatal_error
("Rast3d_init_defaults: precision environment variable has invalid value");
}
else {
if (g3d_precision < -1) {
Rast3d_fatal_error
("Rast3d_init_defaults: value for cache environment variable out of range");
}
}
}
}
}
if (g3d_file_type == RASTER3D_NO_DEFAULT) {
if (NULL != getenv(RASTER3D_FILE_FLOAT_ENV_VAR)) {
g3d_file_type = FCELL_TYPE;
}
else {
if (NULL != getenv(RASTER3D_FILE_DOUBLE_ENV_VAR)) {
g3d_file_type = DCELL_TYPE;
}
else {
g3d_file_type = RASTER3D_FILE_TYPE_DEFAULT;
}
}
}
if (g3d_cache_default == RASTER3D_NO_DEFAULT) {
value = getenv(RASTER3D_CACHE_SIZE_ENV_VAR);
if (value == NULL) {
g3d_cache_default = RASTER3D_CACHE_SIZE_DEFAULT;
}
else {
if (sscanf(value, "%d", &g3d_cache_default) != 1) {
Rast3d_fatal_error
("Rast3d_init_defaults: cache environment variable has invalid value");
}
if (g3d_cache_default < 0) {
Rast3d_fatal_error
("Rast3d_init_defaults: value for cache environment variable out of range");
}
}
}
if (g3d_cache_max == RASTER3D_NO_DEFAULT) {
value = getenv(RASTER3D_CACHE_SIZE_MAX_ENV_VAR);
if (value == NULL) {
g3d_cache_max = RASTER3D_CACHE_SIZE_MAX_DEFAULT;
}
else {
if (sscanf(value, "%d", &g3d_cache_max) != 1) {
Rast3d_fatal_error
("Rast3d_init_defaults: cache environment variable has invalid value");
}
if (g3d_cache_max < 0) {
Rast3d_fatal_error
("Rast3d_init_defaults: value for cache environment variable out of range");
}
}
}
if (g3d_tile_dimension[0] == RASTER3D_NO_DEFAULT) {
value = getenv(RASTER3D_TILE_DIM_X_ENV_VAR);
if (value == NULL) {
g3d_tile_dimension[0] = RASTER3D_TILE_X_DEFAULT;
}
else {
if (sscanf(value, "%d", g3d_tile_dimension) != 1) {
Rast3d_fatal_error
("Rast3d_init_defaults: tile dimension x environment variable has invalid value");
}
if (g3d_tile_dimension[0] <= 0) {
Rast3d_fatal_error
("Rast3d_init_defaults: value for tile x environment variable out of range");
}
}
value = getenv(RASTER3D_TILE_DIM_Y_ENV_VAR);
if (value == NULL) {
g3d_tile_dimension[1] = RASTER3D_TILE_Y_DEFAULT;
}
else {
if (sscanf(value, "%d", g3d_tile_dimension + 1) != 1) {
Rast3d_fatal_error
("Rast3d_init_defaults: tile dimension y environment variable has invalid value");
}
if (g3d_tile_dimension[1] <= 0) {
Rast3d_fatal_error
("Rast3d_init_defaults: value for tile y environment variable out of range");
}
}
value = getenv(RASTER3D_TILE_DIM_Z_ENV_VAR);
if (value == NULL) {
g3d_tile_dimension[2] = RASTER3D_TILE_Z_DEFAULT;
}
else {
if (sscanf(value, "%d", g3d_tile_dimension + 2) != 1) {
Rast3d_fatal_error
("Rast3d_init_defaults: tile dimension z environment variable has invalid value");
}
if (g3d_tile_dimension[2] <= 0) {
Rast3d_fatal_error
("Rast3d_init_defaults: value for tile z environment variable out of range");
}
}
}
if (g3d_error_fun == NULL) {
value = getenv(RASTER3D_FATAL_ERROR_ENV_VAR);
if (value != NULL) {
g3d_error_fun = Rast3d_fatal_error_noargs;
}
else {
value = getenv(RASTER3D_PRINT_ERROR_ENV_VAR);
if (value != NULL) {
g3d_error_fun = Rast3d_print_error;
}
else {
g3d_error_fun = RASTER3D_ERROR_FUN_DEFAULT;
}
}
}
if(g3d_unit_default == NULL)
g3d_unit_default = G_store(RASTER3D_UNIT_DEFAULT);
if(g3d_vertical_unit_default == U_UNDEFINED)
g3d_vertical_unit_default = RASTER3D_VERTICAL_UNIT_DEFAULT;
windowName = Rast3d_get_window_params();
if (windowName == NULL) {
value = getenv(RASTER3D_DEFAULT_WINDOW3D);
if (value != NULL)
if (*value != 0)
windowName = value;
}
if (!Rast3d_read_window(&window, windowName))
Rast3d_fatal_error("Rast3d_init_defaults: Error reading window");
Rast3d_set_window(&window);
}