X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=logger.lisp;h=c434cd3577a810f56db5b968616fe7f27963cf58;hb=411d337e9bf17aef3f4a67c37bb9b1fb6aa08c85;hp=7c341299b3d07f120ed3c9b436477dbbd18197f4;hpb=63356535fbaa1b651d525e81befd6efd4b49016e;p=irc-logger.git diff --git a/logger.lisp b/logger.lisp index 7c34129..c434cd3 100644 --- a/logger.lisp +++ b/logger.lisp @@ -246,12 +246,28 @@ (format stream "~S~%" (string-right-trim '(#\return) (raw-message-string msg))))) +(uffi:def-foreign-type time-t :unsigned-long) +(uffi:def-function ("ctime" c-ctime) + ((time (* time-t))) + :returning :cstring) + +(defconstant +posix-epoch+ + (encode-universal-time 0 0 0 1 1 1970 0)) + +(defun posix-time-to-utime (time) + (+ time +posix-epoch+)) + (defun last-sexp-field (type msg) (cond ((null msg) nil) ((eq type :kick) (trailing-argument msg)) + ((eq type :rpl_topicwhotime) + (when (stringp (car (last (arguments msg)))) + (let ((secs (parse-integer (car (last (arguments msg))) :junk-allowed t))) + (when secs + (posix-time-to-utime secs))))) ((need-user-address? type) (user-address msg)))) @@ -471,8 +487,8 @@ (defun rpl_topicwhotime-hook (msg) (output-event msg :rpl_topicwhotime - (format nil "~{~A~^ ~}" (arguments msg)) - (trailing-argument msg))) + (second (arguments msg)) + (third (arguments msg)))) (defun invite-hook (msg) @@ -542,7 +558,8 @@ irc::irc-rpl_killdone-message irc::irc-rpl_closing-message irc::irc-rpl_topic-message irc::irc-rpl_namreply-message irc::irc-rpl_endofnames-message irc::irc-rpl_topicwhotime-message - irc::irc-rpl_motd irc::irc-rpl_motdstart-message irc::irc-rpl_endofmotd-message) + irc::irc-rpl_motd-message irc::irc-rpl_motdstart-message + irc::irc-rpl_endofmotd-message) ;; nothing to do ) (t @@ -634,7 +651,7 @@ (defun add-logger (nick server &key channels output (password "") realname username private-log unknown-log (logging-stream t) (async t) - (formats '(:text))) + (formats '(:sexp))) (when (find-logger-with-nick nick) (format (get-private-log-stream (find-logger-with-nick nick))