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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_finit.c,v 11.9 2000/03/29 20:50:52 ubell Exp $";
  10. #endif /* not lint */
  11. #include "db_int.h"
  12. /*
  13.  * __os_fpinit --
  14.  * Initialize a page in a regular file.
  15.  *
  16.  * PUBLIC: int __os_fpinit __P((DB_ENV *, DB_FH *, db_pgno_t, int, int));
  17.  */
  18. int
  19. __os_fpinit(dbenv, fhp, pgno, pagecount, pagesize)
  20. DB_ENV *dbenv;
  21. DB_FH *fhp;
  22. db_pgno_t pgno;
  23. int pagecount, pagesize;
  24. {
  25. size_t nw, totalbytes, curbytes;
  26. int ret;
  27. char buf[1024];
  28. /*
  29.  * Windows/NT zero-fills pages that were never explicitly written to
  30.  * the file.  Windows 95/98 gives you random garbage, and that breaks
  31.  * DB.
  32.  */
  33. if (__os_is_winnt())
  34. return (0);
  35. if ((ret = __os_seek(dbenv,
  36.     fhp, pagesize, pgno, 0, 0, DB_OS_SEEK_SET)) != 0)
  37. return (ret);
  38. memset(buf, 0, sizeof(buf));
  39. totalbytes = pagecount * pagesize;
  40. while (totalbytes > 0) {
  41. if (totalbytes > sizeof(buf))
  42. curbytes = sizeof(buf);
  43. else
  44. curbytes = totalbytes;
  45. if ((ret = __os_write(dbenv, fhp, buf, curbytes, &nw)) != 0)
  46. return (ret);
  47. if (nw != curbytes)
  48. return (EIO);
  49. totalbytes -= curbytes;
  50. }
  51. return (0);
  52. }