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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
|
"""$Id: memmap.py,v 1.32 2005/10/21 20:42:04 jaytmiller Exp $
This module implements a class wrapper (memmap) around the
mmap type which adds some additional properties.
The intended use of the class(es) (memmap, memmapslice) is to create a
single tier of slices from a file and to use these slices as if they
were buffers within the Numarray framework. The slices have these
properties:
1. memmapslices are non-overlapping.
2. memmapslices are resizable.
3. memmapslices from the same memmap remain "related" and affect one
anothers buffer offsets.
4. Changing the size of a memmapslice changes the size of the parent memmap.
For example:
Open a memory map windowed on file 'memmap.tst'. In practice, the
file might be (a) much bigger and (b) already existing. Other file modes
"r" and "r+" handle existing files for readonly and read-write cases.
>>> m = open("memmap.tst","w+",len=48)
>>> m
<memmap on file 'memmap.tst' with mode='w+', length=48, 0 slices>
As in C stdio, when a file is opened for 'w+', it is truncated
(effectively deleted) if it already exists. The initial contents of a
w+ memmap are undefined.
Slice m into the buffers "n" and "p" which will correspond to numarray:
>>> n = m[0:16]
>>> n
<memmapslice of length:16 writable>
>>> p = m[24:48]
>>> p
<memmapslice of length:24 writable>
NOTE: You *can not* make overlapping slices of a memmap:
>>> q = m[20:28]
Traceback (most recent call last):
...
IndexError: Slice overlaps prior slice of same file.
NOTE: you *can not* make an array directly from a memmap:
>>> import scipy.base as sb
>>> c = sb.frombuffer(buffer=m, dtype=sb.int32, count=len(m)/4)
Traceback (most recent call last):
...
error: NA_updateDataPtr: error getting read buffer data ptr
This fails because m, being the root memmap and not a memmapslice, does not
define __buffer__() or resize().
Finally, the good part. Make numarray from the memmapslice "buffers":
>>> a = num.NumArray(buffer=n, shape=(len(n)/4,), type=num.Int32)
>>> a[:] = 0 # Since the initial contents of 'n' are undefined.
>>> a += 1
>>> num.explicit_type(a)
array([1, 1, 1, 1], type=Int32)
>>> b = num.NumArray(buffer=p, shape=(len(p)/8,), type=num.Float64)
>>> b[:] = 0 # Since the initial contents of 'p' are undefined.
>>> b += 2.0
>>> b
array([ 2., 2., 2.])
Here's the other good part about memmapslices: they're resizable.
>>> _junk = a.resize( 6 )
>>> num.explicit_type(a)
array([1, 1, 1, 1, 1, 1], type=Int32)
>>> b
array([ 2., 2., 2.])
What you should note is that "b" retains the correct contents (i.e., offset
within "m") even though "a" grew, effectively moving "b". In reality, "b"
stayed where it always was and "a" has moved to a bigger RAM-based buffer.
Since we resized "a", "m" is now a different size as well:
>>> m
<memmap on file 'memmap.tst' with mode='w+', length=56, 2 slices>
After doing resizes, call m.flush() to synchronize the underlying file
of "m" with any RAM based slices. This step is required to avoid
implicitly shuffling huge amounts of file space for every insert or
delete. After calling m.flush(), all slices are once again memory
mapped rather than purely RAM based.
>>> m.flush()
NOTE: Since memory maps don't guarantee when the underlying file will
be updated with the values you have written to the map, call m.sync()
when you want to be sure your changes are on disk. Note that sync()
does not consolidate the mapfile with any purely RAM based slices
which have been inserted into the map.
>>> m.sync()
Now "a" and "b" are both memory mapped on "memmap.tst" again.
It is also possible for "a" or "b" to shrink:
>>> _junk = a.resize(0)
>>> num.explicit_type(a)
array([], type=Int32)
>>> b
array([ 2., 2., 2.])
>>> m
<memmap on file 'memmap.tst' with mode='r+', length=32, 2 slices>
Arrays based on memmapslices can be pickled:
>>> import cPickle
>>> c = cPickle.loads(cPickle.dumps(b))
>>> c
array([ 2., 2., 2.])
However, when the array is restored by the unpickler, the buffer is
restored as an "orphaned" memmapslice. There is currently no support
for pickling the memmap.
When you're done with the memory map and numarray, call m.close(). m.close()
calls m.flush() which will do consolidation if any is needed.
>>> m.close()
It is an error to use "m" (or slices of m) any further after closing
it.
>>> m._buffer()
Traceback (most recent call last):
...
RuntimeError: memmap no longer valid. (closed?)
Slices of a memmap are memmapslice objects. Slices of a memmapslice
are strings.
>>> m = memmap("memmap.tst",mode="w+",len=100)
>>> m1=m[:]
>>> m2=m1[:]
>>> m3=m1[:10]
>>> int(isinstance(m3, types.StringType))
1
>>> int(isinstance(m2, types.StringType))
1
>>> m.close()
Deletion of a slice of a memmap "un-registers" the slice, making that
region of the memmap available for reallocation:
>>> m = memmap("memmap.tst",mode="w+",len=100)
>>> m1 = m[0:50]
Delete directly from the memmap without referring to the memmapslice:
>>> del m[0:50]
>>> m2 = m[0:70]
Note that since the region of m1 was deleted, there is no overlap when
m2 is created. However, deleting the region of m1 has
invalidated it:
>>> m1
Traceback (most recent call last):
...
RuntimeError: A deleted memmapslice has been used.
It is a bad idea to mix operations on a memmap which modify its data
or file structure with slice deletions. DO NOT use a memmapslice
where it's contents can be modified or resized and then delete the
region it refers to later. In this case, the status of the
modifications is undefined; the underlying map may or may not reflect
the modifications after the deletion.
>>> m.close()
Copy-on-write memory maps can be opened using either mode="c" or
mode="copyonwrite". Copy-on-write maps have writable slices, but
cannot be resized, flushed, or synced to the original file.
>>> m = memmap("memmap.tst",mode="c",len=100)
>>> n = m[:]
>>> n
<memmapslice of length:100 writable>
>>> a = num.NumArray(buffer=n, shape=(len(n),), type=num.Int8)
>>> a += 1
>>> # it worked!
>>> m.close()
Try a zero length memmap based on comments from Sebastian Hesse
>>> m = memmap("memmap.tst", mode='w+', len=0)
>>> n = m.insert(0,0)
>>> a = num.NumArray(buffer=n, type=num.UInt16, shape=(0,0,0))
>>> _junk = a.resize((100,100,100))
>>> m.flush()
>>> m.close()
Readonly memory maps can be opened using either mode="r" or
mode="readonly". Readonly maps have readonly slices as well as all
of the restrictions of copy-on-write mappings.
>>> m = memmap("memmap.tst",mode="r",len=100)
>>> n = m[:]
>>> n
<memmapslice of length:100 readonly>
>>> a = num.NumArray(buffer=n, shape=(len(n),), type=num.Int8)
>>> a += 1 # can't work... buffer is readonly
Traceback (most recent call last):
...
error: add_11x1_vsxv: Problem with write buffer[2].
>>> b = a + 1 # this still works...
>>>
"""
import sys
from __builtin__ import open as __open
import os
import mmap
import types
import operator
import copy_reg
import copy
from numeric import frombuffer, newbuffer, getbuffer
valid_filemodes = ["r", "c", "r+", "w+"]
writeable_filemodes = ["r+","w+"]
mode_equivalents = {
"readonly":"r",
"copyonwrite":"c",
"readwrite":"r+",
"write":"w+"
}
def _open(file, mode):
return __open(file, mode+"b")
class memmap:
def __init__(self, filename, mode="r+", len=None):
"""
Valid "mode" values for a memmap are:
"readonly" or "r"
"copyonwrite" or "c"
"readwrite" or "r+"
"write" or "w+"
Create a small test file with 100 zeroes:
>>> _open("memmap.tst","w+").write(chr(0)*100)
Map it as a readwrite mapping:
>>> m = memmap("memmap.tst","r+")
"""
self._filename = filename
self._slices = []
self._mmap = None
if mode in mode_equivalents.keys():
mode = mode_equivalents[mode]
elif mode not in valid_filemodes:
raise ValueError("mode must be one of %s" % \
(valid_filemodes + mode_equivalents.keys()))
if mode == "w+" and len is None:
raise ValueError("Must specify 'len' if mode is 'w+'")
self._readonly = (mode == "r")
self._mode = mode
file = _open(filename, (mode == "c" and "r" or mode))
file.seek(0, 2)
flen = file.tell()
if len is None:
len = flen
if mode == "w+" or (mode == "r+" and flen < len):
if len:
file.seek(len-1, 0) # seek to the last byte and write it.
file.write(chr(0))
file.flush()
flen = len
if len:
if mode == "c":
acc = mmap.ACCESS_COPY
elif mode == "r":
acc = mmap.ACCESS_READ
else:
acc = mmap.ACCESS_WRITE
self._mmap = mmap.mmap(file.fileno(), len, access=acc)
else:
self._mmap = None
file.close()
def __repr__(self):
self._chkOverlaps(0,0)
return "<memmap on file '%s' with mode='%s', length=%d, %d slices>" % \
(self._filename, self._mode, len(self), len(self._slices))
def close(self):
"""
close(self) unites the memory map and any RAM based slices
with its underlying file and removes the mapping and all
references to its slices. Don't call this till you're done
using the memmap!
"""
if self._mutablefile():
self.flush()
self._lose_map()
def _buffer(self, begin=0, end=None):
"""_buffer(self) returns a buffer object for memmap 'self'.
"""
if self._mmap is None:
raise RuntimeError("memmap no longer valid. (closed?)")
if end is None:
end = len(self)
return getbuffer(self._mmap, begin, end)
def _chkOverlaps(self, begin, end):
"""_chkOverlaps(self, begin, end) is called to raise an exception
if the requested slice will overlap any slices which have already
been taken.
"""
for b,e,obj in self._slices:
if (b < begin < e or
b < end < e or
begin < b < end or
begin < e < end or
b == begin and e == end and b != e):
raise IndexError("Slice overlaps prior slice of same file.")
def __len__(self):
"""len(self) is the number of bytes in memmap 'self'.
"""
if self._mmap:
maplen = len(self._mmap)
else:
maplen = 0
orig_len = reduce(operator.add, [ e-b for b,e,o in self._slices ], 0)
obj_len = reduce(operator.add, [ len(o) for b,e,o in self._slices], 0)
return int(maplen - orig_len + obj_len)
def __str__(self):
if self._mmap is not None:
return self._mmap[:]
else:
return ""
def _fix_slice(self, i):
"""_fix_slice(self, i) converts a __getitem__ 'key' into slice
parameters, and returns a tuple (beg, end).
"""
if isinstance(i, types.SliceType):
if i.step is not None:
raise IndexError("memmap does not support strides.")
j, i = i.stop, i.start
else:
j = i+1
i, j = self._chkIndex(i, 1), self._chkIndex(j, 1)
return i, j
def _chkIndex(self, i, isSlice=0):
"""_chkIndex(self, i) raises an IndexError if 'i' is not a valid
index of 'self'
"""
if i == int(2L**31-1): # XXX Python indices are ints for now. sys.maxint is a long.
return len(self)
if i < 0:
i += len(self)
if not(0 <= i < len(self)+isSlice):
raise IndexError("Invalid memmap index: %d" % (i,))
return i
def __getitem__(self,i):
"""__getitem__(self,i) returns a memmapslice corresponding to the
index 'i' of the memmap 'self'. The memmap keeps a record of the
slice so that it can coordinate it with other slices from the same
file. Slices of a memmap are not permitted to overlap.
"""
i, j = self._fix_slice(i)
self._chkOverlaps(i, j)
obj = memmapslice(self._buffer(i, j), readonly=self._readonly)
self._slices.append((i, j, obj))
return obj
def __delitem__(self,i):
"""__delitem__(self,i) deletes a slice from a memmap, removing the
record of the "slice", but not the underlying data footprint.
"""
i, j = self._fix_slice(i)
for k in range(len(self._slices)):
b,e,o = self._slices[k]
if b==i and e==j:
o._mark_deleted()
del self._slices[k]
return
else:
raise ValueError("Can't find slice (%d,%d)" % (i,j))
def _mutablefile(self):
"""_mutablefile returns 1 iff the file underlying the memory
map can be modified. Thus, it returns 0 for readonly and
copyonwrite mappings."""
return self._mode not in ["c","r"]
def sync(self):
"""sync(self) ultimately calls msync, guaranteeing that updates
to a MMap are already written to the underlying file system
device when the call returns.
"""
if self._mutablefile() and self._mmap is not None:
self._mmap.flush()
def _dirty(self):
"""_dirty(self) is 1 if any slice of self is "dirty". A slice is
dirty if it has been resized in any way, or was not part of the
original memmap. _dirty(self) specifically excludes in-place
modification, since this can happen at the C-level and there's
no way to know whether it has happened or not.
"""
return reduce( operator.or_, [ o.dirty() for b,e,o in self._slices ],
0 )
def _lose_map(self):
"""_lose_map(self) eliminates all references to the underlying mmap,
so that it will be deleted. This appeared necessary on Win-NT to be
able to re-map the same file.
"""
for b,e,o in self._slices:
o._rebuffer(None)
if self._mmap is not None:
self._mmap.close()
self._mmap = None
def _consolidate(self, new_map=None):
"""_consolidate(self) re-writes the memory map file,
interspersing RAM based slices with the content of the mmap
which has been updated in-place. By default, the new memory
mapped file is then mapped in place of the old one."""
if (not self._mutablefile() and
(new_map == self._filename or new_map is None)):
raise RuntimeError("memmap trying to flush onto readonly file")
temp_map = "memmap.tmp"
f = _open(temp_map, "w+")
mlen = len(self)
l = self._slices
self._slices = []
l.sort()
m = 0
for b, e, obj in l:
if b > m: # copy original mmap between slices
f.write(self._buffer(m,b))
ob = f.tell()
f.write(obj.__buffer__())
oe = f.tell()
self._slices.append((ob,oe,obj))
m = e
if mlen != oe:
f.write(self._buffer(m, mlen))
f.close()
self._lose_map()
if new_map is not None:
self._filename = new_map
if os.path.exists(self._filename):
os.remove(self._filename)
os.rename(temp_map, self._filename)
f = _open(self._filename,"r+")
self._readonly = 0
self._mode = "r+"
self._mmap = mmap.mmap(f.fileno(), mlen)
for b,e,o in self._slices:
o._rebuffer(self._buffer(b, e))
f.close()
def flush(self, filename=None):
"""flush(self) first syncs the memory map with the underlying
file, then consolidates it with any RAM based slices in a new
file, then remaps the new file. Both slice offsets and
buffers change. If there are no RAM based buffers, no
consolidation is performed.
It is possible to flush a map onto a new file by specifying
its name with the filename parameter.
"""
self.sync()
if self._dirty() or (filename and self._filename != filename):
self._consolidate(filename)
def find(self, string, offset=0):
"""find(string, offset=0) returns the first index at which string
is found, or -1 on failure.
>>> _open("memmap.tst","w+").write("this is a test")
>>> memmap("memmap.tst",len=14).find("is")
2
>>> memmap("memmap.tst",len=14).find("is", 3)
5
>>> _open("memmap.tst","w+").write("x")
>>> memmap("memmap.tst",len=1).find("is")
-1
"""
if self._mmap is None:
raise RuntimeError("_mmap is None; memmap closed?")
else:
return self._mmap.find(string, offset)
def move(self, dest, src, count):
"""move(dest, src, count) moves 'count' characters from 'src' to 'dest'
within a memmap.
"""
self._buffer()[dest:dest+count] = self._buffer()[src:src+count]
def insert(self, offset, size=None, buffer=None):
"""
insert(self, offset, size) inserts a new slice of 'size'
bytes, possibly between two adjacent slices, at byte 'offset'.
It is not legal to insert into the middle of another slice, but
pretty much everything else is legal. The resulting
memmapslice is returned.
>>> m = open("memmap.tst",mode="w+",len=100)
>>> n = m[0:50]
>>> p = m[50:100]
>>> q=m.insert(0, 200)
>>> r=m.insert(50, 100)
>>> s=m.insert(100, 300)
>>> t=m.insert(45, 100)
Traceback (most recent call last):
...
IndexError: Slice overlaps prior slice of same file.
>>> m.flush()
>>> len(m)
700
>>> m.close()
"""
self._chkIndex(offset, isSlice=1)
self._chkOverlaps(offset, offset)
if buffer is None:
mem = newbuffer(size)
elif size is None or len(buffer) == size:
mem = buffer
size = len(buffer)
else:
raise ValueError("buffer and size don't match.")
obj = memmapslice(mem, dirty=1)
self._slices.append((offset, offset, obj))
return obj
def __del__(self):
self.close()
class memmapslice:
def __init__(self, buffer, dirty=0, readonly=0):
self._buffer = buffer
self._dirty = dirty
self._deleted = 0
self._readonly = readonly
def _mark_deleted(self):
self._deleted = 1
def _check_deleted(self):
"""_check_deleted ensures that a deleted memmap region does not continue
to be used. For a map region to be re-used, a new slice must be taken.
"""
if self._deleted:
raise RuntimeError, "A deleted memmapslice has been used."
# Limited pickling support: memmapslices are pickled uniquely, and are
# restored as memmapslices, but they are orphaned in the sense that
# the memory mapped file from which they came is likely to be gone.
# Ideally, under these circumstances, the memmapslice should just mutate
# into a memory object on unpickling. This seems hard to do...
def __getstate__(self):
"""Returns the state of a memmapslice for pickling."""
self._check_deleted()
d = copy.copy(self.__dict__)
d["_buffer"] = str(self._buffer)
d["_dirty"] = 0
d["_readonly"] = 0
return d
def __setstate__(self, state):
"""Restores the state of a memmapslice after unpickling."""
self.__dict__.update(state)
strng = state["_buffer"]
N = len(string)
self._buffer = newbuffer(N)
self._buffer[:] = strng
def __repr__(self):
if self._readonly:
s = "readonly"
else:
s = "writable"
return "<memmapslice of length:%d %s>" % (len(self), s)
def __len__(self):
if self._buffer is not None:
return len(self.__buffer__())
else:
return 0
def dirty(self):
"""dirty(self, set=None) is 1 iff 'self' has changed its buffer since it
was created.
"""
return self._dirty
def __getitem__(self,i):
self._check_deleted()
if type(i) is types.IntType:
return str(self.__buffer__()[i])
elif type(i) is types.SliceType:
return str(self.__buffer__()[i.start:i.stop])
else:
raise TypeError("Can't handle index type")
def __setitem__(self, i, v):
self._check_deleted()
if type(i) is types.IntType:
self.__buffer__()[i] = v
elif type(i) is types.SliceType:
self.__buffer__()[i.start:i.stop] = v
else:
raise TypeError("Can't handle index type")
def __buffer__(self):
self._check_deleted()
if self._buffer is not None:
return self._buffer
else:
raise RuntimeError("memmapslice no longer valid...(memmap closed?)")
def _rebuffer(self, b):
self._buffer = b
self._dirty = 0
self._readonly = 0
def _modify_buffer(self, offset, size):
"""_modify_buffer(self, offset, size) replaces the slice's mmap
buffer with a resized RAM buffer, and copies the contents.
"""
self._check_deleted()
self._dirty = 1
olen = len(self)
nlen = olen+size
nm = newbuffer(nlen)
nm[0:offset] = self._buffer[0:offset]
if size > 0:
nm[offset+size:] = self._buffer[offset:]
else:
nm[offset:] = self._buffer[offset-size:]
self._buffer = nm
def _insert(self, offset, size):
"""_insert(self, offset, size) expands the MMap at 'offset'
by 'size' bytes.
'offset' refers to a position between two existing characters, the
beginning, or the end.
"""
# Since insertion points aren't indices, tolerate the end
self._check_deleted()
self._chkIndex(offset, 1)
if offset + size > sys.maxint:
raise ValueError("Insert makes file too big for integer offsets")
self._modify_buffer(offset, size)
def insert(self, offset, value, size=None, padc=0):
"""insert(self, offset, value, size=None) inserts string 'value' at
'offset', possibly padding it with extra characters of value 'padc'.
If size is None, the the size of the insert is len(value).
"""
l = len(value)
if size is None:
size = l
elif l < size:
value += padc * (size-l)
elif l > size:
raise ValueError("'value' too long for 'size'")
self._insert(offset, size)
self.__buffer__()[offset:offset+size] = value
def _append(self, size):
"""append(self, size) is similar to 'insert', but assumes the offset is
the end of the current slice.
"""
self._insert(len(self), size)
def append(self, value):
size = len(value)
self._append(size)
self.__buffer__()[-size:] = value
def delete(self, offset, size):
"""delete(self, offset, size) removes 'size' bytes from the MMap,
starting at 'offset'.
'offset' refers to a position between two existing characters, the
beginning, or the end.
"""
self._chkIndex(offset+size, 1)
self._insert(offset, -size)
def truncate(self, size):
"""truncate(self, size) is similar to 'delete', but assumes the offset
is the end of the current slice.
"""
self.delete(len(self)-size, size)
def resize(self, newsize):
"""resize(self, newsize) appends or truncates the memmapslice to
'newsize'. Any newly added region is uninitialized.
"""
self._check_deleted()
olen = len(self)
if newsize > olen:
self._append( newsize-olen )
elif newsize < olen:
if newsize < 0:
raise ValueError("Negative resize value")
self.truncate(olen - newsize)
def flush(self):
"""flush(self)
"""
raise TypeError("Only the 'root' memmap should be flushed.")
def _chkIndex(self, i, End=0):
"""_chkIndex(self, i) raises an IndexError if 'i' is not a valid
index of 'self'
"""
olen = len(self)
if i == sys.maxint: # Assume i not maxint unless it's a slice stop
return olen
if i < 0:
i += olen
if not(0 <= i < olen+End):
raise IndexError("Invalid memmap index: %d" % (i,))
return i
def __str__(self):
return str(self.__buffer__())
def open(filename, mode="r+", len=None):
"""open(filename, mode="r+", len=None) creates a new memmap object.
"""
return memmap(filename, mode, len)
def close(map):
return map.close()
def test():
"""
>>> import os
>>> os.remove("memmap.tst")
"""
import doctest, memmap
return doctest.testmod(memmap)
def proveit(N, filename="memmap.dat", pagesize=1024, mode="r"):
"""proveit is a diagnostic function which creates a file of size 'N',
memory maps it, and then reads one byte at 'pagesize' intervals."""
import numeric as num
f = _open(filename, "w+")
f.seek(N-1)
f.write("\0")
f.close()
m = memmap(filename, mode=mode)
n = m[:]
a = frombuffer(buffer=n, dtype='b', count=len(n))
del n
hits = num.arange(N//pagesize)*pagesize
fetch = a[ hits ] # force every page into RAM
return a
if __name__ == "__main__":
test()
|