1 ;;; gnus-fun.el --- various frivolous extension functions to Gnus
3 ;; Copyright (C) 2002-2015 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
35 (defvar gnus-face-properties-alist
)
37 (defcustom gnus-x-face-directory
(expand-file-name "x-faces" gnus-directory
)
38 "*Directory where X-Face PBM files are stored."
43 (defcustom gnus-x-face-omit-files nil
44 "Regexp to match faces in `gnus-x-face-directory' to be omitted."
49 (defcustom gnus-face-directory
(expand-file-name "faces" gnus-directory
)
50 "*Directory where Face PNG files are stored."
55 (defcustom gnus-face-omit-files nil
56 "Regexp to match faces in `gnus-face-directory' to be omitted."
61 (defcustom gnus-convert-pbm-to-x-face-command
"pbmtoxbm %s | compface"
62 "Command for converting a PBM to an X-Face."
67 (defcustom gnus-convert-image-to-x-face-command
68 "convert -scale 48x48! %s xbm:- | xbm2xface.pl"
69 "Command for converting an image to an X-Face.
70 The command must take a image filename (use \"%s\") as input.
71 The output must be the X-Face header data on stdout."
74 :type
'(choice (const :tag
"giftopnm, netpbm (GIF input only)"
75 "giftopnm %s | ppmnorm | pnmscale -width 48 -height 48 | ppmtopgm | pgmtopbm | pbmtoxbm | compface")
77 "convert -scale 48x48! %s xbm:- | xbm2xface.pl")
80 (defcustom gnus-convert-image-to-face-command
81 "convert -scale 48x48! %s -colors %d png:-"
82 "Command for converting an image to a Face.
84 The command must take an image filename (first format argument
85 \"%s\") and the number of colors (second format argument: \"%d\")
86 as input. The output must be the Face header data on stdout in
90 :type
'(choice (const :tag
"djpeg, netpbm (JPG input only)"
91 "djpeg %s | ppmnorm | pnmscale -width 48 -height 48 | ppmquant %d | pnmtopng")
93 "convert -scale 48x48! %s -colors %d png:-")
96 (defun gnus-shell-command-to-string (command)
97 "Like `shell-command-to-string' except not mingling ERROR."
98 (with-output-to-string
99 (call-process shell-file-name nil
(list standard-output nil
)
100 nil shell-command-switch command
)))
103 (defun gnus--random-face-with-type (dir ext omit fun
)
104 "Return file from DIR with extension EXT, omitting matches of OMIT, processed by FUN."
105 (when (file-exists-p dir
)
108 (lambda (f) (unless (string-match (or omit
"^$") f
) f
))
109 (directory-files dir t ext
))))
110 (file (nth (random (length files
)) files
)))
112 (funcall fun file
)))))
115 (autoload 'message-goto-eoh
"message" nil t
)
116 (autoload 'message-insert-header
"message" nil t
)
118 (defun gnus--insert-random-face-with-type (fun type
)
119 "Get a random face using FUN and insert it as a header TYPE.
121 For instance, to insert an X-Face use `gnus-random-x-face' as FUN
122 and \"X-Face\" as TYPE."
123 (let ((data (funcall fun
)))
126 (progn (message-goto-eoh)
127 (insert type
": " data
"\n"))
129 "No face returned by the function %s." (symbol-name fun
))))))
134 (defun gnus-random-x-face ()
135 "Return X-Face header data chosen randomly from `gnus-x-face-directory'.
137 Files matching `gnus-x-face-omit-files' are not considered."
139 (gnus--random-face-with-type gnus-x-face-directory
"\\.pbm$" gnus-x-face-omit-files
141 (gnus-shell-command-to-string
142 (format gnus-convert-pbm-to-x-face-command
143 (shell-quote-argument file
))))))
146 (defun gnus-insert-random-x-face-header ()
147 "Insert a random X-Face header from `gnus-x-face-directory'."
149 (gnus--insert-random-face-with-type 'gnus-random-x-face
'X-Face
))
152 (defun gnus-x-face-from-file (file)
153 "Insert an X-Face header based on an image FILE.
155 Depending on `gnus-convert-image-to-x-face-command' it may accept
156 different input formats."
157 (interactive "fImage file name: ")
158 (when (file-exists-p file
)
159 (gnus-shell-command-to-string
160 (format gnus-convert-image-to-x-face-command
161 (shell-quote-argument (expand-file-name file
))))))
164 (defun gnus-face-from-file (file)
165 "Return a Face header based on an image FILE.
167 Depending on `gnus-convert-image-to-face-command' it may accept
168 different input formats."
169 (interactive "fImage file name: ")
170 (when (file-exists-p file
)
174 (while (and (not done
)
177 (let ((coding-system-for-read 'binary
))
178 (gnus-shell-command-to-string
179 (format gnus-convert-image-to-face-command
180 (shell-quote-argument (expand-file-name file
))
182 (if (> (length attempt
) 726)
184 (setq quant
(- quant
(if (< quant
10) 1 2)))
185 (gnus-message 9 "Length %d; trying quant %d"
186 (length attempt
) quant
))
189 (mm-with-unibyte-buffer
194 (defun gnus-face-encode ()
196 (base64-encode-region (point-min) (point-max))
197 (goto-char (point-min))
198 (while (search-forward "\n" nil t
)
200 (goto-char (point-min))
201 (while (> (- (point-max) (point))
209 (defun gnus-convert-face-to-png (face)
210 "Convert FACE (which is base64-encoded) to a PNG.
211 The PNG is returned as a string."
212 (mm-with-unibyte-buffer
215 (base64-decode-region (point-min) (point-max)))
219 (defun gnus-convert-png-to-face (file)
220 "Convert FILE to a Face.
221 FILE should be a PNG file that's 48x48 and smaller than or equal to
223 (mm-with-unibyte-buffer
224 (insert-file-contents file
)
225 (when (> (buffer-size) 726)
226 (error "The file is %d bytes long, which is too long"
231 (defun gnus-random-face ()
232 "Return randomly chosen Face from `gnus-face-directory'.
234 Files matching `gnus-face-omit-files' are not considered."
236 (gnus--random-face-with-type gnus-face-directory
"\\.png$"
238 'gnus-convert-png-to-face
))
241 (defun gnus-insert-random-face-header ()
242 "Insert a random Face header from `gnus-face-directory'."
243 (gnus--insert-random-face-with-type 'gnus-random-face
'Face
))
245 (defface gnus-x-face
'((t (:foreground
"black" :background
"white")))
246 "Face to show X-Face.
247 The colors from this face are used as the foreground and background
248 colors of the displayed X-Faces."
249 :group
'gnus-article-headers
)
251 (declare-function article-narrow-to-head
"gnus-art" ())
252 (declare-function gnus-article-goto-header
"gnus-art" (header))
253 (declare-function gnus-add-image
"gnus-art" (category image
))
254 (declare-function gnus-add-wash-type
"gnus-art" (type))
256 (defun gnus-display-x-face-in-from (data)
257 "Display the X-Face DATA in the From header."
260 (when (or (gnus-image-type-available-p 'xface
)
261 (and (gnus-image-type-available-p 'pbm
)
262 (setq pbm
(uncompface data
))))
265 (article-narrow-to-head)
266 (gnus-article-goto-header "from")
268 (insert "From: [no `from' set]\n")
273 (if (gnus-image-type-available-p 'xface
)
274 (apply 'gnus-create-image
(concat "X-Face: " data
) 'xface t
275 (cdr (assq 'xface gnus-face-properties-alist
)))
276 (apply 'gnus-create-image pbm
'pbm t
277 (cdr (assq 'pbm gnus-face-properties-alist
))))
279 (gnus-add-wash-type 'xface
))))))
281 (defun gnus-grab-cam-x-face ()
282 "Grab a picture off the camera and make it into an X-Face."
284 (shell-command "xawtv-remote snap ppm")
286 (while (null (setq file
(directory-files "/tftpboot/sparky/tmp"
289 (setq file
(car file
))
292 (format "pnmcut -left 110 -top 30 -width 144 -height 144 '%s' | ppmnorm 2>/dev/null | pnmscale -width 48 | ppmtopgm | pgmtopbm -threshold -value 0.92 | pbmtoxbm | compface"
299 (defun gnus-grab-cam-face ()
300 "Grab a picture off the camera and make it into an X-Face."
302 (shell-command "xawtv-remote snap ppm")
304 (tempfile (make-temp-file "gnus-face-" nil
".ppm"))
306 (while (null (setq file
(directory-files "/tftpboot/sparky/tmp"
309 (setq file
(car file
))
311 (format "pnmcut -left 110 -top 30 -width 144 -height 144 '%s' | pnmscale -width 48 -height 48 | ppmtopgm >> %s"
313 (let ((gnus-convert-image-to-face-command
314 (format "cat '%%s' | ppmquant %%d | ppmchange %s | pnmtopng"
315 (gnus-fun-ppm-change-string))))
316 (setq result
(gnus-face-from-file tempfile
)))
318 ;;(delete-file tempfile) ; FIXME why are we not deleting it?!
321 (defun gnus-fun-ppm-change-string ()
322 (let* ((possibilities '("%02x0000" "00%02x00" "0000%02x"
323 "%02x%02x00" "00%02x%02x" "%02x00%02x"))
324 (format (concat "'#%02x%02x%02x' '#"
325 (nth (random 6) possibilities
)
329 (push (format format i i i i i i
)
331 (mapconcat 'identity values
" ")))
333 (defun gnus-funcall-no-warning (function &rest args
)
334 (when (fboundp function
)
335 (apply function args
)))
339 ;;; gnus-fun.el ends here