1 ;;; org-clock.el --- The time clocking code for Org-mode
3 ;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27 ;; This file contains the time clocking code for Org-mode
35 (declare-function calendar-absolute-from-iso
"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 (defvar org-time-stamp-formats
)
40 (defvar org-frame-title-format-backup frame-title-format
)
42 (defgroup org-clock nil
43 "Options concerning clocking working time in Org-mode."
47 (defcustom org-clock-into-drawer org-log-into-drawer
48 "Should clocking info be wrapped into a drawer?
49 When t, clocking info will always be inserted into a :LOGBOOK: drawer.
50 If necessary, the drawer will be created.
51 When nil, the drawer will not be created, but used when present.
52 When an integer and the number of clocking entries in an item
53 reaches or exceeds this number, a drawer will be created.
54 When a string, it names the drawer to be used.
56 The default for this variable is the value of `org-log-into-drawer',
61 (const :tag
"Always" t
)
62 (const :tag
"Only when drawer exists" nil
)
63 (integer :tag
"When at least N clock entries")
64 (const :tag
"Into LOGBOOK drawer" "LOGBOOK")
65 (string :tag
"Into Drawer named...")))
67 (defun org-clock-into-drawer ()
68 "Return the value of `org-clock-into-drawer', but let properties overrule.
69 If the current entry has or inherits a CLOCK_INTO_DRAWER
70 property, it will be used instead of the default value; otherwise
71 if the current entry has or inherits a LOG_INTO_DRAWER property,
72 it will be used instead of the default value.
73 The default is the value of the customizable variable `org-clock-into-drawer',
75 (let ((p (org-entry-get nil
"CLOCK_INTO_DRAWER" 'inherit
))
76 (q (org-entry-get nil
"LOG_INTO_DRAWER" 'inherit
)))
78 ((or (not (or p q
)) (equal p
"nil") (equal q
"nil")) org-clock-into-drawer
)
79 ((or (equal p
"t") (equal q
"t")) "LOGBOOK")
83 (defcustom org-clock-out-when-done t
84 "When non-nil, clock will be stopped when the clocked entry is marked DONE.
85 DONE here means any DONE-like state.
86 A nil value means clock will keep running until stopped explicitly with
87 `C-c C-x C-o', or until the clock is started in a different item.
88 Instead of t, this can also be a list of TODO states that should trigger
93 (const :tag
"Yes, when done" t
)
94 (repeat :tag
"State list"
95 (string :tag
"TODO keyword"))))
97 (defcustom org-clock-out-remove-zero-time-clocks nil
98 "Non-nil means remove the clock line when the resulting time is zero."
102 (defcustom org-clock-in-switch-to-state nil
103 "Set task to a special todo state while clocking it.
104 The value should be the state to which the entry should be
105 switched. If the value is a function, it must take one
106 parameter (the current TODO state of the item) and return the
107 state to switch it to."
111 (const :tag
"Don't force a state" nil
)
112 (string :tag
"State")
113 (symbol :tag
"Function")))
115 (defcustom org-clock-out-switch-to-state nil
116 "Set task to a special todo state after clocking out.
117 The value should be the state to which the entry should be
118 switched. If the value is a function, it must take one
119 parameter (the current TODO state of the item) and return the
120 state to switch it to."
124 (const :tag
"Don't force a state" nil
)
125 (string :tag
"State")
126 (symbol :tag
"Function")))
128 (defcustom org-clock-history-length
5
129 "Number of clock tasks to remember in history."
133 (defcustom org-clock-goto-may-find-recent-task t
134 "Non-nil means `org-clock-goto' can go to recent task if no active clock."
138 (defcustom org-clock-heading-function nil
139 "When non-nil, should be a function to create `org-clock-heading'.
140 This is the string shown in the mode line when a clock is running.
141 The function is called with point at the beginning of the headline."
145 (defcustom org-clock-string-limit
0
146 "Maximum length of clock strings in the mode line. 0 means no limit."
150 (defcustom org-clock-in-resume nil
151 "If non-nil, resume clock when clocking into task with open clock.
152 When clocking into a task with a clock entry which has not been closed,
153 the clock can be resumed from that point."
157 (defcustom org-clock-persist nil
158 "When non-nil, save the running clock when Emacs is closed.
159 The clock is resumed when Emacs restarts.
160 When this is t, both the running clock, and the entire clock
161 history are saved. When this is the symbol `clock', only the
162 running clock is saved.
164 When Emacs restarts with saved clock information, the file containing the
165 running clock as well as all files mentioned in the clock history will
167 All this depends on running `org-clock-persistence-insinuate' in .emacs"
170 (const :tag
"Just the running clock" clock
)
171 (const :tag
"Just the history" history
)
172 (const :tag
"Clock and history" t
)
173 (const :tag
"No persistence" nil
)))
175 (defcustom org-clock-persist-file
(convert-standard-filename
176 "~/.emacs.d/org-clock-save.el")
177 "File to save clock data to."
181 (defcustom org-clock-persist-query-save nil
182 "When non-nil, ask before saving the current clock on exit."
186 (defcustom org-clock-persist-query-resume t
187 "When non-nil, ask before resuming any stored clock during load."
191 (defcustom org-clock-sound nil
192 "Sound to use for notifications.
196 t Standard Emacs beep
197 file name Play this sound file, fall back to beep"
200 (const :tag
"No sound" nil
)
201 (const :tag
"Standard beep" t
)
202 (file :tag
"Play sound file")))
204 (define-obsolete-variable-alias 'org-clock-modeline-total
205 'org-clock-mode-line-total
"24.3")
207 (defcustom org-clock-mode-line-total
'auto
208 "Default setting for the time included for the mode line clock.
209 This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
212 current Only the time in the current instance of the clock
213 today All time clocked into this task today
214 repeat All time clocked into this task since last repeat
215 all All time ever recorded for this task
216 auto Automatically, either `all', or `repeat' for repeating tasks"
219 (const :tag
"Current clock" current
)
220 (const :tag
"Today's task time" today
)
221 (const :tag
"Since last repeat" repeat
)
222 (const :tag
"All task time" all
)
223 (const :tag
"Automatically, `all' or since `repeat'" auto
)))
225 (defvaralias 'org-task-overrun-text
'org-clock-task-overrun-text
)
226 (defcustom org-clock-task-overrun-text nil
227 "Extra mode line text to indicate that the clock is overrun.
228 The can be nil to indicate that instead of adding text, the clock time
229 should get a different face (`org-mode-line-clock-overrun').
230 When this is a string, it is prepended to the clock string as an indication,
231 also using the face `org-mode-line-clock-overrun'."
235 (const :tag
"Just mark the time string" nil
)
236 (string :tag
"Text to prepend")))
238 (defcustom org-show-notification-handler nil
239 "Function or program to send notification with.
240 The function or program will be called with the notification
244 (string :tag
"Program")
245 (function :tag
"Function")))
247 (defgroup org-clocktable nil
248 "Options concerning the clock table in Org-mode."
249 :tag
"Org Clock Table"
252 (defcustom org-clocktable-defaults
255 :lang org-export-default-language
273 "Default properties for clock tables."
278 (defcustom org-clock-clocktable-formatter
'org-clocktable-write-default
279 "Function to turn clocking data into a table.
280 For more information, see `org-clocktable-write-default'."
281 :group
'org-clocktable
285 ;; FIXME: translate es and nl last string "Clock summary at"
286 (defcustom org-clock-clocktable-language-setup
287 '(("en" "File" "L" "Timestamp" "Headline" "Time" "ALL" "Total time" "File time" "Clock summary at")
288 ("es" "Archivo" "N" "Fecha y hora" "Tarea" "Tiempo" "TODO" "Tiempo total" "Tiempo archivo" "Clock summary at")
289 ("fr" "Fichier" "N" "Horodatage" "En-tête" "Durée" "TOUT" "Durée totale" "Durée fichier" "Horodatage sommaire à ")
290 ("nl" "Bestand" "N" "Tijdstip" "Hoofding" "Duur" "ALLES" "Totale duur" "Bestandstijd" "Clock summary at"))
291 "Terms used in clocktable, translated to different languages."
292 :group
'org-clocktable
296 (defcustom org-clock-clocktable-default-properties
'(:maxlevel
2 :scope file
)
297 "Default properties for new clocktables.
298 These will be inserted into the BEGIN line, to make it easy for users to
300 :group
'org-clocktable
303 (defcustom org-clock-idle-time nil
304 "When non-nil, resolve open clocks if the user is idle more than X minutes."
307 (const :tag
"Never" nil
)
308 (integer :tag
"After N minutes")))
310 (defcustom org-clock-auto-clock-resolution
'when-no-clock-is-running
311 "When to automatically resolve open clocks found in Org buffers."
314 (const :tag
"Never" nil
)
315 (const :tag
"Always" t
)
316 (const :tag
"When no clock is running" when-no-clock-is-running
)))
318 (defcustom org-clock-report-include-clocking-task nil
319 "When non-nil, include the current clocking task time in clock reports."
324 (defcustom org-clock-resolve-expert nil
325 "Non-nil means do not show the splash buffer with the clock resolver."
330 (defcustom org-clock-continuously nil
331 "Non-nil means to start clocking from the last clock-out time, if any."
336 (defcustom org-clock-total-time-cell-format
"*%s*"
337 "Format string for the total time cells."
342 (defcustom org-clock-file-time-cell-format
"*%s*"
343 "Format string for the file time cells."
348 (defcustom org-clock-clocked-in-display
'mode-line
349 "When clocked in for a task, org-mode can display the current
350 task and accumulated time in the mode line and/or frame title.
353 both displays in both mode line and frame title
354 mode-line displays only in mode line (default)
355 frame-title displays only in frame title
356 nil current clock is not displayed"
359 (const :tag
"Mode line" mode-line
)
360 (const :tag
"Frame title" frame-title
)
361 (const :tag
"Both" both
)
362 (const :tag
"None" nil
)))
364 (defcustom org-clock-frame-title-format
'(t org-mode-line-string
)
365 "The value for `frame-title-format' when clocking in.
367 When `org-clock-clocked-in-display' is set to 'frame-title
368 or 'both, clocking in will replace `frame-title-format' with
369 this value. Clocking out will restore `frame-title-format'.
371 `org-frame-title-string' is a format string using the same
372 specifications than `frame-title-format', which see."
377 (defvar org-clock-in-prepare-hook nil
378 "Hook run when preparing the clock.
379 This hook is run before anything happens to the task that
380 you want to clock in. For example, you can use this hook
381 to add an effort property.")
382 (defvar org-clock-in-hook nil
383 "Hook run when starting the clock.")
384 (defvar org-clock-out-hook nil
385 "Hook run when stopping the current clock.")
387 (defvar org-clock-cancel-hook nil
388 "Hook run when cancelling the current clock.")
389 (defvar org-clock-goto-hook nil
390 "Hook run when selecting the currently clocked-in entry.")
391 (defvar org-clock-has-been-used nil
392 "Has the clock been used during the current Emacs session?")
394 ;;; The clock for measuring work time.
396 (defvar org-mode-line-string
"")
397 (put 'org-mode-line-string
'risky-local-variable t
)
399 (defvar org-clock-mode-line-timer nil
)
400 (defvar org-clock-idle-timer nil
)
401 (defvar org-clock-heading
) ; defined in org.el
402 (defvar org-clock-heading-for-remember
"")
403 (defvar org-clock-start-time
"")
405 (defvar org-clock-leftover-time nil
406 "If non-nil, user cancelled a clock; this is when leftover time started.")
408 (defvar org-clock-effort
""
409 "Effort estimate of the currently clocking task.")
411 (defvar org-clock-total-time nil
412 "Holds total time, spent previously on currently clocked item.
413 This does not include the time in the currently running clock.")
415 (defvar org-clock-history nil
416 "List of marker pointing to recent clocked tasks.")
418 (defvar org-clock-default-task
(make-marker)
419 "Marker pointing to the default task that should clock time.
420 The clock can be made to switch to this task after clocking out
421 of a different task.")
423 (defvar org-clock-interrupted-task
(make-marker)
424 "Marker pointing to the task that has been interrupted by the current clock.")
426 (defvar org-clock-mode-line-map
(make-sparse-keymap))
427 (define-key org-clock-mode-line-map
[mode-line mouse-2
] 'org-clock-goto
)
428 (define-key org-clock-mode-line-map
[mode-line mouse-1
] 'org-clock-menu
)
430 (defun org-clock-menu ()
434 ["Clock out" org-clock-out t
]
435 ["Change effort estimate" org-clock-modify-effort-estimate t
]
436 ["Go to clock entry" org-clock-goto t
]
437 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t
:keys
"C-u C-c C-x C-i"])))
439 (defun org-clock-history-push (&optional pos buffer
)
440 "Push a marker to the clock history."
441 (setq org-clock-history-length
(max 1 (min 35 org-clock-history-length
)))
442 (let ((m (move-marker (make-marker)
443 (or pos
(point)) (org-base-buffer
444 (or buffer
(current-buffer)))))
446 (while (setq n
(member m org-clock-history
))
447 (move-marker (car n
) nil
))
448 (setq org-clock-history
450 (mapcar (lambda (x) (if (marker-buffer x
) x nil
))
452 (when (>= (setq l
(length org-clock-history
)) org-clock-history-length
)
453 (setq org-clock-history
455 (nthcdr (- l org-clock-history-length -
1)
456 (nreverse org-clock-history
)))))
457 (push m org-clock-history
)))
459 (defun org-clock-save-markers-for-cut-and-paste (beg end
)
460 "Save relative positions of markers in region."
461 (org-check-and-save-marker org-clock-marker beg end
)
462 (org-check-and-save-marker org-clock-hd-marker beg end
)
463 (org-check-and-save-marker org-clock-default-task beg end
)
464 (org-check-and-save-marker org-clock-interrupted-task beg end
)
465 (mapc (lambda (m) (org-check-and-save-marker m beg end
))
468 (defun org-clocking-buffer ()
469 "Return the clocking buffer if we are currently clocking a task or nil."
470 (marker-buffer org-clock-marker
))
472 (defun org-clocking-p ()
473 "Return t when clocking a task."
474 (not (equal (org-clocking-buffer) nil
)))
476 (defvar org-clock-before-select-task-hook nil
477 "Hook called in task selection just before prompting the user.")
479 (defun org-clock-select-task (&optional prompt
)
480 "Select a task that recently was associated with clocking."
482 (let (sel-list rpl
(i 0) s
)
483 (save-window-excursion
484 (org-switch-to-buffer-other-window
485 (get-buffer-create "*Clock Task Select*"))
487 (when (marker-buffer org-clock-default-task
)
488 (insert (org-add-props "Default Task\n" nil
'face
'bold
))
489 (setq s
(org-clock-insert-selection-line ?d org-clock-default-task
))
491 (when (marker-buffer org-clock-interrupted-task
)
492 (insert (org-add-props "The task interrupted by starting the last one\n" nil
'face
'bold
))
493 (setq s
(org-clock-insert-selection-line ?i org-clock-interrupted-task
))
495 (when (org-clocking-p)
496 (insert (org-add-props "Current Clocking Task\n" nil
'face
'bold
))
497 (setq s
(org-clock-insert-selection-line ?c org-clock-marker
))
499 (insert (org-add-props "Recent Tasks\n" nil
'face
'bold
))
502 (when (marker-buffer m
)
504 s
(org-clock-insert-selection-line
508 (if (fboundp 'int-to-char
) (setf (car s
) (int-to-char (car s
))))
511 (run-hooks 'org-clock-before-select-task-hook
)
512 (org-fit-window-to-buffer)
513 (message (or prompt
"Select task for clocking:"))
514 (setq rpl
(read-char-exclusive))
518 ((assoc rpl sel-list
) (cdr (assoc rpl sel-list
)))
519 (t (error "Invalid task choice %c" rpl
))))))
521 (defun org-clock-insert-selection-line (i marker
)
522 "Insert a line for the clock selection menu.
523 And return a cons cell with the selection character integer and the marker
525 (when (marker-buffer marker
)
526 (let (file cat task heading prefix
)
527 (with-current-buffer (org-base-buffer (marker-buffer marker
))
533 (setq file
(buffer-file-name (marker-buffer marker
))
534 cat
(org-get-category)
535 heading
(org-get-heading 'notags
)
536 prefix
(save-excursion
537 (org-back-to-heading t
)
538 (looking-at org-outline-regexp
)
541 (org-fontify-like-in-org-mode
542 (concat prefix heading
)
544 (length prefix
)))))))
546 (insert (format "[%c] %-15s %s\n" i cat task
))
549 (defvar org-clock-task-overrun nil
550 "Internal flag indicating if the clock has overrun the planned time.")
551 (defvar org-clock-update-period
60
552 "Number of seconds between mode line clock string updates.")
554 (defun org-clock-get-clock-string ()
555 "Form a clock-string, that will be shown in the mode line.
556 If an effort estimate was defined for the current item, use
557 01:30/01:50 format (clocked/estimated).
558 If not, show simply the clocked time like 01:50."
559 (let* ((clocked-time (org-clock-get-clocked-time))
560 (h (floor clocked-time
60))
561 (m (- clocked-time
(* 60 h
))))
563 (let* ((effort-in-minutes
564 (org-duration-string-to-minutes org-clock-effort
))
565 (effort-h (floor effort-in-minutes
60))
566 (effort-m (- effort-in-minutes
(* effort-h
60)))
569 (format org-time-clocksum-format h m
)
570 'face
(if (and org-clock-task-overrun
(not org-clock-task-overrun-text
))
571 'org-mode-line-clock-overrun
'org-mode-line-clock
)))
572 (effort-str (format org-time-clocksum-format effort-h effort-m
))
573 (clockstr (org-propertize
574 (concat " [%s/" effort-str
575 "] (" (replace-regexp-in-string "%" "%%" org-clock-heading
) ")")
576 'face
'org-mode-line-clock
)))
577 (format clockstr work-done-str
))
578 (org-propertize (format
579 (concat "[" org-time-clocksum-format
" (%s)]")
580 h m org-clock-heading
)
581 'face
'org-mode-line-clock
))))
583 (defun org-clock-get-last-clock-out-time ()
584 "Get the last clock-out time for the current subtree."
586 (let ((end (save-excursion (org-end-of-subtree))))
587 (when (re-search-forward (concat org-clock-string
588 ".*\\]--\\(\\[[^]]+\\]\\)") end t
)
589 (org-time-string-to-time (match-string 1))))))
591 (defun org-clock-update-mode-line ()
593 (org-clock-notify-once-if-expired)
594 (setq org-clock-task-overrun nil
))
595 (setq org-mode-line-string
597 (let ((clock-string (org-clock-get-clock-string))
598 (help-text "Org-mode clock is running.\nmouse-1 shows a menu\nmouse-2 will jump to task"))
599 (if (and (> org-clock-string-limit
0)
600 (> (length clock-string
) org-clock-string-limit
))
602 (substring clock-string
0 org-clock-string-limit
)
603 'help-echo
(concat help-text
": " org-clock-heading
))
604 (org-propertize clock-string
'help-echo help-text
)))
605 'local-map org-clock-mode-line-map
606 'mouse-face
(if (featurep 'xemacs
) 'highlight
'mode-line-highlight
)))
607 (if (and org-clock-task-overrun org-clock-task-overrun-text
)
608 (setq org-mode-line-string
609 (concat (org-propertize
610 org-clock-task-overrun-text
611 'face
'org-mode-line-clock-overrun
) org-mode-line-string
)))
612 (force-mode-line-update))
614 (defun org-clock-get-clocked-time ()
615 "Get the clocked time for the current item in minutes.
616 The time returned includes the time spent on this task in
617 previous clocking intervals."
618 (let ((currently-clocked-time
619 (floor (- (org-float-time)
620 (org-float-time org-clock-start-time
)) 60)))
621 (+ currently-clocked-time
(or org-clock-total-time
0))))
623 (defun org-clock-modify-effort-estimate (&optional value
)
624 "Add to or set the effort estimate of the item currently being clocked.
625 VALUE can be a number of minutes, or a string with format hh:mm or mm.
626 When the string starts with a + or a - sign, the current value of the effort
627 property will be changed by that amount.
628 This will update the \"Effort\" property of currently clocked item, and
631 (if (org-clock-is-active)
632 (let ((current org-clock-effort
) sign
)
634 ;; Prompt user for a value or a change
637 (format "Set effort (hh:mm or mm%s): "
639 (format ", prefix + to add to %s" org-clock-effort
)
641 (when (stringp value
)
642 ;; A string. See if it is a delta
643 (setq sign
(string-to-char value
))
644 (if (member sign
'(?- ?
+))
645 (setq current
(org-duration-string-to-minutes current
)
646 value
(substring value
1))
648 (setq value
(org-duration-string-to-minutes value
))
650 (setq value
(- current value
))
651 (if (equal ?
+ sign
) (setq value
(+ current value
)))))
652 (setq value
(max 0 value
)
653 org-clock-effort
(org-minutes-to-hh:mm-string value
))
654 (org-entry-put org-clock-marker
"Effort" org-clock-effort
)
655 (org-clock-update-mode-line)
656 (message "Effort is now %s" org-clock-effort
))
657 (message "Clock is not currently active")))
659 (defvar org-clock-notification-was-shown nil
660 "Shows if we have shown notification already.")
662 (defun org-clock-notify-once-if-expired ()
663 "Show notification if we spent more time than we estimated before.
664 Notification is shown only once."
665 (when (org-clocking-p)
666 (let ((effort-in-minutes (org-duration-string-to-minutes org-clock-effort
))
667 (clocked-time (org-clock-get-clocked-time)))
668 (if (setq org-clock-task-overrun
669 (if (or (null effort-in-minutes
) (zerop effort-in-minutes
))
671 (>= clocked-time effort-in-minutes
)))
672 (unless org-clock-notification-was-shown
673 (setq org-clock-notification-was-shown t
)
675 (format "Task '%s' should be finished by now. (%s)"
676 org-clock-heading org-clock-effort
) t
))
677 (setq org-clock-notification-was-shown nil
)))))
679 (defun org-notify (notification &optional play-sound
)
680 "Send a NOTIFICATION and maybe PLAY-SOUND.
681 If PLAY-SOUND is non-nil, it overrides `org-clock-sound'."
682 (org-show-notification notification
)
683 (if play-sound
(org-clock-play-sound play-sound
)))
685 (defun org-show-notification (notification)
687 Use `org-show-notification-handler' if defined,
688 use libnotify if available, or fall back on a message."
689 (cond ((functionp org-show-notification-handler
)
690 (funcall org-show-notification-handler notification
))
691 ((stringp org-show-notification-handler
)
692 (start-process "emacs-timer-notification" nil
693 org-show-notification-handler notification
))
694 ((fboundp 'notifications-notify
)
695 (notifications-notify
696 :title
"Org-mode message"
698 ;; FIXME how to link to the Org icon?
699 ;; :app-icon "~/.emacs.d/icons/mail.png"
701 ((executable-find "notify-send")
702 (start-process "emacs-timer-notification" nil
703 "notify-send" notification
))
704 ;; Maybe the handler will send a message, so only use message as
705 ;; a fall back option
706 (t (message "%s" notification
))))
708 (defun org-clock-play-sound (&optional clock-sound
)
709 "Play sound as configured by `org-clock-sound'.
710 Use alsa's aplay tool if available.
711 If CLOCK-SOUND is non-nil, it overrides `org-clock-sound'."
712 (let ((org-clock-sound (or clock-sound org-clock-sound
)))
714 ((not org-clock-sound
))
715 ((eq org-clock-sound t
) (beep t
) (beep t
))
716 ((stringp org-clock-sound
)
717 (let ((file (expand-file-name org-clock-sound
)))
718 (if (file-exists-p file
)
719 (if (executable-find "aplay")
720 (start-process "org-clock-play-notification" nil
723 (play-sound-file file
)
724 (error (beep t
) (beep t
))))))))))
726 (defvar org-clock-mode-line-entry nil
727 "Information for the mode line about the running clock.")
729 (defun org-find-open-clocks (file)
730 "Search through the given file and find all open clocks."
731 (let ((buf (or (get-file-buffer file
)
732 (find-file-noselect file
)))
734 (with-current-buffer buf
736 (goto-char (point-min))
737 (while (re-search-forward "CLOCK: \\(\\[.*?\\]\\)$" nil t
)
738 (push (cons (copy-marker (match-end 1) t
)
739 (org-time-string-to-time (match-string 1))) clocks
))))
742 (defsubst org-is-active-clock
(clock)
743 "Return t if CLOCK is the currently active clock."
744 (and (org-clock-is-active)
745 (= org-clock-marker
(car clock
))))
747 (defmacro org-with-clock-position
(clock &rest forms
)
748 "Evaluate FORMS with CLOCK as the current active clock."
749 `(with-current-buffer (marker-buffer (car ,clock
))
753 (goto-char (car ,clock
))
756 (def-edebug-spec org-with-clock-position
(form body
))
757 (put 'org-with-clock-position
'lisp-indent-function
1)
759 (defmacro org-with-clock
(clock &rest forms
)
760 "Evaluate FORMS with CLOCK as the current active clock.
761 This macro also protects the current active clock from being altered."
762 `(org-with-clock-position ,clock
763 (let ((org-clock-start-time (cdr ,clock
))
764 (org-clock-total-time)
767 (org-clock-marker (car ,clock
))
768 (org-clock-hd-marker (save-excursion
769 (outline-back-to-heading t
)
772 (def-edebug-spec org-with-clock
(form body
))
773 (put 'org-with-clock
'lisp-indent-function
1)
775 (defsubst org-clock-clock-in
(clock &optional resume start-time
)
776 "Clock in to the clock located by CLOCK.
777 If necessary, clock-out of the currently active clock."
778 (org-with-clock-position clock
779 (let ((org-clock-in-resume (or resume org-clock-in-resume
)))
780 (org-clock-in nil start-time
))))
782 (defsubst org-clock-clock-out
(clock &optional fail-quietly at-time
)
783 "Clock out of the clock located by CLOCK."
784 (let ((temp (copy-marker (car clock
)
785 (marker-insertion-type (car clock
)))))
786 (if (org-is-active-clock clock
)
787 (org-clock-out nil fail-quietly at-time
)
788 (org-with-clock clock
789 (org-clock-out nil fail-quietly at-time
)))
790 (setcar clock temp
)))
792 (defsubst org-clock-clock-cancel
(clock)
793 "Cancel the clock located by CLOCK."
794 (let ((temp (copy-marker (car clock
)
795 (marker-insertion-type (car clock
)))))
796 (if (org-is-active-clock clock
)
798 (org-with-clock clock
800 (setcar clock temp
)))
802 (defvar org-clock-clocking-in nil
)
803 (defvar org-clock-resolving-clocks nil
)
804 (defvar org-clock-resolving-clocks-due-to-idleness nil
)
806 (defun org-clock-resolve-clock (clock resolve-to clock-out-time
807 &optional close-p restart-p fail-quietly
)
808 "Resolve `CLOCK' given the time `RESOLVE-TO', and the present.
809 `CLOCK' is a cons cell of the form (MARKER START-TIME)."
810 (let ((org-clock-resolving-clocks t
))
813 (org-clock-clock-cancel clock
)
814 (if (and restart-p
(not org-clock-clocking-in
))
815 (org-clock-clock-in clock
)))
817 ((eq resolve-to
'now
)
819 (error "RESTART-P is not valid here"))
820 (if (or close-p org-clock-clocking-in
)
821 (org-clock-clock-out clock fail-quietly
)
822 (unless (org-is-active-clock clock
)
823 (org-clock-clock-in clock t
))))
825 ((not (time-less-p resolve-to
(current-time)))
826 (error "RESOLVE-TO must refer to a time in the past"))
830 (error "RESTART-P is not valid here"))
831 (org-clock-clock-out clock fail-quietly
(or clock-out-time
833 (unless org-clock-clocking-in
835 (setq org-clock-leftover-time
(and (null clock-out-time
)
837 (org-clock-clock-in clock nil
(and clock-out-time
840 (defun org-clock-jump-to-current-clock (&optional effective-clock
)
842 (let ((org-clock-into-drawer (org-clock-into-drawer))
843 (clock (or effective-clock
(cons org-clock-marker
844 org-clock-start-time
))))
845 (unless (marker-buffer (car clock
))
846 (error "No clock is currently running"))
847 (org-with-clock clock
(org-clock-goto))
848 (with-current-buffer (marker-buffer (car clock
))
849 (goto-char (car clock
))
850 (if org-clock-into-drawer
852 (if (stringp org-clock-into-drawer
)
853 (concat ":" org-clock-into-drawer
":")
858 (outline-back-to-heading t
)
859 (search-forward logbook
)
860 (goto-char (match-beginning 0)))
862 (outline-back-to-heading t
)
863 (search-forward logbook
)
864 (search-forward ":END:")
865 (goto-char (match-end 0)))
868 (defun org-clock-resolve (clock &optional prompt-fn last-valid fail-quietly
)
869 "Resolve an open org-mode clock.
870 An open clock was found, with `dangling' possibly being non-nil.
871 If this function was invoked with a prefix argument, non-dangling
872 open clocks are ignored. The given clock requires some sort of
873 user intervention to resolve it, either because a clock was left
874 dangling or due to an idle timeout. The clock resolution can
877 (a) deleted, the user doesn't care about the clock
878 (b) restarted from the current time (if no other clock is open)
879 (c) closed, giving the clock X minutes
880 (d) closed and then restarted
881 (e) resumed, as if the user had never left
883 The format of clock is (CONS MARKER START-TIME), where MARKER
884 identifies the buffer and position the clock is open at (and
885 thus, the heading it's under), and START-TIME is when the clock
889 (save-window-excursion
891 (unless org-clock-resolving-clocks-due-to-idleness
892 (org-clock-jump-to-current-clock clock
))
893 (unless org-clock-resolve-expert
894 (with-output-to-temp-buffer "*Org Clock*"
895 (princ "Select a Clock Resolution Command:
897 i/q/C-g Ignore this question; the same as keeping all the idle time.
899 k/K Keep X minutes of the idle time (default is all). If this
900 amount is less than the default, you will be clocked out
901 that many minutes after the time that idling began, and then
902 clocked back in at the present time.
903 g/G Indicate that you \"got back\" X minutes ago. This is quite
904 different from 'k': it clocks you out from the beginning of
905 the idle period and clock you back in X minutes ago.
906 s/S Subtract the idle time from the current clock. This is the
907 same as keeping 0 minutes.
908 C Cancel the open timer altogether. It will be as though you
910 j/J Jump to the current clock, to make manual adjustments.
912 For all these options, using uppercase makes your final state
913 to be CLOCKED OUT.")))
914 (org-fit-window-to-buffer (get-buffer-window "*Org Clock*"))
916 (when (featurep 'xemacs
)
917 (message (concat (funcall prompt-fn clock
)
919 (setq char-pressed
(read-char-exclusive)))
920 (while (or (null char-pressed
)
921 (and (not (memq char-pressed
922 '(?k ?K ?g ?G ?s ?S ?C
926 (read-char (concat (funcall prompt-fn clock
)
929 (and (not (memq char-pressed
'(?i ?q
))) char-pressed
)))))
931 (floor (/ (org-float-time
932 (time-subtract (current-time) last-valid
)) 60)))
934 (and (memq ch
'(?k ?K
))
935 (read-number "Keep how many minutes? " default
)))
937 (and (memq ch
'(?g ?G
))
938 (read-number "Got back how many minutes ago? " default
)))
939 (subtractp (memq ch
'(?s ?S
)))
940 (barely-started-p (< (- (org-float-time last-valid
)
941 (org-float-time (cdr clock
))) 45))
942 (start-over (and subtractp barely-started-p
)))
946 (org-clock-resolve-clock clock
'now nil t nil fail-quietly
))
947 (org-clock-jump-to-current-clock clock
))
949 (not (memq ch
'(?k ?K ?g ?G ?s ?S ?C
))))
952 (org-clock-resolve-clock
955 ;; If the time on the clock was less than a minute before
956 ;; the user went away, and they've ask to subtract all the
961 (and gotback
(= gotback
0)))
963 ((or (and keep
(= keep default
))
964 (and gotback
(= gotback default
)))
967 (time-add last-valid
(seconds-to-time (* 60 keep
))))
969 (time-subtract (current-time)
970 (seconds-to-time (* 60 gotback
))))
972 (error "Unexpected, please report this as a bug")))
973 (and gotback last-valid
)
974 (memq ch
'(?K ?G ?S
))
976 (not (memq ch
'(?K ?G ?S ?C
))))
980 (defun org-resolve-clocks (&optional only-dangling-p prompt-fn last-valid
)
981 "Resolve all currently open org-mode clocks.
982 If `only-dangling-p' is non-nil, only ask to resolve dangling
983 \(i.e., not currently open and valid) clocks."
985 (unless org-clock-resolving-clocks
986 (let ((org-clock-resolving-clocks t
))
987 (dolist (file (org-files-list))
988 (let ((clocks (org-find-open-clocks file
)))
989 (dolist (clock clocks
)
990 (let ((dangling (or (not (org-clock-is-active))
991 (/= (car clock
) org-clock-marker
))))
992 (if (or (not only-dangling-p
) dangling
)
999 "Dangling clock started %d mins ago"
1001 (/ (- (org-float-time (current-time))
1002 (org-float-time (cdr clock
))) 60))))))
1004 (cdr clock
)))))))))))
1006 (defun org-emacs-idle-seconds ()
1007 "Return the current Emacs idle time in seconds, or nil if not idle."
1008 (let ((idle-time (current-idle-time)))
1010 (org-float-time idle-time
)
1013 (defun org-mac-idle-seconds ()
1014 "Return the current Mac idle time in seconds."
1015 (string-to-number (shell-command-to-string "ioreg -c IOHIDSystem | perl -ane 'if (/Idle/) {$idle=(pop @F)/1000000000; print $idle; last}'")))
1017 (defvar org-x11idle-exists-p
1018 ;; Check that x11idle exists
1019 (and (eq window-system
'x
)
1020 (eq (call-process-shell-command "command" nil nil nil
"-v" "x11idle") 0)
1021 ;; Check that x11idle can retrieve the idle time
1022 (eq (call-process-shell-command "x11idle" nil nil nil
) 0)))
1024 (defun org-x11-idle-seconds ()
1025 "Return the current X11 idle time in seconds."
1026 (/ (string-to-number (shell-command-to-string "x11idle")) 1000))
1028 (defun org-user-idle-seconds ()
1029 "Return the number of seconds the user has been idle for.
1030 This routine returns a floating point number."
1032 ((eq system-type
'darwin
)
1033 (org-mac-idle-seconds))
1034 ((and (eq window-system
'x
) org-x11idle-exists-p
)
1035 (org-x11-idle-seconds))
1037 (org-emacs-idle-seconds))))
1039 (defvar org-clock-user-idle-seconds
)
1041 (defun org-resolve-clocks-if-idle ()
1042 "Resolve all currently open org-mode clocks.
1043 This is performed after `org-clock-idle-time' minutes, to check
1044 if the user really wants to stay clocked in after being idle for
1046 (when (and org-clock-idle-time
(not org-clock-resolving-clocks
)
1048 (let* ((org-clock-user-idle-seconds (org-user-idle-seconds))
1049 (org-clock-user-idle-start
1050 (time-subtract (current-time)
1051 (seconds-to-time org-clock-user-idle-seconds
)))
1052 (org-clock-resolving-clocks-due-to-idleness t
))
1053 (if (> org-clock-user-idle-seconds
(* 60 org-clock-idle-time
))
1055 (cons org-clock-marker
1056 org-clock-start-time
)
1059 (format "Clocked in & idle for %.1f mins"
1061 (time-subtract (current-time)
1062 org-clock-user-idle-start
))
1064 org-clock-user-idle-start
)))))
1066 (defvar org-clock-current-task nil
1067 "Task currently clocked in.")
1068 (defun org-clock-set-current ()
1069 "Set `org-clock-current-task' to the task currently clocked in."
1070 (setq org-clock-current-task
(nth 4 (org-heading-components))))
1072 (defun org-clock-delete-current ()
1073 "Reset `org-clock-current-task' to nil."
1074 (setq org-clock-current-task nil
))
1076 (defvar org-clock-out-time nil
) ; store the time of the last clock-out
1079 (defun org-clock-in (&optional select start-time
)
1080 "Start the clock on the current item.
1081 If necessary, clock-out of the currently active clock.
1082 With a prefix argument SELECT (\\[universal-argument]), offer a list of recently clocked
1083 tasks to clock into. When SELECT is \\[universal-argument] \\[universal-argument], clock into the current task
1084 and mark it as the default task, a special task that will always be offered
1085 in the clocking selection, associated with the letter `d'.
1086 When SELECT is \\[universal-argument] \\[universal-argument] \\[universal-argument], \
1087 clock in by using the last clock-out
1088 time as the start time \(see `org-clock-continuously' to
1089 make this the default behavior.)"
1091 (setq org-clock-notification-was-shown nil
)
1093 (let ((interrupting (and (not org-clock-resolving-clocks-due-to-idleness
)
1095 ts selected-task target-pos
(msg-extra "")
1096 (leftover (and (not org-clock-resolving-clocks
)
1097 org-clock-leftover-time
)))
1099 (when (and org-clock-auto-clock-resolution
1100 (or (not interrupting
)
1101 (eq t org-clock-auto-clock-resolution
))
1102 (not org-clock-clocking-in
)
1103 (not org-clock-resolving-clocks
))
1104 (setq org-clock-leftover-time nil
)
1105 (let ((org-clock-clocking-in t
))
1106 (org-resolve-clocks))) ; check if any clocks are dangling
1108 (when (equal select
'(64))
1109 ;; Set start-time to `org-clock-out-time'
1110 (let ((org-clock-continuously t
))
1111 (org-clock-in nil org-clock-out-time
)))
1113 (when (equal select
'(4))
1114 (setq selected-task
(org-clock-select-task "Clock-in on task: "))
1116 (setq selected-task
(copy-marker selected-task
))
1119 (when (equal select
'(16))
1120 ;; Mark as default clocking task
1121 (org-clock-mark-default-task))
1124 ;; We are interrupting the clocking of a different task.
1125 ;; Save a marker to this task, so that we can go back.
1126 ;; First check if we are trying to clock into the same task!
1127 (when (save-excursion
1128 (unless selected-task
1129 (org-back-to-heading t
))
1130 (and (equal (marker-buffer org-clock-hd-marker
)
1132 (marker-buffer selected-task
)
1134 (= (marker-position org-clock-hd-marker
)
1136 (marker-position selected-task
)
1138 (equal org-clock-current-task
(nth 4 (org-heading-components)))))
1139 (message "Clock continues in \"%s\"" org-clock-heading
)
1141 (move-marker org-clock-interrupted-task
1142 (marker-position org-clock-marker
)
1143 (marker-buffer org-clock-marker
))
1144 (let ((org-clock-clocking-in t
))
1145 (org-clock-out nil t
)))
1147 ;; Clock in at which position?
1149 (if (and (eobp) (not (org-at-heading-p)))
1153 (when (and selected-task
(marker-buffer selected-task
))
1154 ;; There is a selected task, move to the correct buffer
1155 ;; and set the new target position.
1156 (set-buffer (org-base-buffer (marker-buffer selected-task
)))
1157 (setq target-pos
(marker-position selected-task
))
1158 (move-marker selected-task nil
))
1162 (goto-char target-pos
)
1163 (org-back-to-heading t
)
1164 (or interrupting
(move-marker org-clock-interrupted-task nil
))
1166 (forward-char) ;; make sure the marker is not at the
1167 ;; beginning of the heading, since the
1168 ;; user is liking to insert stuff here
1170 (run-hooks 'org-clock-in-prepare-hook
)
1171 (org-clock-history-push))
1172 (org-clock-set-current)
1173 (cond ((functionp org-clock-in-switch-to-state
)
1174 (looking-at org-complex-heading-regexp
)
1175 (let ((newstate (funcall org-clock-in-switch-to-state
1177 (if newstate
(org-todo newstate
))))
1178 ((and org-clock-in-switch-to-state
1179 (not (looking-at (concat org-outline-regexp
"[ \t]*"
1180 org-clock-in-switch-to-state
1182 (org-todo org-clock-in-switch-to-state
)))
1183 (setq org-clock-heading-for-remember
1184 (and (looking-at org-complex-heading-regexp
)
1186 (org-trim (buffer-substring (match-end 1)
1188 (setq org-clock-heading
1189 (cond ((and org-clock-heading-function
1190 (functionp org-clock-heading-function
))
1191 (funcall org-clock-heading-function
))
1192 ((and (looking-at org-complex-heading-regexp
)
1194 (replace-regexp-in-string
1195 "\\[\\[.*?\\]\\[\\(.*?\\)\\]\\]" "\\1"
1198 (setq org-clock-heading
(org-propertize org-clock-heading
1200 (org-clock-find-position org-clock-in-resume
)
1202 ((and org-clock-in-resume
1204 (concat "^[ \t]*" org-clock-string
1205 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1206 " *\\sw+\.? +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
1207 (message "Matched %s" (match-string 1))
1208 (setq ts
(concat "[" (match-string 1) "]"))
1209 (goto-char (match-end 1))
1210 (setq org-clock-start-time
1212 (org-parse-time-string (match-string 1))))
1213 (setq org-clock-effort
(org-get-effort))
1214 (setq org-clock-total-time
(org-clock-sum-current-item
1215 (org-clock-get-sum-start))))
1216 ((eq org-clock-in-resume
'auto-restart
)
1217 ;; called from org-clock-load during startup,
1218 ;; do not interrupt, but warn!
1219 (message "Cannot restart clock because task does not contain unfinished clock")
1224 (insert-before-markers "\n")
1227 (when (and (save-excursion
1230 (beginning-of-line 1)
1231 (org-indent-line-to (- (org-get-indentation) 2)))
1232 (insert org-clock-string
" ")
1233 (setq org-clock-effort
(org-get-effort))
1234 (setq org-clock-total-time
(org-clock-sum-current-item
1235 (org-clock-get-sum-start)))
1236 (setq org-clock-start-time
1237 (or (and org-clock-continuously org-clock-out-time
)
1241 "You stopped another clock %d mins ago; start this one from then? "
1242 (/ (- (org-float-time (current-time))
1243 (org-float-time leftover
)) 60)))
1247 (setq ts
(org-insert-time-stamp org-clock-start-time
1248 'with-hm
'inactive
))))
1249 (move-marker org-clock-marker
(point) (buffer-base-buffer))
1250 (move-marker org-clock-hd-marker
1251 (save-excursion (org-back-to-heading t
) (point))
1252 (buffer-base-buffer))
1253 (setq org-clock-has-been-used t
)
1255 (when (or (eq org-clock-clocked-in-display
'mode-line
)
1256 (eq org-clock-clocked-in-display
'both
))
1257 (or global-mode-string
(setq global-mode-string
'("")))
1258 (or (memq 'org-mode-line-string global-mode-string
)
1259 (setq global-mode-string
1260 (append global-mode-string
'(org-mode-line-string)))))
1261 ;; add to frame title
1262 (when (or (eq org-clock-clocked-in-display
'frame-title
)
1263 (eq org-clock-clocked-in-display
'both
))
1264 (setq frame-title-format org-clock-frame-title-format
))
1265 (org-clock-update-mode-line)
1266 (when org-clock-mode-line-timer
1267 (cancel-timer org-clock-mode-line-timer
)
1268 (setq org-clock-mode-line-timer nil
))
1269 (when org-clock-clocked-in-display
1270 (setq org-clock-mode-line-timer
1271 (run-with-timer org-clock-update-period
1272 org-clock-update-period
1273 'org-clock-update-mode-line
)))
1274 (when org-clock-idle-timer
1275 (cancel-timer org-clock-idle-timer
)
1276 (setq org-clock-idle-timer nil
))
1277 (setq org-clock-idle-timer
1278 (run-with-timer 60 60 'org-resolve-clocks-if-idle
))
1279 (message "Clock starts at %s - %s" ts msg-extra
)
1280 (run-hooks 'org-clock-in-hook
)))))))
1283 (defun org-clock-in-last (&optional arg
)
1284 "Clock in the last closed clocked item.
1285 When already clocking in, send an warning.
1286 With a universal prefix argument, select the task you want to
1287 clock in from the last clocked in tasks.
1288 With two universal prefix arguments, start clocking using the
1289 last clock-out time, if any.
1290 With three universal prefix arguments, interactively prompt
1291 for a todo state to switch to, overriding the existing value
1292 `org-clock-in-switch-to-state'."
1294 (if (equal arg
'(4))
1295 (org-clock-in (org-clock-select-task))
1296 (let ((start-time (if (or org-clock-continuously
(equal arg
'(16)))
1297 (or org-clock-out-time
(current-time))
1299 (if (null org-clock-history
)
1300 (message "No last clock")
1301 (let ((org-clock-in-switch-to-state
1302 (if (and (not org-clock-current-task
) (equal arg
'(64)))
1303 (completing-read "Switch to state: "
1304 (and org-clock-history
1305 (with-current-buffer
1306 (marker-buffer (car org-clock-history
))
1307 org-todo-keywords-1
)))
1308 org-clock-in-switch-to-state
))
1309 (already-clocking org-clock-current-task
))
1310 (org-clock-clock-in (list (car org-clock-history
)) nil start-time
)
1311 (or already-clocking
1312 ;; Don't display a message if we are already clocking in
1313 (message "Clocking back: %s (in %s)"
1314 org-clock-current-task
1315 (buffer-name (marker-buffer org-clock-marker
)))))))))
1317 (defun org-clock-mark-default-task ()
1318 "Mark current task as default task."
1321 (org-back-to-heading t
)
1322 (move-marker org-clock-default-task
(point))))
1325 (defun org-clock-get-sum-start ()
1326 "Return the time from which clock times should be counted.
1327 This is for the currently running clock as it is displayed
1328 in the mode line. This function looks at the properties
1329 LAST_REPEAT and in particular CLOCK_MODELINE_TOTAL and the
1330 corresponding variable `org-clock-mode-line-total' and then
1331 decides which time to use."
1332 (let ((cmt (or (org-entry-get nil
"CLOCK_MODELINE_TOTAL")
1333 (symbol-name org-clock-mode-line-total
)))
1334 (lr (org-entry-get nil
"LAST_REPEAT")))
1336 ((equal cmt
"current")
1337 (setq msg-extra
"showing time in current clock instance")
1339 ((equal cmt
"today")
1340 (setq msg-extra
"showing today's task time.")
1341 (let* ((dt (decode-time (current-time))))
1342 (setq dt
(append (list 0 0 0) (nthcdr 3 dt
)))
1343 (if org-extend-today-until
1344 (setf (nth 2 dt
) org-extend-today-until
))
1345 (apply 'encode-time dt
)))
1346 ((or (equal cmt
"all")
1347 (and (or (not cmt
) (equal cmt
"auto"))
1349 (setq msg-extra
"showing entire task time.")
1351 ((or (equal cmt
"repeat")
1352 (and (or (not cmt
) (equal cmt
"auto"))
1354 (setq msg-extra
"showing task time since last repeat.")
1357 (org-time-string-to-time lr
)))
1360 (defun org-clock-find-position (find-unclosed)
1361 "Find the location where the next clock line should be inserted.
1362 When FIND-UNCLOSED is non-nil, first check if there is an unclosed clock
1363 line and position cursor in that line."
1364 (org-back-to-heading t
)
1366 (let* ((org-clock-into-drawer (org-clock-into-drawer))
1367 (beg (save-excursion
1368 (beginning-of-line 2)
1369 (or (bolp) (newline))
1371 (end (progn (outline-next-heading) (point)))
1372 (re (concat "^[ \t]*" org-clock-string
))
1374 (drawer (if (stringp org-clock-into-drawer
)
1375 org-clock-into-drawer
"LOGBOOK"))
1376 first last ind-last
)
1378 (when (and find-unclosed
1380 (concat "^[ \t]*" org-clock-string
1381 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
1382 " *\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")
1384 (beginning-of-line 1)
1386 (when (eobp) (newline) (setq end
(max (point) end
)))
1387 (when (re-search-forward (concat "^[ \t]*:" drawer
":") end t
)
1388 ;; we seem to have a CLOCK drawer, so go there.
1389 (beginning-of-line 2)
1390 (or org-log-states-order-reversed
1391 (and (re-search-forward org-property-end-re nil t
)
1392 (goto-char (match-beginning 0))))
1394 ;; Lets count the CLOCK lines
1396 (while (re-search-forward re end t
)
1397 (setq first
(or first
(match-beginning 0))
1398 last
(match-beginning 0)
1400 (when (and (integerp org-clock-into-drawer
)
1402 (>= (1+ cnt
) org-clock-into-drawer
))
1403 ;; Wrap current entries into a new drawer
1405 (setq ind-last
(org-get-indentation))
1406 (beginning-of-line 2)
1407 (if (and (>= (org-get-indentation) ind-last
)
1409 (when (and (>= (org-get-indentation) ind-last
)
1411 (let ((struct (org-list-struct)))
1412 (goto-char (org-list-get-bottom-point struct
)))))
1414 (beginning-of-line 0)
1415 (org-indent-line-to ind-last
)
1417 (insert ":" drawer
":\n")
1418 (beginning-of-line 0)
1421 (beginning-of-line 2)
1422 (or org-log-states-order-reversed
1423 (and (re-search-forward org-property-end-re nil t
)
1424 (goto-char (match-beginning 0))))
1428 (while (and (looking-at (concat "[ \t]*" org-keyword-time-regexp
))
1429 (not (equal (match-string 1) org-clock-string
)))
1430 ;; Planning info, skip to after it
1431 (beginning-of-line 2)
1432 (or (bolp) (newline)))
1433 (when (or (eq org-clock-into-drawer t
)
1434 (stringp org-clock-into-drawer
)
1435 (and (integerp org-clock-into-drawer
)
1436 (< org-clock-into-drawer
2)))
1437 (insert ":" drawer
":\n:END:\n")
1438 (beginning-of-line -
1)
1441 (beginning-of-line 2)
1444 (or org-log-states-order-reversed
1445 (and (re-search-forward org-property-end-re nil t
)
1446 (goto-char (match-beginning 0))))))))
1449 (defun org-clock-out (&optional switch-to-state fail-quietly at-time
)
1450 "Stop the currently running clock.
1451 Throw an error if there is no running clock and FAIL-QUIETLY is nil.
1452 With a universal prefix, prompt for a state to switch the clocked out task
1453 to, overriding the existing value of `org-clock-out-switch-to-state'."
1456 (when (not (org-clocking-p))
1457 (setq global-mode-string
1458 (delq 'org-mode-line-string global-mode-string
))
1459 (setq frame-title-format org-frame-title-format-backup
)
1460 (force-mode-line-update)
1461 (if fail-quietly
(throw 'exit t
) (error "No active clock")))
1462 (let ((org-clock-out-switch-to-state
1464 (completing-read "Switch to state: "
1465 (with-current-buffer
1466 (marker-buffer org-clock-marker
)
1467 org-todo-keywords-1
)
1469 org-clock-out-switch-to-state
))
1470 (now (current-time))
1472 (setq org-clock-out-time now
)
1473 (save-excursion ; Do not replace this with `with-current-buffer'.
1474 (org-no-warnings (set-buffer (org-clocking-buffer)))
1477 (goto-char org-clock-marker
)
1478 (beginning-of-line 1)
1479 (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp
))
1480 (equal (match-string 1) org-clock-string
))
1481 (setq ts
(match-string 2))
1482 (if fail-quietly
(throw 'exit nil
) (error "Clock start time is gone")))
1483 (goto-char (match-end 0))
1484 (delete-region (point) (point-at-eol))
1486 (setq te
(org-insert-time-stamp (or at-time now
) 'with-hm
'inactive
))
1487 (setq s
(- (org-float-time (apply 'encode-time
(org-parse-time-string te
)))
1488 (org-float-time (apply 'encode-time
(org-parse-time-string ts
))))
1489 h
(floor (/ s
3600))
1493 (insert " => " (format "%2d:%02d" h m
))
1494 (when (setq remove
(and org-clock-out-remove-zero-time-clocks
1496 (beginning-of-line 1)
1497 (delete-region (point) (point-at-eol))
1498 (and (looking-at "\n") (> (point-max) (1+ (point)))
1500 (move-marker org-clock-marker nil
)
1501 (move-marker org-clock-hd-marker nil
)
1502 (when org-log-note-clock-out
1503 (org-add-log-setup 'clock-out nil nil nil nil
1504 (concat "# Task: " (org-get-heading t
) "\n\n")))
1505 (when org-clock-mode-line-timer
1506 (cancel-timer org-clock-mode-line-timer
)
1507 (setq org-clock-mode-line-timer nil
))
1508 (when org-clock-idle-timer
1509 (cancel-timer org-clock-idle-timer
)
1510 (setq org-clock-idle-timer nil
))
1511 (setq global-mode-string
1512 (delq 'org-mode-line-string global-mode-string
))
1513 (setq frame-title-format org-frame-title-format-backup
)
1514 (when org-clock-out-switch-to-state
1516 (org-back-to-heading t
)
1517 (let ((org-inhibit-logging t
)
1518 (org-clock-out-when-done nil
))
1520 ((functionp org-clock-out-switch-to-state
)
1521 (looking-at org-complex-heading-regexp
)
1522 (let ((newstate (funcall org-clock-out-switch-to-state
1524 (if newstate
(org-todo newstate
))))
1525 ((and org-clock-out-switch-to-state
1526 (not (looking-at (concat org-outline-regexp
"[ \t]*"
1527 org-clock-out-switch-to-state
1529 (org-todo org-clock-out-switch-to-state
))))))
1530 (force-mode-line-update)
1531 (message (concat "Clock stopped at %s after HH:MM = " org-time-clocksum-format
"%s") te h m
1532 (if remove
" => LINE REMOVED" ""))
1533 (run-hooks 'org-clock-out-hook
)
1534 (unless (org-clocking-p)
1535 (org-clock-delete-current)))))))
1537 (add-hook 'org-clock-out-hook
'org-clock-remove-empty-clock-drawer
)
1539 (defun org-clock-remove-empty-clock-drawer nil
1540 "Remove empty clock drawer in the current subtree."
1541 (let* ((olid (or (org-entry-get (point) "LOG_INTO_DRAWER")
1542 org-log-into-drawer
))
1543 (clock-drawer (if (eq t olid
) "LOGBOOK" olid
))
1544 (end (save-excursion (org-end-of-subtree t t
))))
1547 (org-back-to-heading t
)
1548 (while (and (< (point) end
)
1549 (search-forward clock-drawer end t
))
1550 (goto-char (match-beginning 0))
1551 (org-remove-empty-drawer-at clock-drawer
(point))
1552 (forward-line 1))))))
1554 (defun org-at-clock-log-p nil
1555 "Is the cursor on the clock log line?"
1557 (move-beginning-of-line 1)
1558 (looking-at "^[ \t]*CLOCK:")))
1560 (defun org-clock-timestamps-up nil
1561 "Increase CLOCK timestamps at cursor."
1563 (org-clock-timestamps-change 'up
))
1565 (defun org-clock-timestamps-down nil
1566 "Increase CLOCK timestamps at cursor."
1568 (org-clock-timestamps-change 'down
))
1570 (defun org-clock-timestamps-change (updown)
1571 "Change CLOCK timestamps synchronously at cursor.
1572 UPDOWN tells whether to change 'up or 'down."
1573 (setq org-ts-what nil
)
1574 (when (org-at-timestamp-p t
)
1575 (let ((tschange (if (eq updown
'up
) 'org-timestamp-up
1576 'org-timestamp-down
))
1577 ts1 begts1 ts2 begts2 updatets1 tdiff
)
1579 (move-beginning-of-line 1)
1580 (re-search-forward org-ts-regexp3 nil t
)
1581 (setq ts1
(match-string 0) begts1
(match-beginning 0))
1582 (when (re-search-forward org-ts-regexp3 nil t
)
1583 (setq ts2
(match-string 0) begts2
(match-beginning 0))))
1584 ;; Are we on the second timestamp?
1585 (if (<= begts2
(point)) (setq updatets1 t
))
1587 ;; fall back on org-timestamp-up if there is only one
1589 ;; setq this so that (boundp 'org-ts-what is non-nil)
1591 (let ((ts (if updatets1 ts2 ts1
))
1592 (begts (if updatets1 begts1 begts2
)))
1595 (org-time-string-to-time org-last-changed-timestamp
)
1596 (org-time-string-to-time ts
)))
1599 (org-timestamp-change
1600 (round (/ (org-float-time tdiff
)
1601 (cond ((eq org-ts-what
'minute
) 60)
1602 ((eq org-ts-what
'hour
) 3600)
1603 ((eq org-ts-what
'day
) (* 24 3600))
1604 ((eq org-ts-what
'month
) (* 24 3600 31))
1605 ((eq org-ts-what
'year
) (* 24 3600 365.2)))))
1606 org-ts-what
'updown
)))))))
1609 (defun org-clock-cancel ()
1610 "Cancel the running clock by removing the start timestamp."
1612 (when (not (org-clocking-p))
1613 (setq global-mode-string
1614 (delq 'org-mode-line-string global-mode-string
))
1615 (setq frame-title-format org-frame-title-format-backup
)
1616 (force-mode-line-update)
1617 (error "No active clock"))
1618 (save-excursion ; Do not replace this with `with-current-buffer'.
1619 (org-no-warnings (set-buffer (org-clocking-buffer)))
1620 (goto-char org-clock-marker
)
1621 (if (org-looking-back (concat "^[ \t]*" org-clock-string
".*"))
1622 (progn (delete-region (1- (point-at-bol)) (point-at-eol))
1623 (org-remove-empty-drawer-at "LOGBOOK" (point)))
1624 (message "Clock gone, cancel the timer anyway")
1626 (move-marker org-clock-marker nil
)
1627 (move-marker org-clock-hd-marker nil
)
1628 (setq global-mode-string
1629 (delq 'org-mode-line-string global-mode-string
))
1630 (setq frame-title-format org-frame-title-format-backup
)
1631 (force-mode-line-update)
1632 (message "Clock canceled")
1633 (run-hooks 'org-clock-cancel-hook
))
1636 (defun org-clock-goto (&optional select
)
1637 "Go to the currently clocked-in entry, or to the most recently clocked one.
1638 With prefix arg SELECT, offer recently clocked tasks for selection."
1643 (or (org-clock-select-task "Select task to go to: ")
1644 (error "No task selected")))
1645 ((org-clocking-p) org-clock-marker
)
1646 ((and org-clock-goto-may-find-recent-task
1647 (car org-clock-history
)
1648 (marker-buffer (car org-clock-history
)))
1650 (car org-clock-history
))
1651 (t (error "No active or recent clock task")))))
1652 (org-pop-to-buffer-same-window (marker-buffer m
))
1653 (if (or (< m
(point-min)) (> m
(point-max))) (widen))
1656 (org-back-to-heading t
)
1657 (org-cycle-hide-drawers 'children
)
1661 (message "No running clock, this is the most recently clocked task"))
1662 (run-hooks 'org-clock-goto-hook
)))
1664 (defvar org-clock-file-total-minutes nil
1665 "Holds the file total time in minutes, after a call to `org-clock-sum'.")
1666 (make-variable-buffer-local 'org-clock-file-total-minutes
)
1668 (defun org-clock-sum-today (&optional headline-filter
)
1669 "Sum the times for each subtree for today."
1671 (let ((range (org-clock-special-range 'today
)))
1672 (org-clock-sum (car range
) (cadr range
) nil
:org-clock-minutes-today
)))
1675 (defun org-clock-sum (&optional tstart tend headline-filter propname
)
1676 "Sum the times for each subtree.
1677 Puts the resulting times in minutes as a text property on each headline.
1678 TSTART and TEND can mark a time range to be considered.
1679 HEADLINE-FILTER is a zero-arg function that, if specified, is called for
1680 each headline in the time range with point at the headline. Headlines for
1681 which HEADLINE-FILTER returns nil are excluded from the clock summation.
1682 PROPNAME lets you set a custom text property instead of :org-clock-minutes."
1684 (let* ((bmp (buffer-modified-p))
1685 (re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
1687 "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
1689 (ltimes (make-vector lmax
0))
1694 (if (stringp tstart
) (setq tstart
(org-time-string-to-seconds tstart
)))
1695 (if (stringp tend
) (setq tend
(org-time-string-to-seconds tend
)))
1696 (if (consp tstart
) (setq tstart
(org-float-time tstart
)))
1697 (if (consp tend
) (setq tend
(org-float-time tend
)))
1698 (remove-text-properties (point-min) (point-max)
1699 `(,(or propname
:org-clock-minutes
) t
1700 :org-clock-force-headline-inclusion t
))
1702 (goto-char (point-max))
1703 (while (re-search-backward re nil t
)
1707 (setq ts
(match-string 2)
1710 (apply 'encode-time
(org-parse-time-string ts
)))
1712 (apply 'encode-time
(org-parse-time-string te
)))
1713 ts
(if tstart
(max ts tstart
) ts
)
1714 te
(if tend
(min te tend
) te
)
1716 t1
(if (> dt
0) (+ t1
(floor (/ dt
60))) t1
)))
1719 (setq t1
(+ t1
(string-to-number (match-string 5))
1720 (* 60 (string-to-number (match-string 4))))))
1722 ;; Add the currently clocking item time to the total
1723 (when (and org-clock-report-include-clocking-task
1724 (equal (org-clocking-buffer) (current-buffer))
1725 (equal (marker-position org-clock-hd-marker
) (point))
1728 (>= (org-float-time org-clock-start-time
) tstart
)
1729 (<= (org-float-time org-clock-start-time
) tend
))
1730 (let ((time (floor (- (org-float-time)
1731 (org-float-time org-clock-start-time
)) 60)))
1732 (setq t1
(+ t1 time
))))
1733 (let* ((headline-forced
1734 (get-text-property (point)
1735 :org-clock-force-headline-inclusion
))
1737 (or (null headline-filter
)
1739 (save-match-data (funcall headline-filter
))))))
1740 (setq level
(- (match-end 1) (match-beginning 1)))
1741 (when (or (> t1
0) (> (aref ltimes level
) 0))
1742 (when (or headline-included headline-forced
)
1743 (if headline-included
1744 (loop for l from
0 to level do
1745 (aset ltimes l
(+ (aref ltimes l
) t1
))))
1746 (setq time
(aref ltimes level
))
1747 (goto-char (match-beginning 0))
1748 (put-text-property (point) (point-at-eol)
1749 (or propname
:org-clock-minutes
) time
)
1754 (> (funcall outline-level
) 1)
1755 (outline-up-heading 1 t
)
1757 (point) (point-at-eol)
1758 :org-clock-force-headline-inclusion t
))))))
1760 (loop for l from level to
(1- lmax
) do
1761 (aset ltimes l
0)))))))
1762 (setq org-clock-file-total-minutes
(aref ltimes
0)))
1763 (set-buffer-modified-p bmp
)))
1765 (defun org-clock-sum-current-item (&optional tstart
)
1766 "Return time, clocked on current item in total."
1769 (org-narrow-to-subtree)
1770 (org-clock-sum tstart
)
1771 org-clock-file-total-minutes
)))
1774 (defun org-clock-display (&optional total-only
)
1775 "Show subtree times in the entire buffer.
1776 If TOTAL-ONLY is non-nil, only show the total time for the entire file
1779 Use \\[org-clock-remove-overlays] to remove the subtree times."
1781 (org-clock-remove-overlays)
1786 (goto-char (point-min))
1787 (while (or (and (equal (setq p
(point)) (point-min))
1788 (get-text-property p
:org-clock-minutes
))
1789 (setq p
(next-single-property-change
1790 (point) :org-clock-minutes
)))
1792 (when (setq time
(get-text-property p
:org-clock-minutes
))
1793 (org-clock-put-overlay time
(funcall outline-level
))))
1794 (setq h
(/ org-clock-file-total-minutes
60)
1795 m
(- org-clock-file-total-minutes
(* 60 h
)))
1796 ;; Arrange to remove the overlays upon next change.
1797 (when org-remove-highlights-with-change
1798 (org-add-hook 'before-change-functions
'org-clock-remove-overlays
1800 (if org-time-clocksum-use-fractional
1801 (message (concat "Total file time: " org-time-clocksum-fractional-format
1802 " (%d hours and %d minutes)")
1803 (/ (+ (* h
60.0) m
) 60.0) h m
)
1804 (message (concat "Total file time: " org-time-clocksum-format
1805 " (%d hours and %d minutes)") h m h m
))))
1807 (defvar org-clock-overlays nil
)
1808 (make-variable-buffer-local 'org-clock-overlays
)
1810 (defun org-clock-put-overlay (time &optional level
)
1811 "Put an overlays on the current line, displaying TIME.
1812 If LEVEL is given, prefix time with a corresponding number of stars.
1813 This creates a new overlay and stores it in `org-clock-overlays', so that it
1814 will be easy to remove."
1815 (let* ((c 60) (h (floor (/ time
60))) (m (- time
(* 60 h
)))
1816 (l (if level
(org-get-valid-level level
0) 0))
1817 (fmt (concat "%s " (if org-time-clocksum-use-fractional
1818 org-time-clocksum-fractional-format
1819 org-time-clocksum-format
) "%s"))
1822 (org-move-to-column c
)
1823 (unless (eolp) (skip-chars-backward "^ \t"))
1824 (skip-chars-backward " \t")
1825 (setq ov
(make-overlay (point-at-bol) (point-at-eol))
1826 tx
(concat (buffer-substring (point-at-bol) (point))
1827 (make-string (+ off
(max 0 (- c
(current-column)))) ?.
)
1828 (org-add-props (if org-time-clocksum-use-fractional
1831 (/ (+ (* h
60.0) m
) 60.0)
1832 (make-string (- 16 l
) ?\
))
1834 (make-string l ?
*) h m
1835 (make-string (- 16 l
) ?\
)))
1836 (list 'face
'org-clock-overlay
))
1838 (if (not (featurep 'xemacs
))
1839 (overlay-put ov
'display tx
)
1840 (overlay-put ov
'invisible t
)
1841 (overlay-put ov
'end-glyph
(make-glyph tx
)))
1842 (push ov org-clock-overlays
)))
1844 (defun org-clock-remove-overlays (&optional beg end noremove
)
1845 "Remove the occur highlights from the buffer.
1846 BEG and END are ignored. If NOREMOVE is nil, remove this function
1847 from the `before-change-functions' in the current buffer."
1849 (unless org-inhibit-highlight-removal
1850 (mapc 'delete-overlay org-clock-overlays
)
1851 (setq org-clock-overlays nil
)
1853 (remove-hook 'before-change-functions
1854 'org-clock-remove-overlays
'local
))))
1856 (defvar org-state
) ;; dynamically scoped into this function
1857 (defun org-clock-out-if-current ()
1858 "Clock out if the current entry contains the running clock.
1859 This is used to stop the clock after a TODO entry is marked DONE,
1860 and is only done if the variable `org-clock-out-when-done' is not nil."
1861 (when (and (org-clocking-p)
1862 org-clock-out-when-done
1863 (marker-buffer org-clock-marker
)
1864 (or (and (eq t org-clock-out-when-done
)
1865 (member org-state org-done-keywords
))
1866 (and (listp org-clock-out-when-done
)
1867 (member org-state org-clock-out-when-done
)))
1868 (equal (or (buffer-base-buffer (org-clocking-buffer))
1869 (org-clocking-buffer))
1870 (or (buffer-base-buffer (current-buffer))
1872 (< (point) org-clock-marker
)
1873 (> (save-excursion (outline-next-heading) (point))
1875 ;; Clock out, but don't accept a logging message for this.
1876 (let ((org-log-note-clock-out nil
)
1877 (org-clock-out-switch-to-state nil
))
1880 (add-hook 'org-after-todo-state-change-hook
1881 'org-clock-out-if-current
)
1884 (defun org-clock-get-clocktable (&rest props
)
1885 "Get a formatted clocktable with parameters according to PROPS.
1886 The table is created in a temporary buffer, fully formatted and
1887 fontified, and then returned."
1889 (setq props
(plist-put props
:name
"clocktable"))
1890 (unless (plist-member props
:maxlevel
)
1891 (setq props
(plist-put props
:maxlevel
2)))
1892 (unless (plist-member props
:scope
)
1893 (setq props
(plist-put props
:scope
'agenda
)))
1896 (org-create-dblock props
)
1898 (font-lock-fontify-buffer)
1900 (buffer-substring (point) (progn
1901 (re-search-forward "^[ \t]*#\\+END" nil t
)
1905 (defun org-clock-report (&optional arg
)
1906 "Create a table containing a report about clocked time.
1907 If the cursor is inside an existing clocktable block, then the table
1908 will be updated. If not, a new clocktable will be inserted. The scope
1909 of the new clock will be subtree when called from within a subtree, and
1912 When called with a prefix argument, move to the first clock table in the
1913 buffer and update it."
1915 (org-clock-remove-overlays)
1917 (org-find-dblock "clocktable")
1919 (if (org-in-clocktable-p)
1920 (goto-char (org-in-clocktable-p))
1921 (let ((props (if (ignore-errors
1922 (save-excursion (org-back-to-heading)))
1923 (list :name
"clocktable" :scope
'subtree
)
1924 (list :name
"clocktable"))))
1926 (org-combine-plists org-clock-clocktable-default-properties props
))))
1927 (org-update-dblock))
1929 (defun org-day-of-week (day month year
)
1930 "Returns the day of the week as an integer."
1934 (format "%d-%02d-%02dT00:00:00" year month day
)))))
1936 (defun org-quarter-to-date (quarter year
)
1937 "Get the date (week day year) of the first day of a given quarter."
1941 (setq startday
(org-day-of-week 1 1 year
))
1944 (list 52 7 (- year
1)))
1946 (list 52 6 (- year
1)))
1948 (list 1 startday year
))
1950 (list 53 startday
(- year
1)))
1954 (setq startday
(org-day-of-week 1 4 year
))
1957 (list 13 startday year
))
1959 (list 14 startday year
))
1961 (list 13 startday year
))
1965 (setq startday
(org-day-of-week 1 7 year
))
1968 (list 26 startday year
))
1970 (list 27 startday year
))
1972 (list 26 startday year
))
1976 (setq startday
(org-day-of-week 1 10 year
))
1979 (list 39 startday year
))
1981 (list 40 startday year
))
1983 (list 39 startday year
)))))))
1985 (defun org-clock-special-range (key &optional time as-strings
)
1986 "Return two times bordering a special time range.
1987 Key is a symbol specifying the range and can be one of `today', `yesterday',
1988 `thisweek', `lastweek', `thismonth', `lastmonth', `thisyear', `lastyear'.
1989 A week starts Monday 0:00 and ends Sunday 24:00.
1990 The range is determined relative to TIME. TIME defaults to the current time.
1991 The return value is a cons cell with two internal times like the ones
1992 returned by `current time' or `encode-time'. if AS-STRINGS is non-nil,
1993 the returned times will be formatted strings."
1994 (if (integerp key
) (setq key
(intern (number-to-string key
))))
1995 (let* ((tm (decode-time (or time
(current-time))))
1996 (s 0) (m (nth 1 tm
)) (h (nth 2 tm
))
1997 (d (nth 3 tm
)) (month (nth 4 tm
)) (y (nth 5 tm
))
1999 (skey (symbol-name key
))
2001 (q (cond ((>= (nth 4 tm
) 10) 4)
2002 ((>= (nth 4 tm
) 7) 3)
2003 ((>= (nth 4 tm
) 4) 2)
2004 ((>= (nth 4 tm
) 1) 1)))
2005 s1 m1 h1 d1 month1 y1 diff ts te fm txt w date
2006 interval tmp shiftedy shiftedm shiftedq
)
2008 ((string-match "^[0-9]+$" skey
)
2009 (setq y
(string-to-number skey
) m
1 d
1 key
'year
))
2010 ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)$" skey
)
2011 (setq y
(string-to-number (match-string 1 skey
))
2012 month
(string-to-number (match-string 2 skey
))
2014 ((string-match "^\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)$" skey
)
2016 (setq y
(string-to-number (match-string 1 skey
))
2017 w
(string-to-number (match-string 2 skey
)))
2018 (setq date
(calendar-gregorian-from-absolute
2019 (calendar-absolute-from-iso (list w
1 y
))))
2020 (setq d
(nth 1 date
) month
(car date
) y
(nth 2 date
)
2023 ((string-match "^\\([0-9]+\\)-[qQ]\\([1-4]\\)$" skey
)
2025 (setq y
(string-to-number (match-string 1 skey
)))
2026 (setq q
(string-to-number (match-string 2 skey
)))
2027 (setq date
(calendar-gregorian-from-absolute
2028 (calendar-absolute-from-iso (org-quarter-to-date q y
))))
2029 (setq d
(nth 1 date
) month
(car date
) y
(nth 2 date
)
2032 ((string-match "^\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)$" skey
)
2033 (setq y
(string-to-number (match-string 1 skey
))
2034 month
(string-to-number (match-string 2 skey
))
2035 d
(string-to-number (match-string 3 skey
))
2037 ((string-match "\\([-+][0-9]+\\)$" skey
)
2038 (setq shift
(string-to-number (match-string 1 skey
))
2039 key
(intern (substring skey
0 (match-beginning 1))))
2040 (if (and (memq key
'(quarter thisq
)) (> shift
0))
2041 (error "Looking forward with quarters isn't implemented"))))
2044 (cond ((eq key
'yesterday
) (setq key
'today shift -
1))
2045 ((eq key
'lastweek
) (setq key
'week shift -
1))
2046 ((eq key
'lastmonth
) (setq key
'month shift -
1))
2047 ((eq key
'lastyear
) (setq key
'year shift -
1))
2048 ((eq key
'lastq
) (setq key
'quarter shift -
1))))
2050 ((memq key
'(day today
))
2051 (setq d
(+ d shift
) h
0 m
0 h1
24 m1
0))
2052 ((memq key
'(week thisweek
))
2053 (setq diff
(+ (* -
7 shift
) (if (= dow
0) 6 (1- dow
)))
2054 m
0 h
0 d
(- d diff
) d1
(+ 7 d
)))
2055 ((memq key
'(month thismonth
))
2056 (setq d
1 h
0 m
0 d1
1 month
(+ month shift
) month1
(1+ month
) h1
0 m1
0))
2057 ((memq key
'(quarter thisq
))
2058 ; compute if this shift remains in this year
2059 ; if not, compute how many years and quarters we have to shift (via floor*)
2060 ; and compute the shifted years, months and quarters
2062 ((< (+ (- q
1) shift
) 0) ; shift not in this year
2063 (setq interval
(* -
1 (+ (- q
1) shift
)))
2064 ; set tmp to ((years to shift) (quarters to shift))
2065 (setq tmp
(org-floor* interval
4))
2066 ; due to the use of floor, 0 quarters actually means 4
2067 (if (= 0 (nth 1 tmp
))
2068 (setq shiftedy
(- y
(nth 0 tmp
))
2071 (setq shiftedy
(- y
(+ 1 (nth 0 tmp
)))
2072 shiftedm
(- 13 (* 3 (nth 1 tmp
)))
2073 shiftedq
(- 5 (nth 1 tmp
))))
2074 (setq d
1 h
0 m
0 d1
1 month shiftedm month1
(+ 3 shiftedm
) h1
0 m1
0 y shiftedy
))
2075 ((> (+ q shift
) 0) ; shift is within this year
2076 (setq shiftedq
(+ q shift
))
2078 (setq d
1 h
0 m
0 d1
1 month
(+ 1 (* 3 (- (+ q shift
) 1))) month1
(+ 4 (* 3 (- (+ q shift
) 1))) h1
0 m1
0))))
2079 ((memq key
'(year thisyear
))
2080 (setq m
0 h
0 d
1 month
1 y
(+ y shift
) y1
(1+ y
)))
2081 (t (error "No such time block %s" key
)))
2082 (setq ts
(encode-time s m h d month y
)
2083 te
(encode-time (or s1 s
) (or m1 m
) (or h1 h
)
2084 (or d1 d
) (or month1 month
) (or y1 y
)))
2085 (setq fm
(cdr org-time-stamp-formats
))
2087 ((memq key
'(day today
))
2088 (setq txt
(format-time-string "%A, %B %d, %Y" ts
)))
2089 ((memq key
'(week thisweek
))
2090 (setq txt
(format-time-string "week %G-W%V" ts
)))
2091 ((memq key
'(month thismonth
))
2092 (setq txt
(format-time-string "%B %Y" ts
)))
2093 ((memq key
'(year thisyear
))
2094 (setq txt
(format-time-string "the year %Y" ts
)))
2095 ((memq key
'(quarter thisq
))
2096 (setq txt
(concat (org-count-quarter shiftedq
) " quarter of " (number-to-string shiftedy
))))
2099 (list (format-time-string fm ts
) (format-time-string fm te
) txt
)
2102 (defun org-count-quarter (n)
2109 (defun org-clocktable-shift (dir n
)
2110 "Try to shift the :block date of the clocktable at point.
2111 Point must be in the #+BEGIN: line of a clocktable, or this function
2112 will throw an error.
2113 DIR is a direction, a symbol `left', `right', `up', or `down'.
2114 Both `left' and `down' shift the block toward the past, `up' and `right'
2115 push it toward the future.
2116 N is the number of shift steps to take. The size of the step depends on
2117 the currently selected interval size."
2118 (setq n
(prefix-numeric-value n
))
2119 (and (memq dir
'(left down
)) (setq n
(- n
)))
2121 (goto-char (point-at-bol))
2122 (if (not (looking-at "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
2123 (error "Line needs a :block definition before this command works")
2124 (let* ((b (match-beginning 1)) (e (match-end 1))
2125 (s (match-string 1))
2126 block shift ins y mw d date wp m
)
2128 ((equal s
"yesterday") (setq s
"today-1"))
2129 ((equal s
"lastweek") (setq s
"thisweek-1"))
2130 ((equal s
"lastmonth") (setq s
"thismonth-1"))
2131 ((equal s
"lastyear") (setq s
"thisyear-1"))
2132 ((equal s
"lastq") (setq s
"thisq-1")))
2135 ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\|thisq\\)\\([-+][0-9]+\\)?$" s
)
2136 (setq block
(match-string 1 s
)
2137 shift
(if (match-end 2)
2138 (string-to-number (match-string 2 s
))
2140 (setq shift
(+ shift n
))
2141 (setq ins
(if (= shift
0) block
(format "%s%+d" block shift
))))
2142 ((string-match "\\([0-9]+\\)\\(-\\([wWqQ]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s
)
2143 ;; 1 1 2 3 3 4 4 5 6 6 5 2
2144 (setq y
(string-to-number (match-string 1 s
))
2145 wp
(and (match-end 3) (match-string 3 s
))
2146 mw
(and (match-end 4) (string-to-number (match-string 4 s
)))
2147 d
(and (match-end 6) (string-to-number (match-string 6 s
))))
2149 (d (setq ins
(format-time-string
2151 (encode-time 0 0 0 (+ d n
) m y
))))
2152 ((and wp
(string-match "w\\|W" wp
) mw
(> (length wp
) 0))
2154 (setq date
(calendar-gregorian-from-absolute
2155 (calendar-absolute-from-iso (list (+ mw n
) 1 y
))))
2156 (setq ins
(format-time-string
2158 (encode-time 0 0 0 (nth 1 date
) (car date
) (nth 2 date
)))))
2159 ((and wp
(string-match "q\\|Q" wp
) mw
(> (length wp
) 0))
2161 ; if the 4th + 1 quarter is requested we flip to the 1st quarter of the next year
2166 ; if the 1st - 1 quarter is requested we flip to the 4th quarter of the previous year
2171 (setq date
(calendar-gregorian-from-absolute
2172 (calendar-absolute-from-iso (org-quarter-to-date (+ mw n
) y
))))
2173 (setq ins
(format-time-string
2174 (concat (number-to-string y
) "-Q" (number-to-string (+ mw n
)))
2175 (encode-time 0 0 0 (nth 1 date
) (car date
) (nth 2 date
)))))
2177 (setq ins
(format-time-string
2179 (encode-time 0 0 0 1 (+ mw n
) y
))))
2181 (setq ins
(number-to-string (+ y n
))))))
2182 (t (error "Cannot shift clocktable block")))
2186 (delete-region (point) (+ (point) (- e b
)))
2187 (beginning-of-line 1)
2192 (defun org-dblock-write:clocktable
(params)
2193 "Write the standard clocktable."
2194 (setq params
(org-combine-plists org-clocktable-defaults params
))
2196 (let* ((scope (plist-get params
:scope
))
2197 (block (plist-get params
:block
))
2198 (ts (plist-get params
:tstart
))
2199 (te (plist-get params
:tend
))
2200 (link (plist-get params
:link
))
2201 (maxlevel (or (plist-get params
:maxlevel
) 3))
2202 (step (plist-get params
:step
))
2203 (timestamp (plist-get params
:timestamp
))
2204 (formatter (or (plist-get params
:formatter
)
2205 org-clock-clocktable-formatter
2206 'org-clocktable-write-default
))
2207 cc range-text ipos pos one-file-with-archives
2208 scope-is-list tbls level
)
2209 ;; Check if we need to do steps
2211 ;; Get the range text for the header
2212 (setq cc
(org-clock-special-range block nil t
)
2213 ts
(car cc
) te
(nth 1 cc
) range-text
(nth 2 cc
)))
2215 ;; Write many tables, in steps
2216 (unless (or block
(and ts te
))
2217 (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
2218 (org-clocktable-steps params
)
2221 (setq ipos
(point)) ; remember the insertion position
2223 ;; Get the right scope
2226 ((and scope
(listp scope
) (symbolp (car scope
)))
2227 (setq scope
(eval scope
)))
2229 (setq scope
(org-agenda-files t
)))
2230 ((eq scope
'agenda-with-archives
)
2231 (setq scope
(org-agenda-files t
))
2232 (setq scope
(org-add-archive-files scope
)))
2233 ((eq scope
'file-with-archives
)
2234 (setq scope
(org-add-archive-files (list (buffer-file-name)))
2235 one-file-with-archives t
)))
2236 (setq scope-is-list
(and scope
(listp scope
)))
2238 ;; we collect from several files
2239 (let* ((files scope
)
2241 (org-agenda-prepare-buffers files
)
2242 (while (setq file
(pop files
))
2243 (with-current-buffer (find-buffer-visiting file
)
2246 (push (org-clock-get-table-data file params
) tbls
))))))
2247 ;; Just from the current file
2249 ;; get the right range into the restriction
2250 (org-agenda-prepare-buffers (list (buffer-file-name)))
2252 ((not scope
)) ; use the restriction as it is now
2253 ((eq scope
'file
) (widen))
2254 ((eq scope
'subtree
) (org-narrow-to-subtree))
2256 (while (org-up-heading-safe))
2257 (org-narrow-to-subtree))
2258 ((and (symbolp scope
) (string-match "^tree\\([0-9]+\\)$"
2259 (symbol-name scope
)))
2260 (setq level
(string-to-number (match-string 1 (symbol-name scope
))))
2262 (while (org-up-heading-safe)
2263 (looking-at org-outline-regexp
)
2264 (if (<= (org-reduced-level (funcall outline-level
)) level
)
2265 (throw 'exit nil
))))
2266 (org-narrow-to-subtree)))
2267 ;; do the table, with no file name.
2268 (push (org-clock-get-table-data nil params
) tbls
)))
2270 ;; OK, at this point we tbls as a list of tables, one per file
2271 (setq tbls
(nreverse tbls
))
2273 (setq params
(plist-put params
:multifile scope-is-list
))
2274 (setq params
(plist-put params
:one-file-with-archives
2275 one-file-with-archives
))
2277 (funcall formatter ipos tbls params
))))
2279 (defun org-clocktable-write-default (ipos tables params
)
2280 "Write out a clock table at position IPOS in the current buffer.
2281 TABLES is a list of tables with clocking data as produced by
2282 `org-clock-get-table-data'. PARAMS is the parameter property list obtained
2283 from the dynamic block definition."
2284 ;; This function looks quite complicated, mainly because there are a
2285 ;; lot of options which can add or remove columns. I have massively
2286 ;; commented this function, the I hope it is understandable. If
2287 ;; someone wants to write their own special formatter, this maybe
2288 ;; much easier because there can be a fixed format with a
2289 ;; well-defined number of columns...
2290 (let* ((hlchars '((1 .
"*") (2 .
"/")))
2291 (lwords (assoc (or (plist-get params
:lang
)
2292 org-export-default-language
)
2293 org-clock-clocktable-language-setup
))
2294 (multifile (plist-get params
:multifile
))
2295 (block (plist-get params
:block
))
2296 (ts (plist-get params
:tstart
))
2297 (te (plist-get params
:tend
))
2298 (header (plist-get params
:header
))
2299 (narrow (plist-get params
:narrow
))
2300 (link (plist-get params
:link
))
2301 (maxlevel (or (plist-get params
:maxlevel
) 3))
2302 (emph (plist-get params
:emphasize
))
2303 (level-p (plist-get params
:level
))
2304 (timestamp (plist-get params
:timestamp
))
2305 (properties (plist-get params
:properties
))
2306 (ntcol (max 1 (or (plist-get params
:tcolumns
) 100)))
2307 (rm-file-column (plist-get params
:one-file-with-archives
))
2308 (indent (plist-get params
:indent
))
2309 (case-fold-search t
)
2310 range-text total-time tbl level hlc formula pcol
2311 file-time entries entry headline
2312 recalc content narrow-cut-p tcol
)
2314 ;; Implement abbreviations
2315 (when (plist-get params
:compact
)
2316 (setq level nil indent t narrow
(or narrow
'40!) ntcol
1))
2318 ;; Some consistency test for parameters
2319 (unless (integerp ntcol
)
2320 (setq params
(plist-put params
:tcolumns
(setq ntcol
100))))
2322 (when (and narrow
(integerp narrow
) link
)
2323 ;; We cannot have both integer narrow and link
2325 "Using hard narrowing in clocktable to allow for links")
2326 (setq narrow
(intern (format "%d!" narrow
))))
2331 ((and (symbolp narrow
)
2332 (string-match "\\`[0-9]+!\\'" (symbol-name narrow
)))
2333 (setq narrow-cut-p t
2334 narrow
(string-to-number (substring (symbol-name narrow
)
2337 (error "Invalid value %s of :narrow property in clock table"
2341 ;; Get the range text for the header
2342 (setq range-text
(nth 2 (org-clock-special-range block nil t
))))
2344 ;; Compute the total time
2345 (setq total-time
(apply '+ (mapcar 'cadr tables
)))
2347 ;; Now we need to output this tsuff
2350 ;; Insert the text *before* the actual table
2351 (insert-before-markers
2353 ;; Format the standard header
2358 (format-time-string (cdr org-time-stamp-formats
))
2361 (if block
(concat ", for " range-text
".") "")
2364 ;; Insert the narrowing line
2365 (when (and narrow
(integerp narrow
) (not narrow-cut-p
))
2366 (insert-before-markers
2367 "|" ; table line starter
2368 (if multifile
"|" "") ; file column, maybe
2369 (if level-p
"|" "") ; level column, maybe
2370 (if timestamp
"|" "") ; timestamp column, maybe
2371 (if properties
(make-string (length properties
) ?|
) "") ;properties columns, maybe
2372 (format "<%d>| |\n" narrow
))) ; headline and time columns
2374 ;; Insert the table header line
2375 (insert-before-markers
2376 "|" ; table line starter
2377 (if multifile
(concat (nth 1 lwords
) "|") "") ; file column, maybe
2378 (if level-p
(concat (nth 2 lwords
) "|") "") ; level column, maybe
2379 (if timestamp
(concat (nth 3 lwords
) "|") "") ; timestamp column, maybe
2380 (if properties
(concat (mapconcat 'identity properties
"|") "|") "") ;properties columns, maybe
2381 (concat (nth 4 lwords
) "|"
2382 (nth 5 lwords
) "|\n")) ; headline and time columns
2384 ;; Insert the total time in the table
2385 (insert-before-markers
2387 "|" ; table line starter
2388 (if multifile
(concat "| " (nth 6 lwords
) " ") "")
2389 ; file column, maybe
2390 (if level-p
"|" "") ; level column, maybe
2391 (if timestamp
"|" "") ; timestamp column, maybe
2392 (if properties
(make-string (length properties
) ?|
) "") ; properties columns, maybe
2393 (concat (format org-clock-total-time-cell-format
(nth 7 lwords
)) "| ") ; instead of a headline
2394 (format org-clock-total-time-cell-format
2395 (org-minutes-to-hh:mm-string
(or total-time
0))) ; the time
2398 ;; Now iterate over the tables and insert the data
2399 ;; but only if any time has been collected
2400 (when (and total-time
(> total-time
0))
2402 (while (setq tbl
(pop tables
))
2403 ;; now tbl is the table resulting from one file.
2404 (setq file-time
(nth 1 tbl
))
2405 (when (or (and file-time
(> file-time
0))
2406 (not (plist-get params
:fileskip0
)))
2407 (insert-before-markers "|-\n") ; a hline because a new file starts
2408 ;; First the file time, if we have multiple files
2410 ;; Summarize the time collected from this file
2411 (insert-before-markers
2412 (format (concat "| %s %s | %s%s"
2413 (format org-clock-file-time-cell-format
(nth 8 lwords
))
2415 (file-name-nondirectory (car tbl
))
2416 (if level-p
"| " "") ; level column, maybe
2417 (if timestamp
"| " "") ; timestamp column, maybe
2418 (if properties
(make-string (length properties
) ?|
) "") ;properties columns, maybe
2419 (org-minutes-to-hh:mm-string
(nth 1 tbl
))))) ; the time
2421 ;; Get the list of node entries and iterate over it
2422 (setq entries
(nth 2 tbl
))
2423 (while (setq entry
(pop entries
))
2424 (setq level
(car entry
)
2425 headline
(nth 1 entry
)
2426 hlc
(if emph
(or (cdr (assoc level hlchars
)) "") ""))
2428 (if (and (string-match (concat "\\`" org-bracket-link-regexp
2433 (format "[[%s][%s]]"
2434 (match-string 1 headline
)
2435 (org-shorten-string (match-string 3 headline
)
2437 (setq headline
(org-shorten-string headline narrow
))))
2438 (insert-before-markers
2439 "|" ; start the table line
2440 (if multifile
"|" "") ; free space for file name column?
2441 (if level-p
(format "%d|" (car entry
)) "") ; level, maybe
2442 (if timestamp
(concat (nth 2 entry
) "|") "") ; timestamp, maybe
2446 (lambda (p) (or (cdr (assoc p
(nth 4 entry
))) ""))
2447 properties
"|") "|") "") ;properties columns, maybe
2448 (if indent
(org-clocktable-indent-string level
) "") ; indentation
2449 hlc headline hlc
"|" ; headline
2450 (make-string (min (1- ntcol
) (or (- level
1))) ?|
)
2451 ; empty fields for higher levels
2452 hlc
(org-minutes-to-hh:mm-string
(nth 3 entry
)) hlc
; time
2455 ;; When exporting subtrees or regions the region might be
2456 ;; activated, so let's disable ̀delete-active-region'
2457 (let ((delete-active-region nil
)) (backward-delete-char 1))
2458 (if (setq formula
(plist-get params
:formula
))
2461 ;; compute the column where the % numbers need to go
2466 (min maxlevel
(or ntcol
100))))
2467 ;; compute the column where the total time is
2471 (if timestamp
1 0)))
2474 "\n#+TBLFM: $%d='(org-clock-time%% @%d$%d $%d..$%d);%%.1f"
2475 pcol
; the column where the % numbers should go
2476 (if (and narrow
(not narrow-cut-p
)) 3 2) ; row of the total time
2477 tcol
; column of the total time
2478 tcol
(1- pcol
) ; range of columns where times can be found
2482 (insert "\n#+TBLFM: " formula
)
2484 (t (error "Invalid formula in clocktable")))
2485 ;; Should we rescue an old formula?
2486 (when (stringp (setq content
(plist-get params
:content
)))
2487 (when (string-match "^\\([ \t]*#\\+tblfm:.*\\)" content
)
2489 (insert "\n" (match-string 1 (plist-get params
:content
)))
2490 (beginning-of-line 0))))
2491 ;; Back to beginning, align the table, recalculate if necessary
2493 (skip-chars-forward "^|")
2495 (when org-hide-emphasis-markers
2496 ;; we need to align a second time
2501 (if (and narrow
(not narrow-cut-p
)) (beginning-of-line 2))
2502 (org-table-goto-column pcol nil
'force
)
2504 (org-table-recalculate 'all
))
2505 (when rm-file-column
2506 ;; The file column is actually not wanted
2508 (org-table-delete-column))
2511 (defun org-clocktable-indent-string (level)
2516 (setq level
(1- level
)
2517 str
(concat str
"___")))
2520 (defun org-clocktable-steps (params)
2521 "Step through the range to make a number of clock tables."
2522 (let* ((p1 (copy-sequence params
))
2523 (ts (plist-get p1
:tstart
))
2524 (te (plist-get p1
:tend
))
2525 (step0 (plist-get p1
:step
))
2526 (step (cdr (assoc step0
'((day .
86400) (week .
604800)))))
2527 (stepskip0 (plist-get p1
:stepskip0
))
2528 (block (plist-get p1
:block
))
2529 cc range-text step-time
)
2531 (setq cc
(org-clock-special-range block nil t
)
2532 ts
(car cc
) te
(nth 1 cc
) range-text
(nth 2 cc
)))
2535 ;; If ts is a number, it's an absolute day number from org-agenda.
2536 (destructuring-bind (month day year
) (calendar-gregorian-from-absolute ts
)
2537 (setq ts
(org-float-time (encode-time 0 0 0 day month year
)))))
2539 (setq ts
(org-float-time
2540 (apply 'encode-time
(org-parse-time-string ts
))))))
2544 (destructuring-bind (month day year
) (calendar-gregorian-from-absolute te
)
2545 (setq te
(org-float-time (encode-time 0 0 0 day month year
)))))
2547 (setq te
(org-float-time
2548 (apply 'encode-time
(org-parse-time-string te
))))))
2549 (setq p1
(plist-put p1
:header
""))
2550 (setq p1
(plist-put p1
:step nil
))
2551 (setq p1
(plist-put p1
:block nil
))
2553 (or (bolp) (insert "\n"))
2554 (setq p1
(plist-put p1
:tstart
(format-time-string
2555 (org-time-stamp-format nil t
)
2556 (seconds-to-time ts
))))
2557 (setq p1
(plist-put p1
:tend
(format-time-string
2558 (org-time-stamp-format nil t
)
2559 (seconds-to-time (setq ts
(+ ts step
))))))
2560 (insert "\n" (if (eq step0
'day
) "Daily report: "
2561 "Weekly report starting on: ")
2562 (plist-get p1
:tstart
) "\n")
2563 (setq step-time
(org-dblock-write:clocktable p1
))
2564 (re-search-forward "^[ \t]*#\\+END:")
2565 (when (and (equal step-time
0) stepskip0
)
2566 ;; Remove the empty table
2567 (delete-region (point-at-bol)
2569 (re-search-backward "^\\(Daily\\|Weekly\\) report"
2574 (defun org-clock-get-table-data (file params
)
2575 "Get the clocktable data for file FILE, with parameters PARAMS.
2576 FILE is only for identification - this function assumes that
2577 the correct buffer is current, and that the wanted restriction is
2579 The return value will be a list with the file name and the total
2580 file time (in minutes) as 1st and 2nd elements. The third element
2581 of this list will be a list of headline entries. Each entry has the
2582 following structure:
2584 (LEVEL HEADLINE TIMESTAMP TIME)
2586 LEVEL: The level of the headline, as an integer. This will be
2587 the reduced leve, so 1,2,3,... even if only odd levels
2589 HEADLINE: The text of the headline. Depending on PARAMS, this may
2590 already be formatted like a link.
2591 TIMESTAMP: If PARAMS require it, this will be a time stamp found in the
2592 entry, any of SCHEDULED, DEADLINE, NORMAL, or first inactive,
2594 TIME: The sum of all time spend in this tree, in minutes. This time
2595 will of cause be restricted to the time block and tags match
2596 specified in PARAMS."
2597 (let* ((maxlevel (or (plist-get params
:maxlevel
) 3))
2598 (timestamp (plist-get params
:timestamp
))
2599 (ts (plist-get params
:tstart
))
2600 (te (plist-get params
:tend
))
2601 (block (plist-get params
:block
))
2602 (link (plist-get params
:link
))
2603 (tags (plist-get params
:tags
))
2604 (properties (plist-get params
:properties
))
2605 (inherit-property-p (plist-get params
:inherit-props
))
2607 (matcher (if tags
(cdr (org-make-tags-matcher tags
))))
2608 cc range-text st p time level hdl props tsp tbl
)
2610 (setq org-clock-file-total-minutes nil
)
2612 (setq cc
(org-clock-special-range block nil t
)
2613 ts
(car cc
) te
(nth 1 cc
) range-text
(nth 2 cc
)))
2614 (when (integerp ts
) (setq ts
(calendar-gregorian-from-absolute ts
)))
2615 (when (integerp te
) (setq te
(calendar-gregorian-from-absolute te
)))
2616 (when (and ts
(listp ts
))
2617 (setq ts
(format "%4d-%02d-%02d" (nth 2 ts
) (car ts
) (nth 1 ts
))))
2618 (when (and te
(listp te
))
2619 (setq te
(format "%4d-%02d-%02d" (nth 2 te
) (car te
) (nth 1 te
))))
2620 ;; Now the times are strings we can parse.
2621 (if ts
(setq ts
(org-float-time
2622 (apply 'encode-time
(org-parse-time-string ts
)))))
2623 (if te
(setq te
(org-float-time
2624 (apply 'encode-time
(org-parse-time-string te
)))))
2626 (org-clock-sum ts te
2627 (unless (null matcher
)
2629 (let* ((tags-list (org-get-tags-at))
2630 (org-scanner-tags tags-list
)
2631 (org-trust-scanner-tags t
))
2633 (goto-char (point-min))
2635 (while (or (and (bobp) (prog1 st
(setq st nil
))
2636 (get-text-property (point) :org-clock-minutes
)
2637 (setq p
(point-min)))
2638 (setq p
(next-single-property-change
2639 (point) :org-clock-minutes
)))
2641 (when (setq time
(get-text-property p
:org-clock-minutes
))
2643 (beginning-of-line 1)
2644 (when (and (looking-at (org-re "\\(\\*+\\)[ \t]+\\(.*?\\)\\([ \t]+:[[:alnum:]_@#%:]+:\\)?[ \t]*$"))
2645 (setq level
(org-reduced-level
2646 (- (match-end 1) (match-beginning 1))))
2647 (<= level maxlevel
))
2648 (setq hdl
(if (not link
)
2650 (org-make-link-string
2651 (format "file:%s::%s"
2654 (org-make-org-heading-search-string
2658 (setq props
(org-entry-properties (point)))
2659 (or (cdr (assoc "SCHEDULED" props
))
2660 (cdr (assoc "DEADLINE" props
))
2661 (cdr (assoc "TIMESTAMP" props
))
2662 (cdr (assoc "TIMESTAMP_IA" props
))))
2663 props
(when properties
2667 (when (org-entry-get (point) p inherit-property-p
)
2668 (cons p
(org-entry-get (point) p inherit-property-p
))))
2670 (when (> time
0) (push (list level hdl tsp time props
) tbl
))))))
2671 (setq tbl
(nreverse tbl
))
2672 (list file org-clock-file-total-minutes tbl
))))
2674 (defun org-clock-time%
(total &rest strings
)
2675 "Compute a time fraction in percent.
2676 TOTAL s a time string like 10:21 specifying the total times.
2677 STRINGS is a list of strings that should be checked for a time.
2678 The first string that does have a time will be used.
2679 This function is made for clock tables."
2680 (let ((re "\\([0-9]+\\):\\([0-9]+\\)")
2684 (if (not (string-match re total
))
2686 (setq tot
(+ (string-to-number (match-string 2 total
))
2687 (* 60 (string-to-number (match-string 1 total
)))))
2688 (if (= tot
0.
) (throw 'exit
0.
)))
2689 (while (setq s
(pop strings
))
2690 (if (string-match "\\([0-9]+\\):\\([0-9]+\\)" s
)
2692 (/ (* 100.0 (+ (string-to-number (match-string 2 s
))
2693 (* 60 (string-to-number
2694 (match-string 1 s
)))))
2698 ;; Saving and loading the clock
2700 (defvar org-clock-loaded nil
2701 "Was the clock file loaded?")
2703 (defun org-clock-update-time-maybe ()
2704 "If this is a CLOCK line, update it and return t.
2705 Otherwise, return nil."
2708 (beginning-of-line 1)
2709 (skip-chars-forward " \t")
2710 (when (looking-at org-clock-string
)
2711 (let ((re (concat "[ \t]*" org-clock-string
2712 " *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
2713 "\\([ \t]*=>.*\\)?\\)?"))
2716 ((not (looking-at re
))
2718 ((not (match-end 2))
2719 (when (and (equal (marker-buffer org-clock-marker
) (current-buffer))
2720 (> org-clock-marker
(point))
2721 (<= org-clock-marker
(point-at-eol)))
2722 ;; The clock is running here
2723 (setq org-clock-start-time
2725 (org-parse-time-string (match-string 1))))
2726 (org-clock-update-mode-line)))
2728 (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
2730 (setq ts
(match-string 1)
2731 te
(match-string 3))
2732 (setq s
(- (org-float-time
2733 (apply 'encode-time
(org-parse-time-string te
)))
2735 (apply 'encode-time
(org-parse-time-string ts
))))
2738 h
(floor (/ s
3600))
2742 (insert " => " (format (if neg
"-%d:%02d" "%2d:%02d") h m
))
2745 (defun org-clock-save ()
2746 "Persist various clock-related data to disk.
2747 The details of what will be saved are regulated by the variable
2748 `org-clock-persist'."
2749 (when (and org-clock-persist
2750 (or org-clock-loaded
2751 org-clock-has-been-used
2752 (not (file-exists-p org-clock-persist-file
))))
2754 (with-current-buffer (find-file (expand-file-name org-clock-persist-file
))
2756 (delete-region (point-min) (point-max))
2758 (insert (format ";; org-persist.el - %s at %s\n"
2759 system-name
(format-time-string
2760 (cdr org-time-stamp-formats
))))
2761 (if (and (memq org-clock-persist
'(t clock
))
2762 (setq b
(org-clocking-buffer))
2763 (setq b
(or (buffer-base-buffer b
) b
))
2765 (buffer-file-name b
)
2766 (or (not org-clock-persist-query-save
)
2767 (y-or-n-p (concat "Save current clock ("
2768 (substring-no-properties
2771 (insert "(setq resume-clock '(\""
2772 (buffer-file-name (org-clocking-buffer))
2773 "\" . " (int-to-string (marker-position org-clock-marker
))
2775 ;; Store clocked task history. Tasks are stored reversed to make
2777 (when (and (memq org-clock-persist
'(t history
))
2780 "(setq stored-clock-history '("
2783 (when (and (setq b
(marker-buffer m
))
2784 (setq b
(or (buffer-base-buffer b
) b
))
2786 (buffer-file-name b
))
2787 (concat "(\"" (buffer-file-name b
)
2788 "\" . " (int-to-string (marker-position m
))
2790 (reverse org-clock-history
) " ") "))\n"))
2792 (kill-buffer (current-buffer)))))))
2794 (defun org-clock-load ()
2795 "Load clock-related data from disk, maybe resuming a stored clock."
2796 (when (and org-clock-persist
(not org-clock-loaded
))
2797 (let ((filename (expand-file-name org-clock-persist-file
))
2798 (org-clock-in-resume 'auto-restart
)
2799 resume-clock stored-clock-history
)
2800 (if (not (file-readable-p filename
))
2801 (message "Not restoring clock data; %s not found"
2802 org-clock-persist-file
)
2803 (message "%s" "Restoring clock data")
2804 (setq org-clock-loaded t
)
2805 (load-file filename
)
2807 (when stored-clock-history
2808 (save-window-excursion
2809 (mapc (lambda (task)
2810 (if (file-exists-p (car task
))
2811 (org-clock-history-push (cdr task
)
2812 (find-file (car task
)))))
2813 stored-clock-history
)))
2815 (when (and resume-clock org-clock-persist
2816 (file-exists-p (car resume-clock
))
2817 (or (not org-clock-persist-query-resume
)
2821 (with-current-buffer (find-file (car resume-clock
))
2823 (goto-char (cdr resume-clock
))
2824 (org-back-to-heading t
)
2825 (and (looking-at org-complex-heading-regexp
)
2828 (when (file-exists-p (car resume-clock
))
2829 (with-current-buffer (find-file (car resume-clock
))
2830 (goto-char (cdr resume-clock
))
2831 (let ((org-clock-auto-clock-resolution nil
))
2833 (if (outline-invisible-p)
2834 (org-show-context))))))))))
2836 ;; Suggested bindings
2837 (org-defkey org-mode-map
"\C-c\C-x\C-e" 'org-clock-modify-effort-estimate
)
2839 (provide 'org-clock
)
2842 ;; generated-autoload-file: "org-loaddefs.el"
2845 ;;; org-clock.el ends here