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
|
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <grass/gis.h>
#include <grass/raster.h>
#include "raster3d_intern.h"
/*---------------------------------------------------------------------------*/
static int Rast3d_tile2xdrTile(RASTER3D_Map *map, const void *tile, int rows,
int cols, int depths, int xRedundant,
int yRedundant, int zRedundant UNUSED,
int nofNum, int type)
{
int y, z;
if (!Rast3d_init_copy_to_xdr(map, type)) {
Rast3d_error("Rast3d_tile2xdrTile: error in Rast3d_init_copy_to_xdr");
return 0;
}
if (nofNum == map->tileSize) {
if (!Rast3d_copy_to_xdr(tile, map->tileSize)) {
Rast3d_error("Rast3d_tile2xdrTile: error in Rast3d_copy_to_xdr");
return 0;
}
return 1;
}
if (xRedundant) {
for (z = 0; z < depths; z++) {
for (y = 0; y < rows; y++) {
if (!Rast3d_copy_to_xdr(tile, cols)) {
Rast3d_error(
"Rast3d_tile2xdrTile: error in Rast3d_copy_to_xdr");
return 0;
}
tile = G_incr_void_ptr(tile, map->tileX * Rast3d_length(type));
}
if (yRedundant)
tile = G_incr_void_ptr(tile, map->tileX * yRedundant *
Rast3d_length(type));
}
return 1;
}
if (yRedundant) {
for (z = 0; z < depths; z++) {
if (!Rast3d_copy_to_xdr(tile, map->tileX * rows)) {
Rast3d_error(
"Rast3d_tile2xdrTile: error in Rast3d_copy_to_xdr");
return 0;
}
tile = G_incr_void_ptr(tile, map->tileXY * Rast3d_length(type));
}
return 1;
}
if (!Rast3d_copy_to_xdr(tile, map->tileXY * depths)) {
Rast3d_error("Rast3d_tile2xdrTile: error in Rast3d_copy_to_xdr");
return 0;
}
return 1;
}
/*---------------------------------------------------------------------------*/
static int Rast3d_writeTileUncompressed(RASTER3D_Map *map, int nofNum)
{
if (write(map->data_fd, xdr, map->numLengthExtern * nofNum) !=
map->numLengthExtern * nofNum) {
Rast3d_error("Rast3d_writeTileUncompressed: can't write file.");
return 0;
}
return 1;
}
/*---------------------------------------------------------------------------*/
static int Rast3d_writeTileCompressed(RASTER3D_Map *map, int nofNum)
{
if (!Rast3d_fpcompress_write_xdr_nums(map->data_fd, xdr, nofNum,
map->precision, tmpCompress,
map->type == FCELL_TYPE)) {
Rast3d_error("Rast3d_writeTileCompressed: error in "
"Rast3d_fpcompress_write_xdr_nums");
return 0;
}
return 1;
}
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/* EXPORTED FUNCTIONS */
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*!
* \brief
*
*
* Writes tile with index <em>tileIndex</em> to the file corresponding to
* <em>map</em>. It is assumed that the cells in <em>tile</em> are of
* <em>type</em> which must be one of FCELL_TYPE and DCELL_TYPE. The actual
* type used to write the tile depends on the type specified at the time when
* <em>map</em> is initialized. A tile can only be written once. Subsequent
* attempts to write the same tile are ignored.
*
* \param map
* \param tileIndex
* \param tile
* \param type
* \return 1 ... if successful,
* 2 ... if write request was ignored,
* 0 ... otherwise.
*/
int Rast3d_write_tile(RASTER3D_Map *map, int tileIndex, const void *tile,
int type)
{
int rows, cols, depths, xRedundant, yRedundant, zRedundant, nofNum;
/* valid tileIndex ? */
if ((tileIndex > map->nTiles) || (tileIndex < 0))
Rast3d_fatal_error("Rast3d_write_tile: tileIndex out of range");
/* already written ? */
if (map->index[tileIndex] != -1)
return 2;
/* save the file position */
map->index[tileIndex] = lseek(map->data_fd, (long)0, SEEK_END);
if (map->index[tileIndex] == -1) {
Rast3d_error("Rast3d_write_tile: can't position file");
return 0;
}
nofNum = Rast3d_compute_clipped_tile_dimensions(map, tileIndex, &rows,
&cols, &depths, &xRedundant,
&yRedundant, &zRedundant);
Rast3d_range_update_from_tile(map, tile, rows, cols, depths, xRedundant,
yRedundant, zRedundant, nofNum, type);
if (!Rast3d_tile2xdrTile(map, tile, rows, cols, depths, xRedundant,
yRedundant, zRedundant, nofNum, type)) {
Rast3d_error("Rast3d_write_tile: error in Rast3d_tile2xdrTile");
return 0;
}
if (map->compression == RASTER3D_NO_COMPRESSION) {
if (!Rast3d_writeTileUncompressed(map, nofNum)) {
Rast3d_error(
"Rast3d_write_tile: error in Rast3d_writeTileUncompressed");
return 0;
}
}
else {
if (!Rast3d_writeTileCompressed(map, nofNum)) {
Rast3d_error(
"Rast3d_write_tile: error in Rast3d_writeTileCompressed");
return 0;
}
}
/* compute the length */
map->tileLength[tileIndex] =
lseek(map->data_fd, (long)0, SEEK_END) - map->index[tileIndex];
return 1;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief
*
* Is equivalent to <tt>Rast3d_write_tile (map, tileIndex, tile,
* FCELL_TYPE).</tt>
*
* \param map
* \param tileIndex
* \param tile
* \return int
*/
int Rast3d_write_tile_float(RASTER3D_Map *map, int tileIndex, const void *tile)
{
int status;
if ((status = Rast3d_write_tile(map, tileIndex, tile, FCELL_TYPE)))
return status;
Rast3d_error("Rast3d_write_tile_float: error in Rast3d_write_tile");
return 0;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief
*
* Is equivalent to <tt>Rast3d_write_tile (map, tileIndex, tile,
* DCELL_TYPE).</tt>
*
* \param map
* \param tileIndex
* \param tile
* \return int
*/
int Rast3d_write_tile_double(RASTER3D_Map *map, int tileIndex, const void *tile)
{
int status;
if ((status = Rast3d_write_tile(map, tileIndex, tile, DCELL_TYPE)))
return status;
Rast3d_error("Rast3d_write_tile_double: error in Rast3d_write_tile");
return 0;
}
/*---------------------------------------------------------------------------*/
/* CACHE-MODE-ONLY FUNCTIONS */
/*---------------------------------------------------------------------------*/
/*!
* \brief
*
* Writes the tile with
* <em>tileIndex</em> to the file corresponding to <em>map</em> and removes the
* tile from the cache (in non-cache mode the buffer provided by the
* map-structure is written). If this tile has already been written before the
* write request is ignored. If the tile was never referred to before the
* invocation of Rast3d_flush_tile, a tile filled with NULL-values is written.
*
* \param map
* \param tileIndex
* \return 1 ... if successful,
* 0 ... otherwise.
*/
int Rast3d_flush_tile(RASTER3D_Map *map, int tileIndex)
{
const void *tile;
tile = Rast3d_get_tile_ptr(map, tileIndex);
if (tile == NULL) {
Rast3d_error("Rast3d_flush_tile: error in Rast3d_get_tile_ptr");
return 0;
}
if (!Rast3d_write_tile(map, tileIndex, tile, map->typeIntern)) {
Rast3d_error("Rast3d_flush_tile: error in Rast3d_write_tile");
return 0;
}
if (!Rast3d__remove_tile(map, tileIndex)) {
Rast3d_error("Rast3d_flush_tile: error in Rast3d__remove_tile");
return 0;
}
return 1;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief
*
* Writes the tiles with tile-coordinates
* contained in the axis-parallel cube with vertices <em>(xMin, yMin, zMin)</em>
* and <em>(xMax, yMax, zMax</em>). Tiles which are not stored in the cache are
* written as NULL-tiles. Write attempts for tiles which have already been
* written earlier are ignored.
*
* \param map
* \param xMin
* \param yMin
* \param zMin
* \param xMax
* \param yMax
* \param zMax
* \return 1 ... if successful,
* 0 ... otherwise.
*/
int Rast3d_flush_tile_cube(RASTER3D_Map *map, int xMin, int yMin, int zMin,
int xMax, int yMax, int zMax)
{
int x, y, z;
if (!map->useCache)
Rast3d_fatal_error(
"Rast3d_flush_tile_cube: function invalid in non-cache mode");
for (x = xMin; x <= xMax; x++)
for (y = yMin; y <= yMax; y++)
for (z = zMin; z <= zMax; z++)
if (!Rast3d_flush_tile(map,
Rast3d_tile2tile_index(map, x, y, z))) {
Rast3d_error(
"Rast3d_flush_tile_cube: error in Rast3d_flush_tile");
return 0;
}
return 1;
}
/*---------------------------------------------------------------------------*/
/*!
* \brief
*
* Writes those tiles for which
* <em>every</em> cell has coordinate contained in the axis-parallel cube
* defined by the vertices with cell-coordinates <em>(xMin, yMin, zMin)</em>
* and <em>(xMax, yMax, zMax)</em>.
* Tiles which are not stored in the cache are written as NULL-tiles.
* Write attempts for tiles which have already been written earlier are
* ignored.
*
* \param map
* \param xMin
* \param yMin
* \param zMin
* \param xMax
* \param yMax
* \param zMax
* \return 1 ... if successful,
* 0 ... otherwise.
*/
int Rast3d_flush_tiles_in_cube(RASTER3D_Map *map, int xMin, int yMin, int zMin,
int xMax, int yMax, int zMax)
{
int xTileMin, yTileMin, zTileMin, xTileMax, yTileMax, zTileMax;
int xOffs, yOffs, zOffs;
int regionMaxX, regionMaxY, regionMaxZ;
if (!map->useCache)
Rast3d_fatal_error(
"Rast3d_flush_tiles_in_cube: function invalid in non-cache mode");
/*AV*/
/*BEGIN OF ORIGINAL CODE */
/*
* Rast3d_get_coords_map (map, ®ionMaxX, ®ionMaxY, ®ionMaxZ);
*/
/*AV*/
/* BEGIN OF MY CODE */
Rast3d_get_coords_map(map, ®ionMaxY, ®ionMaxX, ®ionMaxZ);
/* END OF MY CODE */
if ((xMin < 0) && (xMax < 0))
Rast3d_fatal_error(
"Rast3d_flush_tiles_in_cube: coordinate out of Range");
if ((xMin >= regionMaxX) && (xMax >= regionMaxX))
Rast3d_fatal_error(
"Rast3d_flush_tiles_in_cube: coordinate out of Range");
xMin = MIN(MAX(0, xMin), regionMaxX - 1);
if ((yMin < 0) && (yMax < 0))
Rast3d_fatal_error(
"Rast3d_flush_tiles_in_cube: coordinate out of Range");
if ((yMin >= regionMaxY) && (yMax >= regionMaxY))
Rast3d_fatal_error(
"Rast3d_flush_tiles_in_cube: coordinate out of Range");
yMin = MIN(MAX(0, yMin), regionMaxY - 1);
if ((zMin < 0) && (zMax < 0))
Rast3d_fatal_error(
"Rast3d_flush_tiles_in_cube: coordinate out of Range");
if ((zMin >= regionMaxZ) && (zMax >= regionMaxZ))
Rast3d_fatal_error(
"Rast3d_flush_tiles_in_cube: coordinate out of Range");
zMin = MIN(MAX(0, zMin), regionMaxZ - 1);
Rast3d_coord2tile_coord(map, xMin, yMin, zMin, &xTileMin, &yTileMin,
&zTileMin, &xOffs, &yOffs, &zOffs);
if (xOffs != 0)
xTileMin++;
if (yOffs != 0)
yTileMin++;
if (zOffs != 0)
zTileMin++;
Rast3d_coord2tile_coord(map, xMax + 1, yMax + 1, zMax + 1, &xTileMax,
&yTileMax, &zTileMax, &xOffs, &yOffs, &zOffs);
xTileMax--;
yTileMax--;
zTileMax--;
if (!Rast3d_flush_tile_cube(map, xTileMin, yTileMin, zTileMin, xTileMax,
yTileMax, zTileMax)) {
Rast3d_error(
"Rast3d_flush_tiles_in_cube: error in Rast3d_flush_tile_cube");
return 0;
}
return 1;
}
#undef MIN
#undef MAX
/*---------------------------------------------------------------------------*/
|