org-clock.el 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996
  1. ;;; org-clock.el --- The time clocking code for Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 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.10c
  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 time clocking code for Org-mode
  24. (require 'org)
  25. (eval-when-compile
  26. (require 'cl)
  27. (require 'calendar))
  28. (declare-function calendar-absolute-from-iso "cal-iso" (&optional date))
  29. (defgroup org-clock nil
  30. "Options concerning clocking working time in Org-mode."
  31. :tag "Org Clock"
  32. :group 'org-progress)
  33. (defcustom org-clock-into-drawer 2
  34. "Should clocking info be wrapped into a drawer?
  35. When t, clocking info will always be inserted into a :CLOCK: drawer.
  36. If necessary, the drawer will be created.
  37. When nil, the drawer will not be created, but used when present.
  38. When an integer and the number of clocking entries in an item
  39. reaches or exceeds this number, a drawer will be created."
  40. :group 'org-todo
  41. :group 'org-clock
  42. :type '(choice
  43. (const :tag "Always" t)
  44. (const :tag "Only when drawer exists" nil)
  45. (integer :tag "When at least N clock entries")))
  46. (defcustom org-clock-out-when-done t
  47. "When non-nil, the clock will be stopped when the relevant entry is marked DONE.
  48. A nil value means, clock will keep running until stopped explicitly with
  49. `C-c C-x C-o', or until the clock is started in a different item."
  50. :group 'org-clock
  51. :type 'boolean)
  52. (defcustom org-clock-out-remove-zero-time-clocks nil
  53. "Non-nil means, remove the clock line when the resulting time is zero."
  54. :group 'org-clock
  55. :type 'boolean)
  56. (defcustom org-clock-in-switch-to-state nil
  57. "Set task to a special todo state while clocking it.
  58. The value should be the state to which the entry should be
  59. switched. If the value is a function, it must take one
  60. parameter (the current TODO state of the item) and return the
  61. state to switch it to."
  62. :group 'org-clock
  63. :group 'org-todo
  64. :type '(choice
  65. (const :tag "Don't force a state" nil)
  66. (string :tag "State")
  67. (symbol :tag "Function")))
  68. (defcustom org-clock-history-length 5
  69. "Number of clock tasks to remember in history."
  70. :group 'org-clock
  71. :type 'integer)
  72. (defcustom org-clock-heading-function nil
  73. "When non-nil, should be a function to create `org-clock-heading'.
  74. This is the string shown in the mode line when a clock is running.
  75. The function is called with point at the beginning of the headline."
  76. :group 'org-clock
  77. :type 'function)
  78. (defcustom org-clock-string-limit 0
  79. "Maximum length of clock strings in the modeline. 0 means no limit"
  80. :group 'org-clock
  81. :type 'integer)
  82. (defcustom org-clock-in-resume nil
  83. "If non-nil, when clocking into a task with a clock entry which
  84. has not been closed, resume the clock from that point"
  85. :group 'org-clock
  86. :type 'boolean)
  87. ;;; The clock for measuring work time.
  88. (defvar org-mode-line-string "")
  89. (put 'org-mode-line-string 'risky-local-variable t)
  90. (defvar org-mode-line-timer nil)
  91. (defvar org-clock-heading "")
  92. (defvar org-clock-heading-for-remember "")
  93. (defvar org-clock-start-time "")
  94. (defvar org-clock-history nil
  95. "List of marker pointing to recent clocked tasks.")
  96. (defvar org-clock-default-task (make-marker)
  97. "Marker pointing to the default task that should clock time.
  98. The clock can be made to switch to this task after clocking out
  99. of a different task.")
  100. (defvar org-clock-interrupted-task (make-marker)
  101. "Marker pointing to the task that has been interrupted by the current clock.")
  102. (defvar org-clock-mode-map (make-sparse-keymap))
  103. (define-key org-clock-mode-map [mode-line mouse-2] 'org-clock-goto)
  104. (defun org-clock-history-push (&optional pos buffer)
  105. "Push a marker to the clock history."
  106. (setq org-clock-history-length (max 1 (min 35 org-clock-history-length)))
  107. (let ((m (move-marker (make-marker) (or pos (point)) buffer)) n l)
  108. (while (setq n (member m org-clock-history))
  109. (move-marker (car n) nil))
  110. (setq org-clock-history
  111. (delq nil
  112. (mapcar (lambda (x) (if (marker-buffer x) x nil))
  113. org-clock-history)))
  114. (when (>= (setq l (length org-clock-history)) org-clock-history-length)
  115. (setq org-clock-history
  116. (nreverse
  117. (nthcdr (- l org-clock-history-length -1)
  118. (nreverse org-clock-history)))))
  119. (push m org-clock-history)))
  120. (defun org-clock-save-markers-for-cut-and-paste (beg end)
  121. "Save relative positions of markers in region."
  122. (org-check-and-save-marker org-clock-marker beg end)
  123. (org-check-and-save-marker org-clock-default-task beg end)
  124. (org-check-and-save-marker org-clock-interrupted-task beg end)
  125. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  126. org-clock-history))
  127. (defun org-clock-select-task (&optional prompt)
  128. "Select a task that recently was associated with clocking."
  129. (interactive)
  130. (let (sel-list rpl file task (i 0) s)
  131. (save-window-excursion
  132. (org-switch-to-buffer-other-window
  133. (get-buffer-create "*Clock Task Select*"))
  134. (erase-buffer)
  135. (when (marker-buffer org-clock-default-task)
  136. (insert (org-add-props "Default Task\n" nil 'face 'bold))
  137. (setq s (org-clock-insert-selection-line ?d org-clock-default-task))
  138. (push s sel-list))
  139. (when (marker-buffer org-clock-interrupted-task)
  140. (insert (org-add-props "The task interrupted by starting the last one\n" nil 'face 'bold))
  141. (setq s (org-clock-insert-selection-line ?i org-clock-interrupted-task))
  142. (push s sel-list))
  143. (when (marker-buffer org-clock-marker)
  144. (insert (org-add-props "Current Clocking Task\n" nil 'face 'bold))
  145. (setq s (org-clock-insert-selection-line ?c org-clock-marker))
  146. (push s sel-list))
  147. (insert (org-add-props "Recent Tasks\n" nil 'face 'bold))
  148. (mapc
  149. (lambda (m)
  150. (when (marker-buffer m)
  151. (setq i (1+ i)
  152. s (org-clock-insert-selection-line
  153. (if (< i 10)
  154. (+ i ?0)
  155. (+ i (- ?A 10))) m))
  156. (push s sel-list)))
  157. org-clock-history)
  158. (if (fboundp 'fit-window-to-buffer)
  159. (fit-window-to-buffer)
  160. (shrink-window-if-larger-than-buffer))
  161. (message (or prompt "Select task for clocking:"))
  162. (setq rpl (read-char-exclusive))
  163. (cond
  164. ((eq rpl ?q) nil)
  165. ((eq rpl ?x) nil)
  166. ((assoc rpl sel-list) (cdr (assoc rpl sel-list)))
  167. (t (error "Invalid task choice %c" rpl))))))
  168. (defun org-clock-insert-selection-line (i marker)
  169. (when (marker-buffer marker)
  170. (let (file cat task)
  171. (with-current-buffer (org-base-buffer (marker-buffer marker))
  172. (save-excursion
  173. (save-restriction
  174. (widen)
  175. (goto-char marker)
  176. (setq file (buffer-file-name (marker-buffer marker))
  177. cat (or (org-get-category)
  178. (progn (org-refresh-category-properties)
  179. (org-get-category)))
  180. task (org-get-heading 'notags)))))
  181. (when (and cat task)
  182. (insert (format "[%c] %-15s %s\n" i cat task))
  183. (cons i marker)))))
  184. (defun org-update-mode-line ()
  185. (let* ((delta (- (time-to-seconds (current-time))
  186. (time-to-seconds org-clock-start-time)))
  187. (h (floor delta 3600))
  188. (m (floor (- delta (* 3600 h)) 60)))
  189. (setq org-mode-line-string
  190. (org-propertize
  191. (let ((clock-string (format (concat "-[" org-time-clocksum-format " (%s)]")
  192. h m org-clock-heading))
  193. (help-text "Org-mode clock is running. Mouse-2 to go there."))
  194. (if (and (> org-clock-string-limit 0)
  195. (> (length clock-string) org-clock-string-limit))
  196. (org-propertize (substring clock-string 0 org-clock-string-limit)
  197. 'help-echo (concat help-text ": " org-clock-heading))
  198. (org-propertize clock-string 'help-echo help-text)))
  199. 'local-map org-clock-mode-map
  200. 'mouse-face '(face mode-line-highlight)))
  201. (force-mode-line-update)))
  202. (defvar org-clock-mode-line-entry nil
  203. "Information for the modeline about the running clock.")
  204. (defun org-clock-in (&optional select)
  205. "Start the clock on the current item.
  206. If necessary, clock-out of the currently active clock.
  207. With prefix arg SELECT, offer a list of recently clocked tasks to
  208. clock into. When SELECT is `C-u C-u', clock into the current task and mark
  209. is as the default task, a special task that will always be offered in
  210. the clocking selection, associated with the letter `d'."
  211. (interactive "P")
  212. (let ((interrupting (marker-buffer org-clock-marker))
  213. ts selected-task target-pos)
  214. (when (equal select '(4))
  215. (setq selected-task (org-clock-select-task "Clock-in on task: "))
  216. (if selected-task
  217. (setq selected-task (copy-marker selected-task))
  218. (error "Abort")))
  219. (when interrupting
  220. ;; We are interrupting the clocking of a differnt task.
  221. ;; Save a marker to this task, so that we can go back.
  222. (move-marker org-clock-interrupted-task
  223. (marker-position org-clock-marker)
  224. (marker-buffer org-clock-marker))
  225. (org-clock-out t))
  226. (when (equal select '(16))
  227. ;; Mark as default clocking task
  228. (save-excursion
  229. (org-back-to-heading t)
  230. (move-marker org-clock-default-task (point))))
  231. (setq target-pos (point)) ;; we want to clock in at this location
  232. (save-excursion
  233. (when (and selected-task (marker-buffer selected-task))
  234. ;; There is a selected task, move to the correct buffer
  235. ;; and set the new target position.
  236. (set-buffer (org-base-buffer (marker-buffer selected-task)))
  237. (setq target-pos (marker-position selected-task))
  238. (move-marker selected-task nil))
  239. (save-excursion
  240. (save-restriction
  241. (widen)
  242. (goto-char target-pos)
  243. (org-back-to-heading t)
  244. (or interrupting (move-marker org-clock-interrupted-task nil))
  245. (org-clock-history-push)
  246. (cond ((functionp org-clock-in-switch-to-state)
  247. (looking-at org-complex-heading-regexp)
  248. (let ((newstate (funcall org-clock-in-switch-to-state (match-string 2))))
  249. (if newstate (org-todo newstate))))
  250. ((and org-clock-in-switch-to-state
  251. (not (looking-at (concat outline-regexp "[ \t]*"
  252. org-clock-in-switch-to-state
  253. "\\>"))))
  254. (org-todo org-clock-in-switch-to-state)))
  255. (setq org-clock-heading-for-remember
  256. (and (looking-at org-complex-heading-regexp)
  257. (match-end 4)
  258. (org-trim (buffer-substring (match-end 1) (match-end 4)))))
  259. (setq org-clock-heading
  260. (cond ((and org-clock-heading-function
  261. (functionp org-clock-heading-function))
  262. (funcall org-clock-heading-function))
  263. ((looking-at org-complex-heading-regexp)
  264. (match-string 4))
  265. (t "???")))
  266. (setq org-clock-heading (org-propertize org-clock-heading 'face nil))
  267. (org-clock-find-position)
  268. (if (and org-clock-in-resume
  269. (looking-at (concat "^[ \\t]* " org-clock-string
  270. " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
  271. " +\\sw+ +[012][0-9]:[0-5][0-9]\\)\\]$")))
  272. (progn (message "Matched %s" (match-string 1))
  273. (setq ts (concat "[" (match-string 1) "]"))
  274. (goto-char (match-end 1))
  275. (setq org-clock-start-time
  276. (apply 'encode-time (org-parse-time-string (match-string 1)))))
  277. (progn
  278. (insert "\n") (backward-char 1)
  279. (org-indent-line-function)
  280. (insert org-clock-string " ")
  281. (setq org-clock-start-time (current-time))
  282. (setq ts (org-insert-time-stamp org-clock-start-time 'with-hm 'inactive))))
  283. (move-marker org-clock-marker (point) (buffer-base-buffer))
  284. (or global-mode-string (setq global-mode-string '("")))
  285. (or (memq 'org-mode-line-string global-mode-string)
  286. (setq global-mode-string
  287. (append global-mode-string '(org-mode-line-string))))
  288. (org-update-mode-line)
  289. (setq org-mode-line-timer
  290. (run-with-timer 60 60 'org-update-mode-line))
  291. (message "Clock started at %s" ts))))))
  292. (defun org-clock-find-position ()
  293. "Find the location where the next clock line should be inserted."
  294. (org-back-to-heading t)
  295. (catch 'exit
  296. (let ((beg (save-excursion
  297. (beginning-of-line 2)
  298. (or (bolp) (newline))
  299. (point)))
  300. (end (progn (outline-next-heading) (point)))
  301. (re (concat "^[ \t]*" org-clock-string))
  302. (cnt 0)
  303. first last)
  304. (goto-char beg)
  305. (when (eobp) (newline) (setq end (max (point) end)))
  306. (when (re-search-forward "^[ \t]*:CLOCK:" end t)
  307. ;; we seem to have a CLOCK drawer, so go there.
  308. (beginning-of-line 2)
  309. (throw 'exit t))
  310. ;; Lets count the CLOCK lines
  311. (goto-char beg)
  312. (while (re-search-forward re end t)
  313. (setq first (or first (match-beginning 0))
  314. last (match-beginning 0)
  315. cnt (1+ cnt)))
  316. (when (and (integerp org-clock-into-drawer)
  317. (>= (1+ cnt) org-clock-into-drawer))
  318. ;; Wrap current entries into a new drawer
  319. (goto-char last)
  320. (beginning-of-line 2)
  321. (if (org-at-item-p) (org-end-of-item))
  322. (insert ":END:\n")
  323. (beginning-of-line 0)
  324. (org-indent-line-function)
  325. (goto-char first)
  326. (insert ":CLOCK:\n")
  327. (beginning-of-line 0)
  328. (org-indent-line-function)
  329. (org-flag-drawer t)
  330. (beginning-of-line 2)
  331. (throw 'exit nil))
  332. (goto-char beg)
  333. (while (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
  334. (not (equal (match-string 1) org-clock-string)))
  335. ;; Planning info, skip to after it
  336. (beginning-of-line 2)
  337. (or (bolp) (newline)))
  338. (when (eq t org-clock-into-drawer)
  339. (insert ":CLOCK:\n:END:\n")
  340. (beginning-of-line 0)
  341. (org-indent-line-function)
  342. (beginning-of-line 0)
  343. (org-flag-drawer t)
  344. (org-indent-line-function)
  345. (beginning-of-line 2)))))
  346. (defun org-clock-out (&optional fail-quietly)
  347. "Stop the currently running clock.
  348. If there is no running clock, throw an error, unless FAIL-QUIETLY is set."
  349. (interactive)
  350. (catch 'exit
  351. (if (not (marker-buffer org-clock-marker))
  352. (if fail-quietly (throw 'exit t) (error "No active clock")))
  353. (let (ts te s h m remove)
  354. (save-excursion
  355. (set-buffer (marker-buffer org-clock-marker))
  356. (save-restriction
  357. (widen)
  358. (goto-char org-clock-marker)
  359. (beginning-of-line 1)
  360. (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
  361. (equal (match-string 1) org-clock-string))
  362. (setq ts (match-string 2))
  363. (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
  364. (goto-char (match-end 0))
  365. (delete-region (point) (point-at-eol))
  366. (insert "--")
  367. (setq te (org-insert-time-stamp (current-time) 'with-hm 'inactive))
  368. (setq s (- (time-to-seconds (apply 'encode-time (org-parse-time-string te)))
  369. (time-to-seconds (apply 'encode-time (org-parse-time-string ts))))
  370. h (floor (/ s 3600))
  371. s (- s (* 3600 h))
  372. m (floor (/ s 60))
  373. s (- s (* 60 s)))
  374. (insert " => " (format "%2d:%02d" h m))
  375. (when (setq remove (and org-clock-out-remove-zero-time-clocks
  376. (= (+ h m) 0)))
  377. (beginning-of-line 1)
  378. (delete-region (point) (point-at-eol))
  379. (and (looking-at "\n") (> (point-max) (1+ (point)))
  380. (delete-char 1)))
  381. (move-marker org-clock-marker nil)
  382. (when org-log-note-clock-out
  383. (org-add-log-setup 'clock-out nil nil nil
  384. (concat "# Task: " (org-get-heading t) "\n\n")))
  385. (when org-mode-line-timer
  386. (cancel-timer org-mode-line-timer)
  387. (setq org-mode-line-timer nil))
  388. (setq global-mode-string
  389. (delq 'org-mode-line-string global-mode-string))
  390. (force-mode-line-update)
  391. (message (concat "Clock stopped at %s after HH:MM = " org-time-clocksum-format "%s") te h m
  392. (if remove " => LINE REMOVED" "")))))))
  393. (defun org-clock-cancel ()
  394. "Cancel the running clock be removing the start timestamp."
  395. (interactive)
  396. (if (not (marker-buffer org-clock-marker))
  397. (error "No active clock"))
  398. (save-excursion
  399. (set-buffer (marker-buffer org-clock-marker))
  400. (goto-char org-clock-marker)
  401. (delete-region (1- (point-at-bol)) (point-at-eol)))
  402. (setq global-mode-string
  403. (delq 'org-mode-line-string global-mode-string))
  404. (force-mode-line-update)
  405. (message "Clock canceled"))
  406. (defun org-clock-goto (&optional select)
  407. "Go to the currently clocked-in entry.
  408. With prefix arg SELECT, offer recently clocked tasks."
  409. (interactive "P")
  410. (let ((m (if select
  411. (org-clock-select-task "Select task to go to: ")
  412. org-clock-marker)))
  413. (if (not (marker-buffer m))
  414. (if select
  415. (error "No task selected")
  416. (error "No active clock")))
  417. (switch-to-buffer (marker-buffer m))
  418. (if (or (< m (point-min)) (> m (point-max))) (widen))
  419. (goto-char m)
  420. (org-show-entry)
  421. (org-back-to-heading)
  422. (org-cycle-hide-drawers 'children)
  423. (recenter)))
  424. (defvar org-clock-file-total-minutes nil
  425. "Holds the file total time in minutes, after a call to `org-clock-sum'.")
  426. (make-variable-buffer-local 'org-clock-file-total-minutes)
  427. (defun org-clock-sum (&optional tstart tend)
  428. "Sum the times for each subtree.
  429. Puts the resulting times in minutes as a text property on each headline."
  430. (interactive)
  431. (let* ((bmp (buffer-modified-p))
  432. (re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
  433. org-clock-string
  434. "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
  435. (lmax 30)
  436. (ltimes (make-vector lmax 0))
  437. (t1 0)
  438. (level 0)
  439. ts te dt
  440. time)
  441. (remove-text-properties (point-min) (point-max) '(:org-clock-minutes t))
  442. (save-excursion
  443. (goto-char (point-max))
  444. (while (re-search-backward re nil t)
  445. (cond
  446. ((match-end 2)
  447. ;; Two time stamps
  448. (setq ts (match-string 2)
  449. te (match-string 3)
  450. ts (time-to-seconds
  451. (apply 'encode-time (org-parse-time-string ts)))
  452. te (time-to-seconds
  453. (apply 'encode-time (org-parse-time-string te)))
  454. ts (if tstart (max ts tstart) ts)
  455. te (if tend (min te tend) te)
  456. dt (- te ts)
  457. t1 (if (> dt 0) (+ t1 (floor (/ dt 60))) t1)))
  458. ((match-end 4)
  459. ;; A naket time
  460. (setq t1 (+ t1 (string-to-number (match-string 5))
  461. (* 60 (string-to-number (match-string 4))))))
  462. (t ;; A headline
  463. (setq level (- (match-end 1) (match-beginning 1)))
  464. (when (or (> t1 0) (> (aref ltimes level) 0))
  465. (loop for l from 0 to level do
  466. (aset ltimes l (+ (aref ltimes l) t1)))
  467. (setq t1 0 time (aref ltimes level))
  468. (loop for l from level to (1- lmax) do
  469. (aset ltimes l 0))
  470. (goto-char (match-beginning 0))
  471. (put-text-property (point) (point-at-eol) :org-clock-minutes time)))))
  472. (setq org-clock-file-total-minutes (aref ltimes 0)))
  473. (set-buffer-modified-p bmp)))
  474. (defun org-clock-display (&optional total-only)
  475. "Show subtree times in the entire buffer.
  476. If TOTAL-ONLY is non-nil, only show the total time for the entire file
  477. in the echo area."
  478. (interactive)
  479. (org-remove-clock-overlays)
  480. (let (time h m p)
  481. (org-clock-sum)
  482. (unless total-only
  483. (save-excursion
  484. (goto-char (point-min))
  485. (while (or (and (equal (setq p (point)) (point-min))
  486. (get-text-property p :org-clock-minutes))
  487. (setq p (next-single-property-change
  488. (point) :org-clock-minutes)))
  489. (goto-char p)
  490. (when (setq time (get-text-property p :org-clock-minutes))
  491. (org-put-clock-overlay time (funcall outline-level))))
  492. (setq h (/ org-clock-file-total-minutes 60)
  493. m (- org-clock-file-total-minutes (* 60 h)))
  494. ;; Arrange to remove the overlays upon next change.
  495. (when org-remove-highlights-with-change
  496. (org-add-hook 'before-change-functions 'org-remove-clock-overlays
  497. nil 'local))))
  498. (message (concat "Total file time: " org-time-clocksum-format " (%d hours and %d minutes)") h m h m)))
  499. (defvar org-clock-overlays nil)
  500. (make-variable-buffer-local 'org-clock-overlays)
  501. (defun org-put-clock-overlay (time &optional level)
  502. "Put an overlays on the current line, displaying TIME.
  503. If LEVEL is given, prefix time with a corresponding number of stars.
  504. This creates a new overlay and stores it in `org-clock-overlays', so that it
  505. will be easy to remove."
  506. (let* ((c 60) (h (floor (/ time 60))) (m (- time (* 60 h)))
  507. (l (if level (org-get-valid-level level 0) 0))
  508. (fmt (concat "%s " org-time-clocksum-format "%s"))
  509. (off 0)
  510. ov tx)
  511. (org-move-to-column c)
  512. (unless (eolp) (skip-chars-backward "^ \t"))
  513. (skip-chars-backward " \t")
  514. (setq ov (org-make-overlay (1- (point)) (point-at-eol))
  515. tx (concat (buffer-substring (1- (point)) (point))
  516. (make-string (+ off (max 0 (- c (current-column)))) ?.)
  517. (org-add-props (format fmt
  518. (make-string l ?*) h m
  519. (make-string (- 16 l) ?\ ))
  520. '(face secondary-selection))
  521. ""))
  522. (if (not (featurep 'xemacs))
  523. (org-overlay-put ov 'display tx)
  524. (org-overlay-put ov 'invisible t)
  525. (org-overlay-put ov 'end-glyph (make-glyph tx)))
  526. (push ov org-clock-overlays)))
  527. (defun org-remove-clock-overlays (&optional beg end noremove)
  528. "Remove the occur highlights from the buffer.
  529. BEG and END are ignored. If NOREMOVE is nil, remove this function
  530. from the `before-change-functions' in the current buffer."
  531. (interactive)
  532. (unless org-inhibit-highlight-removal
  533. (mapc 'org-delete-overlay org-clock-overlays)
  534. (setq org-clock-overlays nil)
  535. (unless noremove
  536. (remove-hook 'before-change-functions
  537. 'org-remove-clock-overlays 'local))))
  538. (defvar state) ;; dynamically scoped into this function
  539. (defun org-clock-out-if-current ()
  540. "Clock out if the current entry contains the running clock.
  541. This is used to stop the clock after a TODO entry is marked DONE,
  542. and is only done if the variable `org-clock-out-when-done' is not nil."
  543. (when (and org-clock-out-when-done
  544. (member state org-done-keywords)
  545. (equal (marker-buffer org-clock-marker) (current-buffer))
  546. (< (point) org-clock-marker)
  547. (> (save-excursion (outline-next-heading) (point))
  548. org-clock-marker))
  549. ;; Clock out, but don't accept a logging message for this.
  550. (let ((org-log-note-clock-out nil))
  551. (org-clock-out))))
  552. (add-hook 'org-after-todo-state-change-hook
  553. 'org-clock-out-if-current)
  554. ;;;###autoload
  555. (defun org-get-clocktable (&rest props)
  556. "Get a formatted clocktable with parameters according to PROPS.
  557. The table is created in a temporary buffer, fully formatted and
  558. fontified, and then returned."
  559. ;; Set the defaults
  560. (setq props (plist-put props :name "clocktable"))
  561. (unless (plist-member props :maxlevel)
  562. (setq props (plist-put props :maxlevel 2)))
  563. (unless (plist-member props :scope)
  564. (setq props (plist-put props :scope 'agenda)))
  565. (with-temp-buffer
  566. (org-mode)
  567. (org-create-dblock props)
  568. (org-update-dblock)
  569. (font-lock-fontify-buffer)
  570. (forward-line 2)
  571. (buffer-substring (point) (progn
  572. (re-search-forward "^#\\+END" nil t)
  573. (point-at-bol)))))
  574. (defun org-clock-report (&optional arg)
  575. "Create a table containing a report about clocked time.
  576. If the cursor is inside an existing clocktable block, then the table
  577. will be updated. If not, a new clocktable will be inserted.
  578. When called with a prefix argument, move to the first clock table in the
  579. buffer and update it."
  580. (interactive "P")
  581. (org-remove-clock-overlays)
  582. (when arg
  583. (org-find-dblock "clocktable")
  584. (org-show-entry))
  585. (if (org-in-clocktable-p)
  586. (goto-char (org-in-clocktable-p))
  587. (org-create-dblock (list :name "clocktable"
  588. :maxlevel 2 :scope 'file)))
  589. (org-update-dblock))
  590. (defun org-in-clocktable-p ()
  591. "Check if the cursor is in a clocktable."
  592. (let ((pos (point)) start)
  593. (save-excursion
  594. (end-of-line 1)
  595. (and (re-search-backward "^#\\+BEGIN:[ \t]+clocktable" nil t)
  596. (setq start (match-beginning 0))
  597. (re-search-forward "^#\\+END:.*" nil t)
  598. (>= (match-end 0) pos)
  599. start))))
  600. (defun org-clock-special-range (key &optional time as-strings)
  601. "Return two times bordering a special time range.
  602. Key is a symbol specifying the range and can be one of `today', `yesterday',
  603. `thisweek', `lastweek', `thismonth', `lastmonth', `thisyear', `lastyear'.
  604. A week starts Monday 0:00 and ends Sunday 24:00.
  605. The range is determined relative to TIME. TIME defaults to the current time.
  606. The return value is a cons cell with two internal times like the ones
  607. returned by `current time' or `encode-time'. if AS-STRINGS is non-nil,
  608. the returned times will be formatted strings."
  609. (if (integerp key) (setq key (intern (number-to-string key))))
  610. (let* ((tm (decode-time (or time (current-time))))
  611. (s 0) (m (nth 1 tm)) (h (nth 2 tm))
  612. (d (nth 3 tm)) (month (nth 4 tm)) (y (nth 5 tm))
  613. (dow (nth 6 tm))
  614. (skey (symbol-name key))
  615. (shift 0)
  616. s1 m1 h1 d1 month1 y1 diff ts te fm txt w date)
  617. (cond
  618. ((string-match "^[0-9]+$" skey)
  619. (setq y (string-to-number skey) m 1 d 1 key 'year))
  620. ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)$" skey)
  621. (setq y (string-to-number (match-string 1 skey))
  622. month (string-to-number (match-string 2 skey))
  623. d 1 key 'month))
  624. ((string-match "^\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)$" skey)
  625. (require 'cal-iso)
  626. (setq y (string-to-number (match-string 1 skey))
  627. w (string-to-number (match-string 2 skey)))
  628. (setq date (calendar-gregorian-from-absolute
  629. (calendar-absolute-from-iso (list w 1 y))))
  630. (setq d (nth 1 date) month (car date) y (nth 2 date)
  631. key 'week))
  632. ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)$" skey)
  633. (setq y (string-to-number (match-string 1 skey))
  634. month (string-to-number (match-string 2 skey))
  635. d (string-to-number (match-string 3 skey))
  636. key 'day))
  637. ((string-match "\\([-+][0-9]+\\)$" skey)
  638. (setq shift (string-to-number (match-string 1 skey))
  639. key (intern (substring skey 0 (match-beginning 1))))))
  640. (when (= shift 0)
  641. (cond ((eq key 'yesterday) (setq key 'today shift -1))
  642. ((eq key 'lastweek) (setq key 'week shift -1))
  643. ((eq key 'lastmonth) (setq key 'month shift -1))
  644. ((eq key 'lastyear) (setq key 'year shift -1))))
  645. (cond
  646. ((memq key '(day today))
  647. (setq d (+ d shift) h 0 m 0 h1 24 m1 0))
  648. ((memq key '(week thisweek))
  649. (setq diff (+ (* -7 shift) (if (= dow 0) 6 (1- dow)))
  650. m 0 h 0 d (- d diff) d1 (+ 7 d)))
  651. ((memq key '(month thismonth))
  652. (setq d 1 h 0 m 0 d1 1 month (+ month shift) month1 (1+ month) h1 0 m1 0))
  653. ((memq key '(year thisyear))
  654. (setq m 0 h 0 d 1 month 1 y (+ y shift) y1 (1+ y)))
  655. (t (error "No such time block %s" key)))
  656. (setq ts (encode-time s m h d month y)
  657. te (encode-time (or s1 s) (or m1 m) (or h1 h)
  658. (or d1 d) (or month1 month) (or y1 y)))
  659. (setq fm (cdr org-time-stamp-formats))
  660. (cond
  661. ((memq key '(day today))
  662. (setq txt (format-time-string "%A, %B %d, %Y" ts)))
  663. ((memq key '(week thisweek))
  664. (setq txt (format-time-string "week %G-W%V" ts)))
  665. ((memq key '(month thismonth))
  666. (setq txt (format-time-string "%B %Y" ts)))
  667. ((memq key '(year thisyear))
  668. (setq txt (format-time-string "the year %Y" ts))))
  669. (if as-strings
  670. (list (format-time-string fm ts) (format-time-string fm te) txt)
  671. (list ts te txt))))
  672. (defun org-clocktable-shift (dir n)
  673. "Try to shift the :block date of the clocktable at point.
  674. Point must be in the #+BEGIN: line of a clocktable, or this function
  675. will throw an error.
  676. DIR is a direction, a symbol `left', `right', `up', or `down'.
  677. Both `left' and `down' shift the block toward the past, `up' and `right'
  678. push it toward the future.
  679. N is the number of shift steps to take. The size of the step depends on
  680. the currently selected interval size."
  681. (setq n (prefix-numeric-value n))
  682. (and (memq dir '(left down)) (setq n (- n)))
  683. (save-excursion
  684. (goto-char (point-at-bol))
  685. (if (not (looking-at "#\\+BEGIN: clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
  686. (error "Line needs a :block definition before this command works")
  687. (let* ((b (match-beginning 1)) (e (match-end 1))
  688. (s (match-string 1))
  689. block shift ins y mw d date wp m)
  690. (cond
  691. ((equal s "yesterday") (setq s "today-1"))
  692. ((equal s "lastweek") (setq s "thisweek-1"))
  693. ((equal s "lastmonth") (setq s "thismonth-1"))
  694. ((equal s "lastyear") (setq s "thisyear-1")))
  695. (cond
  696. ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\)\\([-+][0-9]+\\)?$" s)
  697. (setq block (match-string 1 s)
  698. shift (if (match-end 2)
  699. (string-to-number (match-string 2 s))
  700. 0))
  701. (setq shift (+ shift n))
  702. (setq ins (if (= shift 0) block (format "%s%+d" block shift))))
  703. ((string-match "\\([0-9]+\\)\\(-\\([wW]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s)
  704. ;; 1 1 2 3 3 4 4 5 6 6 5 2
  705. (setq y (string-to-number (match-string 1 s))
  706. wp (and (match-end 3) (match-string 3 s))
  707. mw (and (match-end 4) (string-to-number (match-string 4 s)))
  708. d (and (match-end 6) (string-to-number (match-string 6 s))))
  709. (cond
  710. (d (setq ins (format-time-string
  711. "%Y-%m-%d"
  712. (encode-time 0 0 0 (+ d n) m y))))
  713. ((and wp mw (> (length wp) 0))
  714. (require 'cal-iso)
  715. (setq date (calendar-gregorian-from-absolute (calendar-absolute-from-iso (list (+ mw n) 1 y))))
  716. (setq ins (format-time-string
  717. "%G-W%V"
  718. (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
  719. (mw
  720. (setq ins (format-time-string
  721. "%Y-%m"
  722. (encode-time 0 0 0 1 (+ mw n) y))))
  723. (y
  724. (setq ins (number-to-string (+ y n))))))
  725. (t (error "Cannot shift clocktable block")))
  726. (when ins
  727. (goto-char b)
  728. (insert ins)
  729. (delete-region (point) (+ (point) (- e b)))
  730. (beginning-of-line 1)
  731. (org-update-dblock)
  732. t)))))
  733. (defun org-dblock-write:clocktable (params)
  734. "Write the standard clocktable."
  735. (catch 'exit
  736. (let* ((hlchars '((1 . "*") (2 . "/")))
  737. (ins (make-marker))
  738. (total-time nil)
  739. (scope (plist-get params :scope))
  740. (tostring (plist-get params :tostring))
  741. (multifile (plist-get params :multifile))
  742. (header (plist-get params :header))
  743. (maxlevel (or (plist-get params :maxlevel) 3))
  744. (step (plist-get params :step))
  745. (emph (plist-get params :emphasize))
  746. (ts (plist-get params :tstart))
  747. (te (plist-get params :tend))
  748. (block (plist-get params :block))
  749. (link (plist-get params :link))
  750. ipos time p level hlc hdl
  751. cc beg end pos tbl tbl1 range-text rm-file-column scope-is-list)
  752. (setq org-clock-file-total-minutes nil)
  753. (when step
  754. (unless (or block (and ts te))
  755. (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
  756. (org-clocktable-steps params)
  757. (throw 'exit nil))
  758. (when block
  759. (setq cc (org-clock-special-range block nil t)
  760. ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
  761. (when (integerp ts) (setq ts (calendar-gregorian-from-absolute ts)))
  762. (when (integerp te) (setq te (calendar-gregorian-from-absolute te)))
  763. (when (and ts (listp ts))
  764. (setq ts (format "%4d-%02d-%02d" (nth 2 ts) (car ts) (nth 1 ts))))
  765. (when (and te (listp te))
  766. (setq te (format "%4d-%02d-%02d" (nth 2 te) (car te) (nth 1 te))))
  767. ;; Now the times are strings we can parse.
  768. (if ts (setq ts (time-to-seconds
  769. (apply 'encode-time (org-parse-time-string ts)))))
  770. (if te (setq te (time-to-seconds
  771. (apply 'encode-time (org-parse-time-string te)))))
  772. (move-marker ins (point))
  773. (setq ipos (point))
  774. ;; Get the right scope
  775. (setq pos (point))
  776. (cond
  777. ((and scope (listp scope) (symbolp (car scope)))
  778. (setq scope (eval scope)))
  779. ((eq scope 'agenda)
  780. (setq scope (org-agenda-files t)))
  781. ((eq scope 'agenda-with-archives)
  782. (setq scope (org-agenda-files t))
  783. (setq scope (org-add-archive-files scope)))
  784. ((eq scope 'file-with-archives)
  785. (setq scope (org-add-archive-files (list (buffer-file-name)))
  786. rm-file-column t)))
  787. (setq scope-is-list (and scope (listp scope)))
  788. (save-restriction
  789. (cond
  790. ((not scope))
  791. ((eq scope 'file) (widen))
  792. ((eq scope 'subtree) (org-narrow-to-subtree))
  793. ((eq scope 'tree)
  794. (while (org-up-heading-safe))
  795. (org-narrow-to-subtree))
  796. ((and (symbolp scope) (string-match "^tree\\([0-9]+\\)$"
  797. (symbol-name scope)))
  798. (setq level (string-to-number (match-string 1 (symbol-name scope))))
  799. (catch 'exit
  800. (while (org-up-heading-safe)
  801. (looking-at outline-regexp)
  802. (if (<= (org-reduced-level (funcall outline-level)) level)
  803. (throw 'exit nil))))
  804. (org-narrow-to-subtree))
  805. (scope-is-list
  806. (let* ((files scope)
  807. (scope 'agenda)
  808. (p1 (copy-sequence params))
  809. file)
  810. (setq p1 (plist-put p1 :tostring t))
  811. (setq p1 (plist-put p1 :multifile t))
  812. (setq p1 (plist-put p1 :scope 'file))
  813. (org-prepare-agenda-buffers files)
  814. (while (setq file (pop files))
  815. (with-current-buffer (find-buffer-visiting file)
  816. (setq tbl1 (org-dblock-write:clocktable p1))
  817. (when tbl1
  818. (push (org-clocktable-add-file
  819. file
  820. (concat "| |*File time*|*"
  821. (org-minutes-to-hh:mm-string
  822. org-clock-file-total-minutes)
  823. "*|\n"
  824. tbl1)) tbl)
  825. (setq total-time (+ (or total-time 0)
  826. org-clock-file-total-minutes))))))))
  827. (goto-char pos)
  828. (unless scope-is-list
  829. (org-clock-sum ts te)
  830. (goto-char (point-min))
  831. (while (setq p (next-single-property-change (point) :org-clock-minutes))
  832. (goto-char p)
  833. (when (setq time (get-text-property p :org-clock-minutes))
  834. (save-excursion
  835. (beginning-of-line 1)
  836. (when (and (looking-at (org-re "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[[:alnum:]_@:]+:\\)?[ \t]*$"))
  837. (setq level (org-reduced-level
  838. (- (match-end 1) (match-beginning 1))))
  839. (<= level maxlevel))
  840. (setq hlc (if emph (or (cdr (assoc level hlchars)) "") "")
  841. hdl (if (not link)
  842. (match-string 2)
  843. (org-make-link-string
  844. (format "file:%s::%s"
  845. (buffer-file-name)
  846. (save-match-data
  847. (org-make-org-heading-search-string
  848. (match-string 2))))
  849. (match-string 2))))
  850. (if (and (not multifile) (= level 1)) (push "|-" tbl))
  851. (push (concat
  852. "| " (int-to-string level) "|" hlc hdl hlc " |"
  853. (make-string (1- level) ?|)
  854. hlc (org-minutes-to-hh:mm-string time) hlc
  855. " |") tbl))))))
  856. (setq tbl (nreverse tbl))
  857. (if tostring
  858. (if tbl (mapconcat 'identity tbl "\n") nil)
  859. (goto-char ins)
  860. (insert-before-markers
  861. (or header
  862. (concat
  863. "Clock summary at ["
  864. (substring
  865. (format-time-string (cdr org-time-stamp-formats))
  866. 1 -1)
  867. "]"
  868. (if block (concat ", for " range-text ".") "")
  869. "\n\n"))
  870. (if scope-is-list "|File" "")
  871. "|L|Headline|Time|\n")
  872. (setq total-time (or total-time org-clock-file-total-minutes))
  873. (insert-before-markers
  874. "|-\n|"
  875. (if scope-is-list "|" "")
  876. "|"
  877. "*Total time*| *"
  878. (org-minutes-to-hh:mm-string (or total-time 0))
  879. "*|\n|-\n")
  880. (setq tbl (delq nil tbl))
  881. (if (and (stringp (car tbl)) (> (length (car tbl)) 1)
  882. (equal (substring (car tbl) 0 2) "|-"))
  883. (pop tbl))
  884. (insert-before-markers (mapconcat
  885. 'identity (delq nil tbl)
  886. (if scope-is-list "\n|-\n" "\n")))
  887. (backward-delete-char 1)
  888. (goto-char ipos)
  889. (skip-chars-forward "^|")
  890. (org-table-align)
  891. (when rm-file-column
  892. (forward-char 1)
  893. (org-table-delete-column)))))))
  894. (defun org-clocktable-steps (params)
  895. (let* ((p1 (copy-sequence params))
  896. (ts (plist-get p1 :tstart))
  897. (te (plist-get p1 :tend))
  898. (step0 (plist-get p1 :step))
  899. (step (cdr (assoc step0 '((day . 86400) (week . 604800)))))
  900. (block (plist-get p1 :block))
  901. cc range-text)
  902. (when block
  903. (setq cc (org-clock-special-range block nil t)
  904. ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
  905. (if ts (setq ts (time-to-seconds
  906. (apply 'encode-time (org-parse-time-string ts)))))
  907. (if te (setq te (time-to-seconds
  908. (apply 'encode-time (org-parse-time-string te)))))
  909. (setq p1 (plist-put p1 :header ""))
  910. (setq p1 (plist-put p1 :step nil))
  911. (setq p1 (plist-put p1 :block nil))
  912. (while (< ts te)
  913. (or (bolp) (insert "\n"))
  914. (setq p1 (plist-put p1 :tstart (format-time-string
  915. (car org-time-stamp-formats)
  916. (seconds-to-time ts))))
  917. (setq p1 (plist-put p1 :tend (format-time-string
  918. (car org-time-stamp-formats)
  919. (seconds-to-time (setq ts (+ ts step))))))
  920. (insert "\n" (if (eq step0 'day) "Daily report: " "Weekly report starting on: ")
  921. (plist-get p1 :tstart) "\n")
  922. (org-dblock-write:clocktable p1)
  923. (re-search-forward "#\\+END:")
  924. (end-of-line 0))))
  925. (defun org-clocktable-add-file (file table)
  926. (if table
  927. (let ((lines (org-split-string table "\n"))
  928. (ff (file-name-nondirectory file)))
  929. (mapconcat 'identity
  930. (mapcar (lambda (x)
  931. (if (string-match org-table-dataline-regexp x)
  932. (concat "|" ff x)
  933. x))
  934. lines)
  935. "\n"))))
  936. (provide 'org-clock)
  937. ;; arch-tag: 7b42c5d4-9b36-48be-97c0-66a869daed4c
  938. ;;; org-clock.el ends here