diff options
author | Tomas Heinrich <heinrich.tomas@gmail.com> | 2010-03-09 14:09:24 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-09 14:09:24 +0100 |
commit | d2b04050c0a9a15e29e15cbf9c487db93d07c46e (patch) | |
tree | 19929bed97b4e6ddc028465f9fd0a7b3a5d28b5f /libbb | |
parent | f15620c3774c164ee6c1e2fbf9dd481b606a95a1 (diff) | |
download | busybox-w32-d2b04050c0a9a15e29e15cbf9c487db93d07c46e.tar.gz busybox-w32-d2b04050c0a9a15e29e15cbf9c487db93d07c46e.tar.bz2 busybox-w32-d2b04050c0a9a15e29e15cbf9c487db93d07c46e.zip |
lineedit: invalid unicode characters are replaced with CONFIG_SUBST_WCHAR
function old new delta
read_key_ungets - 50 +50
lineedit_read_key 223 252 +29
Signed-off-by: Tomas Heinrich <heinrich.tomas@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/lineedit.c | 26 | ||||
-rw-r--r-- | libbb/read_key.c | 9 |
2 files changed, 30 insertions, 5 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index c50b31d67..8e339da53 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c | |||
@@ -1700,18 +1700,34 @@ static int lineedit_read_key(char *read_key_buffer) | |||
1700 | #endif | 1700 | #endif |
1701 | 1701 | ||
1702 | #if ENABLE_FEATURE_ASSUME_UNICODE | 1702 | #if ENABLE_FEATURE_ASSUME_UNICODE |
1703 | { | 1703 | if (unicode_status == UNICODE_ON) { |
1704 | wchar_t wc; | 1704 | wchar_t wc; |
1705 | 1705 | ||
1706 | if ((int32_t)ic < 0) /* KEYCODE_xxx */ | 1706 | if ((int32_t)ic < 0) /* KEYCODE_xxx */ |
1707 | return ic; | 1707 | return ic; |
1708 | // TODO: imagine sequence like: 0xff, <left-arrow>: we are currently losing 0xff... | ||
1709 | |||
1708 | unicode_buf[unicode_idx++] = ic; | 1710 | unicode_buf[unicode_idx++] = ic; |
1709 | unicode_buf[unicode_idx] = '\0'; | 1711 | unicode_buf[unicode_idx] = '\0'; |
1710 | if (mbstowcs(&wc, unicode_buf, 1) != 1 && unicode_idx < MB_CUR_MAX) { | 1712 | if (mbstowcs(&wc, unicode_buf, 1) != 1) { |
1711 | delay = 50; | 1713 | /* Not (yet?) a valid unicode char */ |
1712 | goto poll_again; | 1714 | if (unicode_idx < MB_CUR_MAX) { |
1715 | delay = 50; | ||
1716 | goto poll_again; | ||
1717 | } | ||
1718 | /* Invalid sequence. Save all "bad bytes" except first */ | ||
1719 | read_key_ungets(read_key_buffer, unicode_buf + 1, MB_CUR_MAX - 1); | ||
1720 | /* | ||
1721 | * ic = unicode_buf[0] sounds even better, but currently | ||
1722 | * this does not work: wchar_t[] -> char[] conversion | ||
1723 | * when lineedit finishes mangles such "raw bytes" | ||
1724 | * (by misinterpreting them as unicode chars): | ||
1725 | */ | ||
1726 | ic = CONFIG_SUBST_WCHAR; | ||
1727 | } else { | ||
1728 | /* Valid unicode char, return its code */ | ||
1729 | ic = wc; | ||
1713 | } | 1730 | } |
1714 | ic = wc; | ||
1715 | } | 1731 | } |
1716 | #endif | 1732 | #endif |
1717 | } while (errno == EAGAIN); | 1733 | } while (errno == EAGAIN); |
diff --git a/libbb/read_key.c b/libbb/read_key.c index a2253ce3e..98b3131de 100644 --- a/libbb/read_key.c +++ b/libbb/read_key.c | |||
@@ -246,3 +246,12 @@ int64_t FAST_FUNC read_key(int fd, char *buffer) | |||
246 | buffer[-1] = 0; | 246 | buffer[-1] = 0; |
247 | goto start_over; | 247 | goto start_over; |
248 | } | 248 | } |
249 | |||
250 | void FAST_FUNC read_key_ungets(char *buffer, const char *str, unsigned len) | ||
251 | { | ||
252 | unsigned cur_len = (unsigned char)buffer[0]; | ||
253 | if (len > KEYCODE_BUFFER_SIZE-1 - cur_len) | ||
254 | len = KEYCODE_BUFFER_SIZE-1 - cur_len; | ||
255 | memcpy(buffer + 1 + cur_len, str, len); | ||
256 | buffer[0] += cur_len + len; | ||
257 | } | ||