Show More
@@ -1,103 +1,146 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 or any later version. |
|
7 | 7 | |
|
8 | 8 | import error |
|
9 | 9 | import unicodedata, locale, os |
|
10 | 10 | |
|
11 | 11 | def _getpreferredencoding(): |
|
12 | 12 | ''' |
|
13 | 13 | On darwin, getpreferredencoding ignores the locale environment and |
|
14 | 14 | always returns mac-roman. http://bugs.python.org/issue6202 fixes this |
|
15 | 15 | for Python 2.7 and up. This is the same corrected code for earlier |
|
16 | 16 | Python versions. |
|
17 | 17 | |
|
18 | 18 | However, we can't use a version check for this method, as some distributions |
|
19 | 19 | patch Python to fix this. Instead, we use it as a 'fixer' for the mac-roman |
|
20 | 20 | encoding, as it is unlikely that this encoding is the actually expected. |
|
21 | 21 | ''' |
|
22 | 22 | try: |
|
23 | 23 | locale.CODESET |
|
24 | 24 | except AttributeError: |
|
25 | 25 | # Fall back to parsing environment variables :-( |
|
26 | 26 | return locale.getdefaultlocale()[1] |
|
27 | 27 | |
|
28 | 28 | oldloc = locale.setlocale(locale.LC_CTYPE) |
|
29 | 29 | locale.setlocale(locale.LC_CTYPE, "") |
|
30 | 30 | result = locale.nl_langinfo(locale.CODESET) |
|
31 | 31 | locale.setlocale(locale.LC_CTYPE, oldloc) |
|
32 | 32 | |
|
33 | 33 | return result |
|
34 | 34 | |
|
35 | 35 | _encodingfixers = { |
|
36 | 36 | '646': lambda: 'ascii', |
|
37 | 37 | 'ANSI_X3.4-1968': lambda: 'ascii', |
|
38 | 38 | 'mac-roman': _getpreferredencoding |
|
39 | 39 | } |
|
40 | 40 | |
|
41 | 41 | try: |
|
42 | 42 | encoding = os.environ.get("HGENCODING") |
|
43 | 43 | if not encoding: |
|
44 | 44 | encoding = locale.getpreferredencoding() or 'ascii' |
|
45 | 45 | encoding = _encodingfixers.get(encoding, lambda: encoding)() |
|
46 | 46 | except locale.Error: |
|
47 | 47 | encoding = 'ascii' |
|
48 | 48 | encodingmode = os.environ.get("HGENCODINGMODE", "strict") |
|
49 | 49 | fallbackencoding = 'ISO-8859-1' |
|
50 | 50 | |
|
51 | class localstr(str): | |
|
52 | '''This class allows strings that are unmodified to be | |
|
53 | round-tripped to the local encoding and back''' | |
|
54 | def __new__(cls, u, l): | |
|
55 | s = str.__new__(cls, l) | |
|
56 | s._utf8 = u | |
|
57 | return s | |
|
58 | def __hash__(self): | |
|
59 | return hash(self._utf8) # avoid collisions in local string space | |
|
60 | ||
|
51 | 61 | def tolocal(s): |
|
52 | 62 | """ |
|
53 | 63 | Convert a string from internal UTF-8 to local encoding |
|
54 | 64 | |
|
55 | 65 | All internal strings should be UTF-8 but some repos before the |
|
56 | 66 | implementation of locale support may contain latin1 or possibly |
|
57 | 67 | other character sets. We attempt to decode everything strictly |
|
58 | 68 | using UTF-8, then Latin-1, and failing that, we use UTF-8 and |
|
59 | 69 | replace unknown characters. |
|
70 | ||
|
71 | The localstr class is used to cache the known UTF-8 encoding of | |
|
72 | strings next to their local representation to allow lossless | |
|
73 | round-trip conversion back to UTF-8. | |
|
74 | ||
|
75 | >>> u = 'foo: \\xc3\\xa4' # utf-8 | |
|
76 | >>> l = tolocal(u) | |
|
77 | >>> l | |
|
78 | 'foo: ?' | |
|
79 | >>> fromlocal(l) | |
|
80 | 'foo: \\xc3\\xa4' | |
|
81 | >>> u2 = 'foo: \\xc3\\xa1' | |
|
82 | >>> d = { l: 1, tolocal(u2): 2 } | |
|
83 | >>> d # no collision | |
|
84 | {'foo: ?': 1, 'foo: ?': 2} | |
|
85 | >>> 'foo: ?' in d | |
|
86 | False | |
|
87 | >>> l1 = 'foo: \\xe4' # historical latin1 fallback | |
|
88 | >>> l = tolocal(l1) | |
|
89 | >>> l | |
|
90 | 'foo: ?' | |
|
91 | >>> fromlocal(l) # magically in utf-8 | |
|
92 | 'foo: \\xc3\\xa4' | |
|
60 | 93 | """ |
|
94 | ||
|
61 | 95 | for e in ('UTF-8', fallbackencoding): |
|
62 | 96 | try: |
|
63 | 97 | u = s.decode(e) # attempt strict decoding |
|
64 | return u.encode(encoding, "replace") | |
|
98 | if u == 'UTF-8': | |
|
99 | return localstr(s, u.encode(encoding, "replace")) | |
|
100 | else: | |
|
101 | return localstr(u.encode('UTF-8'), | |
|
102 | u.encode(encoding, "replace")) | |
|
65 | 103 | except LookupError, k: |
|
66 | 104 | raise error.Abort("%s, please check your locale settings" % k) |
|
67 | 105 | except UnicodeDecodeError: |
|
68 | 106 | pass |
|
69 | 107 | u = s.decode("utf-8", "replace") # last ditch |
|
70 | return u.encode(encoding, "replace") | |
|
108 | return u.encode(encoding, "replace") # can't round-trip | |
|
71 | 109 | |
|
72 | 110 | def fromlocal(s): |
|
73 | 111 | """ |
|
74 | 112 | Convert a string from the local character encoding to UTF-8 |
|
75 | 113 | |
|
76 | 114 | We attempt to decode strings using the encoding mode set by |
|
77 | 115 | HGENCODINGMODE, which defaults to 'strict'. In this mode, unknown |
|
78 | 116 | characters will cause an error message. Other modes include |
|
79 | 117 | 'replace', which replaces unknown characters with a special |
|
80 | 118 | Unicode character, and 'ignore', which drops the character. |
|
81 | 119 | """ |
|
120 | ||
|
121 | # can we do a lossless round-trip? | |
|
122 | if isinstance(s, localstr): | |
|
123 | return s._utf8 | |
|
124 | ||
|
82 | 125 | try: |
|
83 | 126 | return s.decode(encoding, encodingmode).encode("utf-8") |
|
84 | 127 | except UnicodeDecodeError, inst: |
|
85 | 128 | sub = s[max(0, inst.start - 10):inst.start + 10] |
|
86 | 129 | raise error.Abort("decoding near '%s': %s!" % (sub, inst)) |
|
87 | 130 | except LookupError, k: |
|
88 | 131 | raise error.Abort("%s, please check your locale settings" % k) |
|
89 | 132 | |
|
90 | 133 | # How to treat ambiguous-width characters. Set to 'wide' to treat as wide. |
|
91 | 134 | ambiguous = os.environ.get("HGENCODINGAMBIGUOUS", "narrow") |
|
92 | 135 | |
|
93 | 136 | def colwidth(s): |
|
94 | 137 | "Find the column width of a UTF-8 string for display" |
|
95 | 138 | d = s.decode(encoding, 'replace') |
|
96 | 139 | if hasattr(unicodedata, 'east_asian_width'): |
|
97 | 140 | wide = "WF" |
|
98 | 141 | if ambiguous == "wide": |
|
99 | 142 | wide = "WFA" |
|
100 | 143 | w = unicodedata.east_asian_width |
|
101 | 144 | return sum([w(c) in wide and 2 or 1 for c in d]) |
|
102 | 145 | return len(d) |
|
103 | 146 |
@@ -1,20 +1,20 b'' | |||
|
1 | 1 | # this is hack to make sure no escape characters are inserted into the output |
|
2 | 2 | import os |
|
3 | 3 | if 'TERM' in os.environ: |
|
4 | 4 | del os.environ['TERM'] |
|
5 | 5 | import doctest |
|
6 | 6 | |
|
7 | 7 | import mercurial.changelog |
|
8 | 8 | doctest.testmod(mercurial.changelog) |
|
9 | 9 | |
|
10 | 10 | import mercurial.dagparser |
|
11 | 11 | doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE) |
|
12 | 12 | |
|
13 | 13 | import mercurial.match |
|
14 | 14 | doctest.testmod(mercurial.match) |
|
15 | 15 | |
|
16 |
import mercurial. |
|
|
17 |
doctest.testmod(mercurial. |
|
|
16 | import mercurial.encoding | |
|
17 | doctest.testmod(mercurial.encoding) | |
|
18 | 18 | |
|
19 | 19 | import hgext.convert.cvsps |
|
20 | 20 | doctest.testmod(hgext.convert.cvsps) |
General Comments 0
You need to be logged in to leave comments.
Login now