org-clock.el 43 KB

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