os_seek.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_seek.c,v 11.18 2002/07/12 18:56:52 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <stdlib.h>
  14. #include <string.h>
  15. #include <unistd.h>
  16. #endif
  17. #include "db_int.h"
  18. /*
  19.  * __os_seek --
  20.  * Seek to a page/byte offset in the file.
  21.  *
  22.  * PUBLIC: int __os_seek __P((DB_ENV *,
  23.  * PUBLIC:      DB_FH *, size_t, db_pgno_t, u_int32_t, int, DB_OS_SEEK));
  24.  */
  25. int
  26. __os_seek(dbenv, fhp, pgsize, pageno, relative, isrewind, db_whence)
  27. DB_ENV *dbenv;
  28. DB_FH *fhp;
  29. size_t pgsize;
  30. db_pgno_t pageno;
  31. u_int32_t relative;
  32. int isrewind;
  33. DB_OS_SEEK db_whence;
  34. {
  35. off_t offset;
  36. int ret, whence;
  37. switch (db_whence) {
  38. case DB_OS_SEEK_CUR:
  39. whence = SEEK_CUR;
  40. break;
  41. case DB_OS_SEEK_END:
  42. whence = SEEK_END;
  43. break;
  44. case DB_OS_SEEK_SET:
  45. whence = SEEK_SET;
  46. break;
  47. default:
  48. return (EINVAL);
  49. }
  50. if (DB_GLOBAL(j_seek) != NULL)
  51. ret = DB_GLOBAL(j_seek)(fhp->fd,
  52.     pgsize, pageno, relative, isrewind, whence);
  53. else {
  54. offset = (off_t)pgsize * pageno + relative;
  55. if (isrewind)
  56. offset = -offset;
  57. do {
  58. ret = lseek(fhp->fd, offset, whence) == -1 ?
  59.     __os_get_errno() : 0;
  60. } while (ret == EINTR);
  61. }
  62. if (ret != 0)
  63. __db_err(dbenv, "seek: %lu %d %d: %s",
  64.     (u_long)pgsize * pageno + relative,
  65.     isrewind, db_whence, strerror(ret));
  66. return (ret);
  67. }