summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-09-30 04:51:29 +0200
committerhut <hut@lavabit.com>2010-09-30 04:51:29 +0200
commit473daebb6870a54fe4b47529e77be698a2edfdb3 (patch)
treec79a19c727de9ef91649561a0e2994b39b592f56 /ranger
parent8c8e7282b3b4238a3b7cf981d9e5715b11076419 (diff)
downloadranger-473daebb6870a54fe4b47529e77be698a2edfdb3.tar.gz
Revert 5 commits concerning utf (due to very poor performance)
This reverts commits:
8c8e7282b3b4238a3b7cf981d9e5715b11076419
5cb67eeb96d337b55deea20131fc44a3d5447251
512f386be8753775ec824a6d9cbaf6527d50eda4
d4900452fca51685349966d527d173fdefe83f08
e6dda13a71168f9ec4a1e4844edad5a3257803e9
Diffstat (limited to 'ranger')
-rw-r--r--ranger/ext/utfwidth.py121
-rw-r--r--ranger/gui/bar.py15
-rw-r--r--ranger/gui/curses_shortcuts.py30
-rw-r--r--ranger/gui/widgets/browsercolumn.py8
4 files changed, 72 insertions, 102 deletions
diff --git a/ranger/ext/utfwidth.py b/ranger/ext/utfwidth.py
index 5c850607..a506c676 100644
--- a/ranger/ext/utfwidth.py
+++ b/ranger/ext/utfwidth.py
@@ -18,80 +18,49 @@
 # ----
 # This file contains portions of code from cmus (uchar.c).
 
-"""
-This module provides functions that operate with the width of characters
-and strings rather than characters or bytes.
-"""
-
-import sys
-
 NARROW = 1
 WIDE = 2
 
-if sys.version > '3':
-	def uwid(string, count=-1):
-		"""Return the width of a string"""
-		width = 0
-		for c in string:
-			width += utf_char_width(c)
-			count -= 1
-			if not count:
-				break
-		return width
-
-	def uchars(string):
-		"""Return a list with one string for each character"""
-		return list(string)
+def uwid(string):
+	"""Return the width of a string"""
+	end = len(string)
+	i = 0
+	width = 0
+	while i < end:
+		bytelen = utf_byte_length(string[i:])
+		width += utf_char_width(string[i:i+bytelen])
+		i += bytelen
+	return width
 
-	utf_ord = ord
-else:
-	def uwid(string, count=-1):
-		"""Return the width of a string"""
-		end = len(string)
-		i = 0
-		width = 0
-		while i < end and count:
-			bytelen = _utf_byte_length(string[i:])
-			width += utf_char_width(string[i:i+bytelen])
-			i += bytelen
-			count -= 1
-		return width
+def uchars(string):
+	"""Return a list with one string for each character"""
+	end = len(string)
+	i = 0
+	result = []
+	while i < end:
+		bytelen = utf_byte_length(string[i:])
+		result.append(string[i:i+bytelen])
+		i += bytelen
+	return result
 
-	def uchars(string):
-		"""Return a list with one string for each character"""
-		end = len(string)
-		i = 0
-		result = []
-		while i < end:
-			bytelen = _utf_byte_length(string[i:])
-			result.append(string[i:i+bytelen])
-			i += bytelen
-		return result
-
-	def _utf_byte_length(string):
-		"""Return the byte length of one utf character"""
-		firstord = ord(string[0])
-		if firstord < 0b01111111:
-			return 1
-		if firstord < 0b10111111:
-			return 1  # invalid
-		if firstord < 0b11011111:
-			return 2
-		if firstord < 0b11101111:
-			return 3
-		if firstord < 0b11110100:
-			return 4
+def utf_byte_length(string):
+	"""Return the byte length of one utf character"""
+	firstord = ord(string[0])
+	if firstord < 0b01111111:
+		return 1
+	if firstord < 0b10111111:
 		return 1  # invalid
-
-	def utf_ord(char):
-		value = 0
-		for byte in char:
-			value = (value << 6) | (ord(byte) & 0b00111111)
-		return value
+	if firstord < 0b11011111:
+		return 2
+	if firstord < 0b11101111:
+		return 3
+	if firstord < 0b11110100:
+		return 4
+	return 1  # invalid
 
 def utf_char_width(string):
 	"""Return the width of a single character"""
-	u = utf_ord(string)
+	u = _utf_char_to_int(string)
 	if u < 0x1100:
 		return NARROW
 	# Hangul Jamo init. constonants
@@ -132,19 +101,9 @@ def utf_char_width(string):
 		return WIDE
 	return NARROW  # invalid (?)
 
-def uslice(string, start=0, end=1000000000):
-	"""
-	Returns a sliced string.
-
-	Works like string[start:end] except that one step represents
-	one narrow character in a monospaced character grid.
-	"""
-	chars = []
-	for c in uchars(string):
-		c_wid = utf_char_width(c)
-		if c_wid == NARROW:
-			chars.append(c)
-		elif c_wid == WIDE:
-			chars.append("")
-			chars.append(c)
-	return "".join(chars[start:end])
+def _utf_char_to_int(string):
+	# Squash the last 6 bits of each byte together to an integer
+	u = 0
+	for c in string:
+		u = (u << 6) | (ord(c) & 0b00111111)
+	return u
diff --git a/ranger/gui/bar.py b/ranger/gui/bar.py
index 42e1f1c4..41cc8133 100644
--- a/ranger/gui/bar.py
+++ b/ranger/gui/bar.py
@@ -13,7 +13,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-from ranger.ext.utfwidth import uwid, uslice, utf_char_width
+from ranger.ext.utfwidth import uwid
 
 class Bar(object):
 	left = None
@@ -75,11 +75,10 @@ class Bar(object):
 		# Shrink items to a minimum size of 1 until there is enough room.
 		for item in self.left:
 			if not item.fixed:
-				itemlen = uwid(item.string)
-				minimal_width = uwid(item.string, count=1)
-				if oversize > itemlen - minimal_width:
-					item.cut_off_to(minimal_width)
-					oversize -= (itemlen - minimal_width)
+				itemlen = len(item)
+				if oversize > itemlen - 1:
+					item.cut_off_to(1)
+					oversize -= (itemlen - 1)
 				else:
 					item.cut_off(oversize)
 					break
@@ -133,10 +132,10 @@ class ColoredString(object):
 
 	def cut_off(self, n):
 		if n >= 1:
-			self.string = uslice(self.string, 0, -n)
+			self.string = self.string[:-n]
 
 	def cut_off_to(self, n):
-		self.string = uslice(self.string, 0, n)
+		self.string = self.string[:n]
 
 	def __len__(self):
 		return uwid(self.string)
diff --git a/ranger/gui/curses_shortcuts.py b/ranger/gui/curses_shortcuts.py
index e5683b66..3df45700 100644
--- a/ranger/gui/curses_shortcuts.py
+++ b/ranger/gui/curses_shortcuts.py
@@ -44,26 +44,38 @@ class CursesShortcuts(SettingsAware):
 	addstr(*args) -- failsafe version of self.win.addstr(*args)
 	"""
 
-	def _addxyz_wrapper(self, function, args):
+	def addstr(self, *args):
 		try:
-			function(*args)
+			self.win.addstr(*args)
 		except (_curses.error, TypeError):
 			pass
 		except UnicodeEncodeError:
 			try:
-				function(*(obj.encode('utf8') if hasattr(obj, 'encode') \
-						else obj for obj in args))
+				self.win.addstr(*(ascii_only(obj) for obj in args))
 			except (_curses.error, TypeError):
 				pass
 
-	def addstr(self, *args):
-		self._addxyz_wrapper(self.win.addstr, args)
-
 	def addnstr(self, *args):
-		self._addxyz_wrapper(self.win.addnstr, args)
+		try:
+			self.win.addnstr(*args)
+		except (_curses.error, TypeError):
+			pass
+		except UnicodeEncodeError:
+			try:
+				self.win.addnstr(*(ascii_only(obj) for obj in args))
+			except (_curses.error, TypeError):
+				pass
 
 	def addch(self, *args):
-		self._addxyz_wrapper(self.win.addch, args)
+		try:
+			self.win.addch(*args)
+		except (_curses.error, TypeError):
+			pass
+		except UnicodeEncodeError:
+			try:
+				self.win.addch(*(ascii_only(obj) for obj in args))
+			except (_curses.error, TypeError):
+				pass
 
 	def color(self, *keys):
 		"""Change the colors from now on."""
diff --git a/ranger/gui/widgets/browsercolumn.py b/ranger/gui/widgets/browsercolumn.py
index 6021d622..d617e64e 100644
--- a/ranger/gui/widgets/browsercolumn.py
+++ b/ranger/gui/widgets/browsercolumn.py
@@ -20,7 +20,6 @@ from time import time
 from . import Widget
 from .pager import Pager
 from ranger.fsobject import BAD_INFO
-from ranger.ext.utfwidth import uslice
 
 class BrowserColumn(Pager):
 	main_column = False
@@ -249,13 +248,14 @@ class BrowserColumn(Pager):
 				this_color.append('link')
 				this_color.append(drawn.exists and 'good' or 'bad')
 
+			string = drawn.basename
 			if self.main_column:
 				if tagged:
-					self.addstr(line, 0, uslice(text, 0, self.wid - 2))
+					self.addnstr(line, 0, text, self.wid - 2)
 				elif self.wid > 1:
-					self.addstr(line, 1, uslice(text, 0, self.wid - 2))
+					self.addnstr(line, 1, text, self.wid - 2)
 			else:
-				self.addstr(line, 0, uslice(text, 0, self.wid))
+				self.addnstr(line, 0, text, self.wid)
 
 			if self.display_infostring and drawn.infostring \
 					and self.settings.display_size_in_main_column:
mmit/README?h=v1.9.3&id=36e4e71ee5643fc0b2c501956086434389ec5384'>36e4e71e ^
7582555b ^








36e4e71e ^
4ea0f69a ^


36e4e71e ^




4ea0f69a ^
e71c8103 ^

36e4e71e ^

f6ae504c ^
4ea0f69a ^
36e4e71e ^

4ea0f69a ^

36e4e71e ^






4ea0f69a ^

306c76d8 ^






b6aff4c3 ^

306c76d8 ^
4ea0f69a ^

45cf5174 ^

08bc4ef9 ^

b34fd133 ^
08bc4ef9 ^

08bc4ef9 ^




08bc4ef9 ^


b34fd133 ^
08bc4ef9 ^


45cf5174 ^





83868c7a ^
45cf5174 ^



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