org-clock.el 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456
  1. ;;; org-clock.el --- The time clocking code for Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009
  3. ;; Free Software Foundation, Inc.
  4. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  5. ;; Keywords: outlines, hypermedia, calendar, wp
  6. ;; Homepage: http://orgmode.org
  7. ;; Version: 6.27trans
  8. ;;
  9. ;; This file is part of GNU Emacs.
  10. ;;
  11. ;; GNU Emacs is free software: you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation, either version 3 of the License, or
  14. ;; (at your option) any later version.
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. ;; GNU General Public License for more details.
  19. ;; You should have received a copy of the GNU General Public License
  20. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  21. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  22. ;;
  23. ;;; Commentary:
  24. ;; This file contains the time clocking code for Org-mode
  25. (require 'org)
  26. (eval-when-compile
  27. (require 'cl)
  28. (require 'calendar))
  29. (declare-function calendar-absolute-from-iso "cal-iso" (&optional date))
  30. (defvar org-time-stamp-formats)
  31. (defgroup org-clock nil
  32. "Options concerning clocking working time in Org-mode."
  33. :tag "Org Clock"
  34. :group 'org-progress)
  35. (defcustom org-clock-into-drawer org-log-into-drawer
  36. "Should clocking info be wrapped into a drawer?
  37. When t, clocking info will always be inserted into a :LOGBOOK: drawer.
  38. If necessary, the drawer will be created.
  39. When nil, the drawer will not be created, but used when present.
  40. When an integer and the number of clocking entries in an item
  41. reaches or exceeds this number, a drawer will be created.
  42. When a string, it names the drawer to be used.
  43. The default for this variable is the value of `org-log-into-drawer',
  44. which see."
  45. :group 'org-todo
  46. :group 'org-clock
  47. :type '(choice
  48. (const :tag "Always" t)
  49. (const :tag "Only when drawer exists" nil)
  50. (integer :tag "When at least N clock entries")
  51. (const :tag "Into LOGBOOK drawer" "LOGBOOK")
  52. (string :tag "Into Drawer named...")))
  53. (defcustom org-clock-out-when-done t
  54. "When non-nil, clock will be stopped when the clocked entry is marked DONE.
  55. A nil value means, clock will keep running until stopped explicitly with
  56. `C-c C-x C-o', or until the clock is started in a different item."
  57. :group 'org-clock
  58. :type 'boolean)
  59. (defcustom org-clock-out-remove-zero-time-clocks nil
  60. "Non-nil means, remove the clock line when the resulting time is zero."
  61. :group 'org-clock
  62. :type 'boolean)
  63. (defcustom org-clock-in-switch-to-state nil
  64. "Set task to a special todo state while clocking it.
  65. The value should be the state to which the entry should be
  66. switched. If the value is a function, it must take one
  67. parameter (the current TODO state of the item) and return the
  68. state to switch it to."
  69. :group 'org-clock
  70. :group 'org-todo
  71. :type '(choice
  72. (const :tag "Don't force a state" nil)
  73. (string :tag "State")
  74. (symbol :tag "Function")))
  75. (defcustom org-clock-out-switch-to-state nil
  76. "Set task to a special todo state after clocking out.
  77. The value should be the state to which the entry should be
  78. switched. If the value is a function, it must take one
  79. parameter (the current TODO state of the item) and return the
  80. state to switch it to."
  81. :group 'org-clock
  82. :group 'org-todo
  83. :type '(choice
  84. (const :tag "Don't force a state" nil)
  85. (string :tag "State")
  86. (symbol :tag "Function")))
  87. (defcustom org-clock-history-length 5
  88. "Number of clock tasks to remember in history."
  89. :group 'org-clock
  90. :type 'integer)
  91. (defcustom org-clock-goto-may-find-recent-task t
  92. "Non-nil means, `org-clock-goto' can go to recent task if no active clock."
  93. :group 'org-clock
  94. :type 'boolean)
  95. (defcustom org-clock-heading-function nil
  96. "When non-nil, should be a function to create `org-clock-heading'.
  97. This is the string shown in the mode line when a clock is running.
  98. The function is called with point at the beginning of the headline."
  99. :group 'org-clock
  100. :type 'function)
  101. (defcustom org-clock-string-limit 0
  102. "Maximum length of clock strings in the modeline. 0 means no limit."
  103. :group 'org-clock
  104. :type 'integer)
  105. (defcustom org-clock-in-resume nil
  106. "If non-nil, resume clock when clocking into task with open clock.
  107. When clocking into a task with a clock entry which has not been closed,
  108. the clock can be resumed from that point."
  109. :group 'org-clock
  110. :type 'boolean)
  111. (defcustom org-clock-persist nil
  112. "When non-nil, save the running clock when emacs is closed.
  113. The clock is resumed when emacs restarts.
  114. When this is t, both the running clock, and the entire clock
  115. history are saved. When this is the symbol `clock', only the
  116. running clock is saved.
  117. When Emacs restarts with saved clock information, the file containing the
  118. running clock as well as all files mentioned in the clock history will
  119. be visited.
  120. All this depends on running `org-clock-persistence-insinuate' in .emacs"
  121. :group 'org-clock
  122. :type '(choice
  123. (const :tag "Just the running clock" clock)
  124. (const :tag "Clock and history" t)
  125. (const :tag "No persistence" nil)))
  126. (defcustom org-clock-persist-file (convert-standard-filename
  127. "~/.emacs.d/org-clock-save.el")
  128. "File to save clock data to."
  129. :group 'org-clock
  130. :type 'string)
  131. (defcustom org-clock-persist-query-save nil
  132. "When non-nil, ask before saving the current clock on exit."
  133. :group 'org-clock
  134. :type 'boolean)
  135. (defcustom org-clock-persist-query-resume t
  136. "When non-nil, ask before resuming any stored clock during load."
  137. :group 'org-clock
  138. :type 'boolean)
  139. (defcustom org-clock-sound nil
  140. "Sound that will used for notifications.
  141. Possible values:
  142. nil no sound played.
  143. t standard Emacs beep
  144. file name play this sound file. If not possible, fall back to beep"
  145. :group 'org-clock
  146. :type '(choice
  147. (const :tag "No sound" nil)
  148. (const :tag "Standard beep" t)
  149. (file :tag "Play sound file")))
  150. (defcustom org-clock-modeline-total 'auto
  151. "Default setting for the time included for the modeline clock.
  152. This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
  153. Allowed values are:
  154. current Only the time in the current instance of the clock
  155. today All time clocked inot this task today
  156. repeat All time clocked into this task since last repeat
  157. all All time ever recorded for this task
  158. auto Automtically, either `all', or `repeat' for repeating tasks"
  159. :group 'org-clock
  160. :type '(choice
  161. (const :tag "Current clock" current)
  162. (const :tag "Today's task time" today)
  163. (const :tag "Since last repeat" repeat)
  164. (const :tag "All task time" all)
  165. (const :tag "Automatically, `all' or since `repeat'" auto)))
  166. ;;; The clock for measuring work time.
  167. (defvar org-mode-line-string "")
  168. (put 'org-mode-line-string 'risky-local-variable t)
  169. (defvar org-clock-mode-line-timer nil)
  170. (defvar org-clock-heading "")
  171. (defvar org-clock-heading-for-remember "")
  172. (defvar org-clock-start-time "")
  173. (defvar org-clock-effort ""
  174. "Effort estimate of the currently clocking task")
  175. (defvar org-clock-total-time nil
  176. "Holds total time, spent previously on currently clocked item.
  177. This does not include the time in the currently running clock.")
  178. (defvar org-clock-history nil
  179. "List of marker pointing to recent clocked tasks.")
  180. (defvar org-clock-default-task (make-marker)
  181. "Marker pointing to the default task that should clock time.
  182. The clock can be made to switch to this task after clocking out
  183. of a different task.")
  184. (defvar org-clock-interrupted-task (make-marker)
  185. "Marker pointing to the task that has been interrupted by the current clock.")
  186. (defvar org-clock-mode-line-map (make-sparse-keymap))
  187. (define-key org-clock-mode-line-map [mode-line mouse-2] 'org-clock-goto)
  188. (defun org-clock-history-push (&optional pos buffer)
  189. "Push a marker to the clock history."
  190. (setq org-clock-history-length (max 1 (min 35 org-clock-history-length)))
  191. (let ((m (move-marker (make-marker) (or pos (point)) buffer)) n l)
  192. (while (setq n (member m org-clock-history))
  193. (move-marker (car n) nil))
  194. (setq org-clock-history
  195. (delq nil
  196. (mapcar (lambda (x) (if (marker-buffer x) x nil))
  197. org-clock-history)))
  198. (when (>= (setq l (length org-clock-history)) org-clock-history-length)
  199. (setq org-clock-history
  200. (nreverse
  201. (nthcdr (- l org-clock-history-length -1)
  202. (nreverse org-clock-history)))))
  203. (push m org-clock-history)))
  204. (defun org-clock-save-markers-for-cut-and-paste (beg end)
  205. "Save relative positions of markers in region."
  206. (org-check-and-save-marker org-clock-marker beg end)
  207. (org-check-and-save-marker org-clock-default-task beg end)
  208. (org-check-and-save-marker org-clock-interrupted-task beg end)
  209. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  210. org-clock-history))
  211. (defun org-clock-select-task (&optional prompt)
  212. "Select a task that recently was associated with clocking."
  213. (interactive)
  214. (let (sel-list rpl (i 0) s)
  215. (save-window-excursion
  216. (org-switch-to-buffer-other-window
  217. (get-buffer-create "*Clock Task Select*"))
  218. (erase-buffer)
  219. (when (marker-buffer org-clock-default-task)
  220. (insert (org-add-props "Default Task\n" nil 'face 'bold))
  221. (setq s (org-clock-insert-selection-line ?d org-clock-default-task))
  222. (push s sel-list))
  223. (when (marker-buffer org-clock-interrupted-task)
  224. (insert (org-add-props "The task interrupted by starting the last one\n" nil 'face 'bold))
  225. (setq s (org-clock-insert-selection-line ?i org-clock-interrupted-task))
  226. (push s sel-list))
  227. (when (marker-buffer org-clock-marker)
  228. (insert (org-add-props "Current Clocking Task\n" nil 'face 'bold))
  229. (setq s (org-clock-insert-selection-line ?c org-clock-marker))
  230. (push s sel-list))
  231. (insert (org-add-props "Recent Tasks\n" nil 'face 'bold))
  232. (mapc
  233. (lambda (m)
  234. (when (marker-buffer m)
  235. (setq i (1+ i)
  236. s (org-clock-insert-selection-line
  237. (if (< i 10)
  238. (+ i ?0)
  239. (+ i (- ?A 10))) m))
  240. (push s sel-list)))
  241. org-clock-history)
  242. (org-fit-window-to-buffer)
  243. (message (or prompt "Select task for clocking:"))
  244. (setq rpl (read-char-exclusive))
  245. (cond
  246. ((eq rpl ?q) nil)
  247. ((eq rpl ?x) nil)
  248. ((assoc rpl sel-list) (cdr (assoc rpl sel-list)))
  249. (t (error "Invalid task choice %c" rpl))))))
  250. (defun org-clock-insert-selection-line (i marker)
  251. "Insert a line for the clock selection menu.
  252. And return a cons cell with the selection character integer and the marker
  253. pointing to it."
  254. (when (marker-buffer marker)
  255. (let (file cat task heading prefix)
  256. (with-current-buffer (org-base-buffer (marker-buffer marker))
  257. (save-excursion
  258. (save-restriction
  259. (widen)
  260. (goto-char marker)
  261. (setq file (buffer-file-name (marker-buffer marker))
  262. cat (or (org-get-category)
  263. (progn (org-refresh-category-properties)
  264. (org-get-category)))
  265. heading (org-get-heading 'notags)
  266. prefix (save-excursion
  267. (org-back-to-heading t)
  268. (looking-at "\\*+ ")
  269. (match-string 0))
  270. task (substring
  271. (org-fontify-like-in-org-mode
  272. (concat prefix heading)
  273. org-odd-levels-only)
  274. (length prefix))))))
  275. (when (and cat task)
  276. (insert (format "[%c] %-15s %s\n" i cat task))
  277. (cons i marker)))))
  278. (defun org-clock-get-clock-string ()
  279. "Form a clock-string, that will be show in the mode line.
  280. If an effort estimate was defined for current item, use
  281. 01:30/01:50 format (clocked/estimated).
  282. If not, show simply the clocked time like 01:50."
  283. (let* ((clocked-time (org-clock-get-clocked-time))
  284. (h (floor clocked-time 60))
  285. (m (- clocked-time (* 60 h)))
  286. )
  287. (if (and org-clock-effort)
  288. (let* ((effort-in-minutes (org-hh:mm-string-to-minutes org-clock-effort))
  289. (effort-h (floor effort-in-minutes 60))
  290. (effort-m (- effort-in-minutes (* effort-h 60)))
  291. )
  292. (format (concat "-[" org-time-clocksum-format "/" org-time-clocksum-format " (%s)]")
  293. h m effort-h effort-m org-clock-heading)
  294. )
  295. (format (concat "-[" org-time-clocksum-format " (%s)]")
  296. h m org-clock-heading))
  297. ))
  298. (defun org-clock-update-mode-line ()
  299. (setq org-mode-line-string
  300. (org-propertize
  301. (let ((clock-string (org-clock-get-clock-string))
  302. (help-text "Org-mode clock is running. Mouse-2 to go there."))
  303. (if (and (> org-clock-string-limit 0)
  304. (> (length clock-string) org-clock-string-limit))
  305. (org-propertize (substring clock-string 0 org-clock-string-limit)
  306. 'help-echo (concat help-text ": " org-clock-heading))
  307. (org-propertize clock-string 'help-echo help-text)))
  308. 'local-map org-clock-mode-line-map
  309. 'mouse-face (if (featurep 'xemacs) 'highlight 'mode-line-highlight)
  310. 'face 'org-mode-line-clock))
  311. (if org-clock-effort (org-clock-notify-once-if-expired))
  312. (force-mode-line-update))
  313. (defun org-clock-get-clocked-time ()
  314. "Get the clocked time for the rrent item in minutes.
  315. The time returned includes the the time spent on this task in
  316. previous clocking intervals."
  317. (let ((currently-clocked-time
  318. (floor (- (time-to-seconds (current-time))
  319. (time-to-seconds org-clock-start-time)) 60)))
  320. (+ currently-clocked-time (or org-clock-total-time 0))))
  321. (defvar org-clock-notification-was-shown nil
  322. "Shows if we have shown notification already.")
  323. (defun org-clock-notify-once-if-expired ()
  324. "Show notification if we spent more time then we estimated before.
  325. Notification is shown only once."
  326. (let ((effort-in-minutes (org-hh:mm-string-to-minutes org-clock-effort))
  327. (clocked-time (org-clock-get-clocked-time)))
  328. (if (>= clocked-time effort-in-minutes)
  329. (unless org-clock-notification-was-shown
  330. (setq org-clock-notification-was-shown t)
  331. (org-clock-play-sound)
  332. (org-show-notification
  333. (format "Task '%s' should be finished by now. (%s)"
  334. org-clock-heading org-clock-effort)))
  335. (setq org-clock-notification-was-shown nil))))
  336. (defun org-show-notification (notification)
  337. "Show notification. Use libnotify, if available."
  338. (if (org-program-exists "notify-send")
  339. (start-process "emacs-timer-notification" nil "notify-send" notification))
  340. ;; In any case, show in message area
  341. (message notification))
  342. (defun org-clock-play-sound ()
  343. "Play sound as configured by `org-clock-sound'.
  344. Use alsa's aplay tool if available."
  345. (cond
  346. ((not org-clock-sound))
  347. ((eq org-clock-sound t) (beep t) (beep t))
  348. ((stringp org-clock-sound)
  349. (if (file-exists-p org-clock-sound)
  350. (if (org-program-exists "aplay")
  351. (start-process "org-clock-play-notification" nil
  352. "aplay" org-clock-sound)
  353. (condition-case nil
  354. (play-sound-file org-clock-sound)
  355. (error (beep t) (beep t))))))))
  356. (defun org-program-exists (program-name)
  357. "Checks whenever we can locate program and launch it."
  358. (if (eq system-type 'gnu/linux)
  359. (= 0 (call-process "which" nil nil nil program-name))
  360. ))
  361. (defvar org-clock-mode-line-entry nil
  362. "Information for the modeline about the running clock.")
  363. (defun org-clock-in (&optional select)
  364. "Start the clock on the current item.
  365. If necessary, clock-out of the currently active clock.
  366. With prefix arg SELECT, offer a list of recently clocked tasks to
  367. clock into. When SELECT is `C-u C-u', clock into the current task and mark
  368. is as the default task, a special task that will always be offered in
  369. the clocking selection, associated with the letter `d'."
  370. (interactive "P")
  371. (catch 'abort
  372. (let ((interrupting (marker-buffer org-clock-marker))
  373. ts selected-task target-pos (msg-extra ""))
  374. (when (equal select '(4))
  375. (setq selected-task (org-clock-select-task "Clock-in on task: "))
  376. (if selected-task
  377. (setq selected-task (copy-marker selected-task))
  378. (error "Abort")))
  379. (when interrupting
  380. ;; We are interrupting the clocking of a different task.
  381. ;; Save a marker to this task, so that we can go back.
  382. (move-marker org-clock-interrupted-task
  383. (marker-position org-clock-marker)
  384. (marker-buffer org-clock-marker))
  385. (org-clock-out t))
  386. (when (equal select '(16))
  387. ;; Mark as default clocking task
  388. (save-excursion
  389. (org-back-to-heading t)
  390. (move-marker org-clock-default-task (point))))
  391. (setq target-pos (point)) ;; we want to clock in at this location
  392. (save-excursion
  393. (when (and selected-task (marker-buffer selected-task))
  394. ;; There is a selected task, move to the correct buffer
  395. ;; and set the new target position.
  396. (set-buffer (org-base-buffer (marker-buffer selected-task)))
  397. (setq target-pos (marker-position selected-task))
  398. (move-marker selected-task nil))
  399. (save-excursion
  400. (save-restriction
  401. (widen)
  402. (goto-char target-pos)
  403. (org-back-to-heading t)
  404. (or interrupting (move-marker org-clock-interrupted-task nil))
  405. (org-clock-history-push)
  406. (cond ((functionp org-clock-in-switch-to-state)
  407. (looking-at org-complex-heading-regexp)
  408. (let ((newstate (funcall org-clock-in-switch-to-state
  409. (match-string 2))))
  410. (if newstate (org-todo newstate))))
  411. ((and org-clock-in-switch-to-state
  412. (not (looking-at (concat outline-regexp "[ \t]*"
  413. org-clock-in-switch-to-state
  414. "\\>"))))
  415. (org-todo org-clock-in-switch-to-state)))
  416. (setq org-clock-heading-for-remember
  417. (and (looking-at org-complex-heading-regexp)
  418. (match-end 4)
  419. (org-trim (buffer-substring (match-end 1)
  420. (match-end 4)))))
  421. (setq org-clock-heading
  422. (cond ((and org-clock-heading-function
  423. (functionp org-clock-heading-function))
  424. (funcall org-clock-heading-function))
  425. ((looking-at org-complex-heading-regexp)
  426. (match-string 4))
  427. (t "???")))
  428. (setq org-clock-heading (org-propertize org-clock-heading
  429. 'face nil))
  430. (org-clock-find-position org-clock-in-resume)
  431. (cond
  432. ((and org-clock-in-resume
  433. (looking-at
  434. (concat "^[ \t]* " org-clock-string
  435. " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
  436. " +\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
  437. (message "Matched %s" (match-string 1))
  438. (setq ts (concat "[" (match-string 1) "]"))
  439. (goto-char (match-end 1))
  440. (setq org-clock-start-time
  441. (apply 'encode-time
  442. (org-parse-time-string (match-string 1))))
  443. (setq org-clock-effort (org-get-effort))
  444. (setq org-clock-total-time (org-clock-sum-current-item
  445. (org-clock-get-sum-start))))
  446. ((eq org-clock-in-resume 'auto-restart)
  447. ;; called from org-clock-load during startup,
  448. ;; do not interrupt, but warn!
  449. (message "Cannot restart clock because task does not contain unfinished clock")
  450. (ding)
  451. (sit-for 2)
  452. (throw 'abort nil))
  453. (t
  454. (insert-before-markers "\n")
  455. (backward-char 1)
  456. (org-indent-line-function)
  457. (when (and (save-excursion
  458. (end-of-line 0)
  459. (org-in-item-p)))
  460. (beginning-of-line 1)
  461. (org-indent-line-to (- (org-get-indentation) 2)))
  462. (insert org-clock-string " ")
  463. (setq org-clock-effort (org-get-effort))
  464. (setq org-clock-total-time (org-clock-sum-current-item
  465. (org-clock-get-sum-start)))
  466. (setq org-clock-start-time (current-time))
  467. (setq ts (org-insert-time-stamp org-clock-start-time
  468. 'with-hm 'inactive))))
  469. (move-marker org-clock-marker (point) (buffer-base-buffer))
  470. (or global-mode-string (setq global-mode-string '("")))
  471. (or (memq 'org-mode-line-string global-mode-string)
  472. (setq global-mode-string
  473. (append global-mode-string '(org-mode-line-string))))
  474. (org-clock-update-mode-line)
  475. (setq org-clock-mode-line-timer
  476. (run-with-timer 60 60 'org-clock-update-mode-line))
  477. (message "Clock starts at %s - %s" ts msg-extra)))))))
  478. (defvar msg-extra)
  479. (defun org-clock-get-sum-start ()
  480. "Return the time from which clock times should be counted.
  481. This is for the currently running clock as it is displayed
  482. in the mode line. This function looks at the properties
  483. LAST_REPEAT and in particular CLOCK_MODELINE_TOTAL and the
  484. corresponding variable `org-clock-modeline-total' and then
  485. decides which time to use."
  486. (let ((cmt (or (org-entry-get nil "CLOCK_MODELINE_TOTAL")
  487. (symbol-name org-clock-modeline-total)))
  488. (lr (org-entry-get nil "LAST_REPEAT")))
  489. (cond
  490. ((equal cmt "current")
  491. (setq msg-extra "showing time in current clock instance")
  492. (current-time))
  493. ((equal cmt "today")
  494. (setq msg-extra "showing today's task time.")
  495. (let* ((dt (decode-time (current-time))))
  496. (setq dt (append (list 0 0 0) (nthcdr 3 dt)))
  497. (if org-extend-today-until
  498. (setf (nth 2 dt) org-extend-today-until))
  499. (apply 'encode-time dt)))
  500. ((or (equal cmt "all")
  501. (and (or (not cmt) (equal cmt "auto"))
  502. (not lr)))
  503. (setq msg-extra "showing entire task time.")
  504. nil)
  505. ((or (equal cmt "repeat")
  506. (and (or (not cmt) (equal cmt "auto"))
  507. lr))
  508. (setq msg-extra "showing task time since last repeat.")
  509. (if (not lr)
  510. nil
  511. (org-time-string-to-time lr)))
  512. (t nil))))
  513. (defun org-clock-find-position (find-unclosed)
  514. "Find the location where the next clock line should be inserted.
  515. When FIND-UNCLOSED is non-nil, first check if there is an unclosed clock
  516. line and position cursor in that line."
  517. (org-back-to-heading t)
  518. (catch 'exit
  519. (let ((beg (save-excursion
  520. (beginning-of-line 2)
  521. (or (bolp) (newline))
  522. (point)))
  523. (end (progn (outline-next-heading) (point)))
  524. (re (concat "^[ \t]*" org-clock-string))
  525. (cnt 0)
  526. (drawer (if (stringp org-clock-into-drawer)
  527. org-clock-into-drawer "LOGBOOK"))
  528. first last ind-last)
  529. (goto-char beg)
  530. (when (and find-unclosed
  531. (re-search-forward
  532. (concat "^[ \t]* " org-clock-string
  533. " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
  534. " +\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")
  535. end t))
  536. (beginning-of-line 1)
  537. (throw 'exit t))
  538. (when (eobp) (newline) (setq end (max (point) end)))
  539. (when (re-search-forward (concat "^[ \t]*:" drawer ":") end t)
  540. ;; we seem to have a CLOCK drawer, so go there.
  541. (beginning-of-line 2)
  542. (or org-log-states-order-reversed
  543. (and (re-search-forward org-property-end-re nil t)
  544. (goto-char (match-beginning 0))))
  545. (throw 'exit t))
  546. ;; Lets count the CLOCK lines
  547. (goto-char beg)
  548. (while (re-search-forward re end t)
  549. (setq first (or first (match-beginning 0))
  550. last (match-beginning 0)
  551. cnt (1+ cnt)))
  552. (when (and (integerp org-clock-into-drawer)
  553. last
  554. (>= (1+ cnt) org-clock-into-drawer))
  555. ;; Wrap current entries into a new drawer
  556. (goto-char last)
  557. (setq ind-last (org-get-indentation))
  558. (beginning-of-line 2)
  559. (if (and (>= (org-get-indentation) ind-last)
  560. (org-at-item-p))
  561. (org-end-of-item))
  562. (insert ":END:\n")
  563. (beginning-of-line 0)
  564. (org-indent-line-to ind-last)
  565. (goto-char first)
  566. (insert ":" drawer ":\n")
  567. (beginning-of-line 0)
  568. (org-indent-line-function)
  569. (org-flag-drawer t)
  570. (beginning-of-line 2)
  571. (or org-log-states-order-reversed
  572. (and (re-search-forward org-property-end-re nil t)
  573. (goto-char (match-beginning 0))))
  574. (throw 'exit nil))
  575. (goto-char beg)
  576. (while (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
  577. (not (equal (match-string 1) org-clock-string)))
  578. ;; Planning info, skip to after it
  579. (beginning-of-line 2)
  580. (or (bolp) (newline)))
  581. (when (or (eq org-clock-into-drawer t)
  582. (stringp org-clock-into-drawer)
  583. (and (integerp org-clock-into-drawer)
  584. (< org-clock-into-drawer 2)))
  585. (insert ":" drawer ":\n:END:\n")
  586. (beginning-of-line -1)
  587. (org-indent-line-function)
  588. (org-flag-drawer t)
  589. (beginning-of-line 2)
  590. (org-indent-line-function)
  591. (beginning-of-line)
  592. (or org-log-states-order-reversed
  593. (and (re-search-forward org-property-end-re nil t)
  594. (goto-char (match-beginning 0))))))))
  595. (defun org-clock-out (&optional fail-quietly)
  596. "Stop the currently running clock.
  597. If there is no running clock, throw an error, unless FAIL-QUIETLY is set."
  598. (interactive)
  599. (catch 'exit
  600. (if (not (marker-buffer org-clock-marker))
  601. (if fail-quietly (throw 'exit t) (error "No active clock")))
  602. (let (ts te s h m remove)
  603. (save-excursion
  604. (set-buffer (marker-buffer org-clock-marker))
  605. (save-restriction
  606. (widen)
  607. (goto-char org-clock-marker)
  608. (beginning-of-line 1)
  609. (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
  610. (equal (match-string 1) org-clock-string))
  611. (setq ts (match-string 2))
  612. (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
  613. (goto-char (match-end 0))
  614. (delete-region (point) (point-at-eol))
  615. (insert "--")
  616. (setq te (org-insert-time-stamp (current-time) 'with-hm 'inactive))
  617. (setq s (- (time-to-seconds (apply 'encode-time (org-parse-time-string te)))
  618. (time-to-seconds (apply 'encode-time (org-parse-time-string ts))))
  619. h (floor (/ s 3600))
  620. s (- s (* 3600 h))
  621. m (floor (/ s 60))
  622. s (- s (* 60 s)))
  623. (insert " => " (format "%2d:%02d" h m))
  624. (when (setq remove (and org-clock-out-remove-zero-time-clocks
  625. (= (+ h m) 0)))
  626. (beginning-of-line 1)
  627. (delete-region (point) (point-at-eol))
  628. (and (looking-at "\n") (> (point-max) (1+ (point)))
  629. (delete-char 1)))
  630. (move-marker org-clock-marker nil)
  631. (when org-log-note-clock-out
  632. (org-add-log-setup 'clock-out nil nil nil nil
  633. (concat "# Task: " (org-get-heading t) "\n\n")))
  634. (when org-clock-mode-line-timer
  635. (cancel-timer org-clock-mode-line-timer)
  636. (setq org-clock-mode-line-timer nil))
  637. (setq global-mode-string
  638. (delq 'org-mode-line-string global-mode-string))
  639. (when org-clock-out-switch-to-state
  640. (save-excursion
  641. (org-back-to-heading t)
  642. (let ((org-inhibit-logging t))
  643. (cond
  644. ((functionp org-clock-out-switch-to-state)
  645. (looking-at org-complex-heading-regexp)
  646. (let ((newstate (funcall org-clock-out-switch-to-state
  647. (match-string 2))))
  648. (if newstate (org-todo newstate))))
  649. ((and org-clock-out-switch-to-state
  650. (not (looking-at (concat outline-regexp "[ \t]*"
  651. org-clock-out-switch-to-state
  652. "\\>"))))
  653. (org-todo org-clock-out-switch-to-state))))))
  654. (force-mode-line-update)
  655. (message (concat "Clock stopped at %s after HH:MM = " org-time-clocksum-format "%s") te h m
  656. (if remove " => LINE REMOVED" "")))))))
  657. (defun org-clock-cancel ()
  658. "Cancel the running clock be removing the start timestamp."
  659. (interactive)
  660. (if (not (marker-buffer org-clock-marker))
  661. (error "No active clock"))
  662. (save-excursion
  663. (set-buffer (marker-buffer org-clock-marker))
  664. (goto-char org-clock-marker)
  665. (delete-region (1- (point-at-bol)) (point-at-eol)))
  666. (setq global-mode-string
  667. (delq 'org-mode-line-string global-mode-string))
  668. (force-mode-line-update)
  669. (message "Clock canceled"))
  670. (defun org-clock-goto (&optional select)
  671. "Go to the currently clocked-in entry, or to the most recently clocked one.
  672. With prefix arg SELECT, offer recently clocked tasks for selection."
  673. (interactive "P")
  674. (let* ((recent nil)
  675. (m (cond
  676. (select
  677. (or (org-clock-select-task "Select task to go to: ")
  678. (error "No task selected")))
  679. ((marker-buffer org-clock-marker) org-clock-marker)
  680. ((and org-clock-goto-may-find-recent-task
  681. (car org-clock-history)
  682. (marker-buffer (car org-clock-history)))
  683. (setq recent t)
  684. (car org-clock-history))
  685. (t (error "No active or recent clock task")))))
  686. (switch-to-buffer (marker-buffer m))
  687. (if (or (< m (point-min)) (> m (point-max))) (widen))
  688. (goto-char m)
  689. (org-show-entry)
  690. (org-back-to-heading)
  691. (org-cycle-hide-drawers 'children)
  692. (recenter)
  693. (if recent
  694. (message "No running clock, this is the most recently clocked task"))))
  695. (defvar org-clock-file-total-minutes nil
  696. "Holds the file total time in minutes, after a call to `org-clock-sum'.")
  697. (make-variable-buffer-local 'org-clock-file-total-minutes)
  698. (defun org-clock-sum (&optional tstart tend)
  699. "Sum the times for each subtree.
  700. Puts the resulting times in minutes as a text property on each headline.
  701. TSTART and TEND can mark a time range to be considered."
  702. (interactive)
  703. (let* ((bmp (buffer-modified-p))
  704. (re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
  705. org-clock-string
  706. "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
  707. (lmax 30)
  708. (ltimes (make-vector lmax 0))
  709. (t1 0)
  710. (level 0)
  711. ts te dt
  712. time)
  713. (if (stringp tstart) (setq tstart (org-time-string-to-seconds tstart)))
  714. (if (stringp tend) (setq tend (org-time-string-to-seconds tend)))
  715. (if (consp tstart) (setq tstart (time-to-seconds tstart)))
  716. (if (consp tend) (setq tend (time-to-seconds tend)))
  717. (remove-text-properties (point-min) (point-max) '(:org-clock-minutes t))
  718. (save-excursion
  719. (goto-char (point-max))
  720. (while (re-search-backward re nil t)
  721. (cond
  722. ((match-end 2)
  723. ;; Two time stamps
  724. (setq ts (match-string 2)
  725. te (match-string 3)
  726. ts (time-to-seconds
  727. (apply 'encode-time (org-parse-time-string ts)))
  728. te (time-to-seconds
  729. (apply 'encode-time (org-parse-time-string te)))
  730. ts (if tstart (max ts tstart) ts)
  731. te (if tend (min te tend) te)
  732. dt (- te ts)
  733. t1 (if (> dt 0) (+ t1 (floor (/ dt 60))) t1)))
  734. ((match-end 4)
  735. ;; A naked time
  736. (setq t1 (+ t1 (string-to-number (match-string 5))
  737. (* 60 (string-to-number (match-string 4))))))
  738. (t ;; A headline
  739. (setq level (- (match-end 1) (match-beginning 1)))
  740. (when (or (> t1 0) (> (aref ltimes level) 0))
  741. (loop for l from 0 to level do
  742. (aset ltimes l (+ (aref ltimes l) t1)))
  743. (setq t1 0 time (aref ltimes level))
  744. (loop for l from level to (1- lmax) do
  745. (aset ltimes l 0))
  746. (goto-char (match-beginning 0))
  747. (put-text-property (point) (point-at-eol) :org-clock-minutes time)))))
  748. (setq org-clock-file-total-minutes (aref ltimes 0)))
  749. (set-buffer-modified-p bmp)))
  750. (defun org-clock-sum-current-item (&optional tstart)
  751. "Returns time, clocked on current item in total"
  752. (save-excursion
  753. (save-restriction
  754. (org-narrow-to-subtree)
  755. (org-clock-sum tstart)
  756. org-clock-file-total-minutes)))
  757. (defun org-clock-display (&optional total-only)
  758. "Show subtree times in the entire buffer.
  759. If TOTAL-ONLY is non-nil, only show the total time for the entire file
  760. in the echo area."
  761. (interactive)
  762. (org-clock-remove-overlays)
  763. (let (time h m p)
  764. (org-clock-sum)
  765. (unless total-only
  766. (save-excursion
  767. (goto-char (point-min))
  768. (while (or (and (equal (setq p (point)) (point-min))
  769. (get-text-property p :org-clock-minutes))
  770. (setq p (next-single-property-change
  771. (point) :org-clock-minutes)))
  772. (goto-char p)
  773. (when (setq time (get-text-property p :org-clock-minutes))
  774. (org-clock-put-overlay time (funcall outline-level))))
  775. (setq h (/ org-clock-file-total-minutes 60)
  776. m (- org-clock-file-total-minutes (* 60 h)))
  777. ;; Arrange to remove the overlays upon next change.
  778. (when org-remove-highlights-with-change
  779. (org-add-hook 'before-change-functions 'org-clock-remove-overlays
  780. nil 'local))))
  781. (message (concat "Total file time: " org-time-clocksum-format " (%d hours and %d minutes)") h m h m)))
  782. (defvar org-clock-overlays nil)
  783. (make-variable-buffer-local 'org-clock-overlays)
  784. (defun org-clock-put-overlay (time &optional level)
  785. "Put an overlays on the current line, displaying TIME.
  786. If LEVEL is given, prefix time with a corresponding number of stars.
  787. This creates a new overlay and stores it in `org-clock-overlays', so that it
  788. will be easy to remove."
  789. (let* ((c 60) (h (floor (/ time 60))) (m (- time (* 60 h)))
  790. (l (if level (org-get-valid-level level 0) 0))
  791. (fmt (concat "%s " org-time-clocksum-format "%s"))
  792. (off 0)
  793. ov tx)
  794. (org-move-to-column c)
  795. (unless (eolp) (skip-chars-backward "^ \t"))
  796. (skip-chars-backward " \t")
  797. (setq ov (org-make-overlay (1- (point)) (point-at-eol))
  798. tx (concat (buffer-substring (1- (point)) (point))
  799. (make-string (+ off (max 0 (- c (current-column)))) ?.)
  800. (org-add-props (format fmt
  801. (make-string l ?*) h m
  802. (make-string (- 16 l) ?\ ))
  803. (list 'face 'org-clock-overlay))
  804. ""))
  805. (if (not (featurep 'xemacs))
  806. (org-overlay-put ov 'display tx)
  807. (org-overlay-put ov 'invisible t)
  808. (org-overlay-put ov 'end-glyph (make-glyph tx)))
  809. (push ov org-clock-overlays)))
  810. (defun org-clock-remove-overlays (&optional beg end noremove)
  811. "Remove the occur highlights from the buffer.
  812. BEG and END are ignored. If NOREMOVE is nil, remove this function
  813. from the `before-change-functions' in the current buffer."
  814. (interactive)
  815. (unless org-inhibit-highlight-removal
  816. (mapc 'org-delete-overlay org-clock-overlays)
  817. (setq org-clock-overlays nil)
  818. (unless noremove
  819. (remove-hook 'before-change-functions
  820. 'org-clock-remove-overlays 'local))))
  821. (defvar state) ;; dynamically scoped into this function
  822. (defun org-clock-out-if-current ()
  823. "Clock out if the current entry contains the running clock.
  824. This is used to stop the clock after a TODO entry is marked DONE,
  825. and is only done if the variable `org-clock-out-when-done' is not nil."
  826. (when (and org-clock-out-when-done
  827. (member state org-done-keywords)
  828. (equal (or (buffer-base-buffer (marker-buffer org-clock-marker))
  829. (marker-buffer org-clock-marker))
  830. (or (buffer-base-buffer (current-buffer))
  831. (current-buffer)))
  832. (< (point) org-clock-marker)
  833. (> (save-excursion (outline-next-heading) (point))
  834. org-clock-marker))
  835. ;; Clock out, but don't accept a logging message for this.
  836. (let ((org-log-note-clock-out nil))
  837. (org-clock-out))))
  838. (add-hook 'org-after-todo-state-change-hook
  839. 'org-clock-out-if-current)
  840. ;;;###autoload
  841. (defun org-get-clocktable (&rest props)
  842. "Get a formatted clocktable with parameters according to PROPS.
  843. The table is created in a temporary buffer, fully formatted and
  844. fontified, and then returned."
  845. ;; Set the defaults
  846. (setq props (plist-put props :name "clocktable"))
  847. (unless (plist-member props :maxlevel)
  848. (setq props (plist-put props :maxlevel 2)))
  849. (unless (plist-member props :scope)
  850. (setq props (plist-put props :scope 'agenda)))
  851. (with-temp-buffer
  852. (org-mode)
  853. (org-create-dblock props)
  854. (org-update-dblock)
  855. (font-lock-fontify-buffer)
  856. (forward-line 2)
  857. (buffer-substring (point) (progn
  858. (re-search-forward "^#\\+END" nil t)
  859. (point-at-bol)))))
  860. (defun org-clock-report (&optional arg)
  861. "Create a table containing a report about clocked time.
  862. If the cursor is inside an existing clocktable block, then the table
  863. will be updated. If not, a new clocktable will be inserted.
  864. When called with a prefix argument, move to the first clock table in the
  865. buffer and update it."
  866. (interactive "P")
  867. (org-clock-remove-overlays)
  868. (when arg
  869. (org-find-dblock "clocktable")
  870. (org-show-entry))
  871. (if (org-in-clocktable-p)
  872. (goto-char (org-in-clocktable-p))
  873. (org-create-dblock (list :name "clocktable"
  874. :maxlevel 2 :scope 'file)))
  875. (org-update-dblock))
  876. (defun org-in-clocktable-p ()
  877. "Check if the cursor is in a clocktable."
  878. (let ((pos (point)) start)
  879. (save-excursion
  880. (end-of-line 1)
  881. (and (re-search-backward "^#\\+BEGIN:[ \t]+clocktable" nil t)
  882. (setq start (match-beginning 0))
  883. (re-search-forward "^#\\+END:.*" nil t)
  884. (>= (match-end 0) pos)
  885. start))))
  886. (defun org-clock-special-range (key &optional time as-strings)
  887. "Return two times bordering a special time range.
  888. Key is a symbol specifying the range and can be one of `today', `yesterday',
  889. `thisweek', `lastweek', `thismonth', `lastmonth', `thisyear', `lastyear'.
  890. A week starts Monday 0:00 and ends Sunday 24:00.
  891. The range is determined relative to TIME. TIME defaults to the current time.
  892. The return value is a cons cell with two internal times like the ones
  893. returned by `current time' or `encode-time'. if AS-STRINGS is non-nil,
  894. the returned times will be formatted strings."
  895. (if (integerp key) (setq key (intern (number-to-string key))))
  896. (let* ((tm (decode-time (or time (current-time))))
  897. (s 0) (m (nth 1 tm)) (h (nth 2 tm))
  898. (d (nth 3 tm)) (month (nth 4 tm)) (y (nth 5 tm))
  899. (dow (nth 6 tm))
  900. (skey (symbol-name key))
  901. (shift 0)
  902. s1 m1 h1 d1 month1 y1 diff ts te fm txt w date)
  903. (cond
  904. ((string-match "^[0-9]+$" skey)
  905. (setq y (string-to-number skey) m 1 d 1 key 'year))
  906. ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)$" skey)
  907. (setq y (string-to-number (match-string 1 skey))
  908. month (string-to-number (match-string 2 skey))
  909. d 1 key 'month))
  910. ((string-match "^\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)$" skey)
  911. (require 'cal-iso)
  912. (setq y (string-to-number (match-string 1 skey))
  913. w (string-to-number (match-string 2 skey)))
  914. (setq date (calendar-gregorian-from-absolute
  915. (calendar-absolute-from-iso (list w 1 y))))
  916. (setq d (nth 1 date) month (car date) y (nth 2 date)
  917. dow 1
  918. key 'week))
  919. ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)$" skey)
  920. (setq y (string-to-number (match-string 1 skey))
  921. month (string-to-number (match-string 2 skey))
  922. d (string-to-number (match-string 3 skey))
  923. key 'day))
  924. ((string-match "\\([-+][0-9]+\\)$" skey)
  925. (setq shift (string-to-number (match-string 1 skey))
  926. key (intern (substring skey 0 (match-beginning 1))))))
  927. (when (= shift 0)
  928. (cond ((eq key 'yesterday) (setq key 'today shift -1))
  929. ((eq key 'lastweek) (setq key 'week shift -1))
  930. ((eq key 'lastmonth) (setq key 'month shift -1))
  931. ((eq key 'lastyear) (setq key 'year shift -1))))
  932. (cond
  933. ((memq key '(day today))
  934. (setq d (+ d shift) h 0 m 0 h1 24 m1 0))
  935. ((memq key '(week thisweek))
  936. (setq diff (+ (* -7 shift) (if (= dow 0) 6 (1- dow)))
  937. m 0 h 0 d (- d diff) d1 (+ 7 d)))
  938. ((memq key '(month thismonth))
  939. (setq d 1 h 0 m 0 d1 1 month (+ month shift) month1 (1+ month) h1 0 m1 0))
  940. ((memq key '(year thisyear))
  941. (setq m 0 h 0 d 1 month 1 y (+ y shift) y1 (1+ y)))
  942. (t (error "No such time block %s" key)))
  943. (setq ts (encode-time s m h d month y)
  944. te (encode-time (or s1 s) (or m1 m) (or h1 h)
  945. (or d1 d) (or month1 month) (or y1 y)))
  946. (setq fm (cdr org-time-stamp-formats))
  947. (cond
  948. ((memq key '(day today))
  949. (setq txt (format-time-string "%A, %B %d, %Y" ts)))
  950. ((memq key '(week thisweek))
  951. (setq txt (format-time-string "week %G-W%V" ts)))
  952. ((memq key '(month thismonth))
  953. (setq txt (format-time-string "%B %Y" ts)))
  954. ((memq key '(year thisyear))
  955. (setq txt (format-time-string "the year %Y" ts))))
  956. (if as-strings
  957. (list (format-time-string fm ts) (format-time-string fm te) txt)
  958. (list ts te txt))))
  959. (defun org-clocktable-shift (dir n)
  960. "Try to shift the :block date of the clocktable at point.
  961. Point must be in the #+BEGIN: line of a clocktable, or this function
  962. will throw an error.
  963. DIR is a direction, a symbol `left', `right', `up', or `down'.
  964. Both `left' and `down' shift the block toward the past, `up' and `right'
  965. push it toward the future.
  966. N is the number of shift steps to take. The size of the step depends on
  967. the currently selected interval size."
  968. (setq n (prefix-numeric-value n))
  969. (and (memq dir '(left down)) (setq n (- n)))
  970. (save-excursion
  971. (goto-char (point-at-bol))
  972. (if (not (looking-at "#\\+BEGIN: clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
  973. (error "Line needs a :block definition before this command works")
  974. (let* ((b (match-beginning 1)) (e (match-end 1))
  975. (s (match-string 1))
  976. block shift ins y mw d date wp m)
  977. (cond
  978. ((equal s "yesterday") (setq s "today-1"))
  979. ((equal s "lastweek") (setq s "thisweek-1"))
  980. ((equal s "lastmonth") (setq s "thismonth-1"))
  981. ((equal s "lastyear") (setq s "thisyear-1")))
  982. (cond
  983. ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\)\\([-+][0-9]+\\)?$" s)
  984. (setq block (match-string 1 s)
  985. shift (if (match-end 2)
  986. (string-to-number (match-string 2 s))
  987. 0))
  988. (setq shift (+ shift n))
  989. (setq ins (if (= shift 0) block (format "%s%+d" block shift))))
  990. ((string-match "\\([0-9]+\\)\\(-\\([wW]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s)
  991. ;; 1 1 2 3 3 4 4 5 6 6 5 2
  992. (setq y (string-to-number (match-string 1 s))
  993. wp (and (match-end 3) (match-string 3 s))
  994. mw (and (match-end 4) (string-to-number (match-string 4 s)))
  995. d (and (match-end 6) (string-to-number (match-string 6 s))))
  996. (cond
  997. (d (setq ins (format-time-string
  998. "%Y-%m-%d"
  999. (encode-time 0 0 0 (+ d n) m y))))
  1000. ((and wp mw (> (length wp) 0))
  1001. (require 'cal-iso)
  1002. (setq date (calendar-gregorian-from-absolute (calendar-absolute-from-iso (list (+ mw n) 1 y))))
  1003. (setq ins (format-time-string
  1004. "%G-W%V"
  1005. (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
  1006. (mw
  1007. (setq ins (format-time-string
  1008. "%Y-%m"
  1009. (encode-time 0 0 0 1 (+ mw n) y))))
  1010. (y
  1011. (setq ins (number-to-string (+ y n))))))
  1012. (t (error "Cannot shift clocktable block")))
  1013. (when ins
  1014. (goto-char b)
  1015. (insert ins)
  1016. (delete-region (point) (+ (point) (- e b)))
  1017. (beginning-of-line 1)
  1018. (org-update-dblock)
  1019. t)))))
  1020. (defun org-dblock-write:clocktable (params)
  1021. "Write the standard clocktable."
  1022. (catch 'exit
  1023. (let* ((hlchars '((1 . "*") (2 . "/")))
  1024. (ins (make-marker))
  1025. (total-time nil)
  1026. (scope (plist-get params :scope))
  1027. (tostring (plist-get params :tostring))
  1028. (multifile (plist-get params :multifile))
  1029. (header (plist-get params :header))
  1030. (maxlevel (or (plist-get params :maxlevel) 3))
  1031. (step (plist-get params :step))
  1032. (emph (plist-get params :emphasize))
  1033. (ts (plist-get params :tstart))
  1034. (te (plist-get params :tend))
  1035. (block (plist-get params :block))
  1036. (link (plist-get params :link))
  1037. ipos time p level hlc hdl content recalc formula pcol
  1038. cc beg end pos tbl tbl1 range-text rm-file-column scope-is-list st)
  1039. (setq org-clock-file-total-minutes nil)
  1040. (when step
  1041. (unless (or block (and ts te))
  1042. (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
  1043. (org-clocktable-steps params)
  1044. (throw 'exit nil))
  1045. (when block
  1046. (setq cc (org-clock-special-range block nil t)
  1047. ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
  1048. (when (integerp ts) (setq ts (calendar-gregorian-from-absolute ts)))
  1049. (when (integerp te) (setq te (calendar-gregorian-from-absolute te)))
  1050. (when (and ts (listp ts))
  1051. (setq ts (format "%4d-%02d-%02d" (nth 2 ts) (car ts) (nth 1 ts))))
  1052. (when (and te (listp te))
  1053. (setq te (format "%4d-%02d-%02d" (nth 2 te) (car te) (nth 1 te))))
  1054. ;; Now the times are strings we can parse.
  1055. (if ts (setq ts (time-to-seconds
  1056. (apply 'encode-time (org-parse-time-string ts)))))
  1057. (if te (setq te (time-to-seconds
  1058. (apply 'encode-time (org-parse-time-string te)))))
  1059. (move-marker ins (point))
  1060. (setq ipos (point))
  1061. ;; Get the right scope
  1062. (setq pos (point))
  1063. (cond
  1064. ((and scope (listp scope) (symbolp (car scope)))
  1065. (setq scope (eval scope)))
  1066. ((eq scope 'agenda)
  1067. (setq scope (org-agenda-files t)))
  1068. ((eq scope 'agenda-with-archives)
  1069. (setq scope (org-agenda-files t))
  1070. (setq scope (org-add-archive-files scope)))
  1071. ((eq scope 'file-with-archives)
  1072. (setq scope (org-add-archive-files (list (buffer-file-name)))
  1073. rm-file-column t)))
  1074. (setq scope-is-list (and scope (listp scope)))
  1075. (save-restriction
  1076. (cond
  1077. ((not scope))
  1078. ((eq scope 'file) (widen))
  1079. ((eq scope 'subtree) (org-narrow-to-subtree))
  1080. ((eq scope 'tree)
  1081. (while (org-up-heading-safe))
  1082. (org-narrow-to-subtree))
  1083. ((and (symbolp scope) (string-match "^tree\\([0-9]+\\)$"
  1084. (symbol-name scope)))
  1085. (setq level (string-to-number (match-string 1 (symbol-name scope))))
  1086. (catch 'exit
  1087. (while (org-up-heading-safe)
  1088. (looking-at outline-regexp)
  1089. (if (<= (org-reduced-level (funcall outline-level)) level)
  1090. (throw 'exit nil))))
  1091. (org-narrow-to-subtree))
  1092. (scope-is-list
  1093. (let* ((files scope)
  1094. (scope 'agenda)
  1095. (p1 (copy-sequence params))
  1096. file)
  1097. (setq p1 (plist-put p1 :tostring t))
  1098. (setq p1 (plist-put p1 :multifile t))
  1099. (setq p1 (plist-put p1 :scope 'file))
  1100. (org-prepare-agenda-buffers files)
  1101. (while (setq file (pop files))
  1102. (with-current-buffer (find-buffer-visiting file)
  1103. (setq tbl1 (org-dblock-write:clocktable p1))
  1104. (when tbl1
  1105. (push (org-clocktable-add-file
  1106. file
  1107. (concat "| |*File time*|*"
  1108. (org-minutes-to-hh:mm-string
  1109. org-clock-file-total-minutes)
  1110. "*|\n"
  1111. tbl1)) tbl)
  1112. (setq total-time (+ (or total-time 0)
  1113. org-clock-file-total-minutes))))))))
  1114. (goto-char pos)
  1115. (unless scope-is-list
  1116. (org-clock-sum ts te)
  1117. (goto-char (point-min))
  1118. (setq st t)
  1119. (while (or (and (bobp) (prog1 st (setq st nil))
  1120. (get-text-property (point) :org-clock-minutes)
  1121. (setq p (point-min)))
  1122. (setq p (next-single-property-change (point) :org-clock-minutes)))
  1123. (goto-char p)
  1124. (when (setq time (get-text-property p :org-clock-minutes))
  1125. (save-excursion
  1126. (beginning-of-line 1)
  1127. (when (and (looking-at (org-re "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[[:alnum:]_@:]+:\\)?[ \t]*$"))
  1128. (setq level (org-reduced-level
  1129. (- (match-end 1) (match-beginning 1))))
  1130. (<= level maxlevel))
  1131. (setq hlc (if emph (or (cdr (assoc level hlchars)) "") "")
  1132. hdl (if (not link)
  1133. (match-string 2)
  1134. (org-make-link-string
  1135. (format "file:%s::%s"
  1136. (buffer-file-name)
  1137. (save-match-data
  1138. (org-make-org-heading-search-string
  1139. (match-string 2))))
  1140. (match-string 2))))
  1141. (if (and (not multifile) (= level 1)) (push "|-" tbl))
  1142. (push (concat
  1143. "| " (int-to-string level) "|" hlc hdl hlc " |"
  1144. (make-string (1- level) ?|)
  1145. hlc (org-minutes-to-hh:mm-string time) hlc
  1146. " |") tbl))))))
  1147. (setq tbl (nreverse tbl))
  1148. (if tostring
  1149. (if tbl (mapconcat 'identity tbl "\n") nil)
  1150. (goto-char ins)
  1151. (insert-before-markers
  1152. (or header
  1153. (concat
  1154. "Clock summary at ["
  1155. (substring
  1156. (format-time-string (cdr org-time-stamp-formats))
  1157. 1 -1)
  1158. "]"
  1159. (if block (concat ", for " range-text ".") "")
  1160. "\n\n"))
  1161. (if scope-is-list "|File" "")
  1162. "|L|Headline|Time|\n")
  1163. (setq total-time (or total-time org-clock-file-total-minutes))
  1164. (insert-before-markers
  1165. "|-\n|"
  1166. (if scope-is-list "|" "")
  1167. "|"
  1168. "*Total time*| *"
  1169. (org-minutes-to-hh:mm-string (or total-time 0))
  1170. "*|\n|-\n")
  1171. (setq tbl (delq nil tbl))
  1172. (if (and (stringp (car tbl)) (> (length (car tbl)) 1)
  1173. (equal (substring (car tbl) 0 2) "|-"))
  1174. (pop tbl))
  1175. (insert-before-markers (mapconcat
  1176. 'identity (delq nil tbl)
  1177. (if scope-is-list "\n|-\n" "\n")))
  1178. (backward-delete-char 1)
  1179. (if (setq formula (plist-get params :formula))
  1180. (cond
  1181. ((eq formula '%)
  1182. (setq pcol (+ (if scope-is-list 1 0) maxlevel 3))
  1183. (insert
  1184. (format
  1185. "\n#+TBLFM: $%d='(org-clock-time%% @%d$%d $%d..$%d);%%.1f"
  1186. pcol
  1187. 2
  1188. (+ 3 (if scope-is-list 1 0))
  1189. (+ (if scope-is-list 1 0) 3)
  1190. (1- pcol)))
  1191. (setq recalc t))
  1192. ((stringp formula)
  1193. (insert "\n#+TBLFM: " formula)
  1194. (setq recalc t))
  1195. (t (error "invalid formula in clocktable")))
  1196. ;; Should we rescue an old formula?
  1197. (when (stringp (setq content (plist-get params :content)))
  1198. (when (string-match "^\\([ \t]*#\\+TBLFM:.*\\)" content)
  1199. (setq recalc t)
  1200. (insert "\n" (match-string 1 (plist-get params :content)))
  1201. (beginning-of-line 0))))
  1202. (goto-char ipos)
  1203. (skip-chars-forward "^|")
  1204. (org-table-align)
  1205. (when recalc
  1206. (if (eq formula '%)
  1207. (save-excursion (org-table-goto-column pcol nil 'force)
  1208. (insert "%")))
  1209. (org-table-recalculate 'all))
  1210. (when rm-file-column
  1211. (forward-char 1)
  1212. (org-table-delete-column)))))))
  1213. (defun org-clocktable-steps (params)
  1214. (let* ((p1 (copy-sequence params))
  1215. (ts (plist-get p1 :tstart))
  1216. (te (plist-get p1 :tend))
  1217. (step0 (plist-get p1 :step))
  1218. (step (cdr (assoc step0 '((day . 86400) (week . 604800)))))
  1219. (block (plist-get p1 :block))
  1220. cc range-text)
  1221. (when block
  1222. (setq cc (org-clock-special-range block nil t)
  1223. ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
  1224. (if ts (setq ts (time-to-seconds
  1225. (apply 'encode-time (org-parse-time-string ts)))))
  1226. (if te (setq te (time-to-seconds
  1227. (apply 'encode-time (org-parse-time-string te)))))
  1228. (setq p1 (plist-put p1 :header ""))
  1229. (setq p1 (plist-put p1 :step nil))
  1230. (setq p1 (plist-put p1 :block nil))
  1231. (while (< ts te)
  1232. (or (bolp) (insert "\n"))
  1233. (setq p1 (plist-put p1 :tstart (format-time-string
  1234. (org-time-stamp-format nil t)
  1235. (seconds-to-time ts))))
  1236. (setq p1 (plist-put p1 :tend (format-time-string
  1237. (org-time-stamp-format nil t)
  1238. (seconds-to-time (setq ts (+ ts step))))))
  1239. (insert "\n" (if (eq step0 'day) "Daily report: " "Weekly report starting on: ")
  1240. (plist-get p1 :tstart) "\n")
  1241. (org-dblock-write:clocktable p1)
  1242. (re-search-forward "#\\+END:")
  1243. (end-of-line 0))))
  1244. (defun org-clocktable-add-file (file table)
  1245. (if table
  1246. (let ((lines (org-split-string table "\n"))
  1247. (ff (file-name-nondirectory file)))
  1248. (mapconcat 'identity
  1249. (mapcar (lambda (x)
  1250. (if (string-match org-table-dataline-regexp x)
  1251. (concat "|" ff x)
  1252. x))
  1253. lines)
  1254. "\n"))))
  1255. (defun org-clock-time% (total &rest strings)
  1256. "Compute a time fraction in percent.
  1257. TOTAL s a time string like 10:21 specifying the total times.
  1258. STRINGS is a list of strings that should be checked for a time.
  1259. The first string that does have a time will be used.
  1260. This function is made for clock tables."
  1261. (let ((re "\\([0-9]+\\):\\([0-9]+\\)")
  1262. tot s)
  1263. (save-match-data
  1264. (catch 'exit
  1265. (if (not (string-match re total))
  1266. (throw 'exit 0.)
  1267. (setq tot (+ (string-to-number (match-string 2 total))
  1268. (* 60 (string-to-number (match-string 1 total)))))
  1269. (if (= tot 0.) (throw 'exit 0.)))
  1270. (while (setq s (pop strings))
  1271. (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
  1272. (throw 'exit
  1273. (/ (* 100.0 (+ (string-to-number (match-string 2 s))
  1274. (* 60 (string-to-number (match-string 1 s)))))
  1275. tot))))
  1276. 0))))
  1277. (defun org-clock-save ()
  1278. "Persist various clock-related data to disk.
  1279. The details of what will be saved are regulated by the variable
  1280. `org-clock-persist'."
  1281. (when org-clock-persist
  1282. (let (b)
  1283. (with-current-buffer (find-file (expand-file-name org-clock-persist-file))
  1284. (progn
  1285. (delete-region (point-min) (point-max))
  1286. ;;Store clock
  1287. (insert (format ";; org-persist.el - %s at %s\n"
  1288. system-name (format-time-string
  1289. (cdr org-time-stamp-formats))))
  1290. (if (and (setq b (marker-buffer org-clock-marker))
  1291. (setq b (or (buffer-base-buffer b) b))
  1292. (buffer-live-p b)
  1293. (buffer-file-name b)
  1294. (or (not org-clock-persist-query-save)
  1295. (y-or-n-p (concat "Save current clock ("
  1296. (substring-no-properties org-clock-heading)
  1297. ") "))))
  1298. (insert "(setq resume-clock '(\""
  1299. (buffer-file-name (marker-buffer org-clock-marker))
  1300. "\" . " (int-to-string (marker-position org-clock-marker))
  1301. "))\n"))
  1302. ;; Store clocked task history. Tasks are stored reversed to make
  1303. ;; reading simpler
  1304. (when (and org-clock-history (eq org-clock-persist t))
  1305. (insert
  1306. "(setq stored-clock-history '("
  1307. (mapconcat
  1308. (lambda (m)
  1309. (when (and (setq b (marker-buffer m))
  1310. (setq b (or (buffer-base-buffer b) b))
  1311. (buffer-live-p b)
  1312. (buffer-file-name b))
  1313. (concat "(\"" (buffer-file-name b)
  1314. "\" . " (int-to-string (marker-position m))
  1315. ")")))
  1316. (reverse org-clock-history) " ") "))\n"))
  1317. (save-buffer)
  1318. (kill-buffer (current-buffer)))))))
  1319. (defvar org-clock-loaded nil
  1320. "Was the clock file loaded?")
  1321. (defun org-clock-load ()
  1322. "Load clock-related data from disk, maybe resuming a stored clock."
  1323. (when (and org-clock-persist (not org-clock-loaded))
  1324. (let ((filename (expand-file-name org-clock-persist-file))
  1325. (org-clock-in-resume 'auto-restart)
  1326. resume-clock stored-clock-history)
  1327. (if (not (file-readable-p filename))
  1328. (message "Not restoring clock data; %s not found"
  1329. org-clock-persist-file)
  1330. (message "%s" "Restoring clock data")
  1331. (setq org-clock-loaded t)
  1332. (load-file filename)
  1333. ;; load history
  1334. (when stored-clock-history
  1335. (save-window-excursion
  1336. (mapc (lambda (task)
  1337. (if (file-exists-p (car task))
  1338. (org-clock-history-push (cdr task)
  1339. (find-file (car task)))))
  1340. stored-clock-history)))
  1341. ;; resume clock
  1342. (when (and resume-clock org-clock-persist
  1343. (file-exists-p (car resume-clock))
  1344. (or (not org-clock-persist-query-resume)
  1345. (y-or-n-p
  1346. (concat
  1347. "Resume clock ("
  1348. (with-current-buffer (find-file (car resume-clock))
  1349. (save-excursion
  1350. (goto-char (cdr resume-clock))
  1351. (org-back-to-heading t)
  1352. (and (looking-at org-complex-heading-regexp)
  1353. (match-string 4))))
  1354. ") "))))
  1355. (when (file-exists-p (car resume-clock))
  1356. (with-current-buffer (find-file (car resume-clock))
  1357. (goto-char (cdr resume-clock))
  1358. (org-clock-in)
  1359. (if (org-invisible-p)
  1360. (org-show-context)))))))))
  1361. ;;;###autoload
  1362. (defun org-clock-persistence-insinuate ()
  1363. "Set up hooks for clock persistence"
  1364. (add-hook 'org-mode-hook 'org-clock-load)
  1365. (add-hook 'kill-emacs-hook 'org-clock-save))
  1366. (provide 'org-clock)
  1367. ;; arch-tag: 7b42c5d4-9b36-48be-97c0-66a869daed4c
  1368. ;;; org-clock.el ends here