emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Avoid losing persisted clock data when exiting emac without loading org-mode
@ 2009-10-23  7:01 Kai Tetzlaff
  2009-10-24 16:48 ` Carsten Dominik
  0 siblings, 1 reply; 5+ messages in thread
From: Kai Tetzlaff @ 2009-10-23  7:01 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1756 bytes --]

Hi,

i noticed that when using the org-mode clock persistence, the stored
clock data gets deleted when i start emacs and exit again without
turning on org-mode in between.

When looking at org-clock-persistence-insinuate it looks like org-clock
load will only run after org-mode gets started whereas org-clock-save
will always be called when exiting emacs:

(defun org-clock-persistence-insinuate ()
  "Set up hooks for clock persistence"
  (add-hook 'org-mode-hook 'org-clock-load)
  (add-hook 'kill-emacs-hook 'org-clock-save))

Not running org-mode-hook (i.e. not starting org-mode) thus does not
load clock data but org-clock-save overwrites any prviously saved data
when exiting emacs.

An easy fix for that would be to just add org-clock-load to e.g.
emacs-startup-hook. But this will only work if the code in
org-clock-load does not depend on any org-mode initialization code (or
would require loading org-mode).

So org-clock-save should probably check if org-clock-load has been
running during the current emacs session (or if clock persistence was
just enabled) and only then save clock data when exiting emacs. I tried
to add this to the code in org-clock-save:

diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index c7ebbf8..c0fe4e6 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -1803,7 +1803,8 @@ This function is made for clock tables."
   "Persist various clock-related data to disk.
 The details of what will be saved are regulated by the variable
 `org-clock-persist'."
-  (when org-clock-persist
+  (when (and org-clock-persist
+             (or org-clock-loaded (not (file-exists-p
org-clock-persist-file))))
     (let (b)
       (with-current-buffer (find-file (expand-file-name
org-clock-persist-file))
 	(progn


/Kai


[-- Attachment #2: clock-save.patch --]
[-- Type: text/plain, Size: 574 bytes --]

diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index c7ebbf8..c0fe4e6 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -1803,7 +1803,8 @@ This function is made for clock tables."
   "Persist various clock-related data to disk.
 The details of what will be saved are regulated by the variable
 `org-clock-persist'."
-  (when org-clock-persist
+  (when (and org-clock-persist
+             (or org-clock-loaded (not (file-exists-p org-clock-persist-file))))
     (let (b)
       (with-current-buffer (find-file (expand-file-name org-clock-persist-file))
 	(progn

[-- Attachment #3: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Avoid losing persisted clock data when exiting emac without loading org-mode
  2009-10-23  7:01 [PATCH] Avoid losing persisted clock data when exiting emac without loading org-mode Kai Tetzlaff
@ 2009-10-24 16:48 ` Carsten Dominik
  2009-10-24 17:03   ` Kai Tetzlaff
  2009-10-24 18:40   ` Kai Tetzlaff
  0 siblings, 2 replies; 5+ messages in thread
From: Carsten Dominik @ 2009-10-24 16:48 UTC (permalink / raw)
  To: Kai Tetzlaff; +Cc: emacs-orgmode

Hi Kai,


On Oct 23, 2009, at 9:01 AM, Kai Tetzlaff wrote:

> Hi,
>
> i noticed that when using the org-mode clock persistence, the stored
> clock data gets deleted when i start emacs and exit again without
> turning on org-mode in between.
>
> When looking at org-clock-persistence-insinuate it looks like org- 
> clock
> load will only run after org-mode gets started whereas org-clock-save
> will always be called when exiting emacs:
>
> (defun org-clock-persistence-insinuate ()
>  "Set up hooks for clock persistence"
>  (add-hook 'org-mode-hook 'org-clock-load)
>  (add-hook 'kill-emacs-hook 'org-clock-save))
>
> Not running org-mode-hook (i.e. not starting org-mode) thus does not
> load clock data but org-clock-save overwrites any prviously saved data
> when exiting emacs.
>
> An easy fix for that would be to just add org-clock-load to e.g.
> emacs-startup-hook. But this will only work if the code in
> org-clock-load does not depend on any org-mode initialization code (or
> would require loading org-mode).
>
> So org-clock-save should probably check if org-clock-load has been
> running during the current emacs session (or if clock persistence was
> just enabled) and only then save clock data when exiting emacs. I  
> tried
> to add this to the code in org-clock-save:
>
> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
> index c7ebbf8..c0fe4e6 100644
> --- a/lisp/org-clock.el
> +++ b/lisp/org-clock.el
> @@ -1803,7 +1803,8 @@ This function is made for clock tables."
>   "Persist various clock-related data to disk.
> The details of what will be saved are regulated by the variable
> `org-clock-persist'."
> -  (when org-clock-persist
> +  (when (and org-clock-persist
> +             (or org-clock-loaded (not (file-exists-p
> org-clock-persist-file))))
>     (let (b)
>       (with-current-buffer (find-file (expand-file-name
> org-clock-persist-file))
> 	(progn
>
>
> /Kai
>
> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
> index c7ebbf8..c0fe4e6 100644
> --- a/lisp/org-clock.el
> +++ b/lisp/org-clock.el
> @@ -1803,7 +1803,8 @@ This function is made for clock tables."
>   "Persist various clock-related data to disk.
> The details of what will be saved are regulated by the variable
> `org-clock-persist'."
> -  (when org-clock-persist
> +  (when (and org-clock-persist
> +             (or org-clock-loaded (not (file-exists-p org-clock- 
> persist-file))))
>     (let (b)
>       (with-current-buffer (find-file (expand-file-name org-clock- 
> persist-file))
> 	(progn


I see you point, but I am not convinced that you fix is the right  
one.  What one really wants to do is save the clock and history if and  
only if the clock has been used in the current session.  So I guess it  
is better to create a special variable org-clock-used-in-this-session  
which then will be set to t each time clock-in starts a clock  
somewhere.  I believe this would be a better insurance policy.

Would you like to try your hand at a patch in this spirit?

- Carsten

> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Avoid losing persisted clock data when exiting emac without loading org-mode
  2009-10-24 16:48 ` Carsten Dominik
@ 2009-10-24 17:03   ` Kai Tetzlaff
  2009-10-24 18:40   ` Kai Tetzlaff
  1 sibling, 0 replies; 5+ messages in thread
From: Kai Tetzlaff @ 2009-10-24 17:03 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

Carsten Dominik wrote:
> Hi Kai,
> 
> 
> On Oct 23, 2009, at 9:01 AM, Kai Tetzlaff wrote:
> 
>> Hi,
>>
>> i noticed that when using the org-mode clock persistence, the stored
>> clock data gets deleted when i start emacs and exit again without
>> turning on org-mode in between.
>>
>> When looking at org-clock-persistence-insinuate it looks like org-clock
>> load will only run after org-mode gets started whereas org-clock-save
>> will always be called when exiting emacs:
>>
>> (defun org-clock-persistence-insinuate ()
>>  "Set up hooks for clock persistence"
>>  (add-hook 'org-mode-hook 'org-clock-load)
>>  (add-hook 'kill-emacs-hook 'org-clock-save))
>>
>> Not running org-mode-hook (i.e. not starting org-mode) thus does not
>> load clock data but org-clock-save overwrites any prviously saved data
>> when exiting emacs.
>>
>> An easy fix for that would be to just add org-clock-load to e.g.
>> emacs-startup-hook. But this will only work if the code in
>> org-clock-load does not depend on any org-mode initialization code (or
>> would require loading org-mode).
>>
>> So org-clock-save should probably check if org-clock-load has been
>> running during the current emacs session (or if clock persistence was
>> just enabled) and only then save clock data when exiting emacs. I tried
>> to add this to the code in org-clock-save:
>>
>> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
>> index c7ebbf8..c0fe4e6 100644
>> --- a/lisp/org-clock.el
>> +++ b/lisp/org-clock.el
>> @@ -1803,7 +1803,8 @@ This function is made for clock tables."
>>   "Persist various clock-related data to disk.
>> The details of what will be saved are regulated by the variable
>> `org-clock-persist'."
>> -  (when org-clock-persist
>> +  (when (and org-clock-persist
>> +             (or org-clock-loaded (not (file-exists-p
>> org-clock-persist-file))))
>>     (let (b)
>>       (with-current-buffer (find-file (expand-file-name
>> org-clock-persist-file))
>>     (progn
>>
>>
>> /Kai
>>
>> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
>> index c7ebbf8..c0fe4e6 100644
>> --- a/lisp/org-clock.el
>> +++ b/lisp/org-clock.el
>> @@ -1803,7 +1803,8 @@ This function is made for clock tables."
>>   "Persist various clock-related data to disk.
>> The details of what will be saved are regulated by the variable
>> `org-clock-persist'."
>> -  (when org-clock-persist
>> +  (when (and org-clock-persist
>> +             (or org-clock-loaded (not (file-exists-p
>> org-clock-persist-file))))
>>     (let (b)
>>       (with-current-buffer (find-file (expand-file-name
>> org-clock-persist-file))
>>     (progn
> 
> 
> I see you point, but I am not convinced that you fix is the right one. 
> What one really wants to do is save the clock and history if and only if
> the clock has been used in the current session.  So I guess it is better
> to create a special variable org-clock-used-in-this-session which then
> will be set to t each time clock-in starts a clock somewhere.  I believe
> this would be a better insurance policy.
You're right - this would be even better.

> Would you like to try your hand at a patch in this spirit?

I've just started to play with emacs lisp. But this sounds like
something not too difficult. So thanks for the offer :-), i'm going to
give it a try ...

> - Carsten
> 
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Remember: use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> 
> - Carsten
> 
> 
> 
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Avoid losing persisted clock data when exiting emac without loading org-mode
  2009-10-24 16:48 ` Carsten Dominik
  2009-10-24 17:03   ` Kai Tetzlaff
@ 2009-10-24 18:40   ` Kai Tetzlaff
  2009-10-25  8:10     ` Carsten Dominik
  1 sibling, 1 reply; 5+ messages in thread
From: Kai Tetzlaff @ 2009-10-24 18:40 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 3123 bytes --]

Carsten Dominik wrote:
> Hi Kai,
> 
> 
> On Oct 23, 2009, at 9:01 AM, Kai Tetzlaff wrote:
> 
>> Hi,
>>
>> i noticed that when using the org-mode clock persistence, the stored
>> clock data gets deleted when i start emacs and exit again without
>> turning on org-mode in between.
>>
>> When looking at org-clock-persistence-insinuate it looks like org-clock
>> load will only run after org-mode gets started whereas org-clock-save
>> will always be called when exiting emacs:
>>
>> (defun org-clock-persistence-insinuate ()
>>  "Set up hooks for clock persistence"
>>  (add-hook 'org-mode-hook 'org-clock-load)
>>  (add-hook 'kill-emacs-hook 'org-clock-save))
>>
>> Not running org-mode-hook (i.e. not starting org-mode) thus does not
>> load clock data but org-clock-save overwrites any prviously saved data
>> when exiting emacs.
>>
>> An easy fix for that would be to just add org-clock-load to e.g.
>> emacs-startup-hook. But this will only work if the code in
>> org-clock-load does not depend on any org-mode initialization code (or
>> would require loading org-mode).
>>
>> So org-clock-save should probably check if org-clock-load has been
>> running during the current emacs session (or if clock persistence was
>> just enabled) and only then save clock data when exiting emacs. I tried
>> to add this to the code in org-clock-save:
>>
>> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
>> index c7ebbf8..c0fe4e6 100644
>> --- a/lisp/org-clock.el
>> +++ b/lisp/org-clock.el
>> @@ -1803,7 +1803,8 @@ This function is made for clock tables."
>>   "Persist various clock-related data to disk.
>> The details of what will be saved are regulated by the variable
>> `org-clock-persist'."
>> -  (when org-clock-persist
>> +  (when (and org-clock-persist
>> +             (or org-clock-loaded (not (file-exists-p
>> org-clock-persist-file))))
>>     (let (b)
>>       (with-current-buffer (find-file (expand-file-name
>> org-clock-persist-file))
>>     (progn
>>
>>
>> /Kai
>>
> 
> I see you point, but I am not convinced that you fix is the right one. 
> What one really wants to do is save the clock and history if and only if
> the clock has been used in the current session.  So I guess it is better
> to create a special variable org-clock-used-in-this-session which then
> will be set to t each time clock-in starts a clock somewhere.  I believe
> this would be a better insurance policy.
>
> Would you like to try your hand at a patch in this spirit?

Ok, i've attached a new path which uses the suggested approach. I wasn't
exactly sure about where to set org-clock-used-in-this-session to t.
It's now done right at the end of org-clock-in, just before running
hooks in org-clock-in-hook.

I've done a couple of (simple) tests and it works fine for me.

/Kai

> - Carsten
> 
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Remember: use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> 
> - Carsten
> 
> 
> 
> 



[-- Attachment #2: clock-save.patch --]
[-- Type: text/plain, Size: 1233 bytes --]

diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index b1041e2..467ffc4 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -244,6 +244,7 @@ to add an effort property.")
 (defvar org-clock-heading "")
 (defvar org-clock-heading-for-remember "")
 (defvar org-clock-start-time "")
+(defvar org-clock-used-in-this-session nil)
 
 (defvar org-clock-left-over-time nil
   "If non-nil, user cancelled a clock; this is when leftover time started.")
@@ -953,6 +954,7 @@ the clocking selection, associated with the letter `d'."
 	    (setq org-clock-idle-timer
 		  (run-with-timer 60 60 'org-resolve-clocks-if-idle))
 	    (message "Clock starts at %s - %s" ts msg-extra)
+            (setq org-clock-used-in-this-session t)
 	    (run-hooks 'org-clock-in-hook)))))))
 
 (defun org-clock-mark-default-task ()
@@ -1824,7 +1826,7 @@ This function is made for clock tables."
   "Persist various clock-related data to disk.
 The details of what will be saved are regulated by the variable
 `org-clock-persist'."
-  (when org-clock-persist
+  (when (and org-clock-persist org-clock-used-in-this-session)
     (let (b)
       (with-current-buffer (find-file (expand-file-name org-clock-persist-file))
 	(progn

[-- Attachment #3: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Avoid losing persisted clock data when exiting emac without loading org-mode
  2009-10-24 18:40   ` Kai Tetzlaff
@ 2009-10-25  8:10     ` Carsten Dominik
  0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2009-10-25  8:10 UTC (permalink / raw)
  To: Kai Tetzlaff; +Cc: emacs-orgmode

Hi Kai,

after giving it more thought, what I checked in is actually
a combination of the two patches you sent.

Thanks you for finding and fixing this issue.

- Carsten

On Oct 24, 2009, at 8:40 PM, Kai Tetzlaff wrote:

> Carsten Dominik wrote:
>> Hi Kai,
>>
>>
>> On Oct 23, 2009, at 9:01 AM, Kai Tetzlaff wrote:
>>
>>> Hi,
>>>
>>> i noticed that when using the org-mode clock persistence, the stored
>>> clock data gets deleted when i start emacs and exit again without
>>> turning on org-mode in between.
>>>
>>> When looking at org-clock-persistence-insinuate it looks like org- 
>>> clock
>>> load will only run after org-mode gets started whereas org-clock- 
>>> save
>>> will always be called when exiting emacs:
>>>
>>> (defun org-clock-persistence-insinuate ()
>>> "Set up hooks for clock persistence"
>>> (add-hook 'org-mode-hook 'org-clock-load)
>>> (add-hook 'kill-emacs-hook 'org-clock-save))
>>>
>>> Not running org-mode-hook (i.e. not starting org-mode) thus does not
>>> load clock data but org-clock-save overwrites any prviously saved  
>>> data
>>> when exiting emacs.
>>>
>>> An easy fix for that would be to just add org-clock-load to e.g.
>>> emacs-startup-hook. But this will only work if the code in
>>> org-clock-load does not depend on any org-mode initialization code  
>>> (or
>>> would require loading org-mode).
>>>
>>> So org-clock-save should probably check if org-clock-load has been
>>> running during the current emacs session (or if clock persistence  
>>> was
>>> just enabled) and only then save clock data when exiting emacs. I  
>>> tried
>>> to add this to the code in org-clock-save:
>>>
>>> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
>>> index c7ebbf8..c0fe4e6 100644
>>> --- a/lisp/org-clock.el
>>> +++ b/lisp/org-clock.el
>>> @@ -1803,7 +1803,8 @@ This function is made for clock tables."
>>>  "Persist various clock-related data to disk.
>>> The details of what will be saved are regulated by the variable
>>> `org-clock-persist'."
>>> -  (when org-clock-persist
>>> +  (when (and org-clock-persist
>>> +             (or org-clock-loaded (not (file-exists-p
>>> org-clock-persist-file))))
>>>    (let (b)
>>>      (with-current-buffer (find-file (expand-file-name
>>> org-clock-persist-file))
>>>    (progn
>>>
>>>
>>> /Kai
>>>
>>
>> I see you point, but I am not convinced that you fix is the right  
>> one.
>> What one really wants to do is save the clock and history if and  
>> only if
>> the clock has been used in the current session.  So I guess it is  
>> better
>> to create a special variable org-clock-used-in-this-session which  
>> then
>> will be set to t each time clock-in starts a clock somewhere.  I  
>> believe
>> this would be a better insurance policy.
>>
>> Would you like to try your hand at a patch in this spirit?
>
> Ok, i've attached a new path which uses the suggested approach. I  
> wasn't
> exactly sure about where to set org-clock-used-in-this-session to t.
> It's now done right at the end of org-clock-in, just before running
> hooks in org-clock-in-hook.
>
> I've done a couple of (simple) tests and it works fine for me.
>
> /Kai
>
>> - Carsten
>>
>>> _______________________________________________
>>> Emacs-orgmode mailing list
>>> Remember: use `Reply All' to send replies to the list.
>>> Emacs-orgmode@gnu.org
>>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>> - Carsten
>>
>>
>>
>>
>
>
> diff --git a/lisp/org-clock.el b/lisp/org-clock.el
> index b1041e2..467ffc4 100644
> --- a/lisp/org-clock.el
> +++ b/lisp/org-clock.el
> @@ -244,6 +244,7 @@ to add an effort property.")
> (defvar org-clock-heading "")
> (defvar org-clock-heading-for-remember "")
> (defvar org-clock-start-time "")
> +(defvar org-clock-used-in-this-session nil)
>
> (defvar org-clock-left-over-time nil
>   "If non-nil, user cancelled a clock; this is when leftover time  
> started.")
> @@ -953,6 +954,7 @@ the clocking selection, associated with the  
> letter `d'."
> 	    (setq org-clock-idle-timer
> 		  (run-with-timer 60 60 'org-resolve-clocks-if-idle))
> 	    (message "Clock starts at %s - %s" ts msg-extra)
> +            (setq org-clock-used-in-this-session t)
> 	    (run-hooks 'org-clock-in-hook)))))))
>
> (defun org-clock-mark-default-task ()
> @@ -1824,7 +1826,7 @@ This function is made for clock tables."
>   "Persist various clock-related data to disk.
> The details of what will be saved are regulated by the variable
> `org-clock-persist'."
> -  (when org-clock-persist
> +  (when (and org-clock-persist org-clock-used-in-this-session)
>     (let (b)
>       (with-current-buffer (find-file (expand-file-name org-clock- 
> persist-file))
> 	(progn

- Carsten

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-10-25  8:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-23  7:01 [PATCH] Avoid losing persisted clock data when exiting emac without loading org-mode Kai Tetzlaff
2009-10-24 16:48 ` Carsten Dominik
2009-10-24 17:03   ` Kai Tetzlaff
2009-10-24 18:40   ` Kai Tetzlaff
2009-10-25  8:10     ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).