summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-20 08:19:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-20 08:19:26 +0000
commita75668a202d7991a9a9f79d08b2f10802ef52e4c (patch)
tree36769e441c663bd40def2fc202071513bf94b837 /win32
parenteb7ddaa3a47bf48045d26c72eb0f263a53524ebc (diff)
win32.c: volume serial numbers
* win32/win32.c (different_device_p): compare by volume serial numbers, not by path names. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 023d1a82f8..b7d7e32935 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4702,28 +4702,28 @@ rb_w32_getenv(const char *name)
}
/* License: Ruby's */
+static DWORD
+get_volume_serial_number(const WCHAR *path)
+{
+ const DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
+ const DWORD creation = OPEN_EXISTING;
+ const DWORD flags = FILE_FLAG_BACKUP_SEMANTICS;
+ BY_HANDLE_FILE_INFORMATION st = {0};
+ HANDLE h = CreateFileW(path, 0, share_mode, NULL, creation, flags, NULL);
+ BOOL ret;
+
+ if (h == INVALID_HANDLE_VALUE) return 0;
+ ret = GetFileInformationByHandle(h, &st);
+ CloseHandle(h);
+ if (!ret) return 0;
+ return st.dwVolumeSerialNumber;
+}
+
+/* License: Ruby's */
static int
different_device_p(const WCHAR *oldpath, const WCHAR *newpath)
{
- WCHAR oldfullpath[_MAX_PATH], newfullpath[_MAX_PATH];
- DWORD oldlen, newlen;
-
- newlen = GetFullPathNameW(newpath, numberof(newfullpath), newfullpath, NULL);
- if (newlen <= 1) return 0;
- oldlen = GetFullPathNameW(oldpath, numberof(oldfullpath), oldfullpath, NULL);
- if (oldlen <= 1) return 0;
- if (newfullpath[1] == L':') {
- if (oldfullpath[1] != L':') return 1;
- return newfullpath[0] != oldfullpath[0];
- }
- if (newfullpath[0] != L'\\' || newfullpath[1] != L'\\') return 0;
- if (oldfullpath[0] != L'\\' || oldfullpath[1] != L'\\') return 0;
- if (!(newpath = wcschr(newfullpath+2, L'\\'))) return 0;
- if (!(newpath = wcschr(newpath+1, L'\\'))) return 0;
- if (!(oldpath = wcschr(oldfullpath+2, L'\\'))) return 0;
- if (!(oldpath = wcschr(oldpath+1, L'\\'))) return 0;
- if (newpath - newfullpath != oldpath - oldfullpath) return 1;
- return wcsncmp(newfullpath, oldfullpath, oldpath - oldfullpath) != 0;
+ return get_volume_serial_number(oldpath) != get_volume_serial_number(newpath);
}
/* License: Artistic or GPL */