org-mime.el: Fix org-mime-htmlize
[org-mode.git] / lisp / org-clock.el
blobfb290094cfa1de13eef4f36470bc11e8fc7348c4
1 ;;; org-clock.el --- The time clocking code for Org-mode
3 ;; Copyright (C) 2004-2014 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file contains the time clocking code for Org-mode
29 ;;; Code:
31 (eval-when-compile
32 (require 'cl))
33 (require 'org)
35 (declare-function calendar-iso-to-absolute "cal-iso" (&optional date))
36 (declare-function notifications-notify "notifications" (&rest params))
37 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
38 (declare-function org-element-property "org-element" (property element))
39 (declare-function org-element-type "org-element" (element))
40 (declare-function org-table-goto-line "org-table" (n))
41 (defvar org-time-stamp-formats)
42 (defvar org-ts-what)
43 (defvar org-frame-title-format-backup frame-title-format)
45 (defgroup org-clock nil
46 "Options concerning clocking working time in Org-mode."
47 :tag "Org Clock"
48 :group 'org-progress)
50 (defcustom org-clock-into-drawer t
51 "Non-nil when clocking info should be wrapped into a drawer.
53 When non-nil, clocking info will be inserted into the same drawer
54 as log notes (see variable `org-log-into-drawer'), if it exists,
55 or \"LOGBOOK\" otherwise. If necessary, the drawer will be
56 created.
58 When an integer, the drawer is created only when the number of
59 clocking entries in an item reaches or exceeds this value.
61 When a string, it becomes the name of the drawer, ignoring the
62 log notes drawer altogether.
64 Do not check directly this variable in a Lisp program. Call
65 function `org-clock-into-drawer' instead."
66 :group 'org-todo
67 :group 'org-clock
68 :version "25.1"
69 :package-version '(Org . "8.3")
70 :type '(choice
71 (const :tag "Always" t)
72 (const :tag "Only when drawer exists" nil)
73 (integer :tag "When at least N clock entries")
74 (const :tag "Into LOGBOOK drawer" "LOGBOOK")
75 (string :tag "Into Drawer named...")))
77 (defun org-clock-into-drawer ()
78 "Value of `org-clock-into-drawer'. but let properties overrule.
80 If the current entry has or inherits a CLOCK_INTO_DRAWER
81 property, it will be used instead of the default value.
83 Return value is either a string, an integer, or nil."
84 (let ((p (org-entry-get nil "CLOCK_INTO_DRAWER" 'inherit t)))
85 (cond ((equal p "nil") nil)
86 ((equal p "t") (or (org-log-into-drawer) "LOGBOOK"))
87 ((org-string-nw-p p)
88 (if (org-string-match-p "\\`[0-9]+\\'" p) (string-to-number p) p))
89 ((org-string-nw-p org-clock-into-drawer))
90 ((integerp org-clock-into-drawer) org-clock-into-drawer)
91 ((not org-clock-into-drawer) nil)
92 ((org-log-into-drawer))
93 (t "LOGBOOK"))))
95 (defcustom org-clock-out-when-done t
96 "When non-nil, clock will be stopped when the clocked entry is marked DONE.
97 DONE here means any DONE-like state.
98 A nil value means clock will keep running until stopped explicitly with
99 `C-c C-x C-o', or until the clock is started in a different item.
100 Instead of t, this can also be a list of TODO states that should trigger
101 clocking out."
102 :group 'org-clock
103 :type '(choice
104 (const :tag "No" nil)
105 (const :tag "Yes, when done" t)
106 (repeat :tag "State list"
107 (string :tag "TODO keyword"))))
109 (defcustom org-clock-rounding-minutes 0
110 "Rounding minutes when clocking in or out.
111 The default value is 0 so that no rounding is done.
112 When set to a non-integer value, use the car of
113 `org-time-stamp-rounding-minutes', like for setting a time-stamp.
115 E.g. if `org-clock-rounding-minutes' is set to 5, time is 14:47
116 and you clock in: then the clock starts at 14:45. If you clock
117 out within the next 5 minutes, the clock line will be removed;
118 if you clock out 8 minutes after your clocked in, the clock
119 out time will be 14:50."
120 :group 'org-clock
121 :version "24.4"
122 :package-version '(Org . "8.0")
123 :type '(choice
124 (integer :tag "Minutes (0 for no rounding)")
125 (symbol :tag "Use `org-time-stamp-rounding-minutes'" 'same-as-time-stamp)))
127 (defcustom org-clock-out-remove-zero-time-clocks nil
128 "Non-nil means remove the clock line when the resulting time is zero."
129 :group 'org-clock
130 :type 'boolean)
132 (defcustom org-clock-in-switch-to-state nil
133 "Set task to a special todo state while clocking it.
134 The value should be the state to which the entry should be
135 switched. If the value is a function, it must take one
136 parameter (the current TODO state of the item) and return the
137 state to switch it to."
138 :group 'org-clock
139 :group 'org-todo
140 :type '(choice
141 (const :tag "Don't force a state" nil)
142 (string :tag "State")
143 (symbol :tag "Function")))
145 (defcustom org-clock-out-switch-to-state nil
146 "Set task to a special todo state after clocking out.
147 The value should be the state to which the entry should be
148 switched. If the value is a function, it must take one
149 parameter (the current TODO state of the item) and return the
150 state to switch it to."
151 :group 'org-clock
152 :group 'org-todo
153 :type '(choice
154 (const :tag "Don't force a state" nil)
155 (string :tag "State")
156 (symbol :tag "Function")))
158 (defcustom org-clock-history-length 5
159 "Number of clock tasks to remember in history."
160 :group 'org-clock
161 :type 'integer)
163 (defcustom org-clock-goto-may-find-recent-task t
164 "Non-nil means `org-clock-goto' can go to recent task if no active clock."
165 :group 'org-clock
166 :type 'boolean)
168 (defcustom org-clock-heading-function nil
169 "When non-nil, should be a function to create `org-clock-heading'.
170 This is the string shown in the mode line when a clock is running.
171 The function is called with point at the beginning of the headline."
172 :group 'org-clock
173 :type '(choice (const nil) (function)))
175 (defcustom org-clock-string-limit 0
176 "Maximum length of clock strings in the mode line. 0 means no limit."
177 :group 'org-clock
178 :type 'integer)
180 (defcustom org-clock-in-resume nil
181 "If non-nil, resume clock when clocking into task with open clock.
182 When clocking into a task with a clock entry which has not been closed,
183 the clock can be resumed from that point."
184 :group 'org-clock
185 :type 'boolean)
187 (defcustom org-clock-persist nil
188 "When non-nil, save the running clock when Emacs is closed.
189 The clock is resumed when Emacs restarts.
190 When this is t, both the running clock, and the entire clock
191 history are saved. When this is the symbol `clock', only the
192 running clock is saved. When this is the symbol `history', only
193 the clock history is saved.
195 When Emacs restarts with saved clock information, the file containing
196 the running clock as well as all files mentioned in the clock history
197 will be visited.
199 All this depends on running `org-clock-persistence-insinuate' in your
200 Emacs initialization file."
201 :group 'org-clock
202 :type '(choice
203 (const :tag "Just the running clock" clock)
204 (const :tag "Just the history" history)
205 (const :tag "Clock and history" t)
206 (const :tag "No persistence" nil)))
208 (defcustom org-clock-persist-file (convert-standard-filename
209 (concat user-emacs-directory "org-clock-save.el"))
210 "File to save clock data to."
211 :group 'org-clock
212 :type 'string)
214 (defcustom org-clock-persist-query-save nil
215 "When non-nil, ask before saving the current clock on exit."
216 :group 'org-clock
217 :type 'boolean)
219 (defcustom org-clock-persist-query-resume t
220 "When non-nil, ask before resuming any stored clock during load."
221 :group 'org-clock
222 :type 'boolean)
224 (defcustom org-clock-sound nil
225 "Sound to use for notifications.
226 Possible values are:
228 nil No sound played
229 t Standard Emacs beep
230 file name Play this sound file, fall back to beep"
231 :group 'org-clock
232 :type '(choice
233 (const :tag "No sound" nil)
234 (const :tag "Standard beep" t)
235 (file :tag "Play sound file")))
237 (define-obsolete-variable-alias 'org-clock-modeline-total
238 'org-clock-mode-line-total "24.3")
240 (defcustom org-clock-mode-line-total 'auto
241 "Default setting for the time included for the mode line clock.
242 This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
243 Allowed values are:
245 current Only the time in the current instance of the clock
246 today All time clocked into this task today
247 repeat All time clocked into this task since last repeat
248 all All time ever recorded for this task
249 auto Automatically, either `all', or `repeat' for repeating tasks"
250 :group 'org-clock
251 :type '(choice
252 (const :tag "Current clock" current)
253 (const :tag "Today's task time" today)
254 (const :tag "Since last repeat" repeat)
255 (const :tag "All task time" all)
256 (const :tag "Automatically, `all' or since `repeat'" auto)))
258 (org-defvaralias 'org-task-overrun-text 'org-clock-task-overrun-text)
259 (defcustom org-clock-task-overrun-text nil
260 "Extra mode line text to indicate that the clock is overrun.
261 The can be nil to indicate that instead of adding text, the clock time
262 should get a different face (`org-mode-line-clock-overrun').
263 When this is a string, it is prepended to the clock string as an indication,
264 also using the face `org-mode-line-clock-overrun'."
265 :group 'org-clock
266 :version "24.1"
267 :type '(choice
268 (const :tag "Just mark the time string" nil)
269 (string :tag "Text to prepend")))
271 (defcustom org-show-notification-handler nil
272 "Function or program to send notification with.
273 The function or program will be called with the notification
274 string as argument."
275 :group 'org-clock
276 :type '(choice
277 (const nil)
278 (string :tag "Program")
279 (function :tag "Function")))
281 (defgroup org-clocktable nil
282 "Options concerning the clock table in Org-mode."
283 :tag "Org Clock Table"
284 :group 'org-clock)
286 (defcustom org-clocktable-defaults
287 (list
288 :maxlevel 2
289 :lang (or (org-bound-and-true-p org-export-default-language) "en")
290 :scope 'file
291 :block nil
292 :wstart 1
293 :mstart 1
294 :tstart nil
295 :tend nil
296 :step nil
297 :stepskip0 nil
298 :fileskip0 nil
299 :tags nil
300 :emphasize nil
301 :link nil
302 :narrow '40!
303 :indent t
304 :formula nil
305 :timestamp nil
306 :level nil
307 :tcolumns nil
308 :formatter nil)
309 "Default properties for clock tables."
310 :group 'org-clock
311 :version "24.1"
312 :type 'plist)
314 (defcustom org-clock-clocktable-formatter 'org-clocktable-write-default
315 "Function to turn clocking data into a table.
316 For more information, see `org-clocktable-write-default'."
317 :group 'org-clocktable
318 :version "24.1"
319 :type 'function)
321 ;; FIXME: translate es and nl last string "Clock summary at"
322 (defcustom org-clock-clocktable-language-setup
323 '(("en" "File" "L" "Timestamp" "Headline" "Time" "ALL" "Total time" "File time" "Clock summary at")
324 ("es" "Archivo" "N" "Fecha y hora" "Tarea" "Tiempo" "TODO" "Tiempo total" "Tiempo archivo" "Clock summary at")
325 ("fr" "Fichier" "N" "Horodatage" "En-tête" "Durée" "TOUT" "Durée totale" "Durée fichier" "Horodatage sommaire à")
326 ("nl" "Bestand" "N" "Tijdstip" "Hoofding" "Duur" "ALLES" "Totale duur" "Bestandstijd" "Clock summary at"))
327 "Terms used in clocktable, translated to different languages."
328 :group 'org-clocktable
329 :version "24.1"
330 :type 'alist)
332 (defcustom org-clock-clocktable-default-properties '(:maxlevel 2 :scope file)
333 "Default properties for new clocktables.
334 These will be inserted into the BEGIN line, to make it easy for users to
335 play with them."
336 :group 'org-clocktable
337 :type 'plist)
339 (defcustom org-clock-idle-time nil
340 "When non-nil, resolve open clocks if the user is idle more than X minutes."
341 :group 'org-clock
342 :type '(choice
343 (const :tag "Never" nil)
344 (integer :tag "After N minutes")))
346 (defcustom org-clock-auto-clock-resolution 'when-no-clock-is-running
347 "When to automatically resolve open clocks found in Org buffers."
348 :group 'org-clock
349 :type '(choice
350 (const :tag "Never" nil)
351 (const :tag "Always" t)
352 (const :tag "When no clock is running" when-no-clock-is-running)))
354 (defcustom org-clock-report-include-clocking-task nil
355 "When non-nil, include the current clocking task time in clock reports."
356 :group 'org-clock
357 :version "24.1"
358 :type 'boolean)
360 (defcustom org-clock-resolve-expert nil
361 "Non-nil means do not show the splash buffer with the clock resolver."
362 :group 'org-clock
363 :version "24.1"
364 :type 'boolean)
366 (defcustom org-clock-continuously nil
367 "Non-nil means to start clocking from the last clock-out time, if any."
368 :type 'boolean
369 :version "24.1"
370 :group 'org-clock)
372 (defcustom org-clock-total-time-cell-format "*%s*"
373 "Format string for the total time cells."
374 :group 'org-clock
375 :version "24.1"
376 :type 'string)
378 (defcustom org-clock-file-time-cell-format "*%s*"
379 "Format string for the file time cells."
380 :group 'org-clock
381 :version "24.1"
382 :type 'string)
384 (defcustom org-clock-clocked-in-display 'mode-line
385 "When clocked in for a task, org-mode can display the current
386 task and accumulated time in the mode line and/or frame title.
387 Allowed values are:
389 both displays in both mode line and frame title
390 mode-line displays only in mode line (default)
391 frame-title displays only in frame title
392 nil current clock is not displayed"
393 :group 'org-clock
394 :type '(choice
395 (const :tag "Mode line" mode-line)
396 (const :tag "Frame title" frame-title)
397 (const :tag "Both" both)
398 (const :tag "None" nil)))
400 (defcustom org-clock-frame-title-format '(t org-mode-line-string)
401 "The value for `frame-title-format' when clocking in.
403 When `org-clock-clocked-in-display' is set to 'frame-title
404 or 'both, clocking in will replace `frame-title-format' with
405 this value. Clocking out will restore `frame-title-format'.
407 `org-frame-title-string' is a format string using the same
408 specifications than `frame-title-format', which see."
409 :version "24.1"
410 :group 'org-clock
411 :type 'sexp)
413 (defcustom org-clock-x11idle-program-name "x11idle"
414 "Name of the program which prints X11 idle time in milliseconds.
416 You can find x11idle.c in the contrib/scripts directory of the
417 Org git distribution. Or, you can do:
419 sudo apt-get install xprintidle
421 if you are using Debian."
422 :group 'org-clock
423 :version "24.4"
424 :package-version '(Org . "8.0")
425 :type 'string)
427 (defcustom org-clock-goto-before-context 2
428 "Number of lines of context to display before currently clocked-in entry.
429 This applies when using `org-clock-goto'."
430 :group 'org-clock
431 :type 'integer)
433 (defcustom org-clock-display-default-range 'thisyear
434 "Default range when displaying clocks with `org-clock-display'."
435 :group 'org-clock
436 :type '(choice (const today)
437 (const yesterday)
438 (const thisweek)
439 (const lastweek)
440 (const thismonth)
441 (const lastmonth)
442 (const thisyear)
443 (const lastyear)
444 (const untilnow)
445 (const :tag "Select range interactively" interactive)))
447 (defvar org-clock-in-prepare-hook nil
448 "Hook run when preparing the clock.
449 This hook is run before anything happens to the task that
450 you want to clock in. For example, you can use this hook
451 to add an effort property.")
452 (defvar org-clock-in-hook nil
453 "Hook run when starting the clock.")
454 (defvar org-clock-out-hook nil
455 "Hook run when stopping the current clock.")
457 (defvar org-clock-cancel-hook nil
458 "Hook run when canceling the current clock.")
459 (defvar org-clock-goto-hook nil
460 "Hook run when selecting the currently clocked-in entry.")
461 (defvar org-clock-has-been-used nil
462 "Has the clock been used during the current Emacs session?")
464 (defconst org-clock--oldest-date
465 (let* ((dichotomy
466 (lambda (min max pred)
467 (if (funcall pred min) min
468 (incf min)
469 (while (> (- max min) 1)
470 (let ((mean (+ (ash min -1) (ash max -1) (logand min max 1))))
471 (if (funcall pred mean) (setq max mean) (setq min mean)))))
472 max))
473 (high
474 (funcall dichotomy
475 most-negative-fixnum
477 (lambda (m) (ignore-errors (decode-time (list m 0))))))
478 (low
479 (funcall dichotomy
480 most-negative-fixnum
482 (lambda (m) (ignore-errors (decode-time (list high m)))))))
483 (list high low))
484 "Internal time for oldest date representable on the system.")
486 ;;; The clock for measuring work time.
488 (defvar org-mode-line-string "")
489 (put 'org-mode-line-string 'risky-local-variable t)
491 (defvar org-clock-mode-line-timer nil)
492 (defvar org-clock-idle-timer nil)
493 (defvar org-clock-heading) ; defined in org.el
494 (defvar org-clock-start-time "")
496 (defvar org-clock-leftover-time nil
497 "If non-nil, user canceled a clock; this is when leftover time started.")
499 (defvar org-clock-effort ""
500 "Effort estimate of the currently clocking task.")
502 (defvar org-clock-total-time nil
503 "Holds total time, spent previously on currently clocked item.
504 This does not include the time in the currently running clock.")
506 (defvar org-clock-history nil
507 "List of marker pointing to recent clocked tasks.")
509 (defvar org-clock-default-task (make-marker)
510 "Marker pointing to the default task that should clock time.
511 The clock can be made to switch to this task after clocking out
512 of a different task.")
514 (defvar org-clock-interrupted-task (make-marker)
515 "Marker pointing to the task that has been interrupted by the current clock.")
517 (defvar org-clock-mode-line-map (make-sparse-keymap))
518 (define-key org-clock-mode-line-map [mode-line mouse-2] 'org-clock-goto)
519 (define-key org-clock-mode-line-map [mode-line mouse-1] 'org-clock-menu)
521 (defun org-clock-menu ()
522 (interactive)
523 (popup-menu
524 '("Clock"
525 ["Clock out" org-clock-out t]
526 ["Change effort estimate" org-clock-modify-effort-estimate t]
527 ["Go to clock entry" org-clock-goto t]
528 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"])))
530 (defun org-clock-history-push (&optional pos buffer)
531 "Push a marker to the clock history."
532 (setq org-clock-history-length (max 1 (min 35 org-clock-history-length)))
533 (let ((m (move-marker (make-marker)
534 (or pos (point)) (org-base-buffer
535 (or buffer (current-buffer)))))
536 n l)
537 (while (setq n (member m org-clock-history))
538 (move-marker (car n) nil))
539 (setq org-clock-history
540 (delq nil
541 (mapcar (lambda (x) (if (marker-buffer x) x nil))
542 org-clock-history)))
543 (when (>= (setq l (length org-clock-history)) org-clock-history-length)
544 (setq org-clock-history
545 (nreverse
546 (nthcdr (- l org-clock-history-length -1)
547 (nreverse org-clock-history)))))
548 (push m org-clock-history)))
550 (defun org-clock-save-markers-for-cut-and-paste (beg end)
551 "Save relative positions of markers in region."
552 (org-check-and-save-marker org-clock-marker beg end)
553 (org-check-and-save-marker org-clock-hd-marker beg end)
554 (org-check-and-save-marker org-clock-default-task beg end)
555 (org-check-and-save-marker org-clock-interrupted-task beg end)
556 (mapc (lambda (m) (org-check-and-save-marker m beg end))
557 org-clock-history))
559 (defun org-clocking-buffer ()
560 "Return the clocking buffer if we are currently clocking a task or nil."
561 (marker-buffer org-clock-marker))
563 (defun org-clocking-p ()
564 "Return t when clocking a task."
565 (not (equal (org-clocking-buffer) nil)))
567 (defvar org-clock-before-select-task-hook nil
568 "Hook called in task selection just before prompting the user.")
570 (defun org-clock-select-task (&optional prompt)
571 "Select a task that was recently associated with clocking."
572 (interactive)
573 (let (och chl sel-list rpl (i 0) s)
574 ;; Remove successive dups from the clock history to consider
575 (mapc (lambda (c) (if (not (equal c (car och))) (push c och)))
576 org-clock-history)
577 (setq och (reverse och) chl (length och))
578 (if (zerop chl)
579 (user-error "No recent clock")
580 (save-window-excursion
581 (org-switch-to-buffer-other-window
582 (get-buffer-create "*Clock Task Select*"))
583 (erase-buffer)
584 (when (marker-buffer org-clock-default-task)
585 (insert (org-add-props "Default Task\n" nil 'face 'bold))
586 (setq s (org-clock-insert-selection-line ?d org-clock-default-task))
587 (push s sel-list))
588 (when (marker-buffer org-clock-interrupted-task)
589 (insert (org-add-props "The task interrupted by starting the last one\n" nil 'face 'bold))
590 (setq s (org-clock-insert-selection-line ?i org-clock-interrupted-task))
591 (push s sel-list))
592 (when (org-clocking-p)
593 (insert (org-add-props "Current Clocking Task\n" nil 'face 'bold))
594 (setq s (org-clock-insert-selection-line ?c org-clock-marker))
595 (push s sel-list))
596 (insert (org-add-props "Recent Tasks\n" nil 'face 'bold))
597 (mapc
598 (lambda (m)
599 (when (marker-buffer m)
600 (setq i (1+ i)
601 s (org-clock-insert-selection-line
602 (if (< i 10)
603 (+ i ?0)
604 (+ i (- ?A 10))) m))
605 (if (fboundp 'int-to-char) (setf (car s) (int-to-char (car s))))
606 (push s sel-list)))
607 och)
608 (run-hooks 'org-clock-before-select-task-hook)
609 (goto-char (point-min))
610 ;; Set min-height relatively to circumvent a possible but in
611 ;; `fit-window-to-buffer'
612 (fit-window-to-buffer nil nil (if (< chl 10) chl (+ 5 chl)))
613 (message (or prompt "Select task for clocking:"))
614 (setq cursor-type nil rpl (read-char-exclusive))
615 (kill-buffer)
616 (cond
617 ((eq rpl ?q) nil)
618 ((eq rpl ?x) nil)
619 ((assoc rpl sel-list) (cdr (assoc rpl sel-list)))
620 (t (user-error "Invalid task choice %c" rpl)))))))
622 (defun org-clock-insert-selection-line (i marker)
623 "Insert a line for the clock selection menu.
624 And return a cons cell with the selection character integer and the marker
625 pointing to it."
626 (when (marker-buffer marker)
627 (let (file cat task heading prefix)
628 (with-current-buffer (org-base-buffer (marker-buffer marker))
629 (save-excursion
630 (save-restriction
631 (widen)
632 (ignore-errors
633 (goto-char marker)
634 (setq file (buffer-file-name (marker-buffer marker))
635 cat (org-get-category)
636 heading (org-get-heading 'notags)
637 prefix (save-excursion
638 (org-back-to-heading t)
639 (looking-at org-outline-regexp)
640 (match-string 0))
641 task (substring
642 (org-fontify-like-in-org-mode
643 (concat prefix heading)
644 org-odd-levels-only)
645 (length prefix)))))))
646 (when (and cat task)
647 (insert (format "[%c] %-12s %s\n" i cat task))
648 (cons i marker)))))
650 (defvar org-clock-task-overrun nil
651 "Internal flag indicating if the clock has overrun the planned time.")
652 (defvar org-clock-update-period 60
653 "Number of seconds between mode line clock string updates.")
655 (defun org-clock-get-clock-string ()
656 "Form a clock-string, that will be shown in the mode line.
657 If an effort estimate was defined for the current item, use
658 01:30/01:50 format (clocked/estimated).
659 If not, show simply the clocked time like 01:50."
660 (let ((clocked-time (org-clock-get-clocked-time)))
661 (if org-clock-effort
662 (let* ((effort-in-minutes
663 (org-duration-string-to-minutes org-clock-effort))
664 (work-done-str
665 (org-propertize
666 (org-minutes-to-clocksum-string clocked-time)
667 'face (if (and org-clock-task-overrun (not org-clock-task-overrun-text))
668 'org-mode-line-clock-overrun 'org-mode-line-clock)))
669 (effort-str (org-minutes-to-clocksum-string effort-in-minutes))
670 (clockstr (org-propertize
671 (concat " [%s/" effort-str
672 "] (" (replace-regexp-in-string "%" "%%" org-clock-heading) ")")
673 'face 'org-mode-line-clock)))
674 (format clockstr work-done-str))
675 (org-propertize (concat "[" (org-minutes-to-clocksum-string clocked-time)
676 (format " (%s)" org-clock-heading) "]")
677 'face 'org-mode-line-clock))))
679 (defun org-clock-get-last-clock-out-time ()
680 "Get the last clock-out time for the current subtree."
681 (save-excursion
682 (let ((end (save-excursion (org-end-of-subtree))))
683 (when (re-search-forward (concat org-clock-string
684 ".*\\]--\\(\\[[^]]+\\]\\)") end t)
685 (org-time-string-to-time (match-string 1))))))
687 (defun org-clock-update-mode-line ()
688 (if org-clock-effort
689 (org-clock-notify-once-if-expired)
690 (setq org-clock-task-overrun nil))
691 (setq org-mode-line-string
692 (org-propertize
693 (let ((clock-string (org-clock-get-clock-string))
694 (help-text "Org-mode clock is running.\nmouse-1 shows a menu\nmouse-2 will jump to task"))
695 (if (and (> org-clock-string-limit 0)
696 (> (length clock-string) org-clock-string-limit))
697 (org-propertize
698 (substring clock-string 0 org-clock-string-limit)
699 'help-echo (concat help-text ": " org-clock-heading))
700 (org-propertize clock-string 'help-echo help-text)))
701 'local-map org-clock-mode-line-map
702 'mouse-face (if (featurep 'xemacs) 'highlight 'mode-line-highlight)))
703 (if (and org-clock-task-overrun org-clock-task-overrun-text)
704 (setq org-mode-line-string
705 (concat (org-propertize
706 org-clock-task-overrun-text
707 'face 'org-mode-line-clock-overrun) org-mode-line-string)))
708 (force-mode-line-update))
710 (defun org-clock-get-clocked-time ()
711 "Get the clocked time for the current item in minutes.
712 The time returned includes the time spent on this task in
713 previous clocking intervals."
714 (let ((currently-clocked-time
715 (floor (- (org-float-time)
716 (org-float-time org-clock-start-time)) 60)))
717 (+ currently-clocked-time (or org-clock-total-time 0))))
719 (defun org-clock-modify-effort-estimate (&optional value)
720 "Add to or set the effort estimate of the item currently being clocked.
721 VALUE can be a number of minutes, or a string with format hh:mm or mm.
722 When the string starts with a + or a - sign, the current value of the effort
723 property will be changed by that amount. If the effort value is expressed
724 as an `org-effort-durations' (e.g. \"3h\"), the modified value will be
725 converted to a hh:mm duration.
727 This command will update the \"Effort\" property of the currently
728 clocked item, and the value displayed in the mode line."
729 (interactive)
730 (if (org-clock-is-active)
731 (let ((current org-clock-effort) sign)
732 (unless value
733 ;; Prompt user for a value or a change
734 (setq value
735 (read-string
736 (format "Set effort (hh:mm or mm%s): "
737 (if current
738 (format ", prefix + to add to %s" org-clock-effort)
739 "")))))
740 (when (stringp value)
741 ;; A string. See if it is a delta
742 (setq sign (string-to-char value))
743 (if (member sign '(?- ?+))
744 (setq current (org-duration-string-to-minutes current)
745 value (substring value 1))
746 (setq current 0))
747 (setq value (org-duration-string-to-minutes value))
748 (if (equal ?- sign)
749 (setq value (- current value))
750 (if (equal ?+ sign) (setq value (+ current value)))))
751 (setq value (max 0 value)
752 org-clock-effort (org-minutes-to-clocksum-string value))
753 (org-entry-put org-clock-marker "Effort" org-clock-effort)
754 (org-clock-update-mode-line)
755 (message "Effort is now %s" org-clock-effort))
756 (message "Clock is not currently active")))
758 (defvar org-clock-notification-was-shown nil
759 "Shows if we have shown notification already.")
761 (defun org-clock-notify-once-if-expired ()
762 "Show notification if we spent more time than we estimated before.
763 Notification is shown only once."
764 (when (org-clocking-p)
765 (let ((effort-in-minutes (org-duration-string-to-minutes org-clock-effort))
766 (clocked-time (org-clock-get-clocked-time)))
767 (if (setq org-clock-task-overrun
768 (if (or (null effort-in-minutes) (zerop effort-in-minutes))
770 (>= clocked-time effort-in-minutes)))
771 (unless org-clock-notification-was-shown
772 (setq org-clock-notification-was-shown t)
773 (org-notify
774 (format "Task '%s' should be finished by now. (%s)"
775 org-clock-heading org-clock-effort) org-clock-sound))
776 (setq org-clock-notification-was-shown nil)))))
778 (defun org-notify (notification &optional play-sound)
779 "Send a NOTIFICATION and maybe PLAY-SOUND.
780 If PLAY-SOUND is non-nil, it overrides `org-clock-sound'."
781 (org-show-notification notification)
782 (if play-sound (org-clock-play-sound play-sound)))
784 (defun org-show-notification (notification)
785 "Show notification.
786 Use `org-show-notification-handler' if defined,
787 use libnotify if available, or fall back on a message."
788 (cond ((functionp org-show-notification-handler)
789 (funcall org-show-notification-handler notification))
790 ((stringp org-show-notification-handler)
791 (start-process "emacs-timer-notification" nil
792 org-show-notification-handler notification))
793 ((fboundp 'notifications-notify)
794 (notifications-notify
795 :title "Org-mode message"
796 :body notification
797 ;; FIXME how to link to the Org icon?
798 ;; :app-icon "~/.emacs.d/icons/mail.png"
799 :urgency 'low))
800 ((executable-find "notify-send")
801 (start-process "emacs-timer-notification" nil
802 "notify-send" notification))
803 ;; Maybe the handler will send a message, so only use message as
804 ;; a fall back option
805 (t (message "%s" notification))))
807 (defun org-clock-play-sound (&optional clock-sound)
808 "Play sound as configured by `org-clock-sound'.
809 Use alsa's aplay tool if available.
810 If CLOCK-SOUND is non-nil, it overrides `org-clock-sound'."
811 (let ((org-clock-sound (or clock-sound org-clock-sound)))
812 (cond
813 ((not org-clock-sound))
814 ((eq org-clock-sound t) (beep t) (beep t))
815 ((stringp org-clock-sound)
816 (let ((file (expand-file-name org-clock-sound)))
817 (if (file-exists-p file)
818 (if (executable-find "aplay")
819 (start-process "org-clock-play-notification" nil
820 "aplay" file)
821 (condition-case nil
822 (play-sound-file file)
823 (error (beep t) (beep t))))))))))
825 (defvar org-clock-mode-line-entry nil
826 "Information for the mode line about the running clock.")
828 (defun org-find-open-clocks (file)
829 "Search through the given file and find all open clocks."
830 (let ((buf (or (get-file-buffer file)
831 (find-file-noselect file)))
832 (org-clock-re (concat org-clock-string " \\(\\[.*?\\]\\)$"))
833 clocks)
834 (with-current-buffer buf
835 (save-excursion
836 (goto-char (point-min))
837 (while (re-search-forward org-clock-re nil t)
838 (push (cons (copy-marker (match-end 1) t)
839 (org-time-string-to-time (match-string 1))) clocks))))
840 clocks))
842 (defsubst org-is-active-clock (clock)
843 "Return t if CLOCK is the currently active clock."
844 (and (org-clock-is-active)
845 (= org-clock-marker (car clock))))
847 (defmacro org-with-clock-position (clock &rest forms)
848 "Evaluate FORMS with CLOCK as the current active clock."
849 `(with-current-buffer (marker-buffer (car ,clock))
850 (save-excursion
851 (save-restriction
852 (widen)
853 (goto-char (car ,clock))
854 (beginning-of-line)
855 ,@forms))))
856 (def-edebug-spec org-with-clock-position (form body))
857 (put 'org-with-clock-position 'lisp-indent-function 1)
859 (defmacro org-with-clock (clock &rest forms)
860 "Evaluate FORMS with CLOCK as the current active clock.
861 This macro also protects the current active clock from being altered."
862 `(org-with-clock-position ,clock
863 (let ((org-clock-start-time (cdr ,clock))
864 (org-clock-total-time)
865 (org-clock-history)
866 (org-clock-effort)
867 (org-clock-marker (car ,clock))
868 (org-clock-hd-marker (save-excursion
869 (outline-back-to-heading t)
870 (point-marker))))
871 ,@forms)))
872 (def-edebug-spec org-with-clock (form body))
873 (put 'org-with-clock 'lisp-indent-function 1)
875 (defsubst org-clock-clock-in (clock &optional resume start-time)
876 "Clock in to the clock located by CLOCK.
877 If necessary, clock-out of the currently active clock."
878 (org-with-clock-position clock
879 (let ((org-clock-in-resume (or resume org-clock-in-resume)))
880 (org-clock-in nil start-time))))
882 (defsubst org-clock-clock-out (clock &optional fail-quietly at-time)
883 "Clock out of the clock located by CLOCK."
884 (let ((temp (copy-marker (car clock)
885 (marker-insertion-type (car clock)))))
886 (if (org-is-active-clock clock)
887 (org-clock-out nil fail-quietly at-time)
888 (org-with-clock clock
889 (org-clock-out nil fail-quietly at-time)))
890 (setcar clock temp)))
892 (defsubst org-clock-clock-cancel (clock)
893 "Cancel the clock located by CLOCK."
894 (let ((temp (copy-marker (car clock)
895 (marker-insertion-type (car clock)))))
896 (if (org-is-active-clock clock)
897 (org-clock-cancel)
898 (org-with-clock clock
899 (org-clock-cancel)))
900 (setcar clock temp)))
902 (defvar org-clock-clocking-in nil)
903 (defvar org-clock-resolving-clocks nil)
904 (defvar org-clock-resolving-clocks-due-to-idleness nil)
906 (defun org-clock-resolve-clock (clock resolve-to clock-out-time
907 &optional close-p restart-p fail-quietly)
908 "Resolve `CLOCK' given the time `RESOLVE-TO', and the present.
909 `CLOCK' is a cons cell of the form (MARKER START-TIME)."
910 (let ((org-clock-resolving-clocks t))
911 (cond
912 ((null resolve-to)
913 (org-clock-clock-cancel clock)
914 (if (and restart-p (not org-clock-clocking-in))
915 (org-clock-clock-in clock)))
917 ((eq resolve-to 'now)
918 (if restart-p
919 (error "RESTART-P is not valid here"))
920 (if (or close-p org-clock-clocking-in)
921 (org-clock-clock-out clock fail-quietly)
922 (unless (org-is-active-clock clock)
923 (org-clock-clock-in clock t))))
925 ((not (time-less-p resolve-to (current-time)))
926 (error "RESOLVE-TO must refer to a time in the past"))
929 (if restart-p
930 (error "RESTART-P is not valid here"))
931 (org-clock-clock-out clock fail-quietly (or clock-out-time
932 resolve-to))
933 (unless org-clock-clocking-in
934 (if close-p
935 (setq org-clock-leftover-time (and (null clock-out-time)
936 resolve-to))
937 (org-clock-clock-in clock nil (and clock-out-time
938 resolve-to))))))))
940 (defun org-clock-jump-to-current-clock (&optional effective-clock)
941 (interactive)
942 (let ((drawer (org-clock-into-drawer))
943 (clock (or effective-clock (cons org-clock-marker
944 org-clock-start-time))))
945 (unless (marker-buffer (car clock))
946 (error "No clock is currently running"))
947 (org-with-clock clock (org-clock-goto))
948 (with-current-buffer (marker-buffer (car clock))
949 (goto-char (car clock))
950 (when drawer
951 (org-with-wide-buffer
952 (let ((drawer-re (format "^[ \t]*:%s:[ \t]*$"
953 (regexp-quote (or drawer "LOGBOOK"))))
954 (beg (save-excursion (outline-back-to-heading t) (point))))
955 (catch 'exit
956 (while (re-search-backward drawer-re beg t)
957 (let ((element (org-element-at-point)))
958 (when (eq (org-element-type element) 'drawer)
959 (when (> (org-element-property :end element) (car clock))
960 (org-flag-drawer nil element))
961 (throw 'exit nil)))))))))))
963 (defun org-clock-resolve (clock &optional prompt-fn last-valid fail-quietly)
964 "Resolve an open org-mode clock.
965 An open clock was found, with `dangling' possibly being non-nil.
966 If this function was invoked with a prefix argument, non-dangling
967 open clocks are ignored. The given clock requires some sort of
968 user intervention to resolve it, either because a clock was left
969 dangling or due to an idle timeout. The clock resolution can
970 either be:
972 (a) deleted, the user doesn't care about the clock
973 (b) restarted from the current time (if no other clock is open)
974 (c) closed, giving the clock X minutes
975 (d) closed and then restarted
976 (e) resumed, as if the user had never left
978 The format of clock is (CONS MARKER START-TIME), where MARKER
979 identifies the buffer and position the clock is open at (and
980 thus, the heading it's under), and START-TIME is when the clock
981 was started."
982 (assert clock)
983 (let* ((ch
984 (save-window-excursion
985 (save-excursion
986 (unless org-clock-resolving-clocks-due-to-idleness
987 (org-clock-jump-to-current-clock clock))
988 (unless org-clock-resolve-expert
989 (with-output-to-temp-buffer "*Org Clock*"
990 (princ "Select a Clock Resolution Command:
992 i/q Ignore this question; the same as keeping all the idle time.
994 k/K Keep X minutes of the idle time (default is all). If this
995 amount is less than the default, you will be clocked out
996 that many minutes after the time that idling began, and then
997 clocked back in at the present time.
999 g/G Indicate that you \"got back\" X minutes ago. This is quite
1000 different from 'k': it clocks you out from the beginning of
1001 the idle period and clock you back in X minutes ago.
1003 s/S Subtract the idle time from the current clock. This is the
1004 same as keeping 0 minutes.
1006 C Cancel the open timer altogether. It will be as though you
1007 never clocked in.
1009 j/J Jump to the current clock, to make manual adjustments.
1011 For all these options, using uppercase makes your final state
1012 to be CLOCKED OUT.")))
1013 (org-fit-window-to-buffer (get-buffer-window "*Org Clock*"))
1014 (let (char-pressed)
1015 (when (featurep 'xemacs)
1016 (message (concat (funcall prompt-fn clock)
1017 " [jkKgGsScCiq]? "))
1018 (setq char-pressed (read-char-exclusive)))
1019 (while (or (null char-pressed)
1020 (and (not (memq char-pressed
1021 '(?k ?K ?g ?G ?s ?S ?C
1022 ?j ?J ?i ?q)))
1023 (or (ding) t)))
1024 (setq char-pressed
1025 (read-char (concat (funcall prompt-fn clock)
1026 " [jkKgGSscCiq]? ")
1027 nil 45)))
1028 (and (not (memq char-pressed '(?i ?q))) char-pressed)))))
1029 (default
1030 (floor (/ (org-float-time
1031 (time-subtract (current-time) last-valid)) 60)))
1032 (keep
1033 (and (memq ch '(?k ?K))
1034 (read-number "Keep how many minutes? " default)))
1035 (gotback
1036 (and (memq ch '(?g ?G))
1037 (read-number "Got back how many minutes ago? " default)))
1038 (subtractp (memq ch '(?s ?S)))
1039 (barely-started-p (< (- (org-float-time last-valid)
1040 (org-float-time (cdr clock))) 45))
1041 (start-over (and subtractp barely-started-p)))
1042 (cond
1043 ((memq ch '(?j ?J))
1044 (if (eq ch ?J)
1045 (org-clock-resolve-clock clock 'now nil t nil fail-quietly))
1046 (org-clock-jump-to-current-clock clock))
1047 ((or (null ch)
1048 (not (memq ch '(?k ?K ?g ?G ?s ?S ?C))))
1049 (message ""))
1051 (org-clock-resolve-clock
1052 clock (cond
1053 ((or (eq ch ?C)
1054 ;; If the time on the clock was less than a minute before
1055 ;; the user went away, and they've ask to subtract all the
1056 ;; time...
1057 start-over)
1058 nil)
1059 ((or subtractp
1060 (and gotback (= gotback 0)))
1061 last-valid)
1062 ((or (and keep (= keep default))
1063 (and gotback (= gotback default)))
1064 'now)
1065 (keep
1066 (time-add last-valid (seconds-to-time (* 60 keep))))
1067 (gotback
1068 (time-subtract (current-time)
1069 (seconds-to-time (* 60 gotback))))
1071 (error "Unexpected, please report this as a bug")))
1072 (and gotback last-valid)
1073 (memq ch '(?K ?G ?S))
1074 (and start-over
1075 (not (memq ch '(?K ?G ?S ?C))))
1076 fail-quietly)))))
1078 ;;;###autoload
1079 (defun org-resolve-clocks (&optional only-dangling-p prompt-fn last-valid)
1080 "Resolve all currently open org-mode clocks.
1081 If `only-dangling-p' is non-nil, only ask to resolve dangling
1082 \(i.e., not currently open and valid) clocks."
1083 (interactive "P")
1084 (unless org-clock-resolving-clocks
1085 (let ((org-clock-resolving-clocks t))
1086 (dolist (file (org-files-list))
1087 (let ((clocks (org-find-open-clocks file)))
1088 (dolist (clock clocks)
1089 (let ((dangling (or (not (org-clock-is-active))
1090 (/= (car clock) org-clock-marker))))
1091 (if (or (not only-dangling-p) dangling)
1092 (org-clock-resolve
1093 clock
1094 (or prompt-fn
1095 (function
1096 (lambda (clock)
1097 (format
1098 "Dangling clock started %d mins ago"
1099 (floor
1100 (/ (- (org-float-time (current-time))
1101 (org-float-time (cdr clock))) 60))))))
1102 (or last-valid
1103 (cdr clock)))))))))))
1105 (defun org-emacs-idle-seconds ()
1106 "Return the current Emacs idle time in seconds, or nil if not idle."
1107 (let ((idle-time (current-idle-time)))
1108 (if idle-time
1109 (org-float-time idle-time)
1110 0)))
1112 (defun org-mac-idle-seconds ()
1113 "Return the current Mac idle time in seconds."
1114 (string-to-number (shell-command-to-string "ioreg -c IOHIDSystem | perl -ane 'if (/Idle/) {$idle=(pop @F)/1000000000; print $idle; last}'")))
1116 (defvar org-x11idle-exists-p
1117 ;; Check that x11idle exists
1118 (and (eq window-system 'x)
1119 (eq 0 (call-process-shell-command
1120 (format "command -v %s" org-clock-x11idle-program-name)))
1121 ;; Check that x11idle can retrieve the idle time
1122 ;; FIXME: Why "..-shell-command" rather than just `call-process'?
1123 (eq 0 (call-process-shell-command org-clock-x11idle-program-name))))
1125 (defun org-x11-idle-seconds ()
1126 "Return the current X11 idle time in seconds."
1127 (/ (string-to-number (shell-command-to-string org-clock-x11idle-program-name)) 1000))
1129 (defun org-user-idle-seconds ()
1130 "Return the number of seconds the user has been idle for.
1131 This routine returns a floating point number."
1132 (cond
1133 ((eq system-type 'darwin)
1134 (org-mac-idle-seconds))
1135 ((and (eq window-system 'x) org-x11idle-exists-p)
1136 (org-x11-idle-seconds))
1138 (org-emacs-idle-seconds))))
1140 (defvar org-clock-user-idle-seconds)
1142 (defun org-resolve-clocks-if-idle ()
1143 "Resolve all currently open org-mode clocks.
1144 This is performed after `org-clock-idle-time' minutes, to check
1145 if the user really wants to stay clocked in after being idle for
1146 so long."
1147 (when (and org-clock-idle-time (not org-clock-resolving-clocks)
1148 org-clock-marker (marker-buffer org-clock-marker))
1149 (let* ((org-clock-user-idle-seconds (org-user-idle-seconds))
1150 (org-clock-user-idle-start
1151 (time-subtract (current-time)
1152 (seconds-to-time org-clock-user-idle-seconds)))
1153 (org-clock-resolving-clocks-due-to-idleness t))
1154 (if (> org-clock-user-idle-seconds (* 60 org-clock-idle-time))
1155 (org-clock-resolve
1156 (cons org-clock-marker
1157 org-clock-start-time)
1158 (function
1159 (lambda (clock)
1160 (format "Clocked in & idle for %.1f mins"
1161 (/ (org-float-time
1162 (time-subtract (current-time)
1163 org-clock-user-idle-start))
1164 60.0))))
1165 org-clock-user-idle-start)))))
1167 (defvar org-clock-current-task nil "Task currently clocked in.")
1168 (defvar org-clock-out-time nil) ; store the time of the last clock-out
1169 (defvar org--msg-extra)
1171 ;;;###autoload
1172 (defun org-clock-in (&optional select start-time)
1173 "Start the clock on the current item.
1174 If necessary, clock-out of the currently active clock.
1175 With a prefix argument SELECT (\\[universal-argument]), offer a list of recently clocked
1176 tasks to clock into. When SELECT is \\[universal-argument] \\[universal-argument], clock into the current task
1177 and mark it as the default task, a special task that will always be offered
1178 in the clocking selection, associated with the letter `d'.
1179 When SELECT is \\[universal-argument] \\[universal-argument] \\[universal-argument], \
1180 clock in by using the last clock-out
1181 time as the start time \(see `org-clock-continuously' to
1182 make this the default behavior.)"
1183 (interactive "P")
1184 (setq org-clock-notification-was-shown nil)
1185 (org-refresh-properties
1186 org-effort-property '((effort . identity)
1187 (effort-minutes . org-duration-string-to-minutes)))
1188 (catch 'abort
1189 (let ((interrupting (and (not org-clock-resolving-clocks-due-to-idleness)
1190 (org-clocking-p)))
1191 ts selected-task target-pos (org--msg-extra "")
1192 (leftover (and (not org-clock-resolving-clocks)
1193 org-clock-leftover-time)))
1195 (when (and org-clock-auto-clock-resolution
1196 (or (not interrupting)
1197 (eq t org-clock-auto-clock-resolution))
1198 (not org-clock-clocking-in)
1199 (not org-clock-resolving-clocks))
1200 (setq org-clock-leftover-time nil)
1201 (let ((org-clock-clocking-in t))
1202 (org-resolve-clocks))) ; check if any clocks are dangling
1204 (when (equal select '(64))
1205 ;; Set start-time to `org-clock-out-time'
1206 (let ((org-clock-continuously t))
1207 (org-clock-in nil org-clock-out-time)))
1209 (when (equal select '(4))
1210 (setq selected-task (org-clock-select-task "Clock-in on task: "))
1211 (if selected-task
1212 (setq selected-task (copy-marker selected-task))
1213 (error "Abort")))
1215 (when (equal select '(16))
1216 ;; Mark as default clocking task
1217 (org-clock-mark-default-task))
1219 (when interrupting
1220 ;; We are interrupting the clocking of a different task.
1221 ;; Save a marker to this task, so that we can go back.
1222 ;; First check if we are trying to clock into the same task!
1223 (when (save-excursion
1224 (unless selected-task
1225 (org-back-to-heading t))
1226 (and (equal (marker-buffer org-clock-hd-marker)
1227 (if selected-task
1228 (marker-buffer selected-task)
1229 (current-buffer)))
1230 (= (marker-position org-clock-hd-marker)
1231 (if selected-task
1232 (marker-position selected-task)
1233 (point)))
1234 (equal org-clock-current-task (nth 4 (org-heading-components)))))
1235 (message "Clock continues in \"%s\"" org-clock-heading)
1236 (throw 'abort nil))
1237 (move-marker org-clock-interrupted-task
1238 (marker-position org-clock-marker)
1239 (marker-buffer org-clock-marker))
1240 (let ((org-clock-clocking-in t))
1241 (org-clock-out nil t)))
1243 ;; Clock in at which position?
1244 (setq target-pos
1245 (if (and (eobp) (not (org-at-heading-p)))
1246 (point-at-bol 0)
1247 (point)))
1248 (save-excursion
1249 (when (and selected-task (marker-buffer selected-task))
1250 ;; There is a selected task, move to the correct buffer
1251 ;; and set the new target position.
1252 (set-buffer (org-base-buffer (marker-buffer selected-task)))
1253 (setq target-pos (marker-position selected-task))
1254 (move-marker selected-task nil))
1255 (save-excursion
1256 (save-restriction
1257 (widen)
1258 (goto-char target-pos)
1259 (org-back-to-heading t)
1260 (or interrupting (move-marker org-clock-interrupted-task nil))
1261 (run-hooks 'org-clock-in-prepare-hook)
1262 (org-clock-history-push)
1263 (setq org-clock-current-task (nth 4 (org-heading-components)))
1264 (cond ((functionp org-clock-in-switch-to-state)
1265 (looking-at org-complex-heading-regexp)
1266 (let ((newstate (funcall org-clock-in-switch-to-state
1267 (match-string 2))))
1268 (if newstate (org-todo newstate))))
1269 ((and org-clock-in-switch-to-state
1270 (not (looking-at (concat org-outline-regexp "[ \t]*"
1271 org-clock-in-switch-to-state
1272 "\\>"))))
1273 (org-todo org-clock-in-switch-to-state)))
1274 (setq org-clock-heading
1275 (cond ((and org-clock-heading-function
1276 (functionp org-clock-heading-function))
1277 (funcall org-clock-heading-function))
1278 ((nth 4 (org-heading-components))
1279 (replace-regexp-in-string
1280 "\\[\\[.*?\\]\\[\\(.*?\\)\\]\\]" "\\1"
1281 (match-string-no-properties 4)))
1282 (t "???")))
1283 (org-clock-find-position org-clock-in-resume)
1284 (cond
1285 ((and org-clock-in-resume
1286 (looking-at
1287 (concat "^[ \t]*" org-clock-string
1288 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1289 " *\\sw+\.? +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
1290 (message "Matched %s" (match-string 1))
1291 (setq ts (concat "[" (match-string 1) "]"))
1292 (goto-char (match-end 1))
1293 (setq org-clock-start-time
1294 (apply 'encode-time
1295 (org-parse-time-string (match-string 1))))
1296 (setq org-clock-effort (org-entry-get (point) org-effort-property))
1297 (setq org-clock-total-time (org-clock-sum-current-item
1298 (org-clock-get-sum-start))))
1299 ((eq org-clock-in-resume 'auto-restart)
1300 ;; called from org-clock-load during startup,
1301 ;; do not interrupt, but warn!
1302 (message "Cannot restart clock because task does not contain unfinished clock")
1303 (ding)
1304 (sit-for 2)
1305 (throw 'abort nil))
1307 (insert-before-markers "\n")
1308 (backward-char 1)
1309 (org-indent-line)
1310 (when (and (save-excursion
1311 (end-of-line 0)
1312 (org-in-item-p)))
1313 (beginning-of-line 1)
1314 (org-indent-line-to (- (org-get-indentation) 2)))
1315 (insert org-clock-string " ")
1316 (setq org-clock-effort (org-entry-get (point) org-effort-property))
1317 (setq org-clock-total-time (org-clock-sum-current-item
1318 (org-clock-get-sum-start)))
1319 (setq org-clock-start-time
1320 (or (and org-clock-continuously org-clock-out-time)
1321 (and leftover
1322 (y-or-n-p
1323 (format
1324 "You stopped another clock %d mins ago; start this one from then? "
1325 (/ (- (org-float-time
1326 (org-current-time org-clock-rounding-minutes t))
1327 (org-float-time leftover)) 60)))
1328 leftover)
1329 start-time
1330 (org-current-time org-clock-rounding-minutes t)))
1331 (setq ts (org-insert-time-stamp org-clock-start-time
1332 'with-hm 'inactive))))
1333 (move-marker org-clock-marker (point) (buffer-base-buffer))
1334 (move-marker org-clock-hd-marker
1335 (save-excursion (org-back-to-heading t) (point))
1336 (buffer-base-buffer))
1337 (setq org-clock-has-been-used t)
1338 ;; add to mode line
1339 (when (or (eq org-clock-clocked-in-display 'mode-line)
1340 (eq org-clock-clocked-in-display 'both))
1341 (or global-mode-string (setq global-mode-string '("")))
1342 (or (memq 'org-mode-line-string global-mode-string)
1343 (setq global-mode-string
1344 (append global-mode-string '(org-mode-line-string)))))
1345 ;; add to frame title
1346 (when (or (eq org-clock-clocked-in-display 'frame-title)
1347 (eq org-clock-clocked-in-display 'both))
1348 (setq frame-title-format org-clock-frame-title-format))
1349 (org-clock-update-mode-line)
1350 (when org-clock-mode-line-timer
1351 (cancel-timer org-clock-mode-line-timer)
1352 (setq org-clock-mode-line-timer nil))
1353 (when org-clock-clocked-in-display
1354 (setq org-clock-mode-line-timer
1355 (run-with-timer org-clock-update-period
1356 org-clock-update-period
1357 'org-clock-update-mode-line)))
1358 (when org-clock-idle-timer
1359 (cancel-timer org-clock-idle-timer)
1360 (setq org-clock-idle-timer nil))
1361 (setq org-clock-idle-timer
1362 (run-with-timer 60 60 'org-resolve-clocks-if-idle))
1363 (message "Clock starts at %s - %s" ts org--msg-extra)
1364 (run-hooks 'org-clock-in-hook)))))))
1366 ;;;###autoload
1367 (defun org-clock-in-last (&optional arg)
1368 "Clock in the last closed clocked item.
1369 When already clocking in, send an warning.
1370 With a universal prefix argument, select the task you want to
1371 clock in from the last clocked in tasks.
1372 With two universal prefix arguments, start clocking using the
1373 last clock-out time, if any.
1374 With three universal prefix arguments, interactively prompt
1375 for a todo state to switch to, overriding the existing value
1376 `org-clock-in-switch-to-state'."
1377 (interactive "P")
1378 (if (equal arg '(4)) (org-clock-in arg)
1379 (let ((start-time (if (or org-clock-continuously (equal arg '(16)))
1380 (or org-clock-out-time
1381 (org-current-time org-clock-rounding-minutes t))
1382 (org-current-time org-clock-rounding-minutes t))))
1383 (if (null org-clock-history)
1384 (message "No last clock")
1385 (let ((org-clock-in-switch-to-state
1386 (if (and (not org-clock-current-task) (equal arg '(64)))
1387 (completing-read "Switch to state: "
1388 (and org-clock-history
1389 (with-current-buffer
1390 (marker-buffer (car org-clock-history))
1391 org-todo-keywords-1)))
1392 org-clock-in-switch-to-state))
1393 (already-clocking org-clock-current-task))
1394 (org-clock-clock-in (list (car org-clock-history)) nil start-time)
1395 (or already-clocking
1396 ;; Don't display a message if we are already clocking in
1397 (message "Clocking back: %s (in %s)"
1398 org-clock-current-task
1399 (buffer-name (marker-buffer org-clock-marker)))))))))
1401 (defun org-clock-mark-default-task ()
1402 "Mark current task as default task."
1403 (interactive)
1404 (save-excursion
1405 (org-back-to-heading t)
1406 (move-marker org-clock-default-task (point))))
1408 (defun org-clock-get-sum-start ()
1409 "Return the time from which clock times should be counted.
1410 This is for the currently running clock as it is displayed
1411 in the mode line. This function looks at the properties
1412 LAST_REPEAT and in particular CLOCK_MODELINE_TOTAL and the
1413 corresponding variable `org-clock-mode-line-total' and then
1414 decides which time to use."
1415 (let ((cmt (or (org-entry-get nil "CLOCK_MODELINE_TOTAL")
1416 (symbol-name org-clock-mode-line-total)))
1417 (lr (org-entry-get nil "LAST_REPEAT")))
1418 (cond
1419 ((equal cmt "current")
1420 (setq org--msg-extra "showing time in current clock instance")
1421 (current-time))
1422 ((equal cmt "today")
1423 (setq org--msg-extra "showing today's task time.")
1424 (let* ((dt (decode-time (current-time)))
1425 (hour (nth 2 dt))
1426 (day (nth 3 dt)))
1427 (if (< hour org-extend-today-until) (setf (nth 3 dt) (1- day)))
1428 (setf (nth 2 dt) org-extend-today-until)
1429 (setq dt (append (list 0 0) (nthcdr 2 dt)))
1430 (apply 'encode-time dt)))
1431 ((or (equal cmt "all")
1432 (and (or (not cmt) (equal cmt "auto"))
1433 (not lr)))
1434 (setq org--msg-extra "showing entire task time.")
1435 nil)
1436 ((or (equal cmt "repeat")
1437 (and (or (not cmt) (equal cmt "auto"))
1438 lr))
1439 (setq org--msg-extra "showing task time since last repeat.")
1440 (if (not lr)
1442 (org-time-string-to-time lr)))
1443 (t nil))))
1445 (defun org-clock-find-position (find-unclosed)
1446 "Find the location where the next clock line should be inserted.
1447 When FIND-UNCLOSED is non-nil, first check if there is an unclosed clock
1448 line and position cursor in that line."
1449 (org-back-to-heading t)
1450 (catch 'exit
1451 (let* ((beg (line-beginning-position 2))
1452 (end (save-excursion (outline-next-heading) (point)))
1453 (org-clock-into-drawer (org-clock-into-drawer))
1454 (drawer (cond
1455 ((not org-clock-into-drawer) nil)
1456 ((stringp org-clock-into-drawer) org-clock-into-drawer)
1457 (t "LOGBOOK"))))
1458 ;; Look for a running clock if FIND-UNCLOSED in non-nil.
1459 (when find-unclosed
1460 (let ((open-clock-re
1461 (concat "^[ \t]*"
1462 org-clock-string
1463 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1464 " *\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
1465 (while (re-search-forward open-clock-re end t)
1466 (let ((element (org-element-at-point)))
1467 (when (and (eq (org-element-type element) 'clock)
1468 (eq (org-element-property :status element) 'running))
1469 (beginning-of-line)
1470 (throw 'exit t))))))
1471 ;; Look for an existing clock drawer.
1472 (when drawer
1473 (goto-char beg)
1474 (let ((drawer-re (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$")))
1475 (while (re-search-forward drawer-re end t)
1476 (let ((element (org-element-at-point)))
1477 (when (eq (org-element-type element) 'drawer)
1478 (let ((cend (org-element-property :contents-end element)))
1479 (if (and (not org-log-states-order-reversed) cend)
1480 (goto-char cend)
1481 (forward-line))
1482 (throw 'exit t)))))))
1483 (goto-char beg)
1484 (let ((clock-re (concat "^[ \t]*" org-clock-string))
1485 (count 0) positions first)
1486 ;; Count the CLOCK lines and store their positions.
1487 (save-excursion
1488 (while (re-search-forward clock-re end t)
1489 (let ((element (org-element-at-point)))
1490 (when (eq (org-element-type element) 'clock)
1491 (setq positions (cons (line-beginning-position) positions)
1492 count (1+ count))))))
1493 (cond
1494 ((null positions)
1495 ;; Skip planning line and property drawer, if any.
1496 (when (org-looking-at-p org-planning-line-re) (forward-line))
1497 (when (looking-at org-property-drawer-re)
1498 (goto-char (match-end 0))
1499 (forward-line))
1500 (unless (bolp) (insert "\n"))
1501 ;; Create a new drawer if necessary.
1502 (when (and org-clock-into-drawer
1503 (or (not (wholenump org-clock-into-drawer))
1504 (< org-clock-into-drawer 2)))
1505 (let ((beg (point)))
1506 (insert ":" drawer ":\n:END:\n")
1507 (org-indent-region beg (point))
1508 (goto-char beg)
1509 (org-flag-drawer t)
1510 (forward-line))))
1511 ;; When a clock drawer needs to be created because of the
1512 ;; number of clock items, collect all clocks in the section
1513 ;; and wrap them within the drawer.
1514 ((and (wholenump org-clock-into-drawer)
1515 (>= (1+ count) org-clock-into-drawer))
1516 ;; Skip planning line and property drawer, if any.
1517 (when (org-looking-at-p org-planning-line-re) (forward-line))
1518 (when (looking-at org-property-drawer-re)
1519 (goto-char (match-end 0))
1520 (forward-line))
1521 (let ((beg (point)))
1522 (insert
1523 (mapconcat
1524 (lambda (p)
1525 (save-excursion
1526 (goto-char p)
1527 (org-trim (delete-and-extract-region
1528 (save-excursion (skip-chars-backward " \r\t\n")
1529 (line-beginning-position 2))
1530 (line-beginning-position 2)))))
1531 positions "\n")
1532 "\n:END:\n")
1533 (let ((end (point-marker)))
1534 (goto-char beg)
1535 (save-excursion (insert ":" drawer ":\n"))
1536 (org-flag-drawer t)
1537 (org-indent-region (point) end)
1538 (forward-line)
1539 (unless org-log-states-order-reversed
1540 (goto-char end)
1541 (beginning-of-line -1))
1542 (set-marker end nil))))
1543 (org-log-states-order-reversed (goto-char (car (last positions))))
1544 (t (goto-char (car positions))))))))
1546 ;;;###autoload
1547 (defun org-clock-out (&optional switch-to-state fail-quietly at-time)
1548 "Stop the currently running clock.
1549 Throw an error if there is no running clock and FAIL-QUIETLY is nil.
1550 With a universal prefix, prompt for a state to switch the clocked out task
1551 to, overriding the existing value of `org-clock-out-switch-to-state'."
1552 (interactive "P")
1553 (catch 'exit
1554 (when (not (org-clocking-p))
1555 (setq global-mode-string
1556 (delq 'org-mode-line-string global-mode-string))
1557 (setq frame-title-format org-frame-title-format-backup)
1558 (force-mode-line-update)
1559 (if fail-quietly (throw 'exit t) (user-error "No active clock")))
1560 (let ((org-clock-out-switch-to-state
1561 (if switch-to-state
1562 (completing-read "Switch to state: "
1563 (with-current-buffer
1564 (marker-buffer org-clock-marker)
1565 org-todo-keywords-1)
1566 nil t "DONE")
1567 org-clock-out-switch-to-state))
1568 (now (org-current-time org-clock-rounding-minutes))
1569 ts te s h m remove)
1570 (setq org-clock-out-time now)
1571 (save-excursion ; Do not replace this with `with-current-buffer'.
1572 (org-no-warnings (set-buffer (org-clocking-buffer)))
1573 (save-restriction
1574 (widen)
1575 (goto-char org-clock-marker)
1576 (beginning-of-line 1)
1577 (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
1578 (equal (match-string 1) org-clock-string))
1579 (setq ts (match-string 2))
1580 (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
1581 (goto-char (match-end 0))
1582 (delete-region (point) (point-at-eol))
1583 (insert "--")
1584 (setq te (org-insert-time-stamp (or at-time now) 'with-hm 'inactive))
1585 (setq s (- (org-float-time (apply 'encode-time (org-parse-time-string te)))
1586 (org-float-time (apply 'encode-time (org-parse-time-string ts))))
1587 h (floor (/ s 3600))
1588 s (- s (* 3600 h))
1589 m (floor (/ s 60))
1590 s (- s (* 60 s)))
1591 (insert " => " (format "%2d:%02d" h m))
1592 (when (setq remove (and org-clock-out-remove-zero-time-clocks
1593 (= (+ h m) 0)))
1594 (beginning-of-line 1)
1595 (delete-region (point) (point-at-eol))
1596 (and (looking-at "\n") (> (point-max) (1+ (point)))
1597 (delete-char 1)))
1598 (move-marker org-clock-marker nil)
1599 (move-marker org-clock-hd-marker nil)
1600 (when org-log-note-clock-out
1601 (org-add-log-setup 'clock-out nil nil nil nil
1602 (concat "# Task: " (org-get-heading t) "\n\n")))
1603 (when org-clock-mode-line-timer
1604 (cancel-timer org-clock-mode-line-timer)
1605 (setq org-clock-mode-line-timer nil))
1606 (when org-clock-idle-timer
1607 (cancel-timer org-clock-idle-timer)
1608 (setq org-clock-idle-timer nil))
1609 (setq global-mode-string
1610 (delq 'org-mode-line-string global-mode-string))
1611 (setq frame-title-format org-frame-title-format-backup)
1612 (when org-clock-out-switch-to-state
1613 (save-excursion
1614 (org-back-to-heading t)
1615 (let ((org-inhibit-logging t)
1616 (org-clock-out-when-done nil))
1617 (cond
1618 ((functionp org-clock-out-switch-to-state)
1619 (looking-at org-complex-heading-regexp)
1620 (let ((newstate (funcall org-clock-out-switch-to-state
1621 (match-string 2))))
1622 (if newstate (org-todo newstate))))
1623 ((and org-clock-out-switch-to-state
1624 (not (looking-at (concat org-outline-regexp "[ \t]*"
1625 org-clock-out-switch-to-state
1626 "\\>"))))
1627 (org-todo org-clock-out-switch-to-state))))))
1628 (force-mode-line-update)
1629 (message (concat "Clock stopped at %s after "
1630 (org-minutes-to-clocksum-string (+ (* 60 h) m)) "%s")
1631 te (if remove " => LINE REMOVED" ""))
1632 (let ((h org-clock-out-hook)
1633 (clock-drawer (org-clock-into-drawer)))
1634 ;; If a closing note needs to be stored in the drawer
1635 ;; where clocks are stored, let's temporarily disable
1636 ;; `org-clock-remove-empty-clock-drawer'.
1637 (if (and clock-drawer
1638 (not (stringp clock-drawer))
1639 (org-log-into-drawer)
1640 (eq org-log-done 'note)
1641 org-clock-out-when-done)
1642 (setq h (delq 'org-clock-remove-empty-clock-drawer h)))
1643 (mapc (lambda (f) (funcall f)) h))
1644 (unless (org-clocking-p)
1645 (setq org-clock-current-task nil)))))))
1647 (add-hook 'org-clock-out-hook 'org-clock-remove-empty-clock-drawer)
1649 (defun org-clock-remove-empty-clock-drawer nil
1650 "Remove empty clock drawer in the current subtree."
1651 (let ((clock-drawer (org-log-into-drawer))
1652 (end (save-excursion (org-end-of-subtree t t))))
1653 (when clock-drawer
1654 (save-excursion
1655 (org-back-to-heading t)
1656 (while (and (< (point) end)
1657 (search-forward clock-drawer end t))
1658 (goto-char (match-beginning 0))
1659 (org-remove-empty-drawer-at (point))
1660 (forward-line 1))))))
1662 (defun org-clock-timestamps-up (&optional n)
1663 "Increase CLOCK timestamps at cursor.
1664 Optional argument N tells to change by that many units."
1665 (interactive "P")
1666 (org-clock-timestamps-change 'up n))
1668 (defun org-clock-timestamps-down (&optional n)
1669 "Increase CLOCK timestamps at cursor.
1670 Optional argument N tells to change by that many units."
1671 (interactive "P")
1672 (org-clock-timestamps-change 'down n))
1674 (defun org-clock-timestamps-change (updown &optional n)
1675 "Change CLOCK timestamps synchronously at cursor.
1676 UPDOWN tells whether to change 'up or 'down.
1677 Optional argument N tells to change by that many units."
1678 (setq org-ts-what nil)
1679 (when (org-at-timestamp-p t)
1680 (let ((tschange (if (eq updown 'up) 'org-timestamp-up
1681 'org-timestamp-down))
1682 ts1 begts1 ts2 begts2 updatets1 tdiff)
1683 (save-excursion
1684 (move-beginning-of-line 1)
1685 (re-search-forward org-ts-regexp3 nil t)
1686 (setq ts1 (match-string 0) begts1 (match-beginning 0))
1687 (when (re-search-forward org-ts-regexp3 nil t)
1688 (setq ts2 (match-string 0) begts2 (match-beginning 0))))
1689 ;; Are we on the second timestamp?
1690 (if (<= begts2 (point)) (setq updatets1 t))
1691 (if (not ts2)
1692 ;; fall back on org-timestamp-up if there is only one
1693 (funcall tschange n)
1694 ;; setq this so that (boundp 'org-ts-what is non-nil)
1695 (funcall tschange n)
1696 (let ((ts (if updatets1 ts2 ts1))
1697 (begts (if updatets1 begts1 begts2)))
1698 (setq tdiff
1699 (subtract-time
1700 (org-time-string-to-time org-last-changed-timestamp)
1701 (org-time-string-to-time ts)))
1702 (save-excursion
1703 (goto-char begts)
1704 (org-timestamp-change
1705 (round (/ (org-float-time tdiff)
1706 (cond ((eq org-ts-what 'minute) 60)
1707 ((eq org-ts-what 'hour) 3600)
1708 ((eq org-ts-what 'day) (* 24 3600))
1709 ((eq org-ts-what 'month) (* 24 3600 31))
1710 ((eq org-ts-what 'year) (* 24 3600 365.2)))))
1711 org-ts-what 'updown)))))))
1713 ;;;###autoload
1714 (defun org-clock-cancel ()
1715 "Cancel the running clock by removing the start timestamp."
1716 (interactive)
1717 (when (not (org-clocking-p))
1718 (setq global-mode-string
1719 (delq 'org-mode-line-string global-mode-string))
1720 (setq frame-title-format org-frame-title-format-backup)
1721 (force-mode-line-update)
1722 (error "No active clock"))
1723 (save-excursion ; Do not replace this with `with-current-buffer'.
1724 (org-no-warnings (set-buffer (org-clocking-buffer)))
1725 (goto-char org-clock-marker)
1726 (if (org-looking-back (concat "^[ \t]*" org-clock-string ".*"))
1727 (progn (delete-region (1- (point-at-bol)) (point-at-eol))
1728 (org-remove-empty-drawer-at (point)))
1729 (message "Clock gone, cancel the timer anyway")
1730 (sit-for 2)))
1731 (move-marker org-clock-marker nil)
1732 (move-marker org-clock-hd-marker nil)
1733 (setq global-mode-string
1734 (delq 'org-mode-line-string global-mode-string))
1735 (setq frame-title-format org-frame-title-format-backup)
1736 (force-mode-line-update)
1737 (message "Clock canceled")
1738 (run-hooks 'org-clock-cancel-hook))
1740 ;;;###autoload
1741 (defun org-clock-goto (&optional select)
1742 "Go to the currently clocked-in entry, or to the most recently clocked one.
1743 With prefix arg SELECT, offer recently clocked tasks for selection."
1744 (interactive "@P")
1745 (let* ((recent nil)
1746 (m (cond
1747 (select
1748 (or (org-clock-select-task "Select task to go to: ")
1749 (error "No task selected")))
1750 ((org-clocking-p) org-clock-marker)
1751 ((and org-clock-goto-may-find-recent-task
1752 (car org-clock-history)
1753 (marker-buffer (car org-clock-history)))
1754 (setq recent t)
1755 (car org-clock-history))
1756 (t (error "No active or recent clock task")))))
1757 (org-pop-to-buffer-same-window (marker-buffer m))
1758 (if (or (< m (point-min)) (> m (point-max))) (widen))
1759 (goto-char m)
1760 (org-show-entry)
1761 (org-back-to-heading t)
1762 (org-cycle-hide-drawers 'children)
1763 (recenter org-clock-goto-before-context)
1764 (org-reveal)
1765 (if recent
1766 (message "No running clock, this is the most recently clocked task"))
1767 (run-hooks 'org-clock-goto-hook)))
1769 (defvar org-clock-file-total-minutes nil
1770 "Holds the file total time in minutes, after a call to `org-clock-sum'.")
1771 (make-variable-buffer-local 'org-clock-file-total-minutes)
1773 (defun org-clock-sum-today (&optional headline-filter)
1774 "Sum the times for each subtree for today."
1775 (let ((range (org-clock-special-range 'today)))
1776 (org-clock-sum (car range) (cadr range)
1777 headline-filter :org-clock-minutes-today)))
1779 (defun org-clock-sum-custom (&optional headline-filter range propname)
1780 "Sum the times for each subtree for today."
1781 (let ((r (or (and (symbolp range) (org-clock-special-range range))
1782 (org-clock-special-range
1783 (intern (completing-read
1784 "Range: "
1785 '("today" "yesterday" "thisweek" "lastweek"
1786 "thismonth" "lastmonth" "thisyear" "lastyear"
1787 "interactive")
1788 nil t))))))
1789 (org-clock-sum (car r) (cadr r)
1790 headline-filter (or propname :org-clock-minutes-custom))))
1792 ;;;###autoload
1793 (defun org-clock-sum (&optional tstart tend headline-filter propname)
1794 "Sum the times for each subtree.
1795 Puts the resulting times in minutes as a text property on each headline.
1796 TSTART and TEND can mark a time range to be considered.
1797 HEADLINE-FILTER is a zero-arg function that, if specified, is called for
1798 each headline in the time range with point at the headline. Headlines for
1799 which HEADLINE-FILTER returns nil are excluded from the clock summation.
1800 PROPNAME lets you set a custom text property instead of :org-clock-minutes."
1801 (org-with-silent-modifications
1802 (let* ((re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
1803 org-clock-string
1804 "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
1805 (lmax 30)
1806 (ltimes (make-vector lmax 0))
1807 (t1 0)
1808 (level 0)
1809 ts te dt
1810 time)
1811 (if (stringp tstart) (setq tstart (org-time-string-to-seconds tstart)))
1812 (if (stringp tend) (setq tend (org-time-string-to-seconds tend)))
1813 (if (consp tstart) (setq tstart (org-float-time tstart)))
1814 (if (consp tend) (setq tend (org-float-time tend)))
1815 (remove-text-properties (point-min) (point-max)
1816 `(,(or propname :org-clock-minutes) t
1817 :org-clock-force-headline-inclusion t))
1818 (save-excursion
1819 (goto-char (point-max))
1820 (while (re-search-backward re nil t)
1821 (cond
1822 ((match-end 2)
1823 ;; Two time stamps
1824 (setq ts (match-string 2)
1825 te (match-string 3)
1826 ts (org-float-time
1827 (apply 'encode-time (org-parse-time-string ts)))
1828 te (org-float-time
1829 (apply 'encode-time (org-parse-time-string te)))
1830 ts (if tstart (max ts tstart) ts)
1831 te (if tend (min te tend) te)
1832 dt (- te ts)
1833 t1 (if (> dt 0) (+ t1 (floor (/ dt 60))) t1)))
1834 ((match-end 4)
1835 ;; A naked time
1836 (setq t1 (+ t1 (string-to-number (match-string 5))
1837 (* 60 (string-to-number (match-string 4))))))
1838 (t ;; A headline
1839 ;; Add the currently clocking item time to the total
1840 (when (and org-clock-report-include-clocking-task
1841 (equal (org-clocking-buffer) (current-buffer))
1842 (equal (marker-position org-clock-hd-marker) (point))
1843 tstart
1844 tend
1845 (>= (org-float-time org-clock-start-time) tstart)
1846 (<= (org-float-time org-clock-start-time) tend))
1847 (let ((time (floor (- (org-float-time)
1848 (org-float-time org-clock-start-time)) 60)))
1849 (setq t1 (+ t1 time))))
1850 (let* ((headline-forced
1851 (get-text-property (point)
1852 :org-clock-force-headline-inclusion))
1853 (headline-included
1854 (or (null headline-filter)
1855 (save-excursion
1856 (save-match-data (funcall headline-filter))))))
1857 (setq level (- (match-end 1) (match-beginning 1)))
1858 (when (>= level lmax)
1859 (setq ltimes (vconcat ltimes (make-vector lmax 0)) lmax (* 2 lmax)))
1860 (when (or (> t1 0) (> (aref ltimes level) 0))
1861 (when (or headline-included headline-forced)
1862 (if headline-included
1863 (loop for l from 0 to level do
1864 (aset ltimes l (+ (aref ltimes l) t1))))
1865 (setq time (aref ltimes level))
1866 (goto-char (match-beginning 0))
1867 (put-text-property (point) (point-at-eol)
1868 (or propname :org-clock-minutes) time)
1869 (if headline-filter
1870 (save-excursion
1871 (save-match-data
1872 (while
1873 (> (funcall outline-level) 1)
1874 (outline-up-heading 1 t)
1875 (put-text-property
1876 (point) (point-at-eol)
1877 :org-clock-force-headline-inclusion t))))))
1878 (setq t1 0)
1879 (loop for l from level to (1- lmax) do
1880 (aset ltimes l 0)))))))
1881 (setq org-clock-file-total-minutes (aref ltimes 0))))))
1883 (defun org-clock-sum-current-item (&optional tstart)
1884 "Return time, clocked on current item in total."
1885 (save-excursion
1886 (save-restriction
1887 (org-narrow-to-subtree)
1888 (org-clock-sum tstart)
1889 org-clock-file-total-minutes)))
1891 ;;;###autoload
1892 (defun org-clock-display (&optional arg)
1893 "Show subtree times in the entire buffer.
1895 With one universal prefix argument, show the total time for
1896 today. With two universal prefix arguments, show the total time
1897 for a custom range, entered at the prompt. With three universal
1898 prefix arguments, show the total time in the echo area.
1900 Use \\[org-clock-remove-overlays] to remove the subtree times."
1901 (interactive "P")
1902 (org-clock-remove-overlays)
1903 (let* ((todayp (equal arg '(4)))
1904 (customp (member arg '((16) today yesterday
1905 thisweek lastweek thismonth
1906 lastmonth thisyear lastyear
1907 untilnow interactive)))
1908 (prop (cond ((not arg) :org-clock-minutes-default)
1909 (todayp :org-clock-minutes-today)
1910 (customp :org-clock-minutes-custom)
1911 (t :org-clock-minutes)))
1912 time h m p)
1913 (cond ((not arg) (org-clock-sum-custom
1914 nil org-clock-display-default-range prop))
1915 (todayp (org-clock-sum-today))
1916 (customp (org-clock-sum-custom nil arg))
1917 (t (org-clock-sum)))
1918 (unless (eq arg '(64))
1919 (save-excursion
1920 (goto-char (point-min))
1921 (while (or (and (equal (setq p (point)) (point-min))
1922 (get-text-property p prop))
1923 (setq p (next-single-property-change
1924 (point) prop)))
1925 (goto-char p)
1926 (when (setq time (get-text-property p prop))
1927 (org-clock-put-overlay time)))
1928 (setq h (/ org-clock-file-total-minutes 60)
1929 m (- org-clock-file-total-minutes (* 60 h)))
1930 ;; Arrange to remove the overlays upon next change.
1931 (when org-remove-highlights-with-change
1932 (org-add-hook 'before-change-functions 'org-clock-remove-overlays
1933 nil 'local))))
1934 (message (concat (format "Total file time%s: "
1935 (cond (todayp " for today")
1936 (customp " (custom)")
1937 (t "")))
1938 (org-minutes-to-clocksum-string
1939 org-clock-file-total-minutes)
1940 " (%d hours and %d minutes)")
1941 h m)))
1943 (defvar org-clock-overlays nil)
1944 (make-variable-buffer-local 'org-clock-overlays)
1946 (defun org-clock-put-overlay (time)
1947 "Put an overlays on the current line, displaying TIME.
1948 This creates a new overlay and stores it in `org-clock-overlays', so that it
1949 will be easy to remove."
1950 (let (ov tx)
1951 (beginning-of-line)
1952 (when (looking-at org-complex-heading-regexp)
1953 (goto-char (match-beginning 4)))
1954 (setq ov (make-overlay (point) (point-at-eol))
1955 tx (concat (buffer-substring-no-properties (point) (match-end 4))
1956 (org-add-props
1957 (make-string
1958 (max 0 (- (- 60 (current-column))
1959 (- (match-end 4) (match-beginning 4))
1960 (length (org-get-at-bol 'line-prefix)))) ?·)
1961 '(face shadow))
1962 (org-add-props
1963 (format " %9s " (org-minutes-to-clocksum-string time))
1964 '(face org-clock-overlay))
1965 ""))
1966 (if (not (featurep 'xemacs))
1967 (overlay-put ov 'display tx)
1968 (overlay-put ov 'invisible t)
1969 (overlay-put ov 'end-glyph (make-glyph tx)))
1970 (push ov org-clock-overlays)))
1972 ;;;###autoload
1973 (defun org-clock-remove-overlays (&optional beg end noremove)
1974 "Remove the occur highlights from the buffer.
1975 BEG and END are ignored. If NOREMOVE is nil, remove this function
1976 from the `before-change-functions' in the current buffer."
1977 (interactive)
1978 (unless org-inhibit-highlight-removal
1979 (mapc 'delete-overlay org-clock-overlays)
1980 (setq org-clock-overlays nil)
1981 (unless noremove
1982 (remove-hook 'before-change-functions
1983 'org-clock-remove-overlays 'local))))
1985 (defvar org-state) ;; dynamically scoped into this function
1986 (defun org-clock-out-if-current ()
1987 "Clock out if the current entry contains the running clock.
1988 This is used to stop the clock after a TODO entry is marked DONE,
1989 and is only done if the variable `org-clock-out-when-done' is not nil."
1990 (when (and (org-clocking-p)
1991 org-clock-out-when-done
1992 (marker-buffer org-clock-marker)
1993 (or (and (eq t org-clock-out-when-done)
1994 (member org-state org-done-keywords))
1995 (and (listp org-clock-out-when-done)
1996 (member org-state org-clock-out-when-done)))
1997 (equal (or (buffer-base-buffer (org-clocking-buffer))
1998 (org-clocking-buffer))
1999 (or (buffer-base-buffer (current-buffer))
2000 (current-buffer)))
2001 (< (point) org-clock-marker)
2002 (> (save-excursion (outline-next-heading) (point))
2003 org-clock-marker))
2004 ;; Clock out, but don't accept a logging message for this.
2005 (let ((org-log-note-clock-out nil)
2006 (org-clock-out-switch-to-state nil))
2007 (org-clock-out))))
2009 (add-hook 'org-after-todo-state-change-hook
2010 'org-clock-out-if-current)
2012 ;;;###autoload
2013 (defun org-clock-get-clocktable (&rest props)
2014 "Get a formatted clocktable with parameters according to PROPS.
2015 The table is created in a temporary buffer, fully formatted and
2016 fontified, and then returned."
2017 ;; Set the defaults
2018 (setq props (plist-put props :name "clocktable"))
2019 (unless (plist-member props :maxlevel)
2020 (setq props (plist-put props :maxlevel 2)))
2021 (unless (plist-member props :scope)
2022 (setq props (plist-put props :scope 'agenda)))
2023 (with-temp-buffer
2024 (org-mode)
2025 (org-create-dblock props)
2026 (org-update-dblock)
2027 (font-lock-ensure)
2028 (forward-line 2)
2029 (buffer-substring (point) (progn
2030 (re-search-forward "^[ \t]*#\\+END" nil t)
2031 (point-at-bol)))))
2033 ;;;###autoload
2034 (defun org-clock-report (&optional arg)
2035 "Create a table containing a report about clocked time.
2036 If the cursor is inside an existing clocktable block, then the table
2037 will be updated. If not, a new clocktable will be inserted. The scope
2038 of the new clock will be subtree when called from within a subtree, and
2039 file elsewhere.
2041 When called with a prefix argument, move to the first clock table in the
2042 buffer and update it."
2043 (interactive "P")
2044 (org-clock-remove-overlays)
2045 (when arg
2046 (org-find-dblock "clocktable")
2047 (org-show-entry))
2048 (if (org-in-clocktable-p)
2049 (goto-char (org-in-clocktable-p))
2050 (let ((props (if (ignore-errors
2051 (save-excursion (org-back-to-heading)))
2052 (list :name "clocktable" :scope 'subtree)
2053 (list :name "clocktable"))))
2054 (org-create-dblock
2055 (org-combine-plists org-clock-clocktable-default-properties props))))
2056 (org-update-dblock))
2058 (defun org-day-of-week (day month year)
2059 "Returns the day of the week as an integer."
2060 (nth 6
2061 (decode-time
2062 (date-to-time
2063 (format "%d-%02d-%02dT00:00:00" year month day)))))
2065 (defun org-quarter-to-date (quarter year)
2066 "Get the date (week day year) of the first day of a given quarter."
2067 (let (startday)
2068 (cond
2069 ((= quarter 1)
2070 (setq startday (org-day-of-week 1 1 year))
2071 (cond
2072 ((= startday 0)
2073 (list 52 7 (- year 1)))
2074 ((= startday 6)
2075 (list 52 6 (- year 1)))
2076 ((<= startday 4)
2077 (list 1 startday year))
2078 ((> startday 4)
2079 (list 53 startday (- year 1)))
2082 ((= quarter 2)
2083 (setq startday (org-day-of-week 1 4 year))
2084 (cond
2085 ((= startday 0)
2086 (list 13 startday year))
2087 ((< startday 4)
2088 (list 14 startday year))
2089 ((>= startday 4)
2090 (list 13 startday year))
2093 ((= quarter 3)
2094 (setq startday (org-day-of-week 1 7 year))
2095 (cond
2096 ((= startday 0)
2097 (list 26 startday year))
2098 ((< startday 4)
2099 (list 27 startday year))
2100 ((>= startday 4)
2101 (list 26 startday year))
2104 ((= quarter 4)
2105 (setq startday (org-day-of-week 1 10 year))
2106 (cond
2107 ((= startday 0)
2108 (list 39 startday year))
2109 ((<= startday 4)
2110 (list 40 startday year))
2111 ((> startday 4)
2112 (list 39 startday year)))))))
2114 (defun org-clock-special-range (key &optional time as-strings wstart mstart)
2115 "Return two times bordering a special time range.
2117 KEY is a symbol specifying the range and can be one of `today',
2118 `yesterday', `thisweek', `lastweek', `thismonth', `lastmonth',
2119 `thisyear', `lastyear' or `untilnow'. If set to `interactive',
2120 user is prompted for range boundaries. It can be a string or an
2121 integer.
2123 By default, a week starts Monday 0:00 and ends Sunday 24:00. The
2124 range is determined relative to TIME, which defaults to current
2125 time.
2127 The return value is a list containing two internal times, one for
2128 the beginning of the range and one for its end, like the ones
2129 returned by `current time' or `encode-time' and a string used to
2130 display information. If AS-STRINGS is non-nil, the returned
2131 times will be formatted strings.
2133 If WSTART is non-nil, use this number to specify the starting day
2134 of a week (monday is 1). If MSTART is non-nil, use this number
2135 to specify the starting day of a month (1 is the first day of the
2136 month). If you can combine both, the month starting day will
2137 have priority."
2138 (let* ((tm (decode-time (or time (current-time))))
2139 (m (nth 1 tm))
2140 (h (nth 2 tm))
2141 (d (nth 3 tm))
2142 (month (nth 4 tm))
2143 (y (nth 5 tm))
2144 (dow (nth 6 tm))
2145 (skey (format "%s" key))
2146 (shift 0)
2147 (q (cond ((>= month 10) 4)
2148 ((>= month 7) 3)
2149 ((>= month 4) 2)
2150 (t 1)))
2151 m1 h1 d1 month1 y1 shiftedy shiftedm shiftedq)
2152 (cond
2153 ((string-match "\\`[0-9]+\\'" skey)
2154 (setq y (string-to-number skey) month 1 d 1 key 'year))
2155 ((string-match "\\`\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)\\'" skey)
2156 (setq y (string-to-number (match-string 1 skey))
2157 month (string-to-number (match-string 2 skey))
2159 key 'month))
2160 ((string-match "\\`\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)\\'" skey)
2161 (require 'cal-iso)
2162 (let ((date (calendar-gregorian-from-absolute
2163 (calendar-iso-to-absolute
2164 (list (string-to-number (match-string 2 skey))
2166 (string-to-number (match-string 1 skey)))))))
2167 (setq d (nth 1 date)
2168 month (car date)
2169 y (nth 2 date)
2170 dow 1
2171 key 'week)))
2172 ((string-match "\\`\\([0-9]+\\)-[qQ]\\([1-4]\\)\\'" skey)
2173 (require 'cal-iso)
2174 (let ((date (calendar-gregorian-from-absolute
2175 (calendar-iso-to-absolute
2176 (org-quarter-to-date
2177 (string-to-number (match-string 2 skey))
2178 (string-to-number (match-string 1 skey)))))))
2179 (setq d (nth 1 date)
2180 month (car date)
2181 y (nth 2 date)
2182 dow 1
2183 key 'quarter)))
2184 ((string-match
2185 "\\`\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)\\'"
2186 skey)
2187 (setq y (string-to-number (match-string 1 skey))
2188 month (string-to-number (match-string 2 skey))
2189 d (string-to-number (match-string 3 skey))
2190 key 'day))
2191 ((string-match "\\([-+][0-9]+\\)\\'" skey)
2192 (setq shift (string-to-number (match-string 1 skey))
2193 key (intern (substring skey 0 (match-beginning 1))))
2194 (when (and (memq key '(quarter thisq)) (> shift 0))
2195 (error "Looking forward with quarters isn't implemented"))))
2196 (when (= shift 0)
2197 (case key
2198 (yesterday (setq key 'today shift -1))
2199 (lastweek (setq key 'week shift -1))
2200 (lastmonth (setq key 'month shift -1))
2201 (lastyear (setq key 'year shift -1))
2202 (lastq (setq key 'quarter shift -1))))
2203 ;; Prepare start and end times depending on KEY's type.
2204 (case key
2205 ((day today) (setq m 0 h 0 h1 24 d (+ d shift)))
2206 ((week thisweek)
2207 (let* ((ws (or wstart 1))
2208 (diff (+ (* -7 shift) (if (= dow 0) (- 7 ws) (- dow ws)))))
2209 (setq m 0 h 0 d (- d diff) d1 (+ 7 d))))
2210 ((month thismonth)
2211 (setq h 0 m 0 d (or mstart 1) month (+ month shift) month1 (1+ month)))
2212 ((quarter thisq)
2213 ;; Compute if this shift remains in this year. If not, compute
2214 ;; how many years and quarters we have to shift (via floor*) and
2215 ;; compute the shifted years, months and quarters.
2216 (cond
2217 ((< (+ (- q 1) shift) 0) ; Shift not in this year.
2218 (let* ((interval (* -1 (+ (- q 1) shift)))
2219 ;; Set tmp to ((years to shift) (quarters to shift)).
2220 (tmp (org-floor* interval 4)))
2221 ;; Due to the use of floor, 0 quarters actually means 4.
2222 (if (= 0 (nth 1 tmp))
2223 (setq shiftedy (- y (nth 0 tmp))
2224 shiftedm 1
2225 shiftedq 1)
2226 (setq shiftedy (- y (+ 1 (nth 0 tmp)))
2227 shiftedm (- 13 (* 3 (nth 1 tmp)))
2228 shiftedq (- 5 (nth 1 tmp)))))
2229 (setq m 0 h 0 d 1 month shiftedm month1 (+ 3 shiftedm) y shiftedy))
2230 ((> (+ q shift) 0) ; Shift is within this year.
2231 (setq shiftedq (+ q shift))
2232 (setq shiftedy y)
2233 (let ((qshift (* 3 (1- (+ q shift)))))
2234 (setq m 0 h 0 d 1 month (+ 1 qshift) month1 (+ 4 qshift))))))
2235 ((year thisyear)
2236 (setq m 0 h 0 d 1 month 1 y (+ y shift) y1 (1+ y)))
2237 ((interactive untilnow)) ; Special cases, ignore them.
2238 (t (user-error "No such time block %s" key)))
2239 ;; Format start and end times according to AS-STRINGS.
2240 (let* ((start (case key
2241 (interactive (org-read-date nil t nil "Range start? "))
2242 (untilnow org-clock--oldest-date)
2243 (t (encode-time 0 m h d month y))))
2244 (end (case key
2245 (interactive (org-read-date nil t nil "Range end? "))
2246 (untilnow (current-time))
2247 (t (encode-time 0
2248 (or m1 m)
2249 (or h1 h)
2250 (or d1 d)
2251 (or month1 month)
2252 (or y1 y)))))
2253 (text
2254 (case key
2255 ((day today) (format-time-string "%A, %B %d, %Y" start))
2256 ((week thisweek) (format-time-string "week %G-W%V" start))
2257 ((month thismonth) (format-time-string "%B %Y" start))
2258 ((year thisyear) (format-time-string "the year %Y" start))
2259 ((quarter thisq)
2260 (concat (org-count-quarter shiftedq)
2261 " quarter of " (number-to-string shiftedy)))
2262 (interactive "(Range interactively set)")
2263 (untilnow "now"))))
2264 (if (not as-strings) (list start end text)
2265 (let ((f (cdr org-time-stamp-formats)))
2266 (list (format-time-string f start)
2267 (format-time-string f end)
2268 text))))))
2270 (defun org-count-quarter (n)
2271 (cond
2272 ((= n 1) "1st")
2273 ((= n 2) "2nd")
2274 ((= n 3) "3rd")
2275 ((= n 4) "4th")))
2277 ;;;###autoload
2278 (defun org-clocktable-shift (dir n)
2279 "Try to shift the :block date of the clocktable at point.
2280 Point must be in the #+BEGIN: line of a clocktable, or this function
2281 will throw an error.
2282 DIR is a direction, a symbol `left', `right', `up', or `down'.
2283 Both `left' and `down' shift the block toward the past, `up' and `right'
2284 push it toward the future.
2285 N is the number of shift steps to take. The size of the step depends on
2286 the currently selected interval size."
2287 (setq n (prefix-numeric-value n))
2288 (and (memq dir '(left down)) (setq n (- n)))
2289 (save-excursion
2290 (goto-char (point-at-bol))
2291 (if (not (looking-at "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
2292 (error "Line needs a :block definition before this command works")
2293 (let* ((b (match-beginning 1)) (e (match-end 1))
2294 (s (match-string 1))
2295 block shift ins y mw d date wp m)
2296 (cond
2297 ((equal s "yesterday") (setq s "today-1"))
2298 ((equal s "lastweek") (setq s "thisweek-1"))
2299 ((equal s "lastmonth") (setq s "thismonth-1"))
2300 ((equal s "lastyear") (setq s "thisyear-1"))
2301 ((equal s "lastq") (setq s "thisq-1")))
2303 (cond
2304 ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\|thisq\\)\\([-+][0-9]+\\)?$" s)
2305 (setq block (match-string 1 s)
2306 shift (if (match-end 2)
2307 (string-to-number (match-string 2 s))
2309 (setq shift (+ shift n))
2310 (setq ins (if (= shift 0) block (format "%s%+d" block shift))))
2311 ((string-match "\\([0-9]+\\)\\(-\\([wWqQ]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s)
2312 ;; 1 1 2 3 3 4 4 5 6 6 5 2
2313 (setq y (string-to-number (match-string 1 s))
2314 wp (and (match-end 3) (match-string 3 s))
2315 mw (and (match-end 4) (string-to-number (match-string 4 s)))
2316 d (and (match-end 6) (string-to-number (match-string 6 s))))
2317 (cond
2318 (d (setq ins (format-time-string
2319 "%Y-%m-%d"
2320 (encode-time 0 0 0 (+ d n) m y))))
2321 ((and wp (string-match "w\\|W" wp) mw (> (length wp) 0))
2322 (require 'cal-iso)
2323 (setq date (calendar-gregorian-from-absolute
2324 (calendar-iso-to-absolute (list (+ mw n) 1 y))))
2325 (setq ins (format-time-string
2326 "%G-W%V"
2327 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2328 ((and wp (string-match "q\\|Q" wp) mw (> (length wp) 0))
2329 (require 'cal-iso)
2330 ; if the 4th + 1 quarter is requested we flip to the 1st quarter of the next year
2331 (if (> (+ mw n) 4)
2332 (setq mw 0
2333 y (+ 1 y))
2335 ; if the 1st - 1 quarter is requested we flip to the 4th quarter of the previous year
2336 (if (= (+ mw n) 0)
2337 (setq mw 5
2338 y (- y 1))
2340 (setq date (calendar-gregorian-from-absolute
2341 (calendar-iso-to-absolute (org-quarter-to-date (+ mw n) y))))
2342 (setq ins (format-time-string
2343 (concat (number-to-string y) "-Q" (number-to-string (+ mw n)))
2344 (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
2346 (setq ins (format-time-string
2347 "%Y-%m"
2348 (encode-time 0 0 0 1 (+ mw n) y))))
2350 (setq ins (number-to-string (+ y n))))))
2351 (t (error "Cannot shift clocktable block")))
2352 (when ins
2353 (goto-char b)
2354 (insert ins)
2355 (delete-region (point) (+ (point) (- e b)))
2356 (beginning-of-line 1)
2357 (org-update-dblock)
2358 t)))))
2360 ;;;###autoload
2361 (defun org-dblock-write:clocktable (params)
2362 "Write the standard clocktable."
2363 (setq params (org-combine-plists org-clocktable-defaults params))
2364 (catch 'exit
2365 (let* ((scope (plist-get params :scope))
2366 (block (plist-get params :block))
2367 (ts (plist-get params :tstart))
2368 (te (plist-get params :tend))
2369 (link (plist-get params :link))
2370 (maxlevel (or (plist-get params :maxlevel) 3))
2371 (ws (plist-get params :wstart))
2372 (ms (plist-get params :mstart))
2373 (step (plist-get params :step))
2374 (timestamp (plist-get params :timestamp))
2375 (formatter (or (plist-get params :formatter)
2376 org-clock-clocktable-formatter
2377 'org-clocktable-write-default))
2378 cc range-text ipos pos one-file-with-archives
2379 scope-is-list tbls level)
2380 ;; Check if we need to do steps
2381 (when block
2382 ;; Get the range text for the header
2383 (setq cc (org-clock-special-range block nil t ws ms)
2384 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2385 (when step
2386 ;; Write many tables, in steps
2387 (unless (or block (and ts te))
2388 (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
2389 (org-clocktable-steps params)
2390 (throw 'exit nil))
2392 (setq ipos (point)) ; remember the insertion position
2394 ;; Get the right scope
2395 (setq pos (point))
2396 (cond
2397 ((and scope (listp scope) (symbolp (car scope)))
2398 (setq scope (eval scope)))
2399 ((eq scope 'agenda)
2400 (setq scope (org-agenda-files t)))
2401 ((eq scope 'agenda-with-archives)
2402 (setq scope (org-agenda-files t))
2403 (setq scope (org-add-archive-files scope)))
2404 ((eq scope 'file-with-archives)
2405 (setq scope (org-add-archive-files (list (buffer-file-name)))
2406 one-file-with-archives t)))
2407 (setq scope-is-list (and scope (listp scope)))
2408 (if scope-is-list
2409 ;; we collect from several files
2410 (let* ((files scope)
2411 file)
2412 (org-agenda-prepare-buffers files)
2413 (while (setq file (pop files))
2414 (with-current-buffer (find-buffer-visiting file)
2415 (save-excursion
2416 (save-restriction
2417 (push (org-clock-get-table-data file params) tbls))))))
2418 ;; Just from the current file
2419 (save-restriction
2420 ;; get the right range into the restriction
2421 (org-agenda-prepare-buffers (list (buffer-file-name)))
2422 (cond
2423 ((not scope)) ; use the restriction as it is now
2424 ((eq scope 'file) (widen))
2425 ((eq scope 'subtree) (org-narrow-to-subtree))
2426 ((eq scope 'tree)
2427 (while (org-up-heading-safe))
2428 (org-narrow-to-subtree))
2429 ((and (symbolp scope) (string-match "^tree\\([0-9]+\\)$"
2430 (symbol-name scope)))
2431 (setq level (string-to-number (match-string 1 (symbol-name scope))))
2432 (catch 'exit
2433 (while (org-up-heading-safe)
2434 (looking-at org-outline-regexp)
2435 (if (<= (org-reduced-level (funcall outline-level)) level)
2436 (throw 'exit nil))))
2437 (org-narrow-to-subtree)))
2438 ;; do the table, with no file name.
2439 (push (org-clock-get-table-data nil params) tbls)))
2441 ;; OK, at this point we tbls as a list of tables, one per file
2442 (setq tbls (nreverse tbls))
2444 (setq params (plist-put params :multifile scope-is-list))
2445 (setq params (plist-put params :one-file-with-archives
2446 one-file-with-archives))
2448 (funcall formatter ipos tbls params))))
2450 (defun org-clocktable-write-default (ipos tables params)
2451 "Write out a clock table at position IPOS in the current buffer.
2452 TABLES is a list of tables with clocking data as produced by
2453 `org-clock-get-table-data'. PARAMS is the parameter property list obtained
2454 from the dynamic block definition."
2455 ;; This function looks quite complicated, mainly because there are a
2456 ;; lot of options which can add or remove columns. I have massively
2457 ;; commented this function, the I hope it is understandable. If
2458 ;; someone wants to write their own special formatter, this maybe
2459 ;; much easier because there can be a fixed format with a
2460 ;; well-defined number of columns...
2461 (let* ((hlchars '((1 . "*") (2 . "/")))
2462 (lwords (assoc (or (plist-get params :lang)
2463 (org-bound-and-true-p org-export-default-language)
2464 "en")
2465 org-clock-clocktable-language-setup))
2466 (multifile (plist-get params :multifile))
2467 (block (plist-get params :block))
2468 (sort (plist-get params :sort))
2469 (ts (plist-get params :tstart))
2470 (te (plist-get params :tend))
2471 (header (plist-get params :header))
2472 (narrow (plist-get params :narrow))
2473 (ws (or (plist-get params :wstart) 1))
2474 (ms (or (plist-get params :mstart) 1))
2475 (link (plist-get params :link))
2476 (maxlevel (or (plist-get params :maxlevel) 3))
2477 (emph (plist-get params :emphasize))
2478 (level-p (plist-get params :level))
2479 (org-time-clocksum-use-effort-durations
2480 (plist-get params :effort-durations))
2481 (timestamp (plist-get params :timestamp))
2482 (properties (plist-get params :properties))
2483 (ntcol (max 1 (or (plist-get params :tcolumns) 100)))
2484 (rm-file-column (plist-get params :one-file-with-archives))
2485 (indent (plist-get params :indent))
2486 (case-fold-search t)
2487 range-text total-time tbl level hlc formula pcol
2488 file-time entries entry headline
2489 recalc content narrow-cut-p tcol)
2491 ;; Implement abbreviations
2492 (when (plist-get params :compact)
2493 (setq level nil indent t narrow (or narrow '40!) ntcol 1))
2495 ;; Some consistency test for parameters
2496 (unless (integerp ntcol)
2497 (setq params (plist-put params :tcolumns (setq ntcol 100))))
2499 (when (and narrow (integerp narrow) link)
2500 ;; We cannot have both integer narrow and link
2501 (message
2502 "Using hard narrowing in clocktable to allow for links")
2503 (setq narrow (intern (format "%d!" narrow))))
2505 (when narrow
2506 (cond
2507 ((integerp narrow))
2508 ((and (symbolp narrow)
2509 (string-match "\\`[0-9]+!\\'" (symbol-name narrow)))
2510 (setq narrow-cut-p t
2511 narrow (string-to-number (substring (symbol-name narrow)
2512 0 -1))))
2514 (error "Invalid value %s of :narrow property in clock table"
2515 narrow))))
2517 (when block
2518 ;; Get the range text for the header
2519 (setq range-text (nth 2 (org-clock-special-range block nil t ws ms))))
2521 ;; Compute the total time
2522 (setq total-time (apply '+ (mapcar 'cadr tables)))
2524 ;; Now we need to output this tsuff
2525 (goto-char ipos)
2527 ;; Insert the text *before* the actual table
2528 (insert-before-markers
2529 (or header
2530 ;; Format the standard header
2531 (concat
2532 "#+CAPTION: "
2533 (nth 9 lwords) " ["
2534 (substring
2535 (format-time-string (cdr org-time-stamp-formats))
2536 1 -1)
2538 (if block (concat ", for " range-text ".") "")
2539 "\n")))
2541 ;; Insert the narrowing line
2542 (when (and narrow (integerp narrow) (not narrow-cut-p))
2543 (insert-before-markers
2544 "|" ; table line starter
2545 (if multifile "|" "") ; file column, maybe
2546 (if level-p "|" "") ; level column, maybe
2547 (if timestamp "|" "") ; timestamp column, maybe
2548 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2549 (format "<%d>| |\n" narrow))) ; headline and time columns
2551 ;; Insert the table header line
2552 (insert-before-markers
2553 "|" ; table line starter
2554 (if multifile (concat (nth 1 lwords) "|") "") ; file column, maybe
2555 (if level-p (concat (nth 2 lwords) "|") "") ; level column, maybe
2556 (if timestamp (concat (nth 3 lwords) "|") "") ; timestamp column, maybe
2557 (if properties (concat (mapconcat 'identity properties "|") "|") "") ;properties columns, maybe
2558 (concat (nth 4 lwords) "|"
2559 (nth 5 lwords) "|\n")) ; headline and time columns
2561 ;; Insert the total time in the table
2562 (insert-before-markers
2563 "|-\n" ; a hline
2564 "|" ; table line starter
2565 (if multifile (concat "| " (nth 6 lwords) " ") "")
2566 ; file column, maybe
2567 (if level-p "|" "") ; level column, maybe
2568 (if timestamp "|" "") ; timestamp column, maybe
2569 (if properties (make-string (length properties) ?|) "") ; properties columns, maybe
2570 (concat (format org-clock-total-time-cell-format (nth 7 lwords)) "| ") ; instead of a headline
2571 (format org-clock-total-time-cell-format
2572 (org-minutes-to-clocksum-string (or total-time 0))) ; the time
2573 "|\n") ; close line
2575 ;; Now iterate over the tables and insert the data
2576 ;; but only if any time has been collected
2577 (when (and total-time (> total-time 0))
2579 (while (setq tbl (pop tables))
2580 ;; now tbl is the table resulting from one file.
2581 (setq file-time (nth 1 tbl))
2582 (when (or (and file-time (> file-time 0))
2583 (not (plist-get params :fileskip0)))
2584 (insert-before-markers "|-\n") ; a hline because a new file starts
2585 ;; First the file time, if we have multiple files
2586 (when multifile
2587 ;; Summarize the time collected from this file
2588 (insert-before-markers
2589 (format (concat "| %s %s | %s%s"
2590 (format org-clock-file-time-cell-format (nth 8 lwords))
2591 " | *%s*|\n")
2592 (file-name-nondirectory (car tbl))
2593 (if level-p "| " "") ; level column, maybe
2594 (if timestamp "| " "") ; timestamp column, maybe
2595 (if properties (make-string (length properties) ?|) "") ;properties columns, maybe
2596 (org-minutes-to-clocksum-string (nth 1 tbl))))) ; the time
2598 ;; Get the list of node entries and iterate over it
2599 (setq entries (nth 2 tbl))
2600 (while (setq entry (pop entries))
2601 (setq level (car entry)
2602 headline (nth 1 entry)
2603 hlc (if emph (or (cdr (assoc level hlchars)) "") ""))
2604 (when narrow-cut-p
2605 (if (and (string-match (concat "\\`" org-bracket-link-regexp
2606 "\\'")
2607 headline)
2608 (match-end 3))
2609 (setq headline
2610 (format "[[%s][%s]]"
2611 (match-string 1 headline)
2612 (org-shorten-string (match-string 3 headline)
2613 narrow)))
2614 (setq headline (org-shorten-string headline narrow))))
2615 (insert-before-markers
2616 "|" ; start the table line
2617 (if multifile "|" "") ; free space for file name column?
2618 (if level-p (format "%d|" (car entry)) "") ; level, maybe
2619 (if timestamp (concat (nth 2 entry) "|") "") ; timestamp, maybe
2620 (if properties
2621 (concat
2622 (mapconcat
2623 (lambda (p) (or (cdr (assoc p (nth 4 entry))) ""))
2624 properties "|") "|") "") ;properties columns, maybe
2625 (if indent (org-clocktable-indent-string level) "") ; indentation
2626 hlc headline hlc "|" ; headline
2627 (make-string (min (1- ntcol) (or (- level 1))) ?|)
2628 ; empty fields for higher levels
2629 hlc (org-minutes-to-clocksum-string (nth 3 entry)) hlc ; time
2630 "|\n" ; close line
2631 )))))
2632 ;; When exporting subtrees or regions the region might be
2633 ;; activated, so let's disable ̀delete-active-region'
2634 (let ((delete-active-region nil)) (backward-delete-char 1))
2635 (if (setq formula (plist-get params :formula))
2636 (cond
2637 ((eq formula '%)
2638 ;; compute the column where the % numbers need to go
2639 (setq pcol (+ 2
2640 (if multifile 1 0)
2641 (if level-p 1 0)
2642 (if timestamp 1 0)
2643 (min maxlevel (or ntcol 100))))
2644 ;; compute the column where the total time is
2645 (setq tcol (+ 2
2646 (if multifile 1 0)
2647 (if level-p 1 0)
2648 (if timestamp 1 0)))
2649 (insert
2650 (format
2651 "\n#+TBLFM: $%d='(org-clock-time%% @%d$%d $%d..$%d);%%.1f"
2652 pcol ; the column where the % numbers should go
2653 (if (and narrow (not narrow-cut-p)) 3 2) ; row of the total time
2654 tcol ; column of the total time
2655 tcol (1- pcol) ; range of columns where times can be found
2657 (setq recalc t))
2658 ((stringp formula)
2659 (insert "\n#+TBLFM: " formula)
2660 (setq recalc t))
2661 (t (error "Invalid formula in clocktable")))
2662 ;; Should we rescue an old formula?
2663 (when (stringp (setq content (plist-get params :content)))
2664 (when (string-match "^\\([ \t]*#\\+tblfm:.*\\)" content)
2665 (setq recalc t)
2666 (insert "\n" (match-string 1 (plist-get params :content)))
2667 (beginning-of-line 0))))
2668 ;; Back to beginning, align the table, recalculate if necessary
2669 (goto-char ipos)
2670 (skip-chars-forward "^|")
2671 (org-table-align)
2672 (when org-hide-emphasis-markers
2673 ;; we need to align a second time
2674 (org-table-align))
2675 (when sort
2676 (save-excursion
2677 (org-table-goto-line 3)
2678 (org-table-goto-column (car sort))
2679 (org-table-sort-lines nil (cdr sort))))
2680 (when recalc
2681 (if (eq formula '%)
2682 (save-excursion
2683 (if (and narrow (not narrow-cut-p)) (beginning-of-line 2))
2684 (org-table-goto-column pcol nil 'force)
2685 (insert "%")))
2686 (org-table-recalculate 'all))
2687 (when rm-file-column
2688 ;; The file column is actually not wanted
2689 (forward-char 1)
2690 (org-table-delete-column))
2691 total-time))
2693 (defun org-clocktable-indent-string (level)
2694 "Return indentation string according to LEVEL.
2695 LEVEL is an integer. Indent by two spaces per level above 1."
2696 (if (= level 1) ""
2697 (concat "\\_" (make-string (* 2 (1- level)) ?\s))))
2699 (defun org-clocktable-steps (params)
2700 "Step through the range to make a number of clock tables."
2701 (let* ((p1 (copy-sequence params))
2702 (ts (plist-get p1 :tstart))
2703 (te (plist-get p1 :tend))
2704 (ws (plist-get p1 :wstart))
2705 (ms (plist-get p1 :mstart))
2706 (step0 (plist-get p1 :step))
2707 (step (cdr (assoc step0 '((day . 86400) (week . 604800)))))
2708 (stepskip0 (plist-get p1 :stepskip0))
2709 (block (plist-get p1 :block))
2710 cc range-text step-time tsb)
2711 (when block
2712 (setq cc (org-clock-special-range block nil t ws ms)
2713 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2714 (cond
2715 ((numberp ts)
2716 ;; If ts is a number, it's an absolute day number from org-agenda.
2717 (destructuring-bind (month day year) (calendar-gregorian-from-absolute ts)
2718 (setq ts (org-float-time (encode-time 0 0 0 day month year)))))
2720 (setq ts (org-float-time
2721 (apply 'encode-time (org-parse-time-string ts))))))
2722 (cond
2723 ((numberp te)
2724 ;; Likewise for te.
2725 (destructuring-bind (month day year) (calendar-gregorian-from-absolute te)
2726 (setq te (org-float-time (encode-time 0 0 0 day month year)))))
2728 (setq te (org-float-time
2729 (apply 'encode-time (org-parse-time-string te))))))
2730 (setq tsb
2731 (if (eq step0 'week)
2732 (- ts (* 86400 (- (nth 6 (decode-time (seconds-to-time ts))) ws)))
2733 ts))
2734 (setq p1 (plist-put p1 :header ""))
2735 (setq p1 (plist-put p1 :step nil))
2736 (setq p1 (plist-put p1 :block nil))
2737 (while (< tsb te)
2738 (or (bolp) (insert "\n"))
2739 (setq p1 (plist-put p1 :tstart (format-time-string
2740 (org-time-stamp-format nil t)
2741 (seconds-to-time (max tsb ts)))))
2742 (setq p1 (plist-put p1 :tend (format-time-string
2743 (org-time-stamp-format nil t)
2744 (seconds-to-time (min te (setq tsb (+ tsb step)))))))
2745 (insert "\n" (if (eq step0 'day) "Daily report: "
2746 "Weekly report starting on: ")
2747 (plist-get p1 :tstart) "\n")
2748 (setq step-time (org-dblock-write:clocktable p1))
2749 (re-search-forward "^[ \t]*#\\+END:")
2750 (when (and (equal step-time 0) stepskip0)
2751 ;; Remove the empty table
2752 (delete-region (point-at-bol)
2753 (save-excursion
2754 (re-search-backward "^\\(Daily\\|Weekly\\) report"
2755 nil t)
2756 (point))))
2757 (end-of-line 0))))
2759 (defun org-clock-get-table-data (file params)
2760 "Get the clocktable data for file FILE, with parameters PARAMS.
2761 FILE is only for identification - this function assumes that
2762 the correct buffer is current, and that the wanted restriction is
2763 in place.
2764 The return value will be a list with the file name and the total
2765 file time (in minutes) as 1st and 2nd elements. The third element
2766 of this list will be a list of headline entries. Each entry has the
2767 following structure:
2769 (LEVEL HEADLINE TIMESTAMP TIME)
2771 LEVEL: The level of the headline, as an integer. This will be
2772 the reduced leve, so 1,2,3,... even if only odd levels
2773 are being used.
2774 HEADLINE: The text of the headline. Depending on PARAMS, this may
2775 already be formatted like a link.
2776 TIMESTAMP: If PARAMS require it, this will be a time stamp found in the
2777 entry, any of SCHEDULED, DEADLINE, NORMAL, or first inactive,
2778 in this sequence.
2779 TIME: The sum of all time spend in this tree, in minutes. This time
2780 will of cause be restricted to the time block and tags match
2781 specified in PARAMS."
2782 (let* ((maxlevel (or (plist-get params :maxlevel) 3))
2783 (timestamp (plist-get params :timestamp))
2784 (ts (plist-get params :tstart))
2785 (te (plist-get params :tend))
2786 (ws (plist-get params :wstart))
2787 (ms (plist-get params :mstart))
2788 (block (plist-get params :block))
2789 (link (plist-get params :link))
2790 (tags (plist-get params :tags))
2791 (properties (plist-get params :properties))
2792 (inherit-property-p (plist-get params :inherit-props))
2793 todo-only
2794 (matcher (if tags (cdr (org-make-tags-matcher tags))))
2795 cc range-text st p time level hdl props tsp tbl)
2797 (setq org-clock-file-total-minutes nil)
2798 (when block
2799 (setq cc (org-clock-special-range block nil t ws ms)
2800 ts (car cc) te (nth 1 cc) range-text (nth 2 cc)))
2801 (when (integerp ts) (setq ts (calendar-gregorian-from-absolute ts)))
2802 (when (integerp te) (setq te (calendar-gregorian-from-absolute te)))
2803 (when (and ts (listp ts))
2804 (setq ts (format "%4d-%02d-%02d" (nth 2 ts) (car ts) (nth 1 ts))))
2805 (when (and te (listp te))
2806 (setq te (format "%4d-%02d-%02d" (nth 2 te) (car te) (nth 1 te))))
2807 ;; Now the times are strings we can parse.
2808 (if ts (setq ts (org-float-time
2809 (seconds-to-time (org-matcher-time ts)))))
2810 (if te (setq te (org-float-time
2811 (seconds-to-time (org-matcher-time te)))))
2812 (save-excursion
2813 (org-clock-sum ts te
2814 (unless (null matcher)
2815 (lambda ()
2816 (let* ((tags-list (org-get-tags-at))
2817 (org-scanner-tags tags-list)
2818 (org-trust-scanner-tags t))
2819 (eval matcher)))))
2820 (goto-char (point-min))
2821 (setq st t)
2822 (while (or (and (bobp) (prog1 st (setq st nil))
2823 (get-text-property (point) :org-clock-minutes)
2824 (setq p (point-min)))
2825 (setq p (next-single-property-change
2826 (point) :org-clock-minutes)))
2827 (goto-char p)
2828 (when (setq time (get-text-property p :org-clock-minutes))
2829 (save-excursion
2830 (beginning-of-line 1)
2831 (when (and (looking-at (org-re "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[[:alnum:]_@#%:]+:\\)?[ \t]*$"))
2832 (setq level (org-reduced-level
2833 (- (match-end 1) (match-beginning 1))))
2834 (<= level maxlevel))
2835 (setq hdl (if (not link)
2836 (match-string 2)
2837 (org-make-link-string
2838 (format "file:%s::%s"
2839 (buffer-file-name)
2840 (save-match-data
2841 (match-string 2)))
2842 (org-make-org-heading-search-string
2843 (replace-regexp-in-string
2844 org-bracket-link-regexp
2845 (lambda (m) (or (match-string 3 m)
2846 (match-string 1 m)))
2847 (match-string 2)))))
2848 tsp (when timestamp
2849 (setq props (org-entry-properties (point)))
2850 (or (cdr (assoc "SCHEDULED" props))
2851 (cdr (assoc "DEADLINE" props))
2852 (cdr (assoc "TIMESTAMP" props))
2853 (cdr (assoc "TIMESTAMP_IA" props))))
2854 props (when properties
2855 (remove nil
2856 (mapcar
2857 (lambda (p)
2858 (when (org-entry-get (point) p inherit-property-p)
2859 (cons p (org-entry-get (point) p inherit-property-p))))
2860 properties))))
2861 (when (> time 0) (push (list level hdl tsp time props) tbl))))))
2862 (setq tbl (nreverse tbl))
2863 (list file org-clock-file-total-minutes tbl))))
2865 (defun org-clock-time% (total &rest strings)
2866 "Compute a time fraction in percent.
2867 TOTAL s a time string like 10:21 specifying the total times.
2868 STRINGS is a list of strings that should be checked for a time.
2869 The first string that does have a time will be used.
2870 This function is made for clock tables."
2871 (let ((re "\\([0-9]+\\):\\([0-9]+\\)")
2872 tot s)
2873 (save-match-data
2874 (catch 'exit
2875 (if (not (string-match re total))
2876 (throw 'exit 0.)
2877 (setq tot (+ (string-to-number (match-string 2 total))
2878 (* 60 (string-to-number (match-string 1 total)))))
2879 (if (= tot 0.) (throw 'exit 0.)))
2880 (while (setq s (pop strings))
2881 (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
2882 (throw 'exit
2883 (/ (* 100.0 (+ (string-to-number (match-string 2 s))
2884 (* 60 (string-to-number
2885 (match-string 1 s)))))
2886 tot))))
2887 0))))
2889 ;; Saving and loading the clock
2891 (defvar org-clock-loaded nil
2892 "Was the clock file loaded?")
2894 ;;;###autoload
2895 (defun org-clock-update-time-maybe ()
2896 "If this is a CLOCK line, update it and return t.
2897 Otherwise, return nil."
2898 (interactive)
2899 (save-excursion
2900 (beginning-of-line 1)
2901 (skip-chars-forward " \t")
2902 (when (looking-at org-clock-string)
2903 (let ((re (concat "[ \t]*" org-clock-string
2904 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
2905 "\\([ \t]*=>.*\\)?\\)?"))
2906 ts te h m s neg)
2907 (cond
2908 ((not (looking-at re))
2909 nil)
2910 ((not (match-end 2))
2911 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
2912 (> org-clock-marker (point))
2913 (<= org-clock-marker (point-at-eol)))
2914 ;; The clock is running here
2915 (setq org-clock-start-time
2916 (apply 'encode-time
2917 (org-parse-time-string (match-string 1))))
2918 (org-clock-update-mode-line)))
2920 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
2921 (end-of-line 1)
2922 (setq ts (match-string 1)
2923 te (match-string 3))
2924 (setq s (- (org-float-time
2925 (apply 'encode-time (org-parse-time-string te)))
2926 (org-float-time
2927 (apply 'encode-time (org-parse-time-string ts))))
2928 neg (< s 0)
2929 s (abs s)
2930 h (floor (/ s 3600))
2931 s (- s (* 3600 h))
2932 m (floor (/ s 60))
2933 s (- s (* 60 s)))
2934 (insert " => " (format (if neg "-%d:%02d" "%2d:%02d") h m))
2935 t))))))
2937 (defun org-clock-save ()
2938 "Persist various clock-related data to disk.
2939 The details of what will be saved are regulated by the variable
2940 `org-clock-persist'."
2941 (when (and org-clock-persist
2942 (or org-clock-loaded
2943 org-clock-has-been-used
2944 (not (file-exists-p org-clock-persist-file))))
2945 (let (b)
2946 (with-current-buffer (find-file (expand-file-name org-clock-persist-file))
2947 (progn
2948 (delete-region (point-min) (point-max))
2949 ;;Store clock
2950 (insert (format ";; org-persist.el - %s at %s\n"
2951 system-name (format-time-string
2952 (cdr org-time-stamp-formats))))
2953 (if (and (memq org-clock-persist '(t clock))
2954 (setq b (org-clocking-buffer))
2955 (setq b (or (buffer-base-buffer b) b))
2956 (buffer-live-p b)
2957 (buffer-file-name b)
2958 (or (not org-clock-persist-query-save)
2959 (y-or-n-p (concat "Save current clock ("
2960 org-clock-heading ") "))))
2961 (insert "(setq resume-clock '(\""
2962 (buffer-file-name (org-clocking-buffer))
2963 "\" . " (int-to-string (marker-position org-clock-marker))
2964 "))\n"))
2965 ;; Store clocked task history. Tasks are stored reversed to make
2966 ;; reading simpler
2967 (when (and (memq org-clock-persist '(t history))
2968 org-clock-history)
2969 (insert
2970 "(setq stored-clock-history '("
2971 (mapconcat
2972 (lambda (m)
2973 (when (and (setq b (marker-buffer m))
2974 (setq b (or (buffer-base-buffer b) b))
2975 (buffer-live-p b)
2976 (buffer-file-name b))
2977 (concat "(\"" (buffer-file-name b)
2978 "\" . " (int-to-string (marker-position m))
2979 ")")))
2980 (reverse org-clock-history) " ") "))\n"))
2981 (save-buffer)
2982 (kill-buffer (current-buffer)))))))
2984 (defun org-clock-load ()
2985 "Load clock-related data from disk, maybe resuming a stored clock."
2986 (when (and org-clock-persist (not org-clock-loaded))
2987 (let ((filename (expand-file-name org-clock-persist-file))
2988 (org-clock-in-resume 'auto-restart)
2989 resume-clock stored-clock-history)
2990 (if (not (file-readable-p filename))
2991 (message "Not restoring clock data; %s not found"
2992 org-clock-persist-file)
2993 (message "%s" "Restoring clock data")
2994 (setq org-clock-loaded t)
2995 (load-file filename)
2996 ;; load history
2997 (when stored-clock-history
2998 (save-window-excursion
2999 (mapc (lambda (task)
3000 (if (file-exists-p (car task))
3001 (org-clock-history-push (cdr task)
3002 (find-file (car task)))))
3003 stored-clock-history)))
3004 ;; resume clock
3005 (when (and resume-clock org-clock-persist
3006 (file-exists-p (car resume-clock))
3007 (or (not org-clock-persist-query-resume)
3008 (y-or-n-p
3009 (concat
3010 "Resume clock ("
3011 (with-current-buffer (find-file (car resume-clock))
3012 (save-excursion
3013 (goto-char (cdr resume-clock))
3014 (org-back-to-heading t)
3015 (and (looking-at org-complex-heading-regexp)
3016 (match-string 4))))
3017 ") "))))
3018 (when (file-exists-p (car resume-clock))
3019 (with-current-buffer (find-file (car resume-clock))
3020 (goto-char (cdr resume-clock))
3021 (let ((org-clock-auto-clock-resolution nil))
3022 (org-clock-in)
3023 (if (outline-invisible-p)
3024 (org-show-context))))))))))
3026 ;; Suggested bindings
3027 (org-defkey org-mode-map "\C-c\C-x\C-e" 'org-clock-modify-effort-estimate)
3029 (provide 'org-clock)
3031 ;; Local variables:
3032 ;; generated-autoload-file: "org-loaddefs.el"
3033 ;; End:
3035 ;;; org-clock.el ends here