From: Reiner Steib <reinersteib+gmane@imap.cc>
To: Chong Yidong <cyd@stupidchicken.com>
Cc: simon@josefsson.org, handa@m17n.org, ding@gnus.org,
emacs-devel@gnu.org, Volkan YAZICI <yazicivo@ttnet.net.tr>,
Eli Zaretskii <eliz@gnu.org>
Subject: with-case-table / ascii-case-table (was: [yazicivo@ttnet.net.tr: Locale Dependent Downcasing in smtpmail])
Date: Tue, 03 Apr 2007 19:57:11 +0200 [thread overview]
Message-ID: <v9vegdpci0.fsf_-_@marauder.physik.uni-ulm.de> (raw)
In-Reply-To: <87ircdh13m.fsf@stupidchicken.com> (Chong Yidong's message of "Tue\, 03 Apr 2007 12\:30\:37 -0400")
[-- Attachment #1: Type: text/plain, Size: 2373 bytes --]
On Tue, Apr 03 2007, Chong Yidong wrote:
> How about the following approach? At the beginning of characters.el,
> save the standard case table (which AFAICT hasn't been modified at
> that point), as a variable ascii-case-table. Then downcase-ascii can
> use it.
[...]
> + (defun downcase-ascii (string)
> + "Convert ASCII argument to lower case and return that.
> + The argument may be a character or string. The result has the same type.
> + The argument object is not altered--the value is a copy."
> + (let ((old-case-table (current-case-table)))
> + (unwind-protect
> + (progn (set-case-table ascii-case-table)
> + (downcase string))
> + (set-case-table old-case-table))))
Note that the problem is not only the `downcase' function. So maybe
adding `with-case-table' would be a good idea.
Turkish Gnus user's might still suffer from the "slow search
operations problem" [1] in `gnus/nnfolder.el'. Based on your previous
patch, I've made a preliminary patch for `nnfolder.el' [2]. I didn't
test it yet (I don't use the nnfolder back end). It has to be
adjusted to use `ascii-case-table' and some compatibility code for
Emacs 21 (where the downcase problem is not present).
Bye, Reiner.
[1]
,----[ http://thread.gmane.org/gmane.emacs.gnus.general/63925/focus=63979 ]
| From: Reiner Steib
| Subject: Re: Slow operations on buffers of tens of megabytes
| Newsgroups: gmane.emacs.pretest.bugs, gmane.emacs.gnus.general
| Date: 2006-11-13 17:28:58 GMT (19 weeks, 5 days, 3 hours and 34 minutes ago)
|
| On Thu, Nov 09 2006, Alexandre Oliva wrote:
|
| > Ultimately, I'm a bit concerned about messing with the case table of
| > an nnfolder buffer for the entire duration of the buffer. It's hard
| > to tell whether there'd be any less visible fallouts.
|
| Richard has eliminated the peculiar upcasing dotless-i to I in CVS.
| Does it fix your problem?
|
| (IIUC, it should fix it _unless_ the user has a Turkish language
| environment. I.e. Turkish Gnus user's might still suffer from this
| problem.)
|
| ,----
| | 2006-11-12 Richard Stallman <rms <at> gnu.org>
| |
| | * language/european.el (turkish-case-conversion-enable)
| | (turkish-case-conversion-disable): New functions.
| | ("Turkish" lang env): Use them.
| |
| | * international/characters.el (case table):
| | Do nothing special for i and I.
| `----
`----
[2]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: rs-nnfolder-search-marker-2007-04-01.patch --]
[-- Type: text/x-patch, Size: 6354 bytes --]
--- nnfolder.el 26 Jan 2007 20:41:00 +0100 7.17
+++ nnfolder.el 01 Apr 2007 23:09:26 +0200
@@ -104,6 +104,39 @@
(defconst nnfolder-article-marker "X-Gnus-Article-Number: "
"String used to demarcate what the article number for a message is.")
+;; Make sure we're using the standard case table. In a Turkish locale, the
+;; "i" in "X-Gnus-Article-Number: " makes parsing large nnfolder groups very
+;; slow.
+;; ,----[ http://thread.gmane.org/gmane.emacs.gnus.general/63925/focus=63979 ]
+;; | Subject: Slow operations on buffers of tens of megabytes
+;; | Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.gnus.general
+;; | Date: 2006-11-13
+;; `----
+(defun nnfolder-search (&optional function string &rest args)
+ "Search for `nnfolder-article-marker' using the standard case table.
+FUNCTION is used for searching. If STRING is given, it's used
+instead of `nnfolder-article-marker'. The remaining ARGS are
+passed to the FUNCTION."
+ (let ((old-case-table (current-case-table))
+ point)
+ (unwind-protect
+ (progn
+ (set-case-table (standard-case-table))
+ (setq point
+ (apply (cond
+ ((fboundp function)
+ function)
+ (function
+ 'search-backward)
+ (t
+ 'search-forward))
+ (or string
+ (concat "\n" nnfolder-article-marker))
+ args)))
+ (set-case-table old-case-table))
+ ;; Be sure to return what the FUNCTION returned.
+ point))
+
(defvoo nnfolder-current-group nil)
(defvoo nnfolder-current-buffer nil)
(defvoo nnfolder-status-string "")
@@ -198,8 +231,7 @@
;; as caused by active file bogosity.
(cond
((bobp))
- ((search-backward (concat "\n" nnfolder-article-marker)
- nil t)
+ ((nnfolder-search 'search-backward nil nil t)
(goto-char (match-end 0))
(setq num (string-to-number
(buffer-substring
@@ -208,8 +240,7 @@
(< num article)))
;; Check that we are before an article with a
;; higher number.
- (search-forward (concat "\n" nnfolder-article-marker)
- nil t)
+ (nnfolder-search 'search-forward nil nil t)
(progn
(setq num (string-to-number
(buffer-substring
@@ -284,8 +315,7 @@
(cons nnfolder-current-group article)
(goto-char (point-min))
(cons nnfolder-current-group
- (if (search-forward (concat "\n" nnfolder-article-marker)
- nil t)
+ (if (nnfolder-search 'search-forward nil nil t)
(string-to-number (buffer-substring
(point) (point-at-eol)))
-1))))))))
@@ -405,10 +435,9 @@
(when nnfolder-current-buffer
(set-buffer nnfolder-current-buffer)
(goto-char (point-min))
- (let ((marker (concat "\n" nnfolder-article-marker))
- (number "[0-9]+")
+ (let ((number "[0-9]+")
numbers)
- (while (and (search-forward marker nil t)
+ (while (and (nnfolder-search 'search-forward nil nil t)
(re-search-forward number nil t))
(let ((newnum (string-to-number (match-string 0))))
(if (nnmail-within-headers-p)
@@ -436,8 +465,7 @@
(while (and maybe-expirable is-old)
(goto-char (point-min))
(when (and (nnfolder-goto-article (car maybe-expirable))
- (search-forward (concat "\n" nnfolder-article-marker)
- nil t))
+ (nnfolder-search 'search-forward nil nil t))
(forward-sexp)
(when (setq is-old
(nnmail-expired-article-p
@@ -480,8 +508,7 @@
(erase-buffer)
(insert-buffer-substring nntp-server-buffer)
(goto-char (point-min))
- (while (re-search-forward
- (concat "^" nnfolder-article-marker)
+ (while (nnfolder-search 're-search-forward nil
(save-excursion (and (search-forward "\n\n" nil t) (point)))
t)
(gnus-delete-line))
@@ -523,7 +550,9 @@
(if (search-forward "\n\n" nil t)
(forward-line -1)
(goto-char (point-max)))
- (while (re-search-backward (concat "^" nnfolder-article-marker) nil t)
+ (while (nnfolder-search 're-search-backward
+ (concat "^" nnfolder-article-marker)
+ nil t)
(delete-region (point) (progn (forward-line 1) (point))))
(when nnmail-cache-accepted-message-ids
(nnmail-cache-insert (nnmail-fetch-field "message-id")
@@ -642,13 +671,12 @@
(defun nnfolder-adjust-min-active (group)
;; Find the lowest active article in this group.
(let* ((active (cadr (assoc group nnfolder-group-alist)))
- (marker (concat "\n" nnfolder-article-marker))
(number "[0-9]+")
(activemin (cdr active)))
(save-excursion
(set-buffer nnfolder-current-buffer)
(goto-char (point-min))
- (while (and (search-forward marker nil t)
+ (while (and (nnfolder-search 'search-forward nil nil t)
(re-search-forward number nil t))
(let ((newnum (string-to-number (match-string 0))))
(if (nnmail-within-headers-p)
@@ -788,7 +816,7 @@
(if (search-forward "\n\n" nil t)
(forward-line -1)
(goto-char (point-max)))
- (while (search-backward (concat "\n" nnfolder-article-marker) nil t)
+ (while (nnfolder-search 'search-backward nil nil t)
(delete-region (1+ (point)) (progn (forward-line 2) (point))))
;; Insert the new newsgroup marker.
@@ -894,7 +922,6 @@
(nnmail-activate 'nnfolder)
;; Read in the file.
(let ((delim "^From ")
- (marker (concat "\n" nnfolder-article-marker))
(number "[0-9]+")
(active (or (cadr (assoc group nnfolder-group-alist))
(cons 1 0)))
@@ -928,7 +955,7 @@
(when (or nnfolder-ignore-active-file
novbuf
(< maxid 2))
- (while (and (search-forward marker nil t)
+ (while (and (nnfolder-search 'search-forward nil nil t)
(looking-at number))
(setq newnum (string-to-number (match-string 0)))
(when (nnmail-within-headers-p)
@@ -959,7 +986,7 @@
(when (not (or nnfolder-distrust-mbox
(< maxid 2)))
(goto-char (point-max))
- (unless (re-search-backward marker nil t)
+ (unless (nnfolder-search 're-search-backward nil nil t)
(goto-char (point-min)))
;;(when (nnmail-search-unix-mail-delim)
;; (goto-char (point-min)))
@@ -982,7 +1009,7 @@
(point)
(point-max)))
(goto-char start)
- (when (not (search-forward marker end t))
+ (when (not (nnfolder-search 'search-forward nil end t))
(narrow-to-region start end)
(nnmail-insert-lines)
(nnfolder-insert-newsgroup-line
[-- Attachment #3: Type: text/plain, Size: 100 bytes --]
--
,,,
(o o)
---ooO-(_)-Ooo--- | PGP key available | http://rsteib.home.pages.de/
[-- Attachment #4: Type: text/plain, Size: 142 bytes --]
_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel
next prev parent reply other threads:[~2007-04-03 17:57 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-31 20:43 [yazicivo@ttnet.net.tr: Locale Dependent Downcasing in smtpmail] Richard Stallman
2007-04-01 17:39 ` Chong Yidong
2007-04-02 6:51 ` Kenichi Handa
2007-04-02 22:52 ` Chong Yidong
2007-04-02 23:20 ` Volkan YAZICI
2007-04-03 1:24 ` Kenichi Handa
2007-04-03 21:40 ` Richard Stallman
2007-04-02 17:31 ` Volkan YAZICI
2007-04-03 8:06 ` Kenichi Handa
2007-04-03 8:28 ` Werner LEMBERG
2007-04-03 9:24 ` Eli Zaretskii
2007-04-03 9:33 ` Simon Josefsson
2007-04-03 13:44 ` Volkan YAZICI
2007-04-03 15:29 ` Eli Zaretskii
2007-04-03 15:50 ` David Kastrup
2007-04-03 16:03 ` Andreas Schwab
[not found] ` <87k5wt5tnx.fsf@ttnet.net.tr>
2007-04-03 16:21 ` David Kastrup
[not found] ` <87slbhquuw.fsf@ttnet.net.tr>
2007-04-03 18:44 ` David Kastrup
2007-04-03 16:30 ` Chong Yidong
2007-04-03 17:57 ` Reiner Steib [this message]
2007-04-04 15:40 ` with-case-table / ascii-case-table Chong Yidong
2007-04-04 14:02 ` [yazicivo@ttnet.net.tr: Locale Dependent Downcasing in smtpmail] Richard Stallman
2007-04-04 14:27 ` Andreas Schwab
2007-04-05 23:11 ` Richard Stallman
2007-04-06 6:15 ` Kenichi Handa
2007-04-06 6:49 ` Werner LEMBERG
2007-04-06 7:15 ` Kenichi Handa
2007-04-06 7:30 ` Werner LEMBERG
2007-04-06 8:56 ` Eli Zaretskii
2007-04-06 9:24 ` Werner LEMBERG
2007-04-06 13:54 ` Eli Zaretskii
2007-04-07 8:01 ` Werner LEMBERG
2007-04-06 19:47 ` Richard Stallman
2007-04-07 7:30 ` martin rudalics
2007-04-07 17:31 ` Richard Stallman
2007-04-04 18:01 ` Eli Zaretskii
2007-04-05 23:11 ` Richard Stallman
2007-04-06 8:31 ` Eli Zaretskii
2007-04-06 19:47 ` Richard Stallman
2007-04-07 9:18 ` Eli Zaretskii
2007-04-07 15:03 ` Chong Yidong
2007-04-07 17:36 ` Eli Zaretskii
2007-04-07 17:31 ` Richard Stallman
2007-04-07 17:47 ` Eli Zaretskii
2007-04-03 21:16 ` Davis Herring
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=v9vegdpci0.fsf_-_@marauder.physik.uni-ulm.de \
--to=reinersteib+gmane@imap.cc \
--cc=Reiner.Steib@gmx.de \
--cc=cyd@stupidchicken.com \
--cc=ding@gnus.org \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
--cc=handa@m17n.org \
--cc=simon@josefsson.org \
--cc=yazicivo@ttnet.net.tr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).