* riece-addon.el (riece-addon-list-mode-map): Bind
[riece] / lisp / riece-eval.el
1 ;;; riece-eval.el --- evaluate input string as an elisp form
2 ;; Copyright (C) 2005 OHASHI Akira
3
4 ;; Author: OHASHI Akira <bg66@koka-in.org>
5 ;; Keywords: IRC, riece
6
7 ;; This file is part of Riece.
8
9 ;; This program 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)
12 ;; any later version.
13
14 ;; This program 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.
18
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.
23
24 ;;; Commentary:
25
26 ;; NOTE: This is an add-on module for Riece.
27
28 ;;; Code:
29
30 (require 'pp)
31 (require 'riece-message)
32
33 (defgroup riece-eval nil
34   "Evaluate an input string as an elisp form."
35   :prefix "riece-"
36   :group 'riece)
37
38 (defcustom riece-eval-regexp "^, \\(.+\\)"
39   "*Pattern of string evaluating."
40   :type 'string
41   :group 'riece-eval)
42
43 (defcustom riece-eval-ignore-error nil
44   "*If non-nil, an error is ignored."
45   :type 'boolean
46   :group 'riece-eval)
47
48 (defvar riece-eval-enabled nil)
49
50 (defconst riece-eval-description
51   "Evaluate an input string as an elisp form.")
52
53 (defun riece-eval-display-message-function (message)
54   (when (and riece-eval-enabled
55              (riece-message-own-p message)
56              (string-match riece-eval-regexp (riece-message-text message)))
57     (let* ((form (match-string 1 (riece-message-text message)))
58            (string (riece-eval-form form)))
59       (unless (equal string "")
60         (riece-send-string
61          (format "NOTICE %s :%s\r\n"
62                  (riece-identity-prefix (riece-message-target message))
63                  string))
64         (riece-display-message
65          (riece-make-message (riece-current-nickname)
66                              (riece-message-target message)
67                              string 'notice))))))
68
69 (defun riece-eval-form (form)
70   (condition-case err
71       (let ((object (eval (read form))))
72         (cond
73          ((stringp object) object)
74          ((and (listp object)
75                (not (eq object nil)))
76           (let ((string (pp-to-string object)))
77             (substring string 0 (1- (length string)))))
78          ((numberp object)
79           (number-to-string object))
80          ((eq object nil) "")
81          (t (pp-to-string object))))
82     (error
83      (unless riece-eval-ignore-error
84        (format "Error evaluating %s: %s" form err)))))
85
86 (defun riece-eval-insinuate ()
87   (add-hook 'riece-after-display-message-functions
88             'riece-eval-display-message-function))
89
90 (defun riece-eval-uninstall ()
91   (remove-hook 'riece-after-display-message-functions
92                'riece-eval-display-message-function))
93
94 (defun riece-eval-enable ()
95   (setq riece-eval-enabled t))
96
97 (defun riece-eval-disable ()
98   (setq riece-eval-enabled nil))
99
100 (provide 'riece-eval)
101
102 ;;; riece-eval.el ends here