comparison mercurial/revlog.py @ 2089:cb99c711c59f

make appendfile simpler so it does not break with revlogng on windows. it used to cache open files. this made revlogng break because it wants to rename files when splitting .i into .i/.d, but cannot rename or unlink open files on windows. new code is bit slower, but safe on linux and windows. proper fix for too many open/close of changelog/manifest belongs in different place. can get 10% speed improvement back.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Wed, 19 Apr 2006 08:33:46 -0700
parents d66278012853
children f5046cab9e2e 9b42304d9896
comparison
equal deleted inserted replaced
2088:f16435b45780 2089:cb99c711c59f
926 transaction.add(self.indexfile, n * len(entry)) 926 transaction.add(self.indexfile, n * len(entry))
927 f = self.opener(self.datafile, "a") 927 f = self.opener(self.datafile, "a")
928 if data[0]: 928 if data[0]:
929 f.write(data[0]) 929 f.write(data[0])
930 f.write(data[1]) 930 f.write(data[1])
931 f.close()
931 f = self.opener(self.indexfile, "a") 932 f = self.opener(self.indexfile, "a")
932 else: 933 else:
933 f = self.opener(self.indexfile, "a+") 934 f = self.opener(self.indexfile, "a+")
934 f.seek(0, 2) 935 f.seek(0, 2)
935 transaction.add(self.indexfile, f.tell(), self.count() - 1) 936 transaction.add(self.indexfile, f.tell(), self.count() - 1)