changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / emacs/lib/graph.el

changeset 667: bb8aa1eda12b
parent: f15e0f021a64
child: 2b7d5a8d63ac
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 23 Sep 2024 17:03:54 -0400
permissions: -rw-r--r--
description: graph, css vars, corfu-terminal fix
1 ;;; graph.el --- Graph-oriented Extensions -*- lexical-binding: t; -*-
2 
3 ;; Copyright (C) 2024 The Compiler Company
4 ;; Version: "0.2.0"
5 ;; Author: Richard Westhaver <richard.westhaver@gmail.com>
6 ;; Keywords: docs, maint, outlines, extensions
7 
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12 
13 ;; This program 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 
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
20 
21 ;;; Commentary:
22 
23 ;;
24 
25 ;;; Code:
26 (require 'org)
27 (require 'org-agenda)
28 (require 'default)
29 (require 'ulang)
30 
31 (defgroup graph nil
32  "CC Graph")
33 
34 (defcustom org-graph-db-directory (join-paths user-org-stash-directory "graph")
35  "graph database storage directory."
36  :type 'directory
37  :group 'graph)
38 
39 (defcustom org-graph-locations (list (join-paths company-org-directory "notes/"))
40  "List of directories to check for nodes."
41  :type '(list directory)
42  :group 'graph)
43 
44 (defcustom org-graph-include-agenda-files nil
45  "When non-nil, include `org-agenda-files' in the graph."
46  :type 'boolean
47  :group 'graph)
48 
49 (defcustom org-graph-include-archive nil
50  "When non-nil, include `org-arhive-location' in the graph."
51  :type 'boolean
52  :group 'graph)
53 
54 (defcustom org-graph-include-org-directory nil
55  "When non-nil, include `org-directory' files in the graph."
56  :type 'boolean
57  :group 'graph)
58 
59 (defcustom org-graph-compaction-hook nil
60  "Hook run when a graph is compacted to `org-graph-db'."
61  :type 'hook
62  :group 'graph)
63 
64 (defcustom org-graph-capture-hook nil
65  "Hook run when a node is added to the graph."
66  :type 'hook
67  :group 'graph)
68 
69 (defcustom org-graph-db-init-script (join-paths company-source-directory "infra/scripts/org-db-init.lisp")
70  "Path to a lisp script responsible for initializing the `org-graph-db-directory'.")
71 
72 (cl-defstruct org-graph-db-handle
73  (type :rocksdb)
74  (name "org-graph-db")
75  init
76  get
77  put
78  delete
79  merge
80  compact
81  shutdown)
82 
83 (defcustom org-graph-db (make-org-graph-db-handle)
84  "A handle to the database backend which stores nodes and edges."
85  :type 'org-graph-db-handle
86  :group 'graph)
87 
88 (defun org-graph-from-id-locations (&optional edges local)
89  "Populate the `org-graph' from `org-id-locations', filtering out any
90 entries not under a member of `org-graph-locations'. When EDGES is
91 non-nil visit each node and collect all edges found."
92  (interactive "P")
93  (save-excursion
94  (let* ((node-ids (copy-hash-table (org-id-locations-load))) ;; don't overwrite `org-id-locations'
95  (graph (make-org-graph :nodes node-ids)))
96  (maphash
97  (lambda (k v)
98  (if-let ((ok (cl-loop for l in org-graph-locations
99  when (string-prefix-p l (file-truename v))
100  return t)))
101  (let ((pos (cdr (org-id-find-id-in-file k v))))
102  (message "%s %s" k v)
103  (org-with-file-buffer v
104  (goto-char pos)
105  (org-graph-node-at-point graph)
106  (when edges (org-graph-edges-at-point graph))))
107  (remhash k (org-graph-nodes graph))))
108  (org-graph-nodes graph))
109  (if local
110  (setq-local org-graph graph)
111  (setq org-graph graph)))))
112 
113 (defun org-graph-files ()
114  (org-list-files org-graph-locations org-agenda-extensions))
115 
116 (cl-defstruct org-graph
117  ;; TODO 2024-09-17: use integers instead of string
118  (nodes (make-hash-table :test 'equal))
119  (edges (make-hash-table :test 'equal)))
120 
121 (defvar org-graph (make-org-graph)
122  "The Emacs-native org-graph. Should be assigned to an `org-graph' instance.")
123 
124 (cl-defstruct org-graph-node id name file point)
125 (cl-defstruct org-graph-edge (type 'link) in properties timestamp point out)
126 
127 (defun org-graph--file-hash (file)
128  "Compute the hash of FILE."
129  (with-temp-buffer
130  (set-buffer-multibyte nil)
131  (insert-file-contents-literally file)
132  (secure-hash 'md5 (current-buffer))))
133 
134 (defun org-graph-node-at-point (&optional update)
135  "Return the `org-graph-node' at point. When UPDATE is non-nil insert or
136 update the node into the org-graph object specified or when 't' use the
137 currently active org-graph."
138  (let* ((file (buffer-file-name))
139  (node (make-org-graph-node :point (point) :file file)))
140  (if (derived-mode-p 'org-mode)
141  (progn
142  (if (org-before-first-heading-p)
143  (setf (org-graph-node-name node) (org-get-title)
144  ;; use the filename, create a hash as id
145  (org-graph-node-id node) (org-graph--file-hash file))
146  (setf (org-graph-node-id node) (org-id-get)
147  (org-graph-node-name node) (elt (org-heading-components) 4))))
148  (setf (org-graph-node-id node) (org-graph--file-hash file)
149  (org-graph-node-name node) (file-name-nondirectory file)))
150  (when update
151  (puthash (org-graph-node-id node) node (org-graph-nodes (if (eql t update) org-graph update))))
152  node))
153 
154 ;; TODO 2024-09-22: properties
155 (defun org-graph-collect-edge ()
156  "Collect the edge at point which should be a line created with `org-graph-edge--insert'."
157  (org-with-point-at (beginning-of-line)
158  (when (org-at-timestamp-p 'lax)
159  (let ((ep (point))
160  (ts (match-string-no-properties 0))
161  (end (match-end 0)))
162  (goto-char (1+ end))
163  ;; next 2 chars are the arrow
164  (let ((arrow (org-graph-edge-arrow* (buffer-substring-no-properties (point) (+ 2 (point))))))
165  (goto-char (+ (point) 4))
166  (make-org-graph-edge :in (org-id-get)
167  :type arrow
168  :point ep
169  :timestamp (org-parse-time-string ts t)
170  :out (string-trim (org--link-at-point) "id:")))))))
171 
172 (defun org-graph-map-edges (function)
173  "Eval FUNCTION once for each edge in node at point with point at start of the edge."
174  (with-org-graph-edge-drawer (end)
175  (re-search-backward (rx bol ?: (literal (org-graph-edge-drawer)) ?: eol) nil t)
176  (goto-char (1+ (match-end 0)))
177  (cl-loop while (> (point-max) end (point))
178  collect (funcall function)
179  do (next-line))))
180 
181 ;; TODO 2024-09-23:
182 (defun org-link-info (link)
183  (let ((path (org-element-property :path link))
184  (type (org-element-property :type link))
185  (desc (substring-no-properties (nth 2 link))))
186  (list type path desc)))
187 
188 ;; TODO 2024-09-22:
189 (defun org-graph-infer-edges ()
190  "Infer edges from the contents of the node at point. The result of this
191 function is a list of org-graph-edge objects."
192  ;; collect links
193  (with-org-graph-edge-drawer (beg)
194  (org-element-map (org-element-parse-buffer) 'link
195  (lambda (link)
196  (print link)
197  ;; (org-graph-edge-link-builder (funcall 'org-element-create link))
198  ))))
199 
200 (defun org-graph-reduce-edges (function)
201  "Same as `cl-reduce' where SEQ is the list of edges at point. FUNCTION
202 takes two `org-graph-edge' objects as input."
203  (let ((edges (org-graph-map-edges 'org-graph-collect-edge)))
204  (cl-reduce function edges)))
205 
206 (defun org-graph-collect-edges-at-point (&optional update)
207  "Collect the contents of the EDGES drawer from node at point. When UPDATE
208 is non-nil insert or update the node into the org-graph object specified
209 or when 't' use the currently active org-graph."
210  (let ((edges (org-graph-map-edges 'org-graph-collect-edge)))
211  (when update
212  (mapc (lambda (e)
213  (puthash
214  (org-graph-edge-in e)
215  e
216  (org-graph-edges (if (eql t update) org-graph update))))
217  edges))
218  edges))
219 
220 (defun org-graph-edge-equal (a b)
221  "Return non-nil if A and B are 'equal' org-graph-edge objects."
222  (equal (org-graph-edge-out a) (org-graph-edge-out b)))
223 
224 (defun org-graph-edge-remove-duplicates ()
225  "Remove duplicate edge entries from node at point."
226  (org-graph-reduce-edges
227  (lambda (a b)
228  (when (org-graph-edge-equal a b)
229  (let ((tsa (org-graph-edge-timestamp a))
230  (tsb (org-graph-edge-timestamp b)))
231  (goto-char (org-graph-edge-point (if (org-time> tsa tsb) b a)))
232  (delete-line))))))
233 
234 (defun org-graph-edges-at-point (&optional update)
235  "Return a list of `org-graph-edge' instances associated with the node at
236 point. When UPDATE is non-nil insert or update the edges into the
237 currently active org-graph."
238  (interactive)
239  (when (derived-mode-p 'org-mode)
240  (org-graph-collect-edges-at-point update)))
241 
242 (defun org-graph-buffer-update (&optional buffer)
243  "Map over an org buffer adding all nodes to the active org-graph."
244  (interactive)
245  (save-excursion
246  (with-current-buffer (or buffer (current-buffer))
247  ;; capture file node
248  (goto-char (point-min))
249  (org-graph-node-at-point t)
250  (when (derived-mode-p 'org-mode)
251  (org-map-entries (lambda () (org-graph-node-at-point t)))))))
252 
253 ;;; Edges
254 ;; See https://github.com/toshism/org-super-links/blob/develop/org-super-links.el
255 (declare-function org-make-link-description-function "ext:org-mode")
256 
257 (defvar org-graph-edge-drawer "EDGES"
258  "Controls how/where to insert edges. If nil edges will just be inserted
259 under the heading.")
260 
261 ;; TODO 2024-09-16: edge properties
262 (defvar org-graph-edge-prefix 'org-graph-edge-prefix-timestamp
263  "Prefix to insert before the edge.
264 This can be a string, nil, or a function that takes no arguments and
265 returns a string.
266 
267 Default is the function `org-graph-edge-prefix-timestamp'
268 which returns an inactive timestamp formatted according to the variable
269 `org-time-stamp-formats'.")
270 
271 ;; TODO 2024-09-16: do we need this? what sort of information for a
272 ;; given edge would go in the postfix? this may be better suited as a
273 ;; per-edge value rather than global - maybe use for comments.
274 (defvar org-graph-edge-postfix nil
275  "Postfix to insert after the edge.
276 This can be a string, nil, or a function that takes no arguments and
277 returns a string")
278 
279 (defvar org-graph-edge-link-prefix nil
280  "Prefix to insert before the link.
281 This can be a string, nil, or a function that takes no arguments and
282 returns a string")
283 
284 (defvar org-graph-edge-link-postfix nil
285  "Postfix to insert after the link.
286 This can be a string, nil, or a function that takes no arguments and
287 returns a string")
288 
289 (defvar org-graph-edge-default-description-formatter org-make-link-description-function
290  "What to use if no description is provided.
291 This can be a string, nil or a function that accepts two arguments
292 LINK and DESC and returns a string.
293 
294 nil will return the default desciption or the link.
295 string will be used only as a default fall back if set.
296 function will be called for every link.
297 
298 Default is the variable `org-make-link-desciption-function'.")
299 
300 (defvar org-graph-edge-search-function 'org-graph-edge-get-location
301  "The interface to use for finding target links. If you provide a custom
302 function it will be called with the `point` at the location the link
303 should be inserted. The only other requirement is that it should call
304 the function `org-graph-edge--insert-link' with a marker to the target
305 link. AKA the place you want the edge.
306 
307 `org-graph-edge-get-location' internally uses `org-refile-get-location'.")
308 
309 (defvar org-graph-edge-pre-link-hook nil
310  "Hook called before storing the link on the link side.
311 This is called with point at the location where it was called.")
312 
313 (defvar org-graph-edge-pre-backlink-hook nil
314  "Hook called before storing the link on the backlink side.
315 This is called with point in the heading of the backlink.")
316 
317 (defvar org-graph-edge-indicator-alist
318  '((link . "->")
319  (backlink . "<-")
320  (relation . "--")
321  (parent . ">>")
322  (child . "<<"))
323  "An alist of (EDGE-TYPE . INDICATOR) pairs. Each INDICATOR is a string
324 which will be printed between the properties and backlink of the
325 associated EDGE-TYPE.")
326 
327 (defun org-graph-edge-arrow (sym)
328  (cdr (assoc sym org-graph-edge-indicator-alist)))
329 
330 (defun org-graph-edge-arrow* (str)
331  "Reverse lookup of edge arrow symbol."
332  (car (rassoc str org-graph-edge-indicator-alist)))
333 
334 (defun org-graph-edge-get-location ()
335  "Default for function `org-graph-edge-search-function' that reuses the `org-refile' machinery."
336  (let ((target (org-refile-get-location "Node")))
337  (org-graph-edge--insert-link (set-marker (make-marker) (car (cdddr target))
338  (get-file-buffer (car (cdr target)))))))
339 
340 (cl-defmacro with-org-graph-edge-drawer ((start &optional create) &rest body)
341  "START is a symbol which is bound to the start of the edge drawer."
342  (declare (indent 1))
343  `(save-excursion
344  (org-with-wide-buffer
345  (let ((org-log-into-drawer (org-graph-edge-drawer)))
346  (org-graph-edge--org-narrow-to-here)
347  (let ((,start (org-log-beginning ,create)))
348  (when (re-search-forward (rx bol ?: "END" ?: eol) nil t)
349  (goto-char ,start)
350  ,@body))))))
351 
352 (defun org-graph-edge-search-function ()
353  "Call the search interface specified in variable `org-graph-edge-search-function'."
354  (funcall org-graph-edge-search-function))
355 
356 (defun org-graph-edge-prefix ()
357  "Return an appropriate string based on variable `org-graph-edge-prefix'."
358  (cond ((equal org-graph-edge-prefix nil) "")
359  ((stringp org-graph-edge-prefix) org-graph-edge-prefix)
360  (t (funcall org-graph-edge-prefix))))
361 
362 (defun org-graph-edge-postfix ()
363  "Return an appropriate string based on variable `org-graph-edge-postfix'."
364  (cond ((equal org-graph-edge-postfix nil) "\n")
365  ((stringp org-graph-edge-postfix) org-graph-edge-postfix)
366  (t (funcall org-graph-edge-postfix))))
367 
368 (defun org-graph-edge-link-prefix ()
369  "Return an appropriate string based on variable `org-graph-edge-link-prefix'."
370  (cond ((equal org-graph-edge-link-prefix nil) "")
371  ((stringp org-graph-edge-link-prefix) org-graph-edge-link-prefix)
372  (t (funcall org-graph-edge-link-prefix))))
373 
374 (defun org-graph-edge-link-postfix ()
375  "Return an appropriate string based on variable `org-graph-edge-link-postfix'."
376  (cond ((equal org-graph-edge-link-postfix nil) "")
377  ((stringp org-graph-edge-link-postfix) org-graph-edge-link-postfix)
378  (t (funcall org-graph-edge-link-postfix))))
379 
380 ;; TODO 2024-09-16: edge-properties
381 (defun org-graph-edge-prefix-timestamp ()
382  "Return the default prefix string for an edge.
383 Inactive timestamp formatted according to `org-time-stamp-formats'."
384  (format-time-string (org-time-stamp-format t t) (current-time)))
385 
386 (defun org-graph-edge-default-description-formatter (link desc)
387  "Return a string to use as the link desciption.
388 LINK is the link target. DESC is the provided desc."
389  (let ((p org-graph-edge-default-description-formatter))
390  (cond ((equal p nil) (or desc link))
391  ((stringp p) (or desc p))
392  ((fboundp p) (funcall p link desc))
393  (t desc))))
394 
395 (defun org-graph-edge-drawer ()
396  "Name of the edge drawer, as a string, or nil.
397 This is the value of variable
398 `org-graph-edge-drawer'. However, if the current
399 entry has or inherits a EDGE_DRAWER property, it will be
400 used instead of the default value."
401  (let ((p (org-entry-get nil "EDGE_DRAWER" 'inherit t)))
402  (cond ((equal p "nil") nil)
403  ((stringp p) p)
404  (t org-graph-edge-drawer))))
405 
406 (defun org-graph-edge--org-narrow-to-here ()
407  "Narrow to current heading, excluding subheadings."
408  (org-narrow-to-subtree)
409  (save-excursion
410  (org-next-visible-heading 1)
411  (narrow-to-region (point-min) (point))))
412 
413 ;; delete related functions
414 (defun org-graph-find-edges (id)
415  "Return link elements for ID."
416  (org-graph-edge--org-narrow-to-here)
417  (let ((links
418  (org-element-map (org-element-parse-buffer) 'link
419  (lambda (link)
420  (when (string= (org-element-property :path link) id)
421  link)))))
422  (widen)
423  links))
424 
425 (defun org-graph-edge--in-drawer-p ()
426  "Return non-nil if point is in drawer. Value is element at point."
427  (let ((element (org-element-at-point)))
428  (while (and element
429  (not (memq (org-element-type element) '(drawer property-drawer))))
430  (setq element (org-element-property :parent element)))
431  element))
432 
433 (defun org-graph-edge--delete-link (link)
434  "Delete the LINK. If point is in edges drawer, delete the entire line."
435  (save-excursion
436  (goto-char (org-element-property :begin link))
437  (if (org-graph-edge--in-drawer)
438  (progn
439  (kill-whole-line 1)
440  (org-remove-empty-drawer-at (point)))
441  (delete-region (org-element-property :begin link) (org-element-property :end link)))))
442 
443 (defun org-graph-edge--insert (link desc arrow &rest props)
444  "Insert an edge at point. ARROW is a symbol representing the type of
445 arrow to insert. The rest of the arguments are parsed as :KEY VAL pairs
446 which are inserted with the edge."
447  (insert (format "%s %s " (org-graph-edge-prefix)
448  (org-graph-edge-arrow arrow)))
449  (org-insert-link nil link desc)
450  (insert (org-graph-edge-link-postfix))
451  (newline))
452 
453 (defun org-graph-edge-insert-related (link desc)
454  "Insert a relation edge."
455  (with-org-graph-edge-drawer (beg t)
456  (org-graph-edge--insert link desc 'relation)
457  (org-indent-region beg (point))))
458 
459 (defun org-graph-edge-insert-backlink (link desc)
460  "Insert edge to LINK with DESC.
461 Where the edge is placed is determined by the variable `org-graph-edge-drawer'."
462  (with-org-graph-edge-drawer (beg t)
463  (let ((description (org-graph-edge-default-description-formatter link desc)))
464  (org-graph-edge--insert link description 'backlink)
465  (org-indent-region beg (point)))))
466 
467 (defun org-graph-edge-insert-link (link desc)
468  "insert a forward link edge."
469  (with-org-graph-edge-drawer (beg t)
470  (org-graph-edge--insert link desc 'link)
471  (org-indent-region beg (point))))
472 
473 (defun org-graph-edge-links-action (marker hooks)
474  "Go to MARKER, run HOOKS and store a link."
475  (with-current-buffer (marker-buffer marker)
476  (save-excursion
477  (save-restriction
478  (widen) ;; buffer could be narrowed
479  (goto-char (marker-position marker))
480  (run-hooks hooks)
481  (call-interactively #'org-store-link)
482  (pop org-stored-links)))))
483 
484 (defun org-graph-edge-link-builder (link)
485  "Format link description for LINK."
486  (let* ((link-ref (car link))
487  (pre-desc (cadr link))
488  (description (org-graph-edge-default-description-formatter link-ref pre-desc)))
489  (cons link-ref description)))
490 
491 (defun org-graph-edge--insert-link (target &optional no-forward)
492  "Insert link to marker TARGET and create an edge.
493 Only create edges in files in `org-mode' or a derived mode, otherwise just
494 act like a normal link.
495 
496 If NO-FORWARD is non-nil skip creating the forward link. Currently
497 only used when converting a link."
498  (let* ((source (point-marker))
499  (source-link (org-graph-edge-links-action source 'org-graph-edge-pre-link-hook))
500  (target-link (org-graph-edge-links-action target 'org-graph-edge-pre-backlink-hook))
501  (source-formatted-link (org-graph-edge-link-builder source-link))
502  (target-formatted-link (org-graph-edge-link-builder target-link)))
503  (with-current-buffer (marker-buffer target)
504  (save-excursion
505  (save-restriction
506  (widen) ;; buffer could be narrowed
507  (goto-char (marker-position target))
508  (when (derived-mode-p 'org-mode)
509  (org-graph-edge-insert-backlink (car source-formatted-link) (cdr source-formatted-link))))))
510  (unless no-forward
511  (with-current-buffer (marker-buffer source)
512  (save-excursion
513  (goto-char (marker-position source))
514  (org-graph-edge-insert-link (car target-formatted-link) (cdr target-formatted-link)))))))
515 
516 ;;;###autoload
517 (defun org-graph-edge-convert-link (arg)
518  "Convert a normal `org-mode' link at `point' to a graph link, ARG prefix.
519 When called interactively with a `C-u' prefix argument do not modify existing link."
520  (interactive "P")
521  (let ((from-m (point-marker))
522  (target (save-window-excursion
523  (with-current-buffer (current-buffer)
524  (save-excursion
525  (org-open-at-point)
526  (point-marker))))))
527  (org-graph-edge--insert-link target arg)
528  (goto-char (marker-position from-m)))
529  (when (not arg)
530  (let ((begin (org-element-property :begin (org-element-context)))
531  (end (org-element-property :end (org-element-context))))
532  (delete-region begin end))))
533 
534 ;;;###autoload
535 (defun org-graph-edge-delete ()
536  "Delete the link at point, and the corresponding reverse link.
537 If no reverse link exists, just delete link at point.
538 This works from either side, and deletes both sides of a link."
539  (interactive)
540  (save-window-excursion
541  (with-current-buffer (current-buffer)
542  (save-excursion
543  (let ((id (org-id-get (point))))
544  (org-open-at-point)
545  (let ((link-elements (org-graph-find-edges id)))
546  (if link-elements
547  (if (> (length link-elements) 1)
548  (error "Multiple links found.")
549  (org-graph-edge--delete-link (car link-elements)))
550  (message "No edge found. Deleting active only.")))))))
551  (org-graph-edge--delete-link (org-element-context)))
552 
553 ;;;###autoload
554 (defun org-graph-edge-insert ()
555  "Insert an edge from `org-stored-links')"
556  (interactive)
557  (if org-stored-links
558  (progn
559  (org-link-open (pop org-stored-links))
560  (org-graph-edge--insert-link (set-marker (make-marker) (point))))
561  (org-graph-edge-link)))
562 
563 ;;;###autoload
564 (defun org-graph-edge-link ()
565  "Insert a link edge and add a backlink edge to the target heading."
566  (interactive)
567  (org-graph-edge-search-function))
568 
569 (defun org-dblock-write:links ()
570  "Generate a 'links' block for the designated node.")
571 
572 (defun org-dblock-write:graph ()
573  "Generate a 'graph' block for the designated set of nodes.")
574 
575 (provide 'graph)
576 ;; graph.el ends here