1 ;;; gnus-gl.el --- an interface to GroupLens for Gnus
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
4 ;; Author: Brad Miller <bmiller@cs.umn.edu>
5 ;; Keywords: news, score
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
26 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 ;; GroupLens software and documentation is copyright (c) 1995 by Paul
28 ;; Resnick (Massachusetts Institute of Technology); Brad Miller, John
29 ;; Riedl, Jon Herlocker, and Joseph Konstan (University of Minnesota),
30 ;; and David Maltz (Carnegie-Mellon University).
32 ;; Permission to use, copy, modify, and distribute this documentation
33 ;; for non-commercial and commercial purposes without fee is hereby
34 ;; granted provided that this copyright notice and permission notice
35 ;; appears in all copies and that the names of the individuals and
36 ;; institutions holding this copyright are not used in advertising or
37 ;; publicity pertaining to this software without specific, written
38 ;; prior permission. The copyright holders make no representations
39 ;; about the suitability of this software and documentation for any
40 ;; purpose. It is provided ``as is'' without express or implied
43 ;; The copyright holders request that they be notified of
44 ;; modifications of this code. Please send electronic mail to
45 ;; grouplens@cs.umn.edu for more information or to announce derived
47 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
48 ;; Author: Brad Miller
50 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
52 ;; User Documentation:
53 ;; To use GroupLens you must load this file.
54 ;; You must also register a pseudonym with the Better Bit Bureau.
55 ;; http://www.cs.umn.edu/Research/GroupLens
57 ;; ---------------- For your .emacs or .gnus file ----------------
59 ;; As of version 2.5, grouplens now works as a minor mode of
60 ;; gnus-summary-mode. To get make that work you just need a couple of
62 ;; (setq gnus-use-grouplens t)
63 ;; (setq grouplens-pseudonym "")
64 ;; (setq grouplens-bbb-host "grouplens.cs.umn.edu")
66 ;; (setq gnus-summary-default-score 0)
69 ;; How do I Rate an article??
70 ;; Before you type n to go to the next article, hit a number from 1-5
71 ;; Type r in the summary buffer and you will be prompted.
72 ;; Note that when you're in grouplens-minor-mode 'r' maskes the
73 ;; usual reply binding for 'r'
75 ;; What if, Gasp, I find a bug???
76 ;; Please type M-x gnus-gl-submit-bug-report. This will set up a
77 ;; mail buffer with the state of variables and buffers that will help
78 ;; me debug the problem. A short description up front would help too!
80 ;; How do I display the prediction for an aritcle:
81 ;; If you set the gnus-summary-line-format as shown above, the score
82 ;; (prediction) will be shown automatically.
85 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
88 ;; gnus-scores-articles contains the articles
89 ;; When scoring is done, the call tree looks something like:
90 ;; gnus-possibly-score-headers
91 ;; ==> gnus-score-headers
92 ;; ==> gnus-score-load-file
93 ;; ==> get-all-mids (from the eval form)
95 ;; it would be nice to have one that gets called after all the other
96 ;; headers have been scored.
97 ;; we may want a variable gnus-grouplens-scale-factor
98 ;; and gnus-grouplens-offset this would probably be either -3 or 0
99 ;; to make the scores centered around zero or not.
101 ;; According to Lars, Norse god of gnus, the simple way to insert a
102 ;; call to an external function is to have a function added to the
103 ;; variable gnus-score-find-files-function This new function
104 ;; gnus-grouplens-score-alist will return a core alist that
105 ;; has (("message-id" ("<message-id-xxxx>" score) ("<message-id-xxxy>" score))
106 ;; This seems like it would be pretty inefficient, though workable.
108 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
110 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
112 ;; 3. Add some more ways to rate messages
113 ;; 4. Better error handling for token timeouts.
115 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
117 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
122 (require 'gnus-score
)
125 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
127 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
129 (defvar gnus-summary-grouplens-line-format
130 "%U%R%z%l%I%(%[%4L: %-20,20n%]%) %s\n"
131 "*The line format spec in summary GroupLens mode buffers.")
133 (defvar grouplens-pseudonym
""
134 "User's pseudonym. This pseudonym is obtained during the registration process")
136 (defvar grouplens-bbb-host
"grouplens.cs.umn.edu"
137 "Host where the bbbd is running" )
139 (defvar grouplens-bbb-port
9000
140 "Port where the bbbd is listening" )
142 (defvar grouplens-newsgroups
143 '("comp.lang.c++" "rec.humor" "rec.food.recipes" "comp.groupware"
144 "mn.general" "rec.arts.movies" "rec.arts.movies.current-films"
145 "comp.lang.java" "comp.os.linux.announce" "comp.os.linux.misc"
146 "comp.os.linux.development.apps" "comp.os.linux.development.system")
147 "*Groups that are part of the GroupLens experiment.")
149 (defvar grouplens-prediction-display
'prediction-spot
151 prediction-spot -- an * corresponding to the prediction between 1 and 5,
152 confidence-interval -- a numeric confidence interval
153 prediction-bar -- |##### | the longer the bar, the better the article,
154 confidence-bar -- | ----- } the prediction is in the middle of the bar,
155 confidence-spot -- ) * | the spot gets bigger with more confidence,
156 prediction-num -- plain-old numeric value,
157 confidence-plus-minus -- prediction +/i confidence")
159 (defvar grouplens-score-offset
0
160 "Offset the prediction by this value.
161 Setting this variable to -2 would have the following effect on
170 The reason is that a user might want to do this is to combine
171 GroupLens predictions with scores calculated by other score methods.")
173 (defvar grouplens-score-scale-factor
1
174 "This variable allows the user to magnify the effect of GroupLens scores.
175 The scale factor is applied after the offset.")
177 (defvar gnus-grouplens-override-scoring
'override
178 "Tell Grouplens to override the normal Gnus scoring mechanism.
179 GroupLens scores can be combined with gnus scores in one of three ways.
180 'override -- just use grouplens predictions for grouplens groups
181 'combine -- combine grouplens scores with gnus scores
182 'separate -- treat grouplens scores completely separate from gnus")
185 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
186 ;;;; Program global variables
187 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
188 (defvar grouplens-bbb-token
"0"
189 "Current session token number")
191 (defvar grouplens-bbb-process nil
192 "Process Id of current bbbd network stream process")
194 (defvar grouplens-bbb-buffer nil
195 "Buffer associated with the BBBD process")
197 (defvar grouplens-rating-alist nil
198 "Current set of message-id rating pairs")
200 (defvar grouplens-current-hashtable
(make-hash-table :test
'equal
:size
100))
201 ;; this seems like a pretty ugly way to get around the problem, but If
202 ;; I don't do this, then the compiler complains when I call gethash
204 (eval-when-compile (setq grouplens-current-hashtable
205 (make-hash-table :test
'equal
:size
100)))
207 (defvar grouplens-current-group nil
)
209 (defvar bbb-mid-list nil
)
211 (defvar bbb-alist nil
)
213 (defvar bbb-timeout-secs
10
214 "Number of seconds to wait for some response from the BBB.
215 If this times out we give up and assume that something has died..." )
217 (defvar grouplens-previous-article nil
218 "Message-ID of the last article read.")
220 (defvar bbb-read-point
)
221 (defvar bbb-response-point
)
223 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
224 ;;;; Utility Functions
225 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
226 (defun bbb-connect-to-bbbd (host port
)
227 (unless grouplens-bbb-buffer
228 (setq grouplens-bbb-buffer
229 (get-buffer-create (format " *BBBD trace: %s*" host
)))
231 (set-buffer grouplens-bbb-buffer
)
232 (make-local-variable 'bbb-read-point
)
233 (setq bbb-read-point
(point-min))))
234 ;; clear the trace buffer of old output
236 (set-buffer grouplens-bbb-buffer
)
238 ;; open the connection to the server
239 (setq grouplens-bbb-process nil
)
241 (condition-case error
242 (setq grouplens-bbb-process
243 (open-network-stream "BBBD" grouplens-bbb-buffer host port
))
244 (error (gnus-message 3 "Error: Failed to connect to BBB")
246 (and (null grouplens-bbb-process
)
248 ;; (set-process-filter grouplens-bbb-process 'bbb-process-filter)
250 (set-buffer grouplens-bbb-buffer
)
251 (setq bbb-read-point
(point-min))
252 (or (bbb-read-response grouplens-bbb-process
)
254 grouplens-bbb-process
)
256 ;; (defun bbb-process-filter (process output)
258 ;; (set-buffer (bbb-process-buffer process))
259 ;; (goto-char (point-max))
262 (defun bbb-send-command (process command
)
263 (goto-char (point-max))
266 (setq bbb-read-point
(point))
267 (setq bbb-response-point
(point))
268 (set-marker (process-mark process
) (point)) ; process output also comes here
269 (process-send-string process command
)
270 (process-send-string process
"\r\n"))
272 (defun bbb-read-response (process) ; &optional return-response-string)
273 "This function eats the initial response of OK or ERROR from the BBB."
274 (let ((case-fold-search nil
)
276 (goto-char bbb-read-point
)
277 (while (and (not (search-forward "\r\n" nil t
))
278 (accept-process-output process bbb-timeout-secs
))
279 (goto-char bbb-read-point
))
280 (setq match-end
(point))
281 (goto-char bbb-read-point
)
282 (setq bbb-read-point match-end
)
285 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
287 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
289 "return the token number if login is successful, otherwise return nil"
291 (setq grouplens-bbb-token nil
)
292 (if (not (equal grouplens-pseudonym
""))
294 (bbb-connect-to-bbbd grouplens-bbb-host grouplens-bbb-port
)))
297 (set-buffer (process-buffer bbb-process
))
298 (bbb-send-command bbb-process
299 (concat "login " grouplens-pseudonym
))
300 (if (bbb-read-response bbb-process
)
301 (setq grouplens-bbb-token
(bbb-extract-token-number))
302 (gnus-message 3 "Error: Grouplens login failed")))))
303 (gnus-message 3 "Error: you must set a pseudonym"))
306 (defun bbb-extract-token-number ()
307 (let ((token-pos (search-forward "token=" nil t
) ))
308 (if (looking-at "[0-9]+")
309 (buffer-substring token-pos
(match-end 0)))))
311 (gnus-add-shutdown 'bbb-logout
'gnus
)
314 "logout of bbb session"
316 (bbb-connect-to-bbbd grouplens-bbb-host grouplens-bbb-port
)))
319 (set-buffer (process-buffer bbb-process
))
320 (bbb-send-command bbb-process
(concat "logout " grouplens-bbb-token
))
321 (bbb-read-response bbb-process
))
324 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
326 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
328 (defun bbb-build-mid-scores-alist (groupname)
329 "this function can be called as part of the function to return the
330 list of score files to use. See the gnus variable
331 gnus-score-find-score-files-function.
333 *Note:* If you want to use grouplens scores along with calculated scores,
334 you should see the offset and scale variables. At this point, I don't
335 recommend using both scores and grouplens predictions together."
336 (setq grouplens-current-group groupname
)
337 (if (member groupname grouplens-newsgroups
)
338 (let* ((mid-list (bbb-get-all-mids))
339 (predict-list (bbb-get-predictions mid-list groupname
)))
340 (setq grouplens-previous-article nil
)
341 ;; scores-alist should be a list of lists:
342 ;; ((("message-id" ("<mid1>" score1 nil s) ("<mid2> score2 nil s))))
343 ;;`((("message-id" . ,predict-list))) ; Yes, this is the return value
344 (list (list (list (append (list "message-id") predict-list
)))))
347 (defun bbb-get-predictions (midlist groupname
)
348 "Ask the bbb for predictions, and build up the score alist."
349 (if (or (null grouplens-bbb-token
)
350 (equal grouplens-bbb-token
"0"))
352 (gnus-message 3 "Error: You are not logged in to a BBB")
354 (gnus-message 5 "Fetching Predictions...")
356 (predict-command (bbb-build-predict-command midlist groupname
357 grouplens-bbb-token
))
358 (bbb-process (bbb-connect-to-bbbd grouplens-bbb-host
359 grouplens-bbb-port
)))
362 (set-buffer (process-buffer bbb-process
))
363 (bbb-send-command bbb-process predict-command
)
364 (if (bbb-read-response bbb-process
)
365 (setq predict-list
(bbb-get-prediction-response bbb-process
))
366 (gnus-message 1 "Invalid Token, login and try again")
368 (setq bbb-alist predict-list
))))
370 (defun bbb-get-all-mids ()
371 (let ((index (nth 1 (assoc "message-id" gnus-header-index
)))
372 (articles gnus-newsgroup-headers
)
374 (setq bbb-mid-list nil
)
376 (progn (setq art
(car articles
)
377 this
(aref art index
)
378 articles
(cdr articles
))
379 (setq bbb-mid-list
(cons this bbb-mid-list
))))
382 (defun bbb-build-predict-command (mlist grpname token
)
383 (let ((cmd (concat "getpredictions " token
" " grpname
"\r\n"))
386 (setq art
(car mlist
)
387 cmd
(concat cmd art
"\r\n")
389 (setq cmd
(concat cmd
".\r\n"))
392 (defun bbb-get-prediction-response (process)
393 (let ((case-fold-search nil
)
395 (goto-char bbb-read-point
)
396 (while (and (not (search-forward ".\r\n" nil t
))
397 (accept-process-output process bbb-timeout-secs
))
398 (goto-char bbb-read-point
))
399 (setq match-end
(point))
400 (goto-char (+ bbb-response-point
4)) ;; we ought to be right before OK
401 (bbb-build-response-alist)))
403 ;; build-response-alist assumes that the cursor has been positioned at
404 ;; the first line of the list of mid/rating pairs. For now we will
405 ;; use a prediction of 99 to signify no prediction. Ultimately, we
406 ;; should just ignore messages with no predictions.
407 (defun bbb-build-response-alist ()
410 (setq grouplens-current-hashtable
(make-hash-table :test
'equal
:size
100))
412 (cond ((looking-at "\\(<.*>\\) :nopred=")
413 (push `(,(bbb-get-mid) ,gnus-summary-default-score nil s
) resp
)
416 ((looking-at "\\(<.*>\\) :pred=\\([0-9]\.[0-9][0-9]\\) :conflow=\\([0-9]\.[0-9][0-9]\\) :confhigh=\\([0-9]\.[0-9][0-9]\\)")
417 (push `(,(bbb-get-mid) ,(bbb-get-pred) nil s
) resp
)
418 (cl-puthash (bbb-get-mid)
419 (list (bbb-get-pred) (bbb-get-confl) (bbb-get-confh))
420 grouplens-current-hashtable
)
423 ((looking-at "\\(<.*>\\) :pred=\\([0-9]\.[0-9][0-9]\\)")
424 (push `(,(bbb-get-mid) ,(bbb-get-pred) nil s
) resp
)
425 (cl-puthash (bbb-get-mid)
426 (list (bbb-get-pred) 0 0)
427 grouplens-current-hashtable
)
433 ;; these two functions assume that there is an active match lying
434 ;; around. Where the first parenthesized expression is the
435 ;; message-id, and the second is the prediction. Since gnus assumes
436 ;; that scores are integer values?? we round the prediction.
437 (defun bbb-get-mid ()
438 (buffer-substring (match-beginning 1) (match-end 1)))
440 (defun bbb-get-pred ()
441 (let ((tpred (string-to-number (buffer-substring
445 (round (* grouplens-score-scale-factor
(+ grouplens-score-offset tpred
)))
448 (defun bbb-get-confl ()
449 (string-to-number (buffer-substring (match-beginning 3) (match-end 3))))
451 (defun bbb-get-confh ()
452 (string-to-number (buffer-substring (match-beginning 4) (match-end 4))))
454 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
455 ;;;; Prediction Display
456 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
457 (defconst grplens-rating-range
4.0)
458 (defconst grplens-maxrating
5)
459 (defconst grplens-minrating
1)
460 (defconst grplens-predstringsize
12)
462 (defvar gnus-tmp-score
)
463 (defun bbb-grouplens-score (header)
464 (if (eq gnus-grouplens-override-scoring
'separate
)
465 (bbb-grouplens-other-score header
)
466 (let* ((rate-string (make-string 12 ?
))
467 (mid (aref header
(nth 1 (assoc "message-id" gnus-header-index
))))
468 (hashent (gethash mid grouplens-current-hashtable
))
469 (iscore gnus-tmp-score
)
470 (low (car (cdr hashent
)))
471 (high (car (cdr (cdr hashent
)))))
472 (aset rate-string
0 ?|
)
473 (aset rate-string
11 ?|
)
474 (unless (member grouplens-current-group grouplens-newsgroups
)
475 (unless (equal grouplens-prediction-display
'prediction-num
)
482 (if (and (bbb-valid-score iscore
)
486 ((equal grouplens-prediction-display
'prediction-spot
)
487 (setq rate-string
(bbb-fmt-prediction-spot rate-string iscore
)))
488 ;; confidence-interval
489 ((equal grouplens-prediction-display
'confidence-interval
)
490 (setq rate-string
(bbb-fmt-confidence-interval iscore low high
)))
492 ((equal grouplens-prediction-display
'prediction-bar
)
493 (setq rate-string
(bbb-fmt-prediction-bar rate-string iscore
)))
495 ((equal grouplens-prediction-display
'confidence-bar
)
496 (setq rate-string
(format "| %4.2f |" iscore
)))
498 ((equal grouplens-prediction-display
'confidence-spot
)
499 (setq rate-string
(format "| %4.2f |" iscore
)))
501 ((equal grouplens-prediction-display
'prediction-num
)
502 (setq rate-string
(bbb-fmt-prediction-num iscore
)))
503 ;; confidence-plus-minus
504 ((equal grouplens-prediction-display
'confidence-plus-minus
)
505 (setq rate-string
(bbb-fmt-confidence-plus-minus iscore low high
))
507 (t (gnus-message 3 "Invalid prediction display type")))
508 (aset rate-string
5 ?N
) (aset rate-string
6 ?A
))
512 ;; Gnus user format function that doesn't depend on
513 ;; bbb-build-mid-scores-alist being used as the score function, but is
514 ;; instead called from gnus-select-group-hook. -- LAB
515 (defun bbb-grouplens-other-score (header)
516 (if (not (member grouplens-current-group grouplens-newsgroups
))
517 ;; Return an empty string
519 (let* ((rate-string (make-string 12 ?
))
520 (mid (aref header
(nth 1 (assoc "message-id" gnus-header-index
))))
521 (hashent (gethash mid grouplens-current-hashtable
))
522 (pred (or (nth 0 hashent
) 0))
523 (low (nth 1 hashent
))
524 (high (nth 2 hashent
)))
526 (aset rate-string
0 ?|
)
527 (aset rate-string
11 ?|
)
528 (unless (equal grouplens-prediction-display
'prediction-num
)
533 ;; If no entry in BBB hash mark rate string as NA and return
536 (aset rate-string
5 ?N
)
537 (aset rate-string
6 ?A
)
540 ((equal grouplens-prediction-display
'prediction-spot
)
541 (bbb-fmt-prediction-spot rate-string pred
))
543 ((equal grouplens-prediction-display
'confidence-interval
)
544 (bbb-fmt-confidence-interval pred low high
))
546 ((equal grouplens-prediction-display
'prediction-bar
)
547 (bbb-fmt-prediction-bar rate-string pred
))
549 ((equal grouplens-prediction-display
'confidence-bar
)
550 (format "| %4.2f |" pred
))
552 ((equal grouplens-prediction-display
'confidence-spot
)
553 (format "| %4.2f |" pred
))
555 ((equal grouplens-prediction-display
'prediction-num
)
556 (bbb-fmt-prediction-num pred
))
558 ((equal grouplens-prediction-display
'confidence-plus-minus
)
559 (bbb-fmt-confidence-plus-minus pred low high
))
562 (gnus-message 3 "Invalid prediction display type")
563 (aset rate-string
0 ?|
)
564 (aset rate-string
11 ?|
)
567 (defun bbb-valid-score (score)
568 (or (equal grouplens-prediction-display
'prediction-num
)
569 (and (>= score grplens-minrating
)
570 (<= score grplens-maxrating
))))
572 (defun bbb-requires-confidence (format-type)
573 (or (equal format-type
'confidence-plus-minus
)
574 (equal format-type
'confidence-spot
)
575 (equal format-type
'confidence-interval
)))
577 (defun bbb-have-confidence (clow chigh
)
581 (defun bbb-fmt-prediction-spot (rate-string score
)
583 (round (* (/ (- score grplens-minrating
) grplens-rating-range
)
584 (+ (- grplens-predstringsize
4) 1.49)))
588 (defun bbb-fmt-confidence-interval (score low high
)
589 (if (bbb-have-confidence low high
)
590 (format "|%4.2f-%4.2f |" low high
)
591 (bbb-fmt-prediction-num score
)))
593 (defun bbb-fmt-confidence-plus-minus (score low high
)
594 (if (bbb-have-confidence low high
)
595 (format "|%3.1f+/-%4.2f|" score
(/ (- high low
) 2.0))
596 (bbb-fmt-prediction-num score
)))
598 (defun bbb-fmt-prediction-bar (rate-string score
)
600 (step (/ grplens-rating-range
(- grplens-predstringsize
4)))
601 (half-step (/ step
2))
602 (loc (- grplens-minrating half-step
)))
603 (while (< i
(- grplens-predstringsize
2))
605 (aset rate-string i ?
#)
606 (aset rate-string i ?
))
608 (setq loc
(+ loc step
)))
612 (defun bbb-fmt-prediction-num (score)
613 (format "| %4.2f |" score
))
615 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
617 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
619 ;; The message-id for the current article can be found in
620 ;; (aref gnus-current-headers (nth 1 (assoc "message-id" gnus-header-index)))
622 (defun bbb-put-ratings ()
623 (if (and grouplens-rating-alist
624 (member gnus-newsgroup-name grouplens-newsgroups
))
625 (let ((bbb-process (bbb-connect-to-bbbd grouplens-bbb-host
627 (rate-command (bbb-build-rate-command grouplens-rating-alist
)))
630 (set-buffer (process-buffer bbb-process
))
631 (gnus-message 5 "Sending Ratings...")
632 (bbb-send-command bbb-process rate-command
)
633 (if (bbb-read-response bbb-process
)
634 (setq grouplens-rating-alist nil
)
636 "Token timed out: call bbb-login and quit again")
638 (gnus-message 5 "Sending Ratings...Done"))
639 (gnus-message 3 "No BBB connection")))
640 (setq grouplens-rating-alist nil
)))
642 (defun bbb-build-rate-command (rate-alist)
644 (cmd (concat "putratings " grouplens-bbb-token
645 " " grouplens-current-group
" \r\n")))
647 (setq this
(car rate-alist
)
648 cmd
(concat cmd
(car this
) " :rating=" (cadr this
) ".00"
649 " :time=" (cddr this
) "\r\n")
650 rate-alist
(cdr rate-alist
)))
651 (concat cmd
".\r\n")))
653 ;; Interactive rating functions.
654 (defun bbb-summary-rate-article (rating &optional midin
)
655 (interactive "nRating: ")
656 (when (member gnus-newsgroup-name grouplens-newsgroups
)
657 (let ((mid (or midin
(bbb-get-current-id))))
659 (>= rating grplens-minrating
)
660 (<= rating grplens-maxrating
)
662 (let ((oldrating (assoc mid grouplens-rating-alist
)))
664 (setcdr oldrating
(cons rating
0))
665 (push `(,mid .
(,rating .
0)) grouplens-rating-alist
))
666 (gnus-summary-mark-article nil
(int-to-string rating
)))
667 (gnus-message 3 "Invalid rating")))))
669 (defun grouplens-next-unread-article (rating)
670 "Select unread article after current one."
672 (if rating
(bbb-summary-rate-article rating
))
673 (gnus-summary-next-unread-article))
675 (defun grouplens-best-unread-article (rating)
676 "Select unread article after current one."
678 (if rating
(bbb-summary-rate-article rating
))
679 (gnus-summary-best-unread-article))
681 (defun grouplens-summary-catchup-and-exit (rating)
682 "Mark all articles not marked as unread in this newsgroup as read,
683 then exit. If prefix argument ALL is non-nil, all articles are
687 (bbb-summary-rate-article rating
))
689 (gnus-summary-catchup-and-exit)
690 (gnus-summary-catchup-and-exit rating
)))
692 (defun grouplens-score-thread (score)
693 "Raise the score of the articles in the current thread with SCORE."
694 (interactive "nRating: ")
697 (let ((articles (gnus-summary-articles-in-thread)))
699 (gnus-summary-goto-subject (car articles
))
700 (gnus-set-global-variables)
701 (bbb-summary-rate-article score
703 (gnus-summary-article-header
705 (setq articles
(cdr articles
))))
707 (let ((gnus-summary-check-current t
))
708 (or (zerop (gnus-summary-next-subject 1 t
))
710 (gnus-summary-recenter)
711 (gnus-summary-position-point)
712 (gnus-set-mode-line 'summary
))
715 (defun bbb-get-current-id ()
716 (if gnus-current-headers
717 (aref gnus-current-headers
718 (nth 1 (assoc "message-id" gnus-header-index
)))
719 (gnus-message 3 "You must select an article before you rate it")))
721 (defun bbb-grouplens-group-p (group)
722 "Say whether GROUP is a GroupLens group."
723 (if (member group grouplens-newsgroups
) " (GroupLens Enhanced)" ""))
725 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
726 ;; TIME SPENT READING
727 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
728 (defvar grouplens-current-starting-time nil
)
730 (defun grouplens-start-timer ()
731 (setq grouplens-current-starting-time
(current-time)))
733 (defun grouplens-elapsed-time ()
734 (let ((et (bbb-time-float (current-time))))
735 (- et
(bbb-time-float grouplens-current-starting-time
))))
737 (defun bbb-time-float (timeval)
738 (+ (* (car timeval
) 65536)
741 (defun grouplens-do-time ()
742 (when (member gnus-newsgroup-name grouplens-newsgroups
)
743 (when grouplens-previous-article
744 (let ((elapsed-time (grouplens-elapsed-time))
745 (oldrating (assoc grouplens-previous-article
746 grouplens-rating-alist
)))
748 (push `(,grouplens-previous-article .
(0 .
,elapsed-time
))
749 grouplens-rating-alist
)
750 (setcdr oldrating
(cons (cadr oldrating
) elapsed-time
)))))
751 (grouplens-start-timer)
752 (setq grouplens-previous-article
(bbb-get-current-id))))
754 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
756 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
758 (defconst gnus-gl-version
"gnus-gl.el 2.12")
759 (defconst gnus-gl-maintainer-address
"grouplens-bug@cs.umn.edu")
760 (defun gnus-gl-submit-bug-report ()
761 "Submit via mail a bug report on gnus-gl"
764 (reporter-submit-bug-report gnus-gl-maintainer-address
765 (concat "gnus-gl.el " gnus-gl-version
)
766 (list 'grouplens-pseudonym
769 'grouplens-newsgroups
771 'grouplens-bbb-process
772 'grouplens-current-group
773 'grouplens-previous-article
779 (defun gnus-gl-get-trace ()
780 "Insert the contents of the BBBD trace buffer"
781 (if grouplens-bbb-buffer
(insert-buffer grouplens-bbb-buffer
)))
784 ;;; Additions to make gnus-grouplens-mode Warning Warning!!
785 ;;; This version of the gnus-grouplens-mode does
786 ;;; not work with gnus-5.x. The "old" way of
787 ;;; setting up GroupLens still works however.
789 (defvar gnus-grouplens-mode nil
790 "Minor mode for providing a GroupLens interface in Gnus summary buffers.")
792 (defvar gnus-grouplens-mode-map nil
)
794 (unless gnus-grouplens-mode-map
795 (setq gnus-grouplens-mode-map
(make-keymap))
797 gnus-grouplens-mode-map
798 "n" grouplens-next-unread-article
799 "r" bbb-summary-rate-article
800 "k" grouplens-score-thread
801 "c" grouplens-summary-catchup-and-exit
802 "," grouplens-best-unread-article
))
804 (defun gnus-grouplens-make-menu-bar ()
805 (unless (boundp 'gnus-grouplens-menu
)
807 gnus-grouplens-menu gnus-grouplens-mode-map
""
809 ["Login" bbb-login t
]
810 ["Rate" bbb-summary-rate-article t
]
811 ["Next article" grouplens-next-unread-article t
]
812 ["Best article" grouplens-best-unread-article t
]
813 ["Raise thread" grouplens-score-thread t
]
814 ["Report bugs" gnus-gl-submit-bug-report t
]))))
816 (defun gnus-grouplens-mode (&optional arg
)
817 "Minor mode for providing a GroupLens interface in Gnus summary buffers."
819 (when (and (eq major-mode
'gnus-summary-mode
)
820 (member gnus-newsgroup-name grouplens-newsgroups
))
821 (make-local-variable 'gnus-grouplens-mode
)
822 (setq gnus-grouplens-mode
823 (if (null arg
) (not gnus-grouplens-mode
)
824 (> (prefix-numeric-value arg
) 0)))
825 (when gnus-grouplens-mode
826 (if (not (fboundp 'make-local-hook
))
827 (add-hook 'gnus-select-article-hook
'grouplens-do-time
)
828 (make-local-hook 'gnus-select-article-hook
)
829 (add-hook 'gnus-select-article-hook
'grouplens-do-time nil
'local
))
830 (if (not (fboundp 'make-local-hook
))
831 (add-hook 'gnus-exit-group-hook
'bbb-put-ratings
)
832 (make-local-hook 'gnus-exit-group-hook
)
833 (add-hook 'gnus-exit-group-hook
'bbb-put-ratings nil
'local
))
834 (make-local-variable 'gnus-score-find-score-files-function
)
835 (cond ((eq gnus-grouplens-override-scoring
'combine
)
836 ;; either add bbb-buld-mid-scores-alist to a list
838 (if (listp gnus-score-find-score-files-function
)
839 (setq gnus-score-find-score-files-function
840 (append 'bbb-build-mid-scores-alist
841 gnus-score-find-score-files-function
))
842 (setq gnus-score-find-score-files-function
843 (list gnus-score-find-score-files-function
844 'bbb-build-mid-scores-alist
))))
845 ;; leave the gnus-score-find-score-files variable alone
846 ((eq gnus-grouplens-override-scoring
'separate
)
847 (add-hook 'gnus-select-group-hook
849 (bbb-build-mid-scores-alist gnus-newsgroup-name
))))
850 ;; default is to override
851 (t (setq gnus-score-find-score-files-function
852 'bbb-build-mid-scores-alist
)))
853 (make-local-variable 'gnus-summary-line-format
)
854 (setq gnus-summary-line-format
855 gnus-summary-grouplens-line-format
)
856 (make-local-variable 'gnus-summary-line-format-spec
)
857 (setq gnus-summary-line-format-spec nil
)
860 (when (and menu-bar-mode
861 (gnus-visual-p 'grouplens-menu
'menu
))
862 (gnus-grouplens-make-menu-bar))
863 (unless (assq 'gnus-grouplens-mode minor-mode-alist
)
864 (push '(gnus-grouplens-mode " GroupLens") minor-mode-alist
))
865 (unless (assq 'gnus-grouplens-mode minor-mode-map-alist
)
866 (push (cons 'gnus-grouplens-mode gnus-grouplens-mode-map
)
867 minor-mode-map-alist
))
868 (run-hooks 'gnus-grouplens-mode-hook
))))
872 ;;; gnus-gl.el ends here