org-clock.el 42 KB

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