From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Kitchin Subject: Re: How do you get the LOGBOOK information from the current heading at point? Date: Sun, 5 Aug 2018 20:10:10 -0700 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="0000000000008af1770572bb9d5f" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50070) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fmVuQ-0000d6-L7 for emacs-orgmode@gnu.org; Sun, 05 Aug 2018 23:10:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fmVuO-0006p4-Ig for emacs-orgmode@gnu.org; Sun, 05 Aug 2018 23:10:14 -0400 Received: from mail-wm0-x22d.google.com ([2a00:1450:400c:c09::22d]:51158) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fmVuO-0006nq-6U for emacs-orgmode@gnu.org; Sun, 05 Aug 2018 23:10:12 -0400 Received: by mail-wm0-x22d.google.com with SMTP id s12-v6so12278712wmc.0 for ; Sun, 05 Aug 2018 20:10:12 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Cody Goodman Cc: org-mode-email --0000000000008af1770572bb9d5f Content-Type: text/plain; charset="UTF-8" I doubt it is the org version, I have 9.1.13. The function should return a list of clock elements. On Sun, Aug 5, 2018 at 7:56 PM, Cody Goodman wrote: > Thanks! I think that's going to be what I'm looking for, but I got an > error: > > let: Wrong type argument: integer-or-marker-p, nil > > I traced it down to the =org-element-property :contents-begin= call which > essentially ends up looking like this: > > (org-element-property :contents-begin '((clock (:status closed :value > (timestamp (:type inactive-range :raw-value "[2018-08-05 Sun > 02:35]--[2018-08-05 Sun 03:06]" :year-start 2018 :month-start 8 :day-start > 5 :hour-start 2 :minute-start 35 :year-end 2018 :month-end 8 :day-end 5 > :hour-end 3 :minute-end 6 :begin 28124 :end 28171 :post-blank 1)) :duration > "0:31" :begin 28112 :end 28180 :post-blank 0 :post-affiliated 28112 :parent > (drawer (:begin 28097 :end 28191 :drawer-name "LOGBOOK" :contents-begin > 28112 :contents-end 28180 :post-blank 0 :post-affiliated 28097 :parent > nil)))))) > I would not expect that to work, you have a list of elements, and not an element. > > Then contents-begin isn't being accessed for some reason. I don't know > elisp well enough to know why just by looking at that. The raw output I got > from my point being over a TODO I yanked from the messages buffer was: > > > (clock (:status closed :value (timestamp (:type inactive-range :raw-value > "[2018-08-05 Sun 02:35]--[2018-08-05 Sun 03:06]" :year-start 2018 > :month-start 8 :day-start 5 :hour-start 2 :minute-start 35 :year-end 2018 > :month-end 8 :day-end 5 :hour-end 3 :minute-end 6 :begin 28124 :end 28171 > :post-blank 1)) :duration "0:31" :begin 28112 :end 28180 :post-blank 0 > :post-affiliated 28112 :parent (drawer (:begin 28097 :end 28191 > :drawer-name "LOGBOOK" :contents-begin 28112 :contents-end 28180 > :post-blank 0 :post-affiliated 28097 :parent nil)))) > > > To be able to work with it in org mode I just put a ='= in front of it > like: > I don't think this will work either. > > #+BEGIN_SRC elisp > (org-element-property :contents-begin '((clock (:status closed > :value (timestamp (:type inactive-range :raw-value "[2018-08-05 Sun > 02:35]--[2018-08-05 Sun 03:06]" :year-start 2018 :month-start 8 :day-start > 5 :hour-start 2 :minute-start 35 :year-end 2018 :month-end 8 :day-end 5 > :hour-end 3 :minute-end 6 :begin 28124 :end 28171 :post-blank 1)) :duration > "0:31" :begin 28112 :end 28180 :post-blank 0 :post-affiliated 28112 :parent > (drawer (:begin 28097 :end 28191 :drawer-name "LOGBOOK" :contents-begin > 28112 :contents-end 28180 :post-blank 0 :post-affiliated 28097 :parent > nil)))))) > #+END_SRC > > If that's the correct way to do that translation, then maybe we are using > different org mode versions? I'm using 9.1.9. > You can get to the timestamps in each line like this: #+BEGIN_SRC emacs-lisp (mapcar (lambda (clock) (org-element-property :value clock)) (get-clock-lines)) #+END_SRC #+RESULTS: | timestamp | (:type inactive-range :raw-value [2018-08-04 Sat 21:16]--[2018-08-04 Sat 12:18] :year-start 2018 :month-start 8 :day-start 4 :hour-start 21 :minute-start 16 :year-end 2018 :month-end 8 :day-end 4 :hour-end 12 :minute-end 18 :begin 1502 :end 1549 :post-blank 1) | | timestamp | (:type inactive-range :raw-value [2018-08-04 Sat 21:16]--[2018-08-04 Sat 15:35] :year-start 2018 :month-start 8 :day-start 4 :hour-start 21 :minute-start 16 :year-end 2018 :month-end 8 :day-end 4 :hour-end 15 :minute-end 35 :begin 1569 :end 1616 :post-blank 1) | and then you can get to properties of those. > > > On Sun, Aug 5, 2018 at 5:41 PM John Kitchin > wrote: > >> I think something like this is what you are looking for: >> >> #+BEGIN_SRC emacs-lisp >> (defun get-clock-lines () >> "Return org-element representations of clock lines in a logbook drawer." >> (interactive) >> (save-excursion >> (goto-char (org-log-beginning)) >> (let ((logbook (org-element-at-point)) >> (clock-entries '()) >> (current-element)) >> (goto-char (org-element-property :contents-begin logbook)) >> (setq current-element (org-element-at-point)) >> (while (eq 'clock (car current-element)) >> (push current-element clock-entries) >> (forward-line) >> (setq current-element (org-element-at-point))) >> (reverse clock-entries)))) >> >> (get-clock-lines) >> #+END_SRC >> >> >> Cody Goodman writes: >> >> > Given a TODO that looks like this: >> > >> > *** DONE put into spacemacs file >> > CLOSED: [2018-08-04 Sat 21:18] >> > :LOGBOOK: >> > CLOCK: [2018-08-04 Sat 21:16]--[2018-08-04 Sat 12:18] => 0:02 >> > :END: >> > >> > What function will get me the parts in CLOCK: [2018-08-04 Sat >> > 21:16]--[2018-08-04 Sat 12:18] => 0:02, preferably in plist format like >> > the closed timestamp org-element-at-point gives back of: >> > >> > (timestamp (:type inactive :raw-value "[2018-08-04 Sat 21:18]" >> :year-start >> > 2018 :month-start 8 :day-start 4 :hour-start 21 :minute-start 18 >> :year-end >> > 2018 :month-end 8 :day-end 4 :hour-end 21 :minute-end 18 :begin 46 :end >> 68 >> > :post-blank 0) >> > >> > Note org-element-at-point doesn't give back logbook information: >> > >> > (headline (:raw-value "put into spacemacs file" :begin 1 :end 157 >> > :pre-blank 0 :contents-begin 34 :contents-end 157 :level 3 :priority nil >> > :tags nil :todo-keyword #("DONE" 0 4 (fontified t face org-done)) >> > :todo-type done :post-blank 0 :footnote-section-p nil :archivedp nil >> > :commentedp nil :post-affiliated 1 :closed (timestamp (:type inactive >> > :raw-value "[2018-08-04 Sat 21:18]" :year-start 2018 :month-start 8 >> > :day-start 4 :hour-start 21 :minute-start 18 :year-end 2018 :month-end 8 >> > :day-end 4 :hour-end 21 :minute-end 18 :begin 46 :end 68 :post-blank 0)) >> > :title "put into spacemacs file")) >> > >> > Thanks, >> > >> > Cody >> >> >> -- >> Professor John Kitchin >> Doherty Hall A207F >> Department of Chemical Engineering >> Carnegie Mellon University >> Pittsburgh, PA 15213 >> 412-268-7803 >> @johnkitchin >> http://kitchingroup.cheme.cmu.edu >> > --0000000000008af1770572bb9d5f Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
I doubt it is the org version, I have 9.1.13. The function= should return a list of clock elements.


On Sun, Aug 5, 2018 at 7:56 PM, Cody Goodman= <codygman.consulting@gmail.com> wrote:
Thanks! I thi= nk that's going to be what I'm looking for, but I got an error:
=
let: Wrong type argument: integer-or-marker-p, nil

I traced it d= own to the =3Dorg-element-property :contents-begin=3D call which essentiall= y ends up looking like this:

(org-element-property :contents-begin &= #39;((clock (:status closed :value (timestamp (:type inactive-range :raw-va= lue "[2018-08-05 Sun 02:35]--[2018-08-05 Sun 03:06]" :year-start = 2018 :month-start 8 :day-start 5 :hour-start 2 :minute-start 35 :year-end 2= 018 :month-end 8 :day-end 5 :hour-end 3 :minute-end 6 :begin 28124 :end 281= 71 :post-blank 1)) :duration "0:31" :begin 28112 :end 28180 :post= -blank 0 :post-affiliated 28112 :parent (drawer (:begin 28097 :end 28191 :d= rawer-name "LOGBOOK" :contents-begin 28112 :contents-end 28180 :p= ost-blank 0 :post-affiliated 28097 :parent nil))))))
=

=C2=A0I would not expect that to work, you have a list = of elements, and not an element.=C2=A0



Then contents-be= gin isn't being accessed for some reason. I don't know elisp well e= nough to know why just by looking at that. The raw output I got from my poi= nt being over a TODO I yanked from the messages buffer was:


(clo= ck (:status closed :value (timestamp (:type inactive-range :raw-value "= ;[2018-08-05 Sun 02:35]--[2018-08-05 Sun 03:06]" :year-start 2018 :mon= th-start 8 :day-start 5 :hour-start 2 :minute-start 35 :year-end 2018 :mont= h-end 8 :day-end 5 :hour-end 3 :minute-end 6 :begin 28124 :end 28171 :post-= blank 1)) :duration "0:31" :begin 28112 :end 28180 :post-blank 0 = :post-affiliated 28112 :parent (drawer (:begin 28097 :end 28191 :drawer-nam= e "LOGBOOK" :contents-begin 28112 :contents-end 28180 :post-blank= 0 :post-affiliated 28097 :parent nil))))


To be able to work wit= h it in org mode I just put a =3D'=3D in front of it like:

I don't think this will work either.
=C2=A0

=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 #+BEGIN_SRC elisp<= br>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 (org-element-property :conten= ts-begin '((clock (:status closed :value (timestamp (:type inactive-ran= ge :raw-value "[2018-08-05 Sun 02:35]--[2018-08-05 Sun 03:06]" :y= ear-start 2018 :month-start 8 :day-start 5 :hour-start 2 :minute-start 35 := year-end 2018 :month-end 8 :day-end 5 :hour-end 3 :minute-end 6 :begin 2812= 4 :end 28171 :post-blank 1)) :duration "0:31" :begin 28112 :end 2= 8180 :post-blank 0 :post-affiliated 28112 :parent (drawer (:begin 28097 :en= d 28191 :drawer-name "LOGBOOK" :contents-begin 28112 :contents-en= d 28180 :post-blank 0 :post-affiliated 28097 :parent nil))))))
=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 #+END_SRC

If that's the correc= t way to do that translation, then maybe we are using different org mode ve= rsions? I'm using 9.1.9.

You can = get to the timestamps in each line like this:

#+BEGIN_SRC emacs-lisp
(mapcar (lambda (clock) (org-element-prop= erty :value clock)) (get-clock-lines))
#+END_SRC

#+RESULTS:
| timestamp | (:type inactive-range :raw-valu= e [2018-08-04 Sat 21:16]--[2018-08-04 Sat 12:18] :year-start 2018 :month-st= art 8 :day-start 4 :hour-start 21 :minute-start 16 :year-end 2018 :month-en= d 8 :day-end 4 :hour-end 12 :minute-end 18 :begin 1502 :end 1549 :post-blan= k 1) |
| timestamp | (:type inactive-range :raw-value [2018-08-04= Sat 21:16]--[2018-08-04 Sat 15:35] :year-start 2018 :month-start 8 :day-st= art 4 :hour-start 21 :minute-start 16 :year-end 2018 :month-end 8 :day-end = 4 :hour-end 15 :minute-end 35 :begin 1569 :end 1616 :post-blank 1) |
<= /div>

and then you can get to properties of those.
=
=C2=A0


On Sun, Aug 5, 2018 at 5:41 PM John Kitchin <jkitchin@andrew.cmu.edu> wrote:
I t= hink something like this is what you are looking for:

#+BEGIN_SRC emacs-lisp
(defun get-clock-lines ()
=C2=A0 "Return org-element representations of clock lines in a logbook= drawer."
=C2=A0 (interactive)
=C2=A0 (save-excursion
=C2=A0 =C2=A0 (goto-char (org-log-beginning))
=C2=A0 =C2=A0 (let ((logbook (org-element-at-point))
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (clock-entries '())
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (current-element))
=C2=A0 =C2=A0 =C2=A0 (goto-char (org-element-property :contents-begin logbo= ok))
=C2=A0 =C2=A0 =C2=A0 (setq current-element (org-element-at-point))
=C2=A0 =C2=A0 =C2=A0 (while (eq 'clock (car current-element))
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (push current-element clock-entries)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (forward-line)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (setq current-element (org-element-at-point)))<= br> =C2=A0 =C2=A0 =C2=A0 (reverse clock-entries))))

(get-clock-lines)
#+END_SRC


Cody Goodman <
codygman.consulting@gmail.com> writes:

> Given a TODO that looks like this:
>
> *** DONE put into spacemacs file
>=C2=A0 =C2=A0 =C2=A0CLOSED: [2018-08-04 Sat 21:18]
>=C2=A0 =C2=A0 :LOGBOOK:
>=C2=A0 =C2=A0 =C2=A0CLOCK: [2018-08-04 Sat 21:16]--[2018-08-04 Sat 12:1= 8] =3D>=C2=A0 0:02
>=C2=A0 =C2=A0 :END:
>
> What function will get me the parts in CLOCK: [2018-08-04 Sat
> 21:16]--[2018-08-04 Sat 12:18] =3D>=C2=A0 0:02, preferably in plist= format like
> the closed timestamp org-element-at-point gives back of:
>
> (timestamp (:type inactive :raw-value "[2018-08-04 Sat 21:18]&quo= t; :year-start
> 2018 :month-start 8 :day-start 4 :hour-start 21 :minute-start 18 :year= -end
> 2018 :month-end 8 :day-end 4 :hour-end 21 :minute-end 18 :begin 46 :en= d 68
> :post-blank 0)
>
> Note org-element-at-point doesn't give back logbook information: >
> (headline (:raw-value "put into spacemacs file" :begin 1 :en= d 157
> :pre-blank 0 :contents-begin 34 :contents-end 157 :level 3 :priority n= il
> :tags nil :todo-keyword #("DONE" 0 4 (fontified t face org-d= one))
> :todo-type done :post-blank 0 :footnote-section-p nil :archivedp nil > :commentedp nil :post-affiliated 1 :closed (timestamp (:type inactive<= br> > :raw-value "[2018-08-04 Sat 21:18]" :year-start 2018 :month-= start 8
> :day-start 4 :hour-start 21 :minute-start 18 :year-end 2018 :month-end= 8
> :day-end 4 :hour-end 21 :minute-end 18 :begin 46 :end 68 :post-blank 0= ))
> :title "put into spacemacs file"))
>
> Thanks,
>
> Cody


--
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu

--0000000000008af1770572bb9d5f--