##// END OF EJS Templates
merge with crew-stable
Dirkjan Ochtman -
r9593:c358f3e7 merge default
parent child Browse files
Show More
@@ -1,75 +1,77 b''
1 1 # encoding.py - character transcoding support for Mercurial
2 2 #
3 3 # Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2, incorporated herein by reference.
7 7
8 8 import error
9 9 import sys, unicodedata, locale, os
10 10
11 11 _encodingfixup = {'646': 'ascii', 'ANSI_X3.4-1968': 'ascii'}
12 12
13 13 try:
14 14 encoding = os.environ.get("HGENCODING")
15 15 if sys.platform == 'darwin' and not encoding:
16 16 # On darwin, getpreferredencoding ignores the locale environment and
17 17 # always returns mac-roman. We override this if the environment is
18 18 # not C (has been customized by the user).
19 locale.setlocale(locale.LC_CTYPE, '')
19 lc = locale.setlocale(locale.LC_CTYPE, '')
20 if lc == 'UTF-8':
21 locale.setlocale(locale.LC_CTYPE, 'en_US.UTF-8')
20 22 encoding = locale.getlocale()[1]
21 23 if not encoding:
22 24 encoding = locale.getpreferredencoding() or 'ascii'
23 25 encoding = _encodingfixup.get(encoding, encoding)
24 26 except locale.Error:
25 27 encoding = 'ascii'
26 28 encodingmode = os.environ.get("HGENCODINGMODE", "strict")
27 29 fallbackencoding = 'ISO-8859-1'
28 30
29 31 def tolocal(s):
30 32 """
31 33 Convert a string from internal UTF-8 to local encoding
32 34
33 35 All internal strings should be UTF-8 but some repos before the
34 36 implementation of locale support may contain latin1 or possibly
35 37 other character sets. We attempt to decode everything strictly
36 38 using UTF-8, then Latin-1, and failing that, we use UTF-8 and
37 39 replace unknown characters.
38 40 """
39 41 for e in ('UTF-8', fallbackencoding):
40 42 try:
41 43 u = s.decode(e) # attempt strict decoding
42 44 return u.encode(encoding, "replace")
43 45 except LookupError, k:
44 46 raise error.Abort("%s, please check your locale settings" % k)
45 47 except UnicodeDecodeError:
46 48 pass
47 49 u = s.decode("utf-8", "replace") # last ditch
48 50 return u.encode(encoding, "replace")
49 51
50 52 def fromlocal(s):
51 53 """
52 54 Convert a string from the local character encoding to UTF-8
53 55
54 56 We attempt to decode strings using the encoding mode set by
55 57 HGENCODINGMODE, which defaults to 'strict'. In this mode, unknown
56 58 characters will cause an error message. Other modes include
57 59 'replace', which replaces unknown characters with a special
58 60 Unicode character, and 'ignore', which drops the character.
59 61 """
60 62 try:
61 63 return s.decode(encoding, encodingmode).encode("utf-8")
62 64 except UnicodeDecodeError, inst:
63 65 sub = s[max(0, inst.start-10):inst.start+10]
64 66 raise error.Abort("decoding near '%s': %s!" % (sub, inst))
65 67 except LookupError, k:
66 68 raise error.Abort("%s, please check your locale settings" % k)
67 69
68 70 def colwidth(s):
69 71 "Find the column width of a UTF-8 string for display"
70 72 d = s.decode(encoding, 'replace')
71 73 if hasattr(unicodedata, 'east_asian_width'):
72 74 w = unicodedata.east_asian_width
73 75 return sum([w(c) in 'WF' and 2 or 1 for c in d])
74 76 return len(d)
75 77
General Comments 0
You need to be logged in to leave comments. Login now