# HG changeset patch # User Benoit Boissinot # Date 1165705622 -3600 # Node ID 8a9a1a7e169859a8effcd6fb91d717160083effc # Parent 8f18e31c4441dd91ef0043565c98033058a20dbe create the encode and decode functions for the store diff --git a/mercurial/util.py b/mercurial/util.py --- a/mercurial/util.py +++ b/mercurial/util.py @@ -869,6 +869,34 @@ else: st = fstat(f) return st.st_uid == os.getuid() +def _buildencodefun(): + e = '_' + win_reserved = [ord(x) for x in '|\?*<":>+[]'] + cmap = dict([ (chr(x), chr(x)) for x in xrange(127) ]) + for x in (range(32) + range(126, 256) + win_reserved): + 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: + yield dmap[s[i:i+l]] + i += l + break + except KeyError: + pass + else: + raise KeyError + return (lambda s: "".join([cmap[c] for c in s]), + lambda s: "".join(list(decode(s)))) + +encodefilename, decodefilename = _buildencodefun() + def opener(base, audit=True): """