-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwidestring.py
More file actions
168 lines (146 loc) · 5.18 KB
/
Copy pathwidestring.py
File metadata and controls
168 lines (146 loc) · 5.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# -*- encoding: utf-8 -*-
# This file is part of ranger, the console file manager.
# License: GNU GPL version 3, see the file "AUTHORS" for details.
from __future__ import (absolute_import, division, print_function)
import sys
from unicodedata import east_asian_width
from ranger import PY3
ASCIIONLY = set(chr(c) for c in range(1, 128))
NARROW = 1
WIDE = 2
WIDE_SYMBOLS = set('WF')
def uwid(string):
"""Return the width of a string"""
if not PY3:
string = string.decode('utf-8', 'ignore')
return sum(utf_char_width(c) for c in string)
def utf_char_width(string):
"""Return the width of a single character"""
if east_asian_width(string) in WIDE_SYMBOLS:
return WIDE
return NARROW
def string_to_charlist(string):
"""Return a list of characters with extra empty strings after wide chars"""
if not set(string) - ASCIIONLY:
return list(string)
result = []
if PY3:
for char in string:
result.append(char)
if east_asian_width(char) in WIDE_SYMBOLS:
result.append('')
else:
try:
# This raised a "UnicodeEncodeError: 'ascii' codec can't encode
# character u'\xe4' in position 10: ordinal not in range(128)"
# for me once. I thought errors='ignore' means IGNORE THE DAMN
# ERRORS but apparently it doesn't.
string = string.decode('utf-8', 'ignore')
except UnicodeEncodeError:
return []
for char in string:
result.append(char.encode('utf-8'))
if east_asian_width(char) in WIDE_SYMBOLS:
result.append('')
return result
class WideString(object): # pylint: disable=too-few-public-methods
def __init__(self, string, chars=None):
try:
self.string = str(string)
except UnicodeEncodeError:
# Here I assume that string is a "unicode" object, because why else
# would str(string) raise a UnicodeEncodeError?
self.string = string.encode('latin-1', 'ignore')
if chars is None:
self.chars = string_to_charlist(string)
else:
self.chars = chars
def __add__(self, string):
"""
>>> (WideString("a") + WideString("b")).string
'ab'
>>> (WideString("a") + WideString("b")).chars
['a', 'b']
>>> (WideString("afd") + "bc").chars
['a', 'f', 'd', 'b', 'c']
"""
if isinstance(string, str):
return WideString(self.string + string)
elif isinstance(string, WideString):
return WideString(self.string + string.string, self.chars + string.chars)
return None
def __radd__(self, string):
"""
>>> ("bc" + WideString("afd")).chars
['b', 'c', 'a', 'f', 'd']
"""
if isinstance(string, str):
return WideString(string + self.string)
elif isinstance(string, WideString):
return WideString(string.string + self.string, string.chars + self.chars)
return None
def __str__(self):
return self.string
def __repr__(self):
return '<' + self.__class__.__name__ + " '" + self.string + "'>"
def __getslice__(self, start, stop):
"""
>>> WideString("asdf")[1:3]
<WideString 'sd'>
>>> WideString("asdf")[1:-100]
<WideString ''>
>>> WideString("モヒカン")[2:4]
<WideString 'ヒ'>
>>> WideString("モヒカン")[2:5]
<WideString 'ヒ '>
>>> WideString("モabカン")[2:5]
<WideString 'ab '>
>>> WideString("モヒカン")[1:5]
<WideString ' ヒ '>
>>> WideString("モヒカン")[:]
<WideString 'モヒカン'>
>>> WideString("aモ")[0:3]
<WideString 'aモ'>
>>> WideString("aモ")[0:2]
<WideString 'a '>
>>> WideString("aモ")[0:1]
<WideString 'a'>
"""
if stop is None or stop > len(self.chars):
stop = len(self.chars)
if stop < 0:
stop = len(self.chars) + stop
if stop < 0:
return WideString("")
if start is None or start < 0:
start = 0
if stop < len(self.chars) and self.chars[stop] == '':
if self.chars[start] == '':
return WideString(' ' + ''.join(self.chars[start:stop - 1]) + ' ')
return WideString(''.join(self.chars[start:stop - 1]) + ' ')
if self.chars[start] == '':
return WideString(' ' + ''.join(self.chars[start:stop - 1]))
return WideString(''.join(self.chars[start:stop]))
def __getitem__(self, i):
"""
>>> WideString("asdf")[2]
<WideString 'd'>
>>> WideString("……")[0]
<WideString '…'>
>>> WideString("……")[1]
<WideString '…'>
"""
if isinstance(i, slice):
return self.__getslice__(i.start, i.stop)
return self.__getslice__(i, i + 1)
def __len__(self):
"""
>>> len(WideString("poo"))
3
>>> len(WideString("モヒカン"))
8
"""
return len(self.chars)
if __name__ == '__main__':
import doctest
sys.exit(doctest.testmod()[0])