123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <grass/raster.h>
- #include "raster3d_intern.h"
- static int
- Rast3d_xdrTile2tile(RASTER3D_Map * map, void *tile, int rows, int cols, int depths,
- int xRedundant, int yRedundant, int zRedundant, int nofNum,
- int type)
- {
- int y, z, xLength, yLength, length;
- if (!Rast3d_init_copy_from_xdr(map, type)) {
- Rast3d_error("Rast3d_xdrTile2tile: error in Rast3d_init_copy_from_xdr");
- return 0;
- }
- if (nofNum == map->tileSize) {
- if (!Rast3d_copy_from_xdr(map->tileSize, tile)) {
- Rast3d_error("Rast3d_xdrTile2tile: error in Rast3d_copy_from_xdr");
- return 0;
- }
- return 1;
- }
- length = Rast3d_length(type);
- xLength = xRedundant * length;
- yLength = map->tileX * yRedundant * length;
- if (xRedundant) {
- for (z = 0; z < depths; z++) {
- for (y = 0; y < rows; y++) {
- if (!Rast3d_copy_from_xdr(cols, tile)) {
- Rast3d_error("Rast3d_xdrTile2tile: error in Rast3d_copy_from_xdr");
- return 0;
- }
- tile = G_incr_void_ptr(tile, cols * length);
- Rast3d_set_null_value(tile, xRedundant, type);
- tile = G_incr_void_ptr(tile, xLength);
- }
- if (yRedundant) {
- Rast3d_set_null_value(tile, map->tileX * yRedundant, type);
- tile = G_incr_void_ptr(tile, yLength);
- }
- }
- if (!zRedundant)
- return 1;
- Rast3d_set_null_value(tile, map->tileXY * zRedundant, type);
- return 1;
- }
- if (yRedundant) {
- for (z = 0; z < depths; z++) {
- if (!Rast3d_copy_from_xdr(map->tileX * rows, tile)) {
- Rast3d_error("Rast3d_xdrTile2tile: error in Rast3d_copy_from_xdr");
- return 0;
- }
- tile = G_incr_void_ptr(tile, map->tileX * rows * length);
- Rast3d_set_null_value(tile, map->tileX * yRedundant, type);
- tile = G_incr_void_ptr(tile, yLength);
- }
- if (!zRedundant)
- return 1;
- Rast3d_set_null_value(tile, map->tileXY * zRedundant, type);
- return 1;
- }
- if (!Rast3d_copy_from_xdr(map->tileXY * depths, tile)) {
- Rast3d_error("Rast3d_xdrTile2tile: error in Rast3d_copy_from_xdr");
- return 0;
- }
- if (!zRedundant)
- return 1;
- tile = G_incr_void_ptr(tile, map->tileXY * depths * length);
- Rast3d_set_null_value(tile, map->tileXY * zRedundant, type);
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- static int Rast3d_readTileUncompressed(RASTER3D_Map * map, int tileIndex, int nofNum)
- {
- size_t nofBytes;
- nofBytes = nofNum * map->numLengthExtern;
- nofBytes = RASTER3D_MIN(nofBytes, map->fileEndPtr - map->index[tileIndex]);
- if (read(map->data_fd, xdr, nofBytes) != nofBytes) {
- Rast3d_error("Rast3d_readTileUncompressed: can't read file");
- return 0;
- }
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- static int Rast3d_readTileCompressed(RASTER3D_Map * map, int tileIndex, int nofNum)
- {
- if (!Rast3d_fpcompress_read_xdr_nums(map->data_fd, xdr, nofNum,
- map->tileLength[tileIndex],
- map->precision, tmpCompress,
- map->type == FCELL_TYPE)) {
- Rast3d_error
- ("Rast3d_readTileCompressed: error in Rast3d_fpcompress_read_xdr_nums");
- return 0;
- }
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /*---------------------------------------------------------------------------*/
- /* EXPORTED FUNCTIONS */
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- *
- * Reads tile with index <em>tileIndex</em> into the <em>tile</em> buffer. The cells
- * are stored with type <em>type</em> which must be one of FCELL_TYPE and
- * DCELL_TYPE. If the tile with <em>tileIndex</em> is not stored on the file
- * corresponding to <em>map</em>, and <em>tileIndex</em> is a valid index <em>tile</em>
- * is filled with NULL-values.
- *
- * \param map
- * \param tileIndex
- * \param tile
- * \param type
- * \return 1 ... if successful,
- * 0 ... otherwise
- */
- int Rast3d_read_tile(RASTER3D_Map * map, int tileIndex, void *tile, int type)
- {
- int nofNum, rows, cols, depths, xRedundant, yRedundant, zRedundant;
- if ((tileIndex >= map->nTiles) || (tileIndex < 0))
- Rast3d_fatal_error("Rast3d_read_tile: tile index out of range");
- if (map->index[tileIndex] == -1) {
- Rast3d_set_null_tile_type(map, tile, type);
- return 1;
- }
- nofNum = Rast3d_compute_clipped_tile_dimensions(map, tileIndex,
- &rows, &cols, &depths,
- &xRedundant, &yRedundant,
- &zRedundant);
- if (lseek(map->data_fd, map->index[tileIndex], SEEK_SET) == -1) {
- Rast3d_error("Rast3d_read_tile: can't position file");
- return 0;
- }
- if (map->compression == RASTER3D_NO_COMPRESSION) {
- if (!Rast3d_readTileUncompressed(map, tileIndex, nofNum)) {
- Rast3d_error("Rast3d_read_tile: error in Rast3d_readTileUncompressed");
- return 0;
- }
- }
- else if (!Rast3d_readTileCompressed(map, tileIndex, nofNum)) {
- Rast3d_error("Rast3d_read_tile: error in Rast3d_readTileCompressed");
- return 0;
- }
- if (!Rast3d_xdrTile2tile(map, tile, rows, cols, depths,
- xRedundant, yRedundant, zRedundant, nofNum, type)) {
- Rast3d_error("Rast3d_read_tile: error in Rast3d_xdrTile2tile");
- return 0;
- }
- if (Rast3d_mask_is_off(map))
- return 1;
- Rast3d_mask_tile(map, tileIndex, tile, type);
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Is equivalent to Rast3d_read_tile (map, tileIndex, tile, FCELL_TYPE).
- *
- * \param map
- * \param tileIndex
- * \param tile
- * \return int
- */
- int Rast3d_read_tile_float(RASTER3D_Map * map, int tileIndex, void *tile)
- {
- if (!Rast3d_read_tile(map, tileIndex, tile, FCELL_TYPE)) {
- Rast3d_error("Rast3d_read_tile_float: error in Rast3d_read_tile");
- return 0;
- }
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Is equivalent to Rast3d_read_tile (map, tileIndex, tile, DCELL_TYPE).
- *
- * \param map
- * \param tileIndex
- * \param tile
- * \return int
- */
- int Rast3d_read_tile_double(RASTER3D_Map * map, int tileIndex, void *tile)
- {
- if (!Rast3d_read_tile(map, tileIndex, tile, DCELL_TYPE)) {
- Rast3d_error("Rast3d_read_tile_double: error in Rast3d_read_tile");
- return 0;
- }
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /* CACHE-MODE-ONLY FUNCTIONS */
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Locks tile with <em>tileIndex</em> in cache. If after locking fewer than the minimum number of
- * unlocked tiles are unlocked, the lock request is ignored.
- *
- * \param map
- * \param tileIndex
- * \return 1 ... if successful,
- * -1 ... if request is ignored,
- * 0 ... otherwise.
- */
- int Rast3d_lock_tile(RASTER3D_Map * map, int tileIndex)
- {
- if (!map->useCache)
- Rast3d_fatal_error("Rast3d_lock_tile: function invalid in non-cache mode");
- if (!Rast3d_cache_lock(map->cache, tileIndex)) {
- Rast3d_error("Rast3d_lock_tile: error in Rast3d_cache_lock");
- return 0;
- }
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Unlocks tile with <em>tileIndex</em>.
- *
- * \param map
- * \param tileIndex
- * \return 1 ... if successful,
- * 0 ... otherwise.
- */
- int Rast3d_unlock_tile(RASTER3D_Map * map, int tileIndex)
- {
- if (!map->useCache)
- Rast3d_fatal_error("Rast3d_unlock_tile: function invalid in non-cache mode");
- if (!Rast3d_cache_unlock(map->cache, tileIndex)) {
- Rast3d_error("Rast3d_unlock_tile: error in Rast3d_cache_unlock");
- return 0;
- }
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Unlocks every tile in cache of <em>map</em>.
- *
- * \param map
- * \return 1 ... if successful,
- * 0 ... otherwise.
- */
- int Rast3d_unlock_all(RASTER3D_Map * map)
- {
- if (!map->useCache)
- Rast3d_fatal_error("Rast3d_unlock_all: function invalid in non-cache mode");
- if (!Rast3d_cache_unlock_all(map->cache)) {
- Rast3d_error("Rast3d_unlock_all: error in Rast3d_cache_unlock_all");
- return 0;
- }
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Turns autolock mode on.
- *
- * \param map
- * \return void
- */
- void Rast3d_autolock_on(RASTER3D_Map * map)
- {
- if (!map->useCache)
- Rast3d_fatal_error("Rast3d_autoLockOn: function invalid in non-cache mode");
- Rast3d_cache_autolock_on(map->cache);
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Turns autolock mode Off.
- *
- * \param map
- * \return void
- */
- void Rast3d_autolock_off(RASTER3D_Map * map)
- {
- if (!map->useCache)
- Rast3d_fatal_error("Rast3d_autoLockOff: function invalid in non-cache mode");
- Rast3d_cache_autolock_off(map->cache);
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Sets the minimum
- * number of unlocked tiles to <em>minUnlocked</em>. This function should be used
- * in combination with <tt>Rast3d_unlock_all ()</tt> in order to avoid situations where the
- * new minimum is larger than the actual number of unlocked tiles.
- * <em>minUnlocked</em> must be one of RASTER3D_USE_CACHE_X, RASTER3D_USE_CACHE_Y,
- * RASTER3D_USE_CACHE_Z, RASTER3D_USE_CACHE_XY, RASTER3D_USE_CACHE_XZ,
- * RASTER3D_USE_CACHE_YZ, RASTER3D_USE_CACHE_XYZ, the result of Rast3d_cache_size_encode()
- * (cf.{g3d:G3d.cacheSizeEncode}), or any positive integer
- * which explicitly specifies the number of tiles.
- *
- * \param map
- * \param minUnlocked
- * \return void
- */
- void Rast3d_min_unlocked(RASTER3D_Map * map, int minUnlocked)
- {
- if (!map->useCache)
- Rast3d_fatal_error("Rast3d_autoLockOff: function invalid in non-cache mode");
- Rast3d_cache_set_min_unlock(map->cache,
- Rast3d__compute_cache_size(map, minUnlocked));
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Starts a new cycle.
- *
- * \param map
- * \return 1 ... if successful,
- * 0 ... otherwise.
- */
- int Rast3d_begin_cycle(RASTER3D_Map * map)
- {
- if (!Rast3d_unlock_all(map)) {
- Rast3d_fatal_error("Rast3d_begin_cycle: error in Rast3d_unlock_all");
- return 0;
- }
- Rast3d_autolock_on(map);
- return 1;
- }
- /*---------------------------------------------------------------------------*/
- /*!
- * \brief
- *
- * Ends a cycle.
- *
- * \param map
- * \return 1 ... if successful,
- * 0 ... otherwise.
- */
- int Rast3d_end_cycle(RASTER3D_Map * map)
- {
- Rast3d_autolock_off(map);
- return 1;
- }
|