blob: 8b4685ce6bd6822f906feeb8a3a8efa302faee2b [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2:mod:`mmap` --- Memory-mapped file support
3==========================================
4
5.. module:: mmap
6 :synopsis: Interface to memory-mapped files for Unix and Windows.
7
8
9Memory-mapped file objects behave like both strings and like file objects.
10Unlike normal string objects, however, these are mutable. You can use mmap
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000011objects in most places where strings are expected; for example, you can use
12the :mod:`re` module to search through a memory-mapped file. Since they're
13mutable, you can change a single character by doing ``obj[index] = 'a'``, or
14change a substring by assigning to a slice: ``obj[i1:i2] = '...'``. You can
15also read and write data starting at the current file position, and
16:meth:`seek` through the file to different positions.
Georg Brandl8ec7f652007-08-15 14:28:01 +000017
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000018A memory-mapped file is created by the :class:`mmap` constructor, which is
19different on Unix and on Windows. In either case you must provide a file
20descriptor for a file opened for update. If you wish to map an existing Python
21file object, use its :meth:`fileno` method to obtain the correct value for the
22*fileno* parameter. Otherwise, you can open the file using the
23:func:`os.open` function, which returns a file descriptor directly (the file
24still needs to be closed when done).
Georg Brandl8ec7f652007-08-15 14:28:01 +000025
Georg Brandl845c4032008-01-21 14:16:46 +000026For both the Unix and Windows versions of the constructor, *access* may be
Georg Brandl8ec7f652007-08-15 14:28:01 +000027specified as an optional keyword parameter. *access* accepts one of three
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000028values: :const:`ACCESS_READ`, :const:`ACCESS_WRITE`, or :const:`ACCESS_COPY`
Jeroen Ruigrok van der Wervenea7fa722008-04-17 12:39:45 +000029to specify read-only, write-through or copy-on-write memory respectively.
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000030*access* can be used on both Unix and Windows. If *access* is not specified,
31Windows mmap returns a write-through mapping. The initial memory values for
32all three access types are taken from the specified file. Assignment to an
33:const:`ACCESS_READ` memory map raises a :exc:`TypeError` exception.
34Assignment to an :const:`ACCESS_WRITE` memory map affects both memory and the
35underlying file. Assignment to an :const:`ACCESS_COPY` memory map affects
36memory but does not update the underlying file.
Georg Brandl8ec7f652007-08-15 14:28:01 +000037
38.. versionchanged:: 2.5
39 To map anonymous memory, -1 should be passed as the fileno along with the
40 length.
41
Georg Brandl845c4032008-01-21 14:16:46 +000042.. versionchanged:: 2.6
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000043 mmap.mmap has formerly been a factory function creating mmap objects. Now
Georg Brandl845c4032008-01-21 14:16:46 +000044 mmap.mmap is the class itself.
Georg Brandl8ec7f652007-08-15 14:28:01 +000045
Georg Brandl845c4032008-01-21 14:16:46 +000046.. class:: mmap(fileno, length[, tagname[, access[, offset]]])
Georg Brandl8ec7f652007-08-15 14:28:01 +000047
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000048 **(Windows version)** Maps *length* bytes from the file specified by the
49 file handle *fileno*, and creates a mmap object. If *length* is larger
50 than the current size of the file, the file is extended to contain *length*
51 bytes. If *length* is ``0``, the maximum length of the map is the current
52 size of the file, except that if the file is empty Windows raises an
53 exception (you cannot create an empty mapping on Windows).
Georg Brandl8ec7f652007-08-15 14:28:01 +000054
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000055 *tagname*, if specified and not ``None``, is a string giving a tag name for
56 the mapping. Windows allows you to have many different mappings against
57 the same file. If you specify the name of an existing tag, that tag is
58 opened, otherwise a new tag of this name is created. If this parameter is
59 omitted or ``None``, the mapping is created without a name. Avoiding the
60 use of the tag parameter will assist in keeping your code portable between
61 Unix and Windows.
Georg Brandl8ec7f652007-08-15 14:28:01 +000062
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000063 *offset* may be specified as a non-negative integer offset. mmap references
64 will be relative to the offset from the beginning of the file. *offset*
65 defaults to 0. *offset* must be a multiple of the ALLOCATIONGRANULARITY.
Georg Brandl8ec7f652007-08-15 14:28:01 +000066
Travis E. Oliphant8feafab2007-10-23 02:40:56 +000067
Georg Brandl845c4032008-01-21 14:16:46 +000068.. class:: mmap(fileno, length[, flags[, prot[, access[, offset]]]])
Georg Brandl8ec7f652007-08-15 14:28:01 +000069 :noindex:
70
71 **(Unix version)** Maps *length* bytes from the file specified by the file
72 descriptor *fileno*, and returns a mmap object. If *length* is ``0``, the
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000073 maximum length of the map will be the current size of the file when
74 :class:`mmap` is called.
Georg Brandl8ec7f652007-08-15 14:28:01 +000075
76 *flags* specifies the nature of the mapping. :const:`MAP_PRIVATE` creates a
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000077 private copy-on-write mapping, so changes to the contents of the mmap
78 object will be private to this process, and :const:`MAP_SHARED` creates a
79 mapping that's shared with all other processes mapping the same areas of
80 the file. The default value is :const:`MAP_SHARED`.
Georg Brandl8ec7f652007-08-15 14:28:01 +000081
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000082 *prot*, if specified, gives the desired memory protection; the two most
83 useful values are :const:`PROT_READ` and :const:`PROT_WRITE`, to specify
84 that the pages may be read or written. *prot* defaults to
85 :const:`PROT_READ \| PROT_WRITE`.
Georg Brandl8ec7f652007-08-15 14:28:01 +000086
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000087 *access* may be specified in lieu of *flags* and *prot* as an optional
88 keyword parameter. It is an error to specify both *flags*, *prot* and
89 *access*. See the description of *access* above for information on how to
90 use this parameter.
Georg Brandl8ec7f652007-08-15 14:28:01 +000091
Jeroen Ruigrok van der Werven069dfad2008-04-16 12:47:01 +000092 *offset* may be specified as a non-negative integer offset. mmap references
93 will be relative to the offset from the beginning of the file. *offset*
94 defaults to 0. *offset* must be a multiple of the PAGESIZE or
95 ALLOCATIONGRANULARITY.
Georg Brandlfefcd4e2007-12-02 14:34:34 +000096
Georg Brandl845c4032008-01-21 14:16:46 +000097 This example shows a simple way of using :class:`mmap`::
Georg Brandlfefcd4e2007-12-02 14:34:34 +000098
99 import mmap
100
101 # write a simple example file
102 with open("hello.txt", "w") as f:
103 f.write("Hello Python!\n")
104
105 with open("hello.txt", "r+") as f:
106 # memory-map the file, size 0 means whole file
107 map = mmap.mmap(f.fileno(), 0)
108 # read content via standard file methods
109 print map.readline() # prints "Hello Python!"
110 # read content via slice notation
111 print map[:5] # prints "Hello"
112 # update content using slice notation;
113 # note that new content must have same size
114 map[6:] = " world!\n"
115 # ... and read again using standard file methods
116 map.seek(0)
117 print map.readline() # prints "Hello world!"
118 # close the map
119 map.close()
120
121
122 The next example demonstrates how to create an anonymous map and exchange
123 data between the parent and child processes::
124
125 import mmap
126 import os
127
128 map = mmap.mmap(-1, 13)
129 map.write("Hello world!")
130
131 pid = os.fork()
132
133 if pid == 0: # In a child process
134 map.seek(0)
135 print map.readline()
136
137 map.close()
138
Travis E. Oliphant8feafab2007-10-23 02:40:56 +0000139
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000140 Memory-mapped file objects support the following methods:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000141
142
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000143 .. method:: close()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000144
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000145 Close the file. Subsequent calls to other methods of the object will
146 result in an exception being raised.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000147
148
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000149 .. method:: find(string[, start[, end]])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000150
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000151 Returns the lowest index in the object where the substring *string* is
152 found, such that *string* is contained in the range [*start*, *end*].
153 Optional arguments *start* and *end* are interpreted as in slice notation.
154 Returns ``-1`` on failure.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000155
156
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000157 .. method:: flush([offset, size])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000158
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000159 Flushes changes made to the in-memory copy of a file back to disk. Without
160 use of this call there is no guarantee that changes are written back before
161 the object is destroyed. If *offset* and *size* are specified, only
162 changes to the given range of bytes will be flushed to disk; otherwise, the
163 whole extent of the mapping is flushed.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000164
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000165 **(Windows version)** A nonzero value returned indicates success; zero
166 indicates failure.
Jeroen Ruigrok van der Werven967a83c2008-04-16 12:57:43 +0000167
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000168 **(Unix version)** A zero value is returned to indicate success. An
169 exception is raised when the call failed.
Jeroen Ruigrok van der Werven967a83c2008-04-16 12:57:43 +0000170
Georg Brandl8ec7f652007-08-15 14:28:01 +0000171
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000172 .. method:: move(dest, src, count)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000173
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000174 Copy the *count* bytes starting at offset *src* to the destination index
175 *dest*. If the mmap was created with :const:`ACCESS_READ`, then calls to
176 move will throw a :exc:`TypeError` exception.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000177
178
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000179 .. method:: read(num)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000180
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000181 Return a string containing up to *num* bytes starting from the current
182 file position; the file position is updated to point after the bytes that
183 were returned.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000184
185
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000186 .. method:: read_byte()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000187
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000188 Returns a string of length 1 containing the character at the current file
189 position, and advances the file position by 1.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000190
191
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000192 .. method:: readline()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000193
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000194 Returns a single line, starting at the current file position and up to the
195 next newline.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000196
197
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000198 .. method:: resize(newsize)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000199
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000200 Resizes the map and the underlying file, if any. If the mmap was created
201 with :const:`ACCESS_READ` or :const:`ACCESS_COPY`, resizing the map will
202 throw a :exc:`TypeError` exception.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000203
204
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000205 .. method:: rfind(string[, start[, end]])
Andrew M. Kuchling5c60bfc2008-01-19 18:18:41 +0000206
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000207 Returns the highest index in the object where the substring *string* is
208 found, such that *string* is contained in the range [*start*, *end*].
209 Optional arguments *start* and *end* are interpreted as in slice notation.
210 Returns ``-1`` on failure.
Andrew M. Kuchling5c60bfc2008-01-19 18:18:41 +0000211
212
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000213 .. method:: seek(pos[, whence])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000214
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000215 Set the file's current position. *whence* argument is optional and
216 defaults to ``os.SEEK_SET`` or ``0`` (absolute file positioning); other
217 values are ``os.SEEK_CUR`` or ``1`` (seek relative to the current
218 position) and ``os.SEEK_END`` or ``2`` (seek relative to the file's end).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000219
220
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000221 .. method:: size()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000222
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000223 Return the length of the file, which can be larger than the size of the
224 memory-mapped area.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000225
226
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000227 .. method:: tell()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000228
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000229 Returns the current position of the file pointer.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000230
231
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000232 .. method:: write(string)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000233
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000234 Write the bytes in *string* into memory at the current position of the
235 file pointer; the file position is updated to point after the bytes that
236 were written. If the mmap was created with :const:`ACCESS_READ`, then
237 writing to it will throw a :exc:`TypeError` exception.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000238
239
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000240 .. method:: write_byte(byte)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000241
Benjamin Petersonc7b05922008-04-25 01:29:10 +0000242 Write the single-character string *byte* into memory at the current
243 position of the file pointer; the file position is advanced by ``1``. If
244 the mmap was created with :const:`ACCESS_READ`, then writing to it will
245 throw a :exc:`TypeError` exception.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000246
Travis E. Oliphant8feafab2007-10-23 02:40:56 +0000247