org-timer.el 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. ;;; org-timer.el --- The relative timer code for Org-mode
  2. ;; Copyright (C) 2008-2014 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  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 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the relative timer code for Org-mode
  23. ;;; Code:
  24. (require 'org)
  25. (declare-function org-notify "org-clock" (notification &optional play-sound))
  26. (declare-function org-agenda-error "org-agenda" ())
  27. (defvar org-timer-start-time nil
  28. "t=0 for the running timer.")
  29. (defvar org-timer-pause-time nil
  30. "Time when the timer was paused.")
  31. (defconst org-timer-re "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)"
  32. "Regular expression used to match timer stamps.")
  33. (defcustom org-timer-format "%s "
  34. "The format to insert the time of the timer.
  35. This format must contain one instance of \"%s\" which will be replaced by
  36. the value of the relative timer."
  37. :group 'org-time
  38. :type 'string)
  39. (defcustom org-timer-default-timer 0
  40. "The default timer when a timer is set.
  41. When 0, the user is prompted for a value."
  42. :group 'org-time
  43. :version "24.1"
  44. :type 'number)
  45. (defcustom org-timer-display 'mode-line
  46. "When a timer is running, org-mode can display it in the mode
  47. line and/or frame title.
  48. Allowed values are:
  49. both displays in both mode line and frame title
  50. mode-line displays only in mode line (default)
  51. frame-title displays only in frame title
  52. nil current timer is not displayed"
  53. :group 'org-time
  54. :type '(choice
  55. (const :tag "Mode line" mode-line)
  56. (const :tag "Frame title" frame-title)
  57. (const :tag "Both" both)
  58. (const :tag "None" nil)))
  59. (defvar org-timer-start-hook nil
  60. "Hook run after relative timer is started.")
  61. (defvar org-timer-stop-hook nil
  62. "Hook run before relative timer is stopped.")
  63. (defvar org-timer-pause-hook nil
  64. "Hook run before relative timer is paused.")
  65. (defvar org-timer-continue-hook nil
  66. "Hook run after relative timer is continued.")
  67. (defvar org-timer-set-hook nil
  68. "Hook run after countdown timer is set.")
  69. (defvar org-timer-done-hook nil
  70. "Hook run after countdown timer reaches zero.")
  71. (defvar org-timer-cancel-hook nil
  72. "Hook run before countdown timer is canceled.")
  73. ;;;###autoload
  74. (defun org-timer-start (&optional offset)
  75. "Set the starting time for the relative timer to now.
  76. When called with prefix argument OFFSET, prompt the user for an offset time,
  77. with the default taken from a timer stamp at point, if any.
  78. If OFFSET is a string or an integer, it is directly taken to be the offset
  79. without user interaction.
  80. When called with a double prefix arg, all timer strings in the active
  81. region will be shifted by a specific amount. You will be prompted for
  82. the amount, with the default to make the first timer string in
  83. the region 0:00:00."
  84. (interactive "P")
  85. (if (equal offset '(16))
  86. (call-interactively 'org-timer-change-times-in-region)
  87. (let (delta def s)
  88. (if (not offset)
  89. (setq org-timer-start-time (current-time))
  90. (cond
  91. ((integerp offset) (setq delta offset))
  92. ((stringp offset) (setq delta (org-timer-hms-to-secs offset)))
  93. (t
  94. (setq def (if (org-in-regexp org-timer-re)
  95. (match-string 0)
  96. "0:00:00")
  97. s (read-string
  98. (format "Restart timer with offset [%s]: " def)))
  99. (unless (string-match "\\S-" s) (setq s def))
  100. (setq delta (org-timer-hms-to-secs (org-timer-fix-incomplete s)))))
  101. (setq org-timer-start-time
  102. (seconds-to-time
  103. (- (org-float-time) delta))))
  104. (org-timer-set-mode-line 'on)
  105. (message "Timer start time set to %s, current value is %s"
  106. (format-time-string "%T" org-timer-start-time)
  107. (org-timer-secs-to-hms (or delta 0)))
  108. (run-hooks 'org-timer-start-hook))))
  109. (defun org-timer-pause-or-continue (&optional stop)
  110. "Pause or continue the relative timer.
  111. With prefix arg STOP, stop it entirely."
  112. (interactive "P")
  113. (cond
  114. (stop (org-timer-stop))
  115. ((not org-timer-start-time) (error "No timer is running"))
  116. (org-timer-pause-time
  117. ;; timer is paused, continue
  118. (setq org-timer-start-time
  119. (seconds-to-time
  120. (-
  121. (org-float-time)
  122. (- (org-float-time org-timer-pause-time)
  123. (org-float-time org-timer-start-time))))
  124. org-timer-pause-time nil)
  125. (org-timer-set-mode-line 'on)
  126. (run-hooks 'org-timer-continue-hook)
  127. (message "Timer continues at %s" (org-timer-value-string)))
  128. (t
  129. ;; pause timer
  130. (run-hooks 'org-timer-pause-hook)
  131. (setq org-timer-pause-time (current-time))
  132. (org-timer-set-mode-line 'pause)
  133. (message "Timer paused at %s" (org-timer-value-string)))))
  134. (defvar org-timer-current-timer nil)
  135. (defun org-timer-stop ()
  136. "Stop the relative timer."
  137. (interactive)
  138. (if (not org-timer-current-timer)
  139. (message "No running timer")
  140. (run-hooks 'org-timer-stop-hook)
  141. (setq org-timer-start-time nil
  142. org-timer-pause-time nil
  143. org-timer-current-timer nil)
  144. (org-timer-set-mode-line 'off)
  145. (message "Timer stopped")))
  146. ;;;###autoload
  147. (defun org-timer (&optional restart no-insert-p)
  148. "Insert a H:MM:SS string from the timer into the buffer.
  149. The first time this command is used, the timer is started. When used with
  150. a \\[universal-argument] prefix, force restarting the timer.
  151. When used with a double prefix argument \\[universal-argument], change all the timer string
  152. in the region by a fixed amount. This can be used to recalibrate a timer
  153. that was not started at the correct moment.
  154. If NO-INSERT-P is non-nil, return the string instead of inserting
  155. it in the buffer."
  156. (interactive "P")
  157. (when (or (equal restart '(4)) (not org-timer-start-time))
  158. (org-timer-start))
  159. (if no-insert-p
  160. (org-timer-value-string)
  161. (insert (org-timer-value-string))))
  162. (defun org-timer-value-string ()
  163. "Set the timer string."
  164. (format org-timer-format
  165. (org-timer-secs-to-hms
  166. (abs (floor (org-timer-seconds))))))
  167. (defvar org-timer-timer-is-countdown nil)
  168. (defun org-timer-seconds ()
  169. (if org-timer-timer-is-countdown
  170. (- (org-float-time org-timer-start-time)
  171. (org-float-time (current-time)))
  172. (- (org-float-time (or org-timer-pause-time (current-time)))
  173. (org-float-time org-timer-start-time))))
  174. ;;;###autoload
  175. (defun org-timer-change-times-in-region (beg end delta)
  176. "Change all h:mm:ss time in region by a DELTA."
  177. (interactive
  178. "r\nsEnter time difference like \"-1:08:26\". Default is first time to zero: ")
  179. (let ((re "[-+]?[0-9]+:[0-9]\\{2\\}:[0-9]\\{2\\}") p)
  180. (unless (string-match "\\S-" delta)
  181. (save-excursion
  182. (goto-char beg)
  183. (when (re-search-forward re end t)
  184. (setq delta (match-string 0))
  185. (if (equal (string-to-char delta) ?-)
  186. (setq delta (substring delta 1))
  187. (setq delta (concat "-" delta))))))
  188. (setq delta (org-timer-hms-to-secs (org-timer-fix-incomplete delta)))
  189. (when (= delta 0) (error "No change"))
  190. (save-excursion
  191. (goto-char end)
  192. (while (re-search-backward re beg t)
  193. (setq p (point))
  194. (replace-match
  195. (save-match-data
  196. (org-timer-secs-to-hms (+ (org-timer-hms-to-secs (match-string 0)) delta)))
  197. t t)
  198. (goto-char p)))))
  199. ;;;###autoload
  200. (defun org-timer-item (&optional arg)
  201. "Insert a description-type item with the current timer value."
  202. (interactive "P")
  203. (let ((itemp (org-in-item-p)) (pos (point)))
  204. (cond
  205. ;; In a timer list, insert with `org-list-insert-item',
  206. ;; then fix the list.
  207. ((and itemp (goto-char itemp) (org-at-item-timer-p))
  208. (let* ((struct (org-list-struct))
  209. (prevs (org-list-prevs-alist struct))
  210. (s (concat (org-timer (when arg '(4)) t) ":: ")))
  211. (setq struct (org-list-insert-item pos struct prevs nil s))
  212. (org-list-write-struct struct (org-list-parents-alist struct))
  213. (looking-at org-list-full-item-re)
  214. (goto-char (match-end 0))))
  215. ;; In a list of another type, don't break anything: throw an error.
  216. (itemp (goto-char pos) (error "This is not a timer list"))
  217. ;; Else, start a new list.
  218. (t
  219. (beginning-of-line)
  220. (org-indent-line)
  221. (insert "- ")
  222. (org-timer (when arg '(4)))
  223. (insert ":: ")))))
  224. (defun org-timer-fix-incomplete (hms)
  225. "If hms is a H:MM:SS string with missing hour or hour and minute, fix it."
  226. (if (string-match "\\(?:\\([0-9]+:\\)?\\([0-9]+:\\)\\)?\\([0-9]+\\)" hms)
  227. (replace-match
  228. (format "%d:%02d:%02d"
  229. (if (match-end 1) (string-to-number (match-string 1 hms)) 0)
  230. (if (match-end 2) (string-to-number (match-string 2 hms)) 0)
  231. (string-to-number (match-string 3 hms)))
  232. t t hms)
  233. (error "Cannot parse HMS string \"%s\"" hms)))
  234. (defun org-timer-hms-to-secs (hms)
  235. "Convert h:mm:ss string to an integer time.
  236. If the string starts with a minus sign, the integer will be negative."
  237. (if (not (string-match
  238. "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)"
  239. hms))
  240. 0
  241. (let* ((h (string-to-number (match-string 1 hms)))
  242. (m (string-to-number (match-string 2 hms)))
  243. (s (string-to-number (match-string 3 hms)))
  244. (sign (equal (substring (match-string 1 hms) 0 1) "-")))
  245. (setq h (abs h))
  246. (* (if sign -1 1) (+ s (* 60 (+ m (* 60 h))))))))
  247. (defun org-timer-secs-to-hms (s)
  248. "Convert integer S into h:mm:ss.
  249. If the integer is negative, the string will start with \"-\"."
  250. (let (sign m h)
  251. (setq sign (if (< s 0) "-" "")
  252. s (abs s)
  253. m (/ s 60) s (- s (* 60 m))
  254. h (/ m 60) m (- m (* 60 h)))
  255. (format "%s%d:%02d:%02d" sign h m s)))
  256. (defvar org-timer-mode-line-timer nil)
  257. (defvar org-timer-mode-line-string nil)
  258. (defun org-timer-set-mode-line (value)
  259. "Set the mode-line display of the relative timer.
  260. VALUE can be `on', `off', or `pause'."
  261. (when (or (eq org-timer-display 'mode-line)
  262. (eq org-timer-display 'both))
  263. (or global-mode-string (setq global-mode-string '("")))
  264. (or (memq 'org-timer-mode-line-string global-mode-string)
  265. (setq global-mode-string
  266. (append global-mode-string '(org-timer-mode-line-string)))))
  267. (when (or (eq org-timer-display 'frame-title)
  268. (eq org-timer-display 'both))
  269. (or (memq 'org-timer-mode-line-string frame-title-format)
  270. (setq frame-title-format
  271. (append frame-title-format '(org-timer-mode-line-string)))))
  272. (cond
  273. ((equal value 'off)
  274. (when org-timer-mode-line-timer
  275. (cancel-timer org-timer-mode-line-timer)
  276. (setq org-timer-mode-line-timer nil))
  277. (when (or (eq org-timer-display 'mode-line)
  278. (eq org-timer-display 'both))
  279. (setq global-mode-string
  280. (delq 'org-timer-mode-line-string global-mode-string)))
  281. (when (or (eq org-timer-display 'frame-title)
  282. (eq org-timer-display 'both))
  283. (setq frame-title-format
  284. (delq 'org-timer-mode-line-string frame-title-format)))
  285. (force-mode-line-update))
  286. ((equal value 'pause)
  287. (when org-timer-mode-line-timer
  288. (cancel-timer org-timer-mode-line-timer)
  289. (setq org-timer-mode-line-timer nil)))
  290. ((equal value 'on)
  291. (when (or (eq org-timer-display 'mode-line)
  292. (eq org-timer-display 'both))
  293. (or global-mode-string (setq global-mode-string '("")))
  294. (or (memq 'org-timer-mode-line-string global-mode-string)
  295. (setq global-mode-string
  296. (append global-mode-string '(org-timer-mode-line-string)))))
  297. (when (or (eq org-timer-display 'frame-title)
  298. (eq org-timer-display 'both))
  299. (or (memq 'org-timer-mode-line-string frame-title-format)
  300. (setq frame-title-format
  301. (append frame-title-format '(org-timer-mode-line-string)))))
  302. (org-timer-update-mode-line)
  303. (when org-timer-mode-line-timer
  304. (cancel-timer org-timer-mode-line-timer)
  305. (setq org-timer-mode-line-timer nil))
  306. (when org-timer-display
  307. (setq org-timer-mode-line-timer
  308. (run-with-timer 1 1 'org-timer-update-mode-line))))))
  309. (defun org-timer-update-mode-line ()
  310. "Update the timer time in the mode line."
  311. (if org-timer-pause-time
  312. nil
  313. (setq org-timer-mode-line-string
  314. (concat " <" (substring (org-timer-value-string) 0 -1) ">"))
  315. (force-mode-line-update)))
  316. (defun org-timer-cancel-timer ()
  317. "Cancel the current timer."
  318. (interactive)
  319. (if (not org-timer-current-timer)
  320. (message "No timer to cancel")
  321. (run-hooks 'org-timer-cancel-hook)
  322. (cancel-timer org-timer-current-timer)
  323. (setq org-timer-current-timer nil
  324. org-timer-timer-is-countdown nil)
  325. (org-timer-set-mode-line 'off)
  326. (message "Last timer canceled")))
  327. (defun org-timer-show-remaining-time ()
  328. "Display the remaining time before the timer ends."
  329. (interactive)
  330. (require 'time)
  331. (if (not org-timer-current-timer)
  332. (message "No timer set")
  333. (let* ((rtime (decode-time
  334. (time-subtract (timer--time org-timer-current-timer)
  335. (current-time))))
  336. (rsecs (nth 0 rtime))
  337. (rmins (nth 1 rtime)))
  338. (message "%d minute(s) %d seconds left before next time out"
  339. rmins rsecs))))
  340. (defvar org-clock-sound)
  341. ;;;###autoload
  342. (defun org-timer-set-timer (&optional opt)
  343. "Prompt for a duration and set a timer.
  344. If `org-timer-default-timer' is not zero, suggest this value as
  345. the default duration for the timer. If a timer is already set,
  346. prompt the user if she wants to replace it.
  347. Called with a numeric prefix argument, use this numeric value as
  348. the duration of the timer.
  349. Called with a `C-u' prefix arguments, use `org-timer-default-timer'
  350. without prompting the user for a duration.
  351. With two `C-u' prefix arguments, use `org-timer-default-timer'
  352. without prompting the user for a duration and automatically
  353. replace any running timer.
  354. By default, the timer duration will be set to the number of
  355. minutes in the Effort property, if any. You can ignore this by
  356. using three `C-u' prefix arguments."
  357. (interactive "P")
  358. (let* ((effort-minutes (org-get-at-eol 'effort-minutes 1))
  359. (minutes (or (and (not (equal opt '(64)))
  360. effort-minutes
  361. (number-to-string effort-minutes))
  362. (and (numberp opt) (number-to-string opt))
  363. (and (listp opt) (not (null opt))
  364. (number-to-string org-timer-default-timer))
  365. (read-from-minibuffer
  366. "How many minutes left? "
  367. (if (not (eq org-timer-default-timer 0))
  368. (number-to-string org-timer-default-timer))))))
  369. (if (not (string-match "[0-9]+" minutes))
  370. (org-timer-show-remaining-time)
  371. (let* ((mins (string-to-number (match-string 0 minutes)))
  372. (secs (* mins 60))
  373. (hl (cond
  374. ((string-match "Org Agenda" (buffer-name))
  375. (let* ((marker (or (get-text-property (point) 'org-marker)
  376. (org-agenda-error)))
  377. (hdmarker (or (get-text-property (point) 'org-hd-marker)
  378. marker))
  379. (pos (marker-position marker)))
  380. (with-current-buffer (marker-buffer marker)
  381. (widen)
  382. (goto-char pos)
  383. (org-show-entry)
  384. (or (ignore-errors (org-get-heading))
  385. (concat "File:" (file-name-nondirectory (buffer-file-name)))))))
  386. ((derived-mode-p 'org-mode)
  387. (or (ignore-errors (org-get-heading))
  388. (concat "File:" (file-name-nondirectory (buffer-file-name)))))
  389. (t (error "Not in an Org buffer"))))
  390. timer-set)
  391. (if (or (and org-timer-current-timer
  392. (or (equal opt '(16))
  393. (y-or-n-p "Replace current timer? ")))
  394. (not org-timer-current-timer))
  395. (progn
  396. (require 'org-clock)
  397. (when org-timer-current-timer
  398. (cancel-timer org-timer-current-timer))
  399. (setq org-timer-current-timer
  400. (run-with-timer
  401. secs nil `(lambda ()
  402. (setq org-timer-current-timer nil)
  403. (org-notify ,(format "%s: time out" hl) ,org-clock-sound)
  404. (setq org-timer-timer-is-countdown nil)
  405. (org-timer-set-mode-line 'off)
  406. (run-hooks 'org-timer-done-hook))))
  407. (run-hooks 'org-timer-set-hook)
  408. (setq org-timer-timer-is-countdown t
  409. org-timer-start-time
  410. (time-add (current-time) (seconds-to-time (* mins 60))))
  411. (org-timer-set-mode-line 'on))
  412. (message "No timer set"))))))
  413. (provide 'org-timer)
  414. ;; Local variables:
  415. ;; generated-autoload-file: "org-loaddefs.el"
  416. ;; End:
  417. ;;; org-timer.el ends here