##// END OF EJS Templates
phases: do not exchange secret changesets...
phases: do not exchange secret changesets Any secret changesets will be excluded from pull and push. Phase data are properly synchronized on pull and push if a changeset is seen as secret locally but is non-secret remote side. This patch does not handle the case of a changeset secret on remote but known locally.

File last commit:

r15057:774da712 default
r15713:cff25e4b default
Show More
store.py
427 lines | 13.4 KiB | text/x-python | PythonLexer
Adrian Buehlmann
move filename encoding functions from util.py to new store.py
r6839 # store.py - repository store handling for Mercurial
#
# Copyright 2008 Matt Mackall <mpm@selenic.com>
#
Martin Geisler
updated license to be explicit about GPL version 2
r8225 # This software may be used and distributed according to the terms of the
Matt Mackall
Update license to GPLv2+
r10263 # GNU General Public License version 2 or any later version.
Adrian Buehlmann
move filename encoding functions from util.py to new store.py
r6839
Adrian Buehlmann
introduce fncache repository layout...
r7229 from i18n import _
Dan Villiom Podlaski Christiansen
add filteropener abstraction for store openers
r14090 import osutil, scmutil, util
Simon Heimberg
separate import lines from mercurial and general python modules
r8312 import os, stat
Adrian Buehlmann
introduce store classes...
r6840
Adrian Buehlmann
introduce fncache repository layout...
r7229 _sha = util.sha1
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 # This avoids a collision between a file named foo and a dir named
# foo.i or foo.d
def encodedir(path):
Adrian Buehlmann
store: add some doctests
r13949 '''
>>> encodedir('data/foo.i')
'data/foo.i'
>>> encodedir('data/foo.i/bla.i')
'data/foo.i.hg/bla.i'
>>> encodedir('data/foo.i.hg/bla.i')
'data/foo.i.hg.hg/bla.i'
'''
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 if not path.startswith('data/'):
return path
return (path
.replace(".hg/", ".hg.hg/")
.replace(".i/", ".i.hg/")
.replace(".d/", ".d.hg/"))
def decodedir(path):
Adrian Buehlmann
store: add some doctests
r13949 '''
>>> decodedir('data/foo.i')
'data/foo.i'
>>> decodedir('data/foo.i.hg/bla.i')
'data/foo.i/bla.i'
>>> decodedir('data/foo.i.hg.hg/bla.i')
'data/foo.i.hg/bla.i'
'''
Nicolas Dumazet
store: skip decodir check if path does not contain '.hg/'...
r11790 if not path.startswith('data/') or ".hg/" not in path:
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 return path
return (path
.replace(".d.hg/", ".d/")
.replace(".i.hg/", ".i/")
.replace(".hg.hg/", ".hg/"))
Adrian Buehlmann
move filename encoding functions from util.py to new store.py
r6839 def _buildencodefun():
Adrian Buehlmann
store: add some doctests
r13949 '''
>>> enc, dec = _buildencodefun()
>>> enc('nothing/special.txt')
'nothing/special.txt'
>>> dec('nothing/special.txt')
'nothing/special.txt'
>>> enc('HELLO')
'_h_e_l_l_o'
>>> dec('_h_e_l_l_o')
'HELLO'
>>> enc('hello:world?')
'hello~3aworld~3f'
>>> dec('hello~3aworld~3f')
'hello:world?'
>>> enc('the\x07quick\xADshot')
'the~07quick~adshot'
>>> dec('the~07quick~adshot')
'the\\x07quick\\xadshot'
'''
Adrian Buehlmann
move filename encoding functions from util.py to new store.py
r6839 e = '_'
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 winreserved = [ord(x) for x in '\\:*?"<>|']
Matt Mackall
many, many trivial check-code fixups
r10282 cmap = dict([(chr(x), chr(x)) for x in xrange(127)])
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 for x in (range(32) + range(126, 256) + winreserved):
Adrian Buehlmann
move filename encoding functions from util.py to new store.py
r6839 cmap[chr(x)] = "~%02x" % x
for x in range(ord("A"), ord("Z")+1) + [ord(e)]:
cmap[chr(x)] = e + chr(x).lower()
dmap = {}
for k, v in cmap.iteritems():
dmap[v] = k
def decode(s):
i = 0
while i < len(s):
for l in xrange(1, 4):
try:
Matt Mackall
many, many trivial check-code fixups
r10282 yield dmap[s[i:i + l]]
Adrian Buehlmann
move filename encoding functions from util.py to new store.py
r6839 i += l
break
except KeyError:
pass
else:
raise KeyError
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 return (lambda s: "".join([cmap[c] for c in encodedir(s)]),
lambda s: decodedir("".join(list(decode(s)))))
Adrian Buehlmann
move filename encoding functions from util.py to new store.py
r6839
encodefilename, decodefilename = _buildencodefun()
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 def _buildlowerencodefun():
Adrian Buehlmann
store: add some doctests
r13949 '''
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 >>> f = _buildlowerencodefun()
Adrian Buehlmann
store: add some doctests
r13949 >>> f('nothing/special.txt')
'nothing/special.txt'
>>> f('HELLO')
'hello'
>>> f('hello:world?')
'hello~3aworld~3f'
>>> f('the\x07quick\xADshot')
'the~07quick~adshot'
'''
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 winreserved = [ord(x) for x in '\\:*?"<>|']
Matt Mackall
many, many trivial check-code fixups
r10282 cmap = dict([(chr(x), chr(x)) for x in xrange(127)])
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 for x in (range(32) + range(126, 256) + winreserved):
Adrian Buehlmann
introduce fncache repository layout...
r7229 cmap[chr(x)] = "~%02x" % x
for x in range(ord("A"), ord("Z")+1):
cmap[chr(x)] = chr(x).lower()
return lambda s: "".join([cmap[c] for c in s])
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 lowerencode = _buildlowerencodefun()
Adrian Buehlmann
introduce fncache repository layout...
r7229
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 _winreservednames = '''con prn aux nul
Adrian Buehlmann
introduce fncache repository layout...
r7229 com1 com2 com3 com4 com5 com6 com7 com8 com9
lpt1 lpt2 lpt3 lpt4 lpt5 lpt6 lpt7 lpt8 lpt9'''.split()
Adrian Buehlmann
store: encode first period or space in filenames (issue1713)...
r12687 def _auxencode(path, dotencode):
Adrian Buehlmann
store: add some doctests
r13949 '''
Encodes filenames containing names reserved by Windows or which end in
period or space. Does not touch other single reserved characters c.
Specifically, c in '\\:*?"<>|' or ord(c) <= 31 are *not* encoded here.
Additionally encodes space or period at the beginning, if dotencode is
True.
path is assumed to be all lowercase.
>>> _auxencode('.foo/aux.txt/txt.aux/con/prn/nul/foo.', True)
'~2efoo/au~78.txt/txt.aux/co~6e/pr~6e/nu~6c/foo~2e'
>>> _auxencode('.com1com2/lpt9.lpt4.lpt1/conprn/foo.', False)
'.com1com2/lp~749.lpt4.lpt1/conprn/foo~2e'
>>> _auxencode('foo. ', True)
'foo.~20'
>>> _auxencode(' .foo', True)
'~20.foo'
'''
Adrian Buehlmann
introduce fncache repository layout...
r7229 res = []
for n in path.split('/'):
if n:
base = n.split('.')[0]
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 if base and (base in _winreservednames):
Adrian Buehlmann
introduce fncache repository layout...
r7229 # encode third letter ('aux' -> 'au~78')
ec = "~%02x" % ord(n[2])
n = n[0:2] + ec + n[3:]
Adrian Buehlmann
store: encode trailing period and space on directory names (issue1417)...
r7515 if n[-1] in '. ':
# encode last period or space ('foo...' -> 'foo..~2e')
n = n[:-1] + "~%02x" % ord(n[-1])
Adrian Buehlmann
store: encode first period or space in filenames (issue1713)...
r12687 if dotencode and n[0] in '. ':
n = "~%02x" % ord(n[0]) + n[1:]
Adrian Buehlmann
introduce fncache repository layout...
r7229 res.append(n)
return '/'.join(res)
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 _maxstorepathlen = 120
_dirprefixlen = 8
_maxshortdirslen = 8 * (_dirprefixlen + 1) - 4
Adrian Buehlmann
store: encode first period or space in filenames (issue1713)...
r12687 def _hybridencode(path, auxencode):
Adrian Buehlmann
introduce fncache repository layout...
r7229 '''encodes path with a length limit
Encodes all paths that begin with 'data/', according to the following.
Default encoding (reversible):
Encodes all uppercase letters 'X' as '_x'. All reserved or illegal
characters are encoded as '~xx', where xx is the two digit hex code
of the character (see encodefilename).
Relevant path components consisting of Windows reserved filenames are
masked by encoding the third character ('aux' -> 'au~78', see auxencode).
Hashed encoding (not reversible):
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 If the default-encoded path is longer than _maxstorepathlen, a
Adrian Buehlmann
introduce fncache repository layout...
r7229 non-reversible hybrid hashing of the path is done instead.
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 This encoding uses up to _dirprefixlen characters of all directory
Adrian Buehlmann
introduce fncache repository layout...
r7229 levels of the lowerencoded path, but not more levels than can fit into
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 _maxshortdirslen.
Adrian Buehlmann
introduce fncache repository layout...
r7229 Then follows the filler followed by the sha digest of the full path.
The filler is the beginning of the basename of the lowerencoded path
(the basename is everything after the last path separator). The filler
is as long as possible, filling in characters from the basename until
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 the encoded path has _maxstorepathlen characters (or all chars of the
basename have been taken).
Adrian Buehlmann
introduce fncache repository layout...
r7229 The extension (e.g. '.i' or '.d') is preserved.
The string 'data/' at the beginning is replaced with 'dh/', if the hashed
encoding was used.
'''
if not path.startswith('data/'):
return path
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 # escape directories ending with .i and .d
path = encodedir(path)
Adrian Buehlmann
introduce fncache repository layout...
r7229 ndpath = path[len('data/'):]
res = 'data/' + auxencode(encodefilename(ndpath))
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 if len(res) > _maxstorepathlen:
Adrian Buehlmann
introduce fncache repository layout...
r7229 digest = _sha(path).hexdigest()
aep = auxencode(lowerencode(ndpath))
_root, ext = os.path.splitext(aep)
parts = aep.split('/')
basename = parts[-1]
sdirs = []
for p in parts[:-1]:
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 d = p[:_dirprefixlen]
Adrian Buehlmann
store: don't create dirs ending in period or space for hashed paths (issue1417)...
r7514 if d[-1] in '. ':
# Windows can't access dirs ending in period or space
d = d[:-1] + '_'
Adrian Buehlmann
introduce fncache repository layout...
r7229 t = '/'.join(sdirs) + '/' + d
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 if len(t) > _maxshortdirslen:
Adrian Buehlmann
introduce fncache repository layout...
r7229 break
sdirs.append(d)
dirs = '/'.join(sdirs)
if len(dirs) > 0:
dirs += '/'
res = 'dh/' + dirs + digest + ext
Adrian Buehlmann
store: change names to comply with project coding standards...
r14288 spaceleft = _maxstorepathlen - len(res)
if spaceleft > 0:
filler = basename[:spaceleft]
Adrian Buehlmann
introduce fncache repository layout...
r7229 res = 'dh/' + dirs + filler + digest + ext
return res
Matt Mackall
store: simplify class hierarchy
r6898 def _calcmode(path):
try:
# files in .hg/ will be created using this mode
mode = os.stat(path).st_mode
# avoid some useless chmods
Matt Mackall
util: split out posix, windows, and win32 modules
r7890 if (0777 & ~util.umask) == (0777 & mode):
Matt Mackall
store: simplify class hierarchy
r6898 mode = None
except OSError:
mode = None
return mode
Thomas Arendsen Hein
store: Removed extra space in _data list
r12171 _data = 'data 00manifest.d 00manifest.i 00changelog.d 00changelog.i'
Matt Mackall
clone: get a list of files to clone from store
r6903
Benoit Boissinot
use new style classes
r8778 class basicstore(object):
Adrian Buehlmann
introduce store classes...
r6840 '''base class for local repository stores'''
Dan Villiom Podlaski Christiansen
store: rename the 'opener' argument to 'openertype'...
r14092 def __init__(self, path, openertype):
Adrian Buehlmann
introduce store classes...
r6840 self.path = path
Matt Mackall
store: simplify class hierarchy
r6898 self.createmode = _calcmode(path)
Dan Villiom Podlaski Christiansen
store: rename the 'opener' argument to 'openertype'...
r14092 op = openertype(self.path)
Benoit Boissinot
store encoding: .i/.d encoding for non-store repo (broken by 810387f59696)
r8633 op.createmode = self.createmode
Dan Villiom Podlaski Christiansen
add filteropener abstraction for store openers
r14090 self.opener = scmutil.filteropener(op, encodedir)
Adrian Buehlmann
introduce store classes...
r6840
def join(self, f):
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 return self.path + '/' + encodedir(f)
Adrian Buehlmann
introduce store classes...
r6840
Matt Mackall
store: simplify walking...
r6899 def _walk(self, relpath, recurse):
Matt Mackall
store: change handling of decoding errors
r6900 '''yields (unencoded, encoded, size)'''
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 path = self.path
if relpath:
path += '/' + relpath
striplen = len(self.path) + 1
Matt Mackall
store: simplify walking...
r6899 l = []
if os.path.isdir(path):
visit = [path]
while visit:
p = visit.pop()
for f, kind, st in osutil.listdir(p, stat=True):
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 fp = p + '/' + f
Matt Mackall
store: simplify walking...
r6899 if kind == stat.S_IFREG and f[-2:] in ('.d', '.i'):
Matt Mackall
store: change handling of decoding errors
r6900 n = util.pconvert(fp[striplen:])
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 l.append((decodedir(n), n, st.st_size))
Matt Mackall
store: simplify walking...
r6899 elif kind == stat.S_IFDIR and recurse:
visit.append(fp)
Matt Mackall
replace util.sort with sorted built-in...
r8209 return sorted(l)
Adrian Buehlmann
introduce store classes...
r6840
Matt Mackall
store: change handling of decoding errors
r6900 def datafiles(self):
Matt Mackall
store: simplify walking...
r6899 return self._walk('data', True)
Adrian Buehlmann
introduce store classes...
r6840
def walk(self):
Matt Mackall
store: change handling of decoding errors
r6900 '''yields (unencoded, encoded, size)'''
Adrian Buehlmann
introduce store classes...
r6840 # yield data files first
Adrian Buehlmann
verify: check repo.store
r6892 for x in self.datafiles():
Adrian Buehlmann
introduce store classes...
r6840 yield x
# yield manifest before changelog
Matt Mackall
replace various uses of list.reverse()
r8210 for x in reversed(self._walk('', False)):
Adrian Buehlmann
introduce store classes...
r6840 yield x
Matt Mackall
clone: get a list of files to clone from store
r6903 def copylist(self):
return ['requires'] + _data.split()
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 def write(self):
pass
Matt Mackall
store: simplify class hierarchy
r6898 class encodedstore(basicstore):
Dan Villiom Podlaski Christiansen
store: rename the 'opener' argument to 'openertype'...
r14092 def __init__(self, path, openertype):
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 self.path = path + '/store'
Matt Mackall
store: simplify class hierarchy
r6898 self.createmode = _calcmode(self.path)
Dan Villiom Podlaski Christiansen
store: rename the 'opener' argument to 'openertype'...
r14092 op = openertype(self.path)
Adrian Buehlmann
introduce store classes...
r6840 op.createmode = self.createmode
Dan Villiom Podlaski Christiansen
add filteropener abstraction for store openers
r14090 self.opener = scmutil.filteropener(op, encodefilename)
Adrian Buehlmann
introduce store classes...
r6840
Matt Mackall
store: change handling of decoding errors
r6900 def datafiles(self):
for a, b, size in self._walk('data', True):
Adrian Buehlmann
verify: check repo.store
r6892 try:
Matt Mackall
store: change handling of decoding errors
r6900 a = decodefilename(a)
Adrian Buehlmann
verify: check repo.store
r6892 except KeyError:
Matt Mackall
store: change handling of decoding errors
r6900 a = None
yield a, b, size
Adrian Buehlmann
introduce store classes...
r6840
def join(self, f):
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 return self.path + '/' + encodefilename(f)
Adrian Buehlmann
introduce store classes...
r6840
Matt Mackall
clone: get a list of files to clone from store
r6903 def copylist(self):
return (['requires', '00changelog.i'] +
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 ['store/' + f for f in _data.split()])
Matt Mackall
clone: get a list of files to clone from store
r6903
Benoit Boissinot
store: refactor the fncache handling...
r8530 class fncache(object):
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 # the filename used to be partially encoded
# hence the encodedir/decodedir dance
Adrian Buehlmann
introduce fncache repository layout...
r7229 def __init__(self, opener):
self.opener = opener
self.entries = None
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 self._dirty = False
Adrian Buehlmann
introduce fncache repository layout...
r7229
Benoit Boissinot
store: refactor the fncache handling...
r8530 def _load(self):
'''fill the entries from the fncache file'''
self.entries = set()
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 self._dirty = False
Benoit Boissinot
store: refactor the fncache handling...
r8530 try:
fp = self.opener('fncache', mode='rb')
except IOError:
# skip nonexistent file
return
for n, line in enumerate(fp):
if (len(line) < 2) or (line[-1] != '\n'):
t = _('invalid entry in fncache, line %s') % (n + 1)
raise util.Abort(t)
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 self.entries.add(decodedir(line[:-1]))
Benoit Boissinot
store: refactor the fncache handling...
r8530 fp.close()
Adrian Buehlmann
introduce fncache repository layout...
r7229
Benoit Boissinot
store: refactor the fncache handling...
r8530 def rewrite(self, files):
fp = self.opener('fncache', mode='wb')
for p in files:
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 fp.write(encodedir(p) + '\n')
Benoit Boissinot
store: refactor the fncache handling...
r8530 fp.close()
self.entries = set(files)
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 self._dirty = False
def write(self):
if not self._dirty:
return
fp = self.opener('fncache', mode='wb', atomictemp=True)
for p in self.entries:
fp.write(encodedir(p) + '\n')
Greg Ward
atomictempfile: make close() consistent with other file-like objects....
r15057 fp.close()
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 self._dirty = False
Benoit Boissinot
store: refactor the fncache handling...
r8530
def add(self, fn):
if self.entries is None:
self._load()
Adrian Buehlmann
store: only add new entries to the fncache file...
r10577 if fn not in self.entries:
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 self._dirty = True
Adrian Buehlmann
store: only add new entries to the fncache file...
r10577 self.entries.add(fn)
Benoit Boissinot
store: refactor the fncache handling...
r8530
def __contains__(self, fn):
if self.entries is None:
self._load()
return fn in self.entries
def __iter__(self):
if self.entries is None:
self._load()
return iter(self.entries)
Adrian Buehlmann
introduce fncache repository layout...
r7229
Adrian Buehlmann
store: break up reference cycle introduced in 9cbff8a39a2a...
r14194 class _fncacheopener(scmutil.abstractopener):
def __init__(self, op, fnc, encode):
self.opener = op
self.fncache = fnc
self.encode = encode
def __call__(self, path, mode='r', *args, **kw):
if mode not in ('r', 'rb') and path.startswith('data/'):
self.fncache.add(path)
return self.opener(self.encode(path), mode, *args, **kw)
Adrian Buehlmann
introduce fncache repository layout...
r7229 class fncachestore(basicstore):
Dan Villiom Podlaski Christiansen
store: rename the 'opener' argument to 'openertype'...
r14092 def __init__(self, path, openertype, encode):
Adrian Buehlmann
store: encode first period or space in filenames (issue1713)...
r12687 self.encode = encode
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 self.path = path + '/store'
Adrian Buehlmann
introduce fncache repository layout...
r7229 self.createmode = _calcmode(self.path)
Adrian Buehlmann
store: break up reference cycle introduced in 9cbff8a39a2a...
r14194 op = openertype(self.path)
Simon Heimberg
store: eliminate reference cycle in fncachestore...
r9133 op.createmode = self.createmode
fnc = fncache(op)
self.fncache = fnc
Adrian Buehlmann
store: break up reference cycle introduced in 9cbff8a39a2a...
r14194 self.opener = _fncacheopener(op, fnc, encode)
Adrian Buehlmann
introduce fncache repository layout...
r7229
def join(self, f):
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 return self.path + '/' + self.encode(f)
Adrian Buehlmann
introduce fncache repository layout...
r7229
def datafiles(self):
rewrite = False
existing = []
spath = self.path
Benoit Boissinot
store: refactor the fncache handling...
r8530 for f in self.fncache:
Adrian Buehlmann
store: encode first period or space in filenames (issue1713)...
r12687 ef = self.encode(f)
Adrian Buehlmann
introduce fncache repository layout...
r7229 try:
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 st = os.stat(spath + '/' + ef)
Adrian Buehlmann
introduce fncache repository layout...
r7229 yield f, ef, st.st_size
existing.append(f)
except OSError:
# nonexistent entry
rewrite = True
if rewrite:
# rewrite fncache to remove nonexistent entries
# (may be caused by rollback / strip)
Benoit Boissinot
store: refactor the fncache handling...
r8530 self.fncache.rewrite(existing)
Adrian Buehlmann
introduce fncache repository layout...
r7229
def copylist(self):
Adrian Buehlmann
fncachestore: copy dh directory before the manifest...
r13169 d = ('data dh fncache'
' 00manifest.d 00manifest.i 00changelog.d 00changelog.i')
Adrian Buehlmann
introduce fncache repository layout...
r7229 return (['requires', '00changelog.i'] +
Adrian Buehlmann
store: remove pointless pathjoiner parameter...
r13426 ['store/' + f for f in d.split()])
Adrian Buehlmann
introduce fncache repository layout...
r7229
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 def write(self):
self.fncache.write()
Dan Villiom Podlaski Christiansen
store: rename the 'opener' argument to 'openertype'...
r14092 def store(requirements, path, openertype):
Matt Mackall
store: simplify class hierarchy
r6898 if 'store' in requirements:
Adrian Buehlmann
introduce fncache repository layout...
r7229 if 'fncache' in requirements:
Adrian Buehlmann
store: encode first period or space in filenames (issue1713)...
r12687 auxencode = lambda f: _auxencode(f, 'dotencode' in requirements)
encode = lambda f: _hybridencode(f, auxencode)
Dan Villiom Podlaski Christiansen
store: rename the 'opener' argument to 'openertype'...
r14092 return fncachestore(path, openertype, encode)
return encodedstore(path, openertype)
return basicstore(path, openertype)