org-timer.el 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. ;;; org-clock.el --- The time clocking code for Org-mode
  2. ;; Copyright (C) 2008 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. ;; Version: 6.16c
  7. ;;
  8. ;; This file is part of GNU Emacs.
  9. ;;
  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.
  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.
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  20. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  21. ;;
  22. ;;; Commentary:
  23. ;; This file contains the relative timer code for Org-mode
  24. (require 'org)
  25. (defvar org-timer-start-time nil
  26. "t=0 for the running timer.")
  27. (defconst org-timer-re "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)"
  28. "Regular expression used to match timer stamps.")
  29. (defcustom org-timer-format "%s "
  30. "The format to insert the time of the timer.
  31. This format must contain one instance of \"%s\" which will be replaced by
  32. the value of the relative timer."
  33. :group 'org-time
  34. :type 'string)
  35. ;;;###autoload
  36. (defun org-timer-start (&optional offset)
  37. "Set the starting time for the relative timer to now.
  38. When called with prefix argument OFFSET, prompt the user for an offset time,
  39. with the default taken from a timer stamp at point, if any.
  40. If OFFSET is a string or an integer, it is directly taken to be the offset
  41. without user interaction.
  42. When called with a double prefix arg, all timer strings in the active
  43. region will be shifted by a specific amount. You will be prompted for
  44. the amount, with the default to make the first timer string in
  45. the region 0:00:00."
  46. (interactive "P")
  47. (if (equal offset '(16))
  48. (call-interactively 'org-timer-change-times-in-region)
  49. (let (delta def s)
  50. (if (not offset)
  51. (setq org-timer-start-time (current-time))
  52. (cond
  53. ((integerp offset) (setq delta offset))
  54. ((stringp offset) (setq delta (org-timer-hms-to-secs offset)))
  55. (t
  56. (setq def (if (org-in-regexp org-timer-re)
  57. (match-string 0)
  58. "0:00:00")
  59. s (read-string
  60. (format "Restart timer with offset [%s]: " def)))
  61. (unless (string-match "\\S-" s) (setq s def))
  62. (setq delta (org-timer-hms-to-secs (org-timer-fix-incomplete s)))))
  63. (setq org-timer-start-time
  64. (seconds-to-time
  65. (-
  66. (time-to-seconds (current-time))
  67. (org-timer-hms-to-secs s)))))
  68. (message "Timer start time set to %s, current value is %s"
  69. (format-time-string "%T" org-timer-start-time)
  70. (org-timer-secs-to-hms (or delta 0))))))
  71. ;;;###autoload
  72. (defun org-timer (&optional restart)
  73. "Insert a H:MM:SS string from the timer into the buffer.
  74. The first time this command is used, the timer is started. When used with
  75. a `C-u' prefix, force restarting the timer.
  76. When used with a double prefix arg `C-u C-u', change all the timer string
  77. in the region by a fixed amount. This can be used to recalibrate a timer
  78. that was not started at the correct moment."
  79. (interactive "P")
  80. (if (equal restart '(4)) (org-timer-start))
  81. (or org-timer-start-time (org-timer-start))
  82. (insert (format
  83. org-timer-format
  84. (org-timer-secs-to-hms
  85. (floor
  86. (- (time-to-seconds (current-time))
  87. (time-to-seconds org-timer-start-time)))))))
  88. ;;;###autoload
  89. (defun org-timer-change-times-in-region (beg end delta)
  90. "Change all h:mm:ss time in region by a DELTA."
  91. (interactive
  92. "r\nsEnter time difference like \"-1:08:26\". Default is first time to zero: ")
  93. (let ((re "[-+]?[0-9]+:[0-9]\\{2\\}:[0-9]\\{2\\}") p)
  94. (unless (string-match "\\S-" delta)
  95. (save-excursion
  96. (goto-char beg)
  97. (when (re-search-forward re end t)
  98. (setq delta (match-string 0))
  99. (if (equal (string-to-char delta) ?-)
  100. (setq delta (substring delta 1))
  101. (setq delta (concat "-" delta))))))
  102. (setq delta (org-timer-hms-to-secs (org-timer-fix-incomplete delta)))
  103. (when (= delta 0) (error "No change"))
  104. (save-excursion
  105. (goto-char end)
  106. (while (re-search-backward re beg t)
  107. (setq p (point))
  108. (replace-match
  109. (save-match-data
  110. (org-timer-secs-to-hms (+ (org-timer-hms-to-secs (match-string 0)) delta)))
  111. t t)
  112. (goto-char p)))))
  113. ;;;###autoload
  114. (defun org-timer-item (&optional arg)
  115. "Insert a description-type item with the current timer value."
  116. (interactive "P")
  117. (let ((ind 0))
  118. (save-excursion
  119. (skip-chars-backward " \n\t")
  120. (condition-case nil
  121. (progn
  122. (org-beginning-of-item)
  123. (setq ind (org-get-indentation)))
  124. (error nil)))
  125. (or (bolp) (newline))
  126. (org-indent-line-to ind)
  127. (insert "- ")
  128. (org-timer (if arg '(4)))
  129. (insert ":: ")))
  130. (defun org-timer-fix-incomplete (hms)
  131. "If hms is a H:MM:SS string with missing hour or hour and minute, fix it."
  132. (if (string-match "\\(?:\\([0-9]+:\\)?\\([0-9]+:\\)\\)?\\([0-9]+\\)" hms)
  133. (replace-match
  134. (format "%d:%02d:%02d"
  135. (if (match-end 1) (string-to-number (match-string 1 hms)) 0)
  136. (if (match-end 2) (string-to-number (match-string 2 hms)) 0)
  137. (string-to-number (match-string 3 hms)))
  138. t t hms)
  139. (error "Cannot parse HMS string \"%s\"" hms)))
  140. (defun org-timer-hms-to-secs (hms)
  141. "Convert h:mm:ss string to an integer time.
  142. If the string starts with a minus sign, the integer will be negative."
  143. (if (not (string-match
  144. "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)"
  145. hms))
  146. 0
  147. (let* ((h (string-to-number (match-string 1 hms)))
  148. (m (string-to-number (match-string 2 hms)))
  149. (s (string-to-number (match-string 3 hms)))
  150. (sign (equal (substring (match-string 1 hms) 0 1) "-")))
  151. (setq h (abs h))
  152. (* (if sign -1 1) (+ s (* 60 (+ m (* 60 h))))))))
  153. (defun org-timer-secs-to-hms (s)
  154. "Convert integer S into h:mm:ss.
  155. If the integer is negative, the string will start with \"-\"."
  156. (let (sign m h)
  157. (setq sign (if (< s 0) "-" "")
  158. s (abs s)
  159. m (/ s 60) s (- s (* 60 m))
  160. h (/ m 60) m (- m (* 60 h)))
  161. (format "%s%d:%02d:%02d" sign h m s)))
  162. ;; arch-tag: 97538f8c-3871-4509-8f23-1e7b3ff3d107
  163. ;;; org-timer.el ends here