os_seek.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  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.8 2000/05/17 19:30:19 bostic Exp $";
  10. #endif /* not lint */
  11. #include "db_int.h"
  12. #include "os_jump.h"
  13. /*
  14.  * __os_seek --
  15.  * Seek to a page/byte offset in the file.
  16.  */
  17. int
  18. __os_seek(dbenv, fhp, pgsize, pageno, relative, isrewind, db_whence)
  19. DB_ENV *dbenv;
  20. DB_FH *fhp;
  21. size_t pgsize;
  22. db_pgno_t pageno;
  23. u_int32_t relative;
  24. int isrewind;
  25. DB_OS_SEEK db_whence;
  26. {
  27. __int64 offset;
  28. int ret, whence;
  29. switch (db_whence) {
  30. case DB_OS_SEEK_CUR:
  31. whence = SEEK_CUR;
  32. break;
  33. case DB_OS_SEEK_END:
  34. whence = SEEK_END;
  35. break;
  36. case DB_OS_SEEK_SET:
  37. whence = SEEK_SET;
  38. break;
  39. default:
  40. return (EINVAL);
  41. }
  42. if (__db_jump.j_seek != NULL)
  43. ret =  __db_jump.j_seek(fhp->fd, pgsize, pageno,
  44.     relative, isrewind, whence);
  45. else {
  46. offset = (__int64)pgsize * pageno + relative;
  47. if (isrewind)
  48. offset = -offset;
  49. ret = _lseeki64(
  50.     fhp->fd, offset, whence) == -1 ? __os_get_errno() : 0;
  51. }
  52. if (ret != 0)
  53. __db_err(dbenv, "seek: %lu %d %d: %s",
  54.     (u_long)pgsize * pageno + relative,
  55.     isrewind, db_whence, strerror(ret));
  56. return (ret);
  57. }