I'm trying to sort the contents of several files (sometimes moving a line from one file to another)
I would like to use the built-in adaptive merge sort that is and attribute of list. I tried inheriting the method from list, but I don't know if it needs more than __len__, __getitem__, and __setitem__. Yes. I want to sort in-place.
FYI, Here is my code so far (if it helps explain what I am doing) the order is not changed when I call .sort(). If i add my own bubble_sort method written in python, it works, but is terribly slow:
class Memwrap(list):
def __init__(self, prefix, folder='.', chunksize=None):
fns = [fn for fn in os.listdir(folder) if fn.startswith(prefix)]
fns.sort()
self.files = [open(os.path.join(folder,fn), 'r+') for fn in fns]
self.mmaps = [mmap.mmap(f.fileno(), 0) for f in self.files]
self.sizes = [mm.size() for mm in self.mmaps]
if chunksize is None:
self.chunksize = len(self.mmaps[0].readline())
else:
self.chunksize = chunksize
def _mm_from_idx(self, idx):
bidx = self.chunksize*idx
lo = 0
for m,s in zip(self.mmaps, self.sizes):
hi = lo + s
if lo <= bidx < hi:
return bidx-lo, m
lo = hi
def __getitem__(self, idx):
bidx, mmap = self._mm_from_idx(idx)
return mmap[bidx:bidx+self.chunksize]
def __setitem__(self, idx, val):
assert len(val) == self.chunksize
bidx, mmap = self._mm_from_idx(idx)
mmap[bidx:bidx+self.chunksize] = val
def __len__(self):
assert not sum(self.sizes)%self.chunksize
return sum(self.sizes)/self.chunksize
def bubble_sort(self):
for i in xrange(0, len(self) - 1):
swap_test = False
for j in range(0, len(self) - i - 1):
if self[j] > self[j + 1]:
self[j], self[j + 1] = self[j + 1], self[j] # swap
swap_test = True
if swap_test == False:
break
self.flush()
def flush(self):
for mm in self.mmaps:
mm.flush()
def close(self):
self.flush()
for mm in self.mmaps:
mm.close()
for f in self.files:
f.close()