org-clock.el 106 KB

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