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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_fid.c,v 11.15 2002/08/26 14:37:39 margo Exp $";
  10. #endif /* not lint */
  11. #include "db_int.h"
  12. #define SERIAL_INIT 0
  13. static u_int32_t fid_serial = SERIAL_INIT;
  14. /*
  15.  * __os_fileid --
  16.  * Return a unique identifier for a file.
  17.  */
  18. int
  19. __os_fileid(dbenv, fname, unique_okay, fidp)
  20. DB_ENV *dbenv;
  21. const char *fname;
  22. int unique_okay;
  23. u_int8_t *fidp;
  24. {
  25. size_t i;
  26. u_int32_t tmp;
  27. u_int8_t *p;
  28. int ret;
  29. /*
  30.  * The documentation for GetFileInformationByHandle() states that the
  31.  * inode-type numbers are not constant between processes.  Actually,
  32.  * they are, they're the NTFS MFT indexes.  So, this works on NTFS,
  33.  * but perhaps not on other platforms, and perhaps not over a network.
  34.  * Can't think of a better solution right now.
  35.  */
  36. DB_FH fh;
  37. BY_HANDLE_FILE_INFORMATION fi;
  38. BOOL retval = FALSE;
  39. DB_ASSERT(fname != NULL);
  40. /* Clear the buffer. */
  41. memset(fidp, 0, DB_FILE_ID_LEN);
  42. /*
  43.  * Initialize/increment the serial number we use to help avoid
  44.  * fileid collisions.  Note that we don't bother with locking;
  45.  * it's unpleasant to do from down in here, and if we race on
  46.  * this no real harm will be done, since the finished fileid
  47.  * has so many other components.
  48.  *
  49.  * We increment by 100000 on each call as a simple way of
  50.  * randomizing;  simply incrementing seems potentially less useful
  51.  * if pids are also simply incremented, since this is process-local
  52.  * and we may be one of a set of processes starting up.  100000
  53.  * pushes us out of pid space on most platforms, and has few
  54.  * interesting properties in base 2.
  55.  */
  56. if (fid_serial == SERIAL_INIT)
  57. __os_id(&fid_serial);
  58. else
  59. fid_serial += 100000;
  60. /*
  61.  * First we open the file, because we're not given a handle to it.
  62.  * If we can't open it, we're in trouble.
  63.  */
  64. if ((ret = __os_open(dbenv, fname, DB_OSO_RDONLY, _S_IREAD, &fh)) != 0)
  65. return (ret);
  66. /* File open, get its info */
  67. if ((retval = GetFileInformationByHandle(fh.handle, &fi)) == FALSE)
  68. ret = __os_win32_errno();
  69. __os_closehandle(dbenv, &fh);
  70. if (retval == FALSE)
  71. return (ret);
  72. /*
  73.  * We want the three 32-bit words which tell us the volume ID and
  74.  * the file ID.  We make a crude attempt to copy the bytes over to
  75.  * the callers buffer.
  76.  *
  77.  * We don't worry about byte sexing or the actual variable sizes.
  78.  *
  79.  * When this routine is called from the DB access methods, it's only
  80.  * called once -- whatever ID is generated when a database is created
  81.  * is stored in the database file's metadata, and that is what is
  82.  * saved in the mpool region's information to uniquely identify the
  83.  * file.
  84.  *
  85.  * When called from the mpool layer this routine will be called each
  86.  * time a new thread of control wants to share the file, which makes
  87.  * things tougher.  As far as byte sexing goes, since the mpool region
  88.  * lives on a single host, there's no issue of that -- the entire
  89.  * region is byte sex dependent.  As far as variable sizes go, we make
  90.  * the simplifying assumption that 32-bit and 64-bit processes will
  91.  * get the same 32-bit values if we truncate any returned 64-bit value
  92.  * to a 32-bit value.
  93.  */
  94. tmp = (u_int32_t)fi.nFileIndexLow;
  95. for (p = (u_int8_t *)&tmp, i = sizeof(u_int32_t); i > 0; --i)
  96. *fidp++ = *p++;
  97. tmp = (u_int32_t)fi.nFileIndexHigh;
  98. for (p = (u_int8_t *)&tmp, i = sizeof(u_int32_t); i > 0; --i)
  99. *fidp++ = *p++;
  100. if (unique_okay) {
  101. /*
  102.  * Use the system time to try to get a unique value
  103.  * within this process.  A millisecond counter
  104.  * overflows 32 bits in about 49 days.  So we use 8
  105.  * bytes, and don't bother with the volume ID, which
  106.  * is not very useful for our purposes.
  107.  */
  108. SYSTEMTIME st;
  109. GetSystemTime(&st);
  110. tmp = (st.wYear - 1900) * 12 + (st.wMonth - 1);
  111. for (p = (u_int8_t *)&tmp, i = sizeof(u_int32_t); i > 0; --i)
  112. *fidp++ = *p++;
  113. tmp = ((((st.wDay - 1) * 24 + st.wHour) * 60 +
  114. st.wMinute) * 60 + st.wSecond) * 1000 +
  115. st.wMilliseconds;
  116. for (p = (u_int8_t *)&tmp, i = sizeof(u_int32_t); i > 0; --i)
  117. *fidp++ = *p++;
  118. for (p = (u_int8_t *)&fid_serial, i = sizeof(u_int32_t);
  119.     i > 0; --i)
  120. *fidp++ = *p++;
  121. } else {
  122. tmp = (u_int32_t)fi.dwVolumeSerialNumber;
  123. for (p = (u_int8_t *)&tmp, i = sizeof(u_int32_t); i > 0; --i)
  124. *fidp++ = *p++;
  125. }
  126. return (0);
  127. }