12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * \file seek.c
- *
- * \brief Segment seek routines.
- *
- * This program is free software under the GNU General Public License
- * (>=v2). Read the file COPYING that comes with GRASS for details.
- *
- * \author GRASS GIS Development Team
- *
- * \date 2005-2009
- */
- #include <stdio.h>
- #include <sys/types.h>
- #include <unistd.h>
- #include <string.h>
- #include <errno.h>
- #include <grass/gis.h>
- #include <grass/segment.h>
- /**
- * \fn int segment_seek (SEGMENT *SEG, int n, int index)
- *
- * \brief Seek into a segment.
- *
- * \param[in,out] SEG segment
- * \param[in] n
- * \param[in] index
- * \return 0 on success
- * \return -1 if unable to seek
- */
- int segment_seek_fast(const SEGMENT * SEG, int n, int index)
- {
- off_t offset = (((off_t) n) << SEG->sizebits) + index + SEG->offset;
- if (lseek(SEG->fd, offset, SEEK_SET) == (off_t) - 1) {
- G_warning("segment_seek: %s", strerror(errno));
- return -1;
- }
- return 0;
- }
- int segment_seek_slow(const SEGMENT * SEG, int n, int index)
- {
- off_t offset = (off_t) n * SEG->size + index + SEG->offset;
- if (lseek(SEG->fd, offset, SEEK_SET) == (off_t) - 1) {
- G_warning("segment_seek: %s", strerror(errno));
- return -1;
- }
- return 0;
- }
- static int (*segment_seek_mode[2]) () = {
- segment_seek_fast, segment_seek_slow};
- int segment_seek(const SEGMENT * SEG, int n, int index)
- {
- return (*segment_seek_mode[SEG->slow_seek]) (SEG, n, index);
- }
|