org-clock.el 43 KB

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