summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/os_win/os_map.c
blob: b043f9c992373ec16defb9ed1aedfd78bdb18875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*-
 * Copyright (c) 2014-2016 MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

#include "wt_internal.h"

/*
 * __wt_win_map --
 *	Map a file into memory.
 */
int
__wt_win_map(WT_SESSION_IMPL *session,
    WT_FH *fh, void *mapp, size_t *lenp, void **mappingcookie)
{
	WT_DECL_RET;
	size_t len;
	wt_off_t file_size;
	void *map;

	/*
	 * There's no locking here to prevent the underlying file from changing
	 * underneath us, our caller needs to ensure consistency of the mapped
	 * region vs. any other file activity.
	 */
	WT_RET(__wt_filesize(session, fh, &file_size));
	len = (size_t)file_size;

	(void)__wt_verbose(session, WT_VERB_HANDLEOPS,
	    "%s: memory-map: %" WT_SIZET_FMT " bytes", fh->name, len);

	*mappingcookie =
	    CreateFileMappingA(fh->filehandle, NULL, PAGE_READONLY, 0, 0, NULL);
	if (*mappingcookie == NULL)
		WT_RET_MSG(session, __wt_getlasterror(),
		    "%s: memory-map: CreateFileMappingA", fh->name);

	if ((map =
	    MapViewOfFile(*mappingcookie, FILE_MAP_READ, 0, 0, len)) == NULL) {
		/* Retrieve the error before cleaning up. */
		ret = __wt_getlasterror();
		CloseHandle(*mappingcookie);
		*mappingcookie = NULL;

		WT_RET_MSG(session, ret,
		    "%s: memory-map: MapViewOfFile",  fh->name);
	}

	*(void **)mapp = map;
	*lenp = len;
	return (0);
}

/*
 * __wt_win_map_preload --
 *	Cause a section of a memory map to be faulted in.
 */
int
__wt_win_map_preload(
    WT_SESSION_IMPL *session, WT_FH *fh, const void *p, size_t size)
{
	WT_UNUSED(session);
	WT_UNUSED(fh);
	WT_UNUSED(p);
	WT_UNUSED(size);

	return (ENOTSUP);
}

/*
 * __wt_win_map_discard --
 *	Discard a chunk of the memory map.
 */
int
__wt_win_map_discard(WT_SESSION_IMPL *session, WT_FH *fh, void *p, size_t size)
{
	WT_UNUSED(session);
	WT_UNUSED(fh);
	WT_UNUSED(p);
	WT_UNUSED(size);

	return (ENOTSUP);
}

/*
 * __wt_win_map_unmap --
 *	Remove a memory mapping.
 */
int
__wt_win_map_unmap(WT_SESSION_IMPL *session,
    WT_FH *fh, void *map, size_t len, void **mappingcookie)
{
	WT_DECL_RET;

	(void)__wt_verbose(session, WT_VERB_HANDLEOPS,
	    "%s: memory-unmap: %" WT_SIZET_FMT " bytes", fh->name, len);

	WT_ASSERT(session, *mappingcookie != NULL);

	if (UnmapViewOfFile(map) == 0) {
		ret = __wt_getlasterror();
		__wt_err(session, ret,
		    "%s: memory-unmap: UnmapViewOfFile", fh->name);
	}

	if (CloseHandle(*mappingcookie) == 0) {
		ret = __wt_getlasterror();
		__wt_err(session, ret,
		    "%s: memory-unmap: CloseHandle", fh->name);
	}

	*mappingcookie = NULL;

	return (ret);
}