org-clock.el 108 KB

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