forked from rswgnu/hyperbole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hbdata.el
463 lines (430 loc) · 17.4 KB
/
hbdata.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
;;; hbdata.el --- GNU Hyperbole button attribute accessor functions -*- lexical-binding: t; -*-
;;
;; Author: Bob Weiner
;;
;; Orig-Date: 2-Apr-91
;; Last-Mod: 5-Nov-22 at 14:24:56 by Bob Weiner
;;
;; Copyright (C) 1991-2021 Free Software Foundation, Inc.
;; See the "HY-COPY" file for license information.
;;
;; This file is part of GNU Hyperbole.
;;; Commentary:
;;
;; This module handles Hyperbole button data/attribute storage. In
;; general, it should not be extended by anyone other than Hyperbole
;; maintainers. If you alter the formats or accessors herein, you are
;; likely to make your buttons incompatible with future releases.
;; System developers should instead work with and extend the "hbut.el"
;; module which provides much of the Hyperbole application programming
;; interface and which hides the low level details handled by this
;; module.
;;
;;
;; Button data is typically stored within a file that holds the button
;; data for all files within that directory. The name of this file is
;; given by the variable 'hattr:filename,' usually it is ".hypb".
;;
;; Here is a sample from a Hyperbole V2 button data file. Each button
;; data entry is a list of fields:
;;
;;
;; "TO-DO"
;; (Key Placeholders LinkType <arg-list> creator and modifier with times)
;; ("alt.mouse.el" nil nil link-to-file ("./ell/alt-mouse.el") "[email protected]" "19991027:09:19:26" "[email protected]" "19991027:09:31:36")
;;
;; which means: button \<(alt.mouse.el)> found in file "TO-DO" in the current
;; directory provides a link to the local file "./ell/alt-mouse.el". It was
;; created and last modified by [email protected].
;;
;; All link entries that originate from the same source file are stored
;; contiguously, one per line, in reverse order of creation.
;; Preceding all such entries is the source name (in the case of a file
;; used as a source, no directory information is included, since only
;; sources within the same directory as the button data file are used as
;; source files within it.
;;; Code:
;;; ************************************************************************
;;; Other required Elisp libraries
;;; ************************************************************************
(require 'hversion) ;; For hyperb:microsoft-os-p
(require 'hbmap)
(require 'hgnus)
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************
;;; ------------------------------------------------------------------------
;;; Button data accessor functions
;;; ------------------------------------------------------------------------
(defun hbdata:action (hbdata)
"[Hyp V2] Return action overriding button's action type or nil."
(nth 1 hbdata))
(defun hbdata:actype (hbdata)
"Return the action type in HBDATA as a string."
(let ((nm (symbol-name (nth 3 hbdata)))
actype-sym)
(and nm (if (or (= (length nm) 2) (string-match "::" nm))
nm
;; RSW 2020-11-01 - Updated to handle programmatically created
;; explicit buttions whose action types may be non-actypes,
;; regular Elisp functions.
(setq actype-sym (intern-soft (concat "actypes::" nm)))
(if (and actype-sym (fboundp actype-sym))
(symbol-name actype-sym)
nm)))))
(defun hbdata:args (hbdata)
"Return the list of any arguments given in HBDATA."
(nth 4 hbdata))
(defun hbdata:categ (_hbdata)
"Return the category of HBDATA's button."
'explicit)
(defun hbdata:creator (hbdata)
"Return the user-id of the original creator of HBDATA's button."
(nth 5 hbdata))
(defun hbdata:create-time (hbdata)
"Return the original creation time given for HBDATA's button."
(nth 6 hbdata))
(defun hbdata:key (hbdata)
"Return the indexing key in HBDATA as a string."
(car hbdata))
(defun hbdata:loc-p (hbdata)
"[Hyp V1] Return 'L iff HBDATA referent is within a local file system.
Return 'R if remote and nil if irrelevant for button action type."
(nth 1 hbdata))
(defun hbdata:modifier (hbdata)
"Return the user-id of the most recent modifier of HBDATA's button.
Nil is returned when button has not been modified."
(nth 7 hbdata))
(defun hbdata:mod-time (hbdata)
"Return the time of the most recent change to HBDATA's button.
Nil is returned when button has not beened modified."
(nth 8 hbdata))
(defun hbdata:referent (hbdata)
"Return the referent name in HBDATA."
(nth 2 hbdata))
(defun hbdata:search (buf label partial)
"Go to Hyperbole hbdata BUF and find LABEL whole or PARTIAL match.
Search is case-insensitive. Return list with elements:
\(<button-src> <label-key1> ... <label-keyN>)."
(set-buffer buf)
(let ((case-fold-search t) (src-matches) (src) (matches) (end))
(goto-char (point-min))
(while (re-search-forward "^\^L\n\"\\([^\"]+\\)\"" nil t)
(setq src (match-string 1)
matches nil)
(save-excursion
(setq end (if (re-search-forward "^\^L" nil t)
(1- (point)) (point-max))))
(while (re-search-forward
(concat "^(\"\\(" (if partial "[^\"]*")
(regexp-quote (ebut:label-to-key label))
(if partial "[^\"]*") "\\)\"") nil t)
(setq matches (cons (match-string 1) matches)))
(if matches
(setq src-matches (cons (cons src matches) src-matches)))
(goto-char end))
src-matches))
;;; ------------------------------------------------------------------------
;;; Button data operators
;;; ------------------------------------------------------------------------
(defun hbdata:build (&optional mod-lbl-key but-sym)
"Construct button data from optional MOD-LBL-KEY and BUT-SYM.
Modify BUT-SYM attributes. MOD-LBL-KEY nil means create a new
entry, otherwise modify existing one. Nil BUT-SYM means use
`hbut:current' If successful, return a cons of
(button-data . button-instance-str), else nil."
(let* ((b (hattr:copy (or but-sym 'hbut:current) 'but))
(l (hattr:get b 'loc))
(key (or mod-lbl-key (hattr:get b 'lbl-key)))
(new-key (if mod-lbl-key (hattr:get b 'lbl-key) key))
(lbl-instance) (creator) (create-time) (modifier) (mod-time)
(entry) loc dir)
(when l
(setq loc (if (bufferp l) l (file-name-nondirectory l))
dir (if (bufferp l) nil (file-name-directory l)))
(when (setq entry (hbdata:to-entry key loc dir (not mod-lbl-key)))
(if mod-lbl-key
(progn
(setq creator (hbdata:creator entry)
create-time (hbdata:create-time entry)
modifier (let* ((user (hypb:user-name))
(addr hyperb:user-email))
(if (equal creator addr)
user addr))
mod-time (htz:date-sortable-gmt)
entry (cons new-key (cdr entry)))
(hbdata:delete-entry-at-point)
(when (setq lbl-instance (hbdata:instance-last new-key loc dir))
(setq lbl-instance (concat ebut:instance-sep
(int-to-string (1+ lbl-instance))))
;; This expression is needed to ensure that the highest
;; numbered instance of a label appears before
;; other instances, so 'hbdata:instance-last' will work.
(when (hbdata:to-entry-buf loc dir)
(forward-line 1))))
(let ((inst-num (hbdata:instance-last new-key loc dir)))
(setq lbl-instance (if inst-num
(hbdata:instance-next
(concat new-key ebut:instance-sep
(int-to-string inst-num))))))))
(when (or entry (not mod-lbl-key))
(hattr:set b 'lbl-key (concat new-key lbl-instance))
(hattr:set b 'loc loc)
(hattr:set b 'dir dir)
(let* ((actype)
(hbdata (list (hattr:get b 'lbl-key)
(hattr:get b 'action)
;; Hyperbole V1 referent compatibility, always nil in V2
(hattr:get b 'referent)
;; Save actype without class prefix.
(and (setq actype (hattr:get b 'actype))
(symbolp actype)
(setq actype (symbol-name actype))
(intern
(substring actype (if (string-match "::" actype)
(match-end 0) 0))))
(let ((mail-dir (and (fboundp 'hmail:composing-dir)
(hmail:composing-dir l)))
(args (hattr:get b 'args)))
;; Replace matches for variable values with their variable names in any pathname args.
(hattr:set b 'args
(mapcar #'hpath:substitute-var
(if mail-dir
;; Make pathname args absolute for outgoing mail and news messages.
(hpath:absolute-arguments actype args mail-dir)
args))))
(hattr:set b 'creator (or creator hyperb:user-email))
(hattr:set b 'create-time (or create-time (htz:date-sortable-gmt)))
(hattr:set b 'modifier modifier)
(hattr:set b 'mod-time mod-time))))
;; Ensure modified attributes are saved to `but-sym' or hbut:current.
(hattr:copy b (or but-sym 'hbut:current))
(cons hbdata lbl-instance))))))
(defun hbdata:get-entry (lbl-key key-src &optional directory)
"Return button data entry given by LBL-KEY, KEY-SRC and optional DIRECTORY.
Return nil if no matching entry is found.
A button data entry is a list of attribute values. Use methods from
class `hbdata' to operate on the entry."
(hbdata:apply-entry
(lambda () (read (current-buffer)))
lbl-key key-src directory))
(defun hbdata:instance-next (lbl-key)
"Return string for button instance number following LBL-KEY's.
Nil if LBL-KEY is nil."
(and lbl-key
(if (string-match
(concat (regexp-quote ebut:instance-sep) "[0-9]+$") lbl-key)
(concat ebut:instance-sep
(int-to-string
(1+ (string-to-number
(substring lbl-key (1+ (match-beginning 0)))))))
":2")))
(defun hbdata:instance-last (lbl-key key-src &optional directory)
"Return highest instance number for repeated button label.
1 if not repeated, nil if no instance.
Utilize arguments LBL-KEY, KEY-SRC and optional DIRECTORY."
(hbdata:apply-entry
(lambda ()
(if (looking-at "[0-9]+")
(string-to-number (match-string 0))
1))
lbl-key key-src directory nil 'instance))
(defun hbdata:delete-entry (lbl-key key-src &optional directory)
"Delete button data entry given by LBL-KEY, KEY-SRC and optional DIRECTORY.
Return entry deleted (a list of attribute values) or nil.
Use methods from class `hbdata' to operate on the entry.
If the hbdata buffer is blank/empty, kill it and remove the associated file."
(hbdata:apply-entry
(lambda ()
(prog1 (read (current-buffer))
(let ((empty-file-entry "[ \t\n\r]*\\(\^L\\|\\'\\)")
(kill))
(beginning-of-line)
(hbdata:delete-entry-at-point)
(when (looking-at empty-file-entry)
(let ((end (point))
(empty-hbdata-file "[ \t\n\r]*\\'"))
(forward-line -1)
(when (eq (following-char) ?\")
;; Last button entry for filename, so del filename.
(forward-line -1)
(delete-region (point) end))
(save-excursion
(goto-char (point-min))
(when (looking-at empty-hbdata-file)
(setq kill t)))
(when kill
(let ((fname buffer-file-name))
(erase-buffer) (save-buffer) (kill-buffer nil)
(hbmap:dir-remove (file-name-directory fname))
(delete-file fname))))))))
lbl-key key-src directory))
(defun hbdata:delete-entry-at-point ()
(delete-region (point) (progn (forward-line 1) (point))))
(defun hbdata:to-entry (but-key key-src &optional directory instance)
"Return button data entry indexed by BUT-KEY, KEY-SRC, optional DIRECTORY.
Return nil if entry is not found. Leave point at start of entry when
successful or where entry should be inserted if unsuccessful.
A button entry is a list. Use methods from class `hbdata' to operate on the
entry. Optional INSTANCE non-nil means search for any button instance matching
but-key."
(let ((pos-entry-cons
(hbdata:apply-entry
(lambda ()
(beginning-of-line)
(cons (point) (read (current-buffer))))
but-key key-src directory 'create instance)))
(hbdata:to-entry-buf key-src directory)
(forward-line 1)
(when pos-entry-cons
(goto-char (car pos-entry-cons))
(cdr pos-entry-cons))))
;;; ************************************************************************
;;; Private functions
;;; ************************************************************************
(defun hbdata:apply-entry (func lbl-key key-src &optional directory
create-flag instance-flag)
"Invoke FUNC with point at hbdata entry.
Hbdata is given by LBL-KEY, KEY-SRC and optional DIRECTORY.
With optional CREATE-FLAG, if no such line exists, insert a new file entry at
the beginning of the hbdata file (which is created if necessary).
INSTANCE-FLAG non-nil means search for any button instance matching LBL-KEY and
call FUNC with point right after any `ebut:instance-sep' in match.
Return value of evaluation when a matching entry is found or nil."
(let (found
rtn
opoint
end-func)
(save-excursion
(save-restriction
(unwind-protect
(progn
(when (get-buffer key-src)
(set-buffer key-src)
(unless buffer-file-name
(cond ((hmail:editor-p)
(setq end-func (lambda ()
(hmail:msg-narrow))))
((and (hmail:lister-p)
(progn (rmail:summ-msg-to) (rmail:to)))
(setq opoint (point)
key-src (current-buffer)
end-func (lambda ()
(hmail:msg-narrow)
(goto-char opoint)
(lmail:to))))
((and (hnews:lister-p)
(progn (rnews:summ-msg-to) (rnews:to)))
(setq opoint (point)
key-src (current-buffer)
end-func (lambda ()
(hmail:msg-narrow)
(goto-char opoint)
(lnews:to))))
;; Any non-file buffer
(t
(setq opoint (point)
key-src (current-buffer)
end-func (lambda ()
(widen)
(goto-char opoint)
(narrow-to-region (point-min)
(hmail:hbdata-start))))))))
(setq found (hbdata:to-entry-buf key-src directory create-flag)))
(when found
(let ((case-fold-search t)
(qkey (regexp-quote lbl-key))
(end (save-excursion (if (search-forward "\n\^L" nil t)
(point) (point-max)))))
(if (if instance-flag
(re-search-forward
(concat "\n(\"" qkey "["
ebut:instance-sep "\"]") end t)
(search-forward (concat "\n(\"" lbl-key "\"") end t))
(progn
(unless instance-flag
(beginning-of-line))
(let (buffer-read-only)
(setq rtn (funcall func)))))))
(when end-func (funcall end-func)))))
rtn))
(defun hbdata:to-hbdata-buffer (dir &optional create)
"Read in the file containing DIR's button data, if any, and return buffer.
If it does not exist and optional CREATE is non-nil, create a new
one and return buffer, otherwise return nil."
(let* ((file (expand-file-name hattr:filename (or dir default-directory)))
(existing-file (or (file-exists-p file) (get-file-buffer file)))
(buf (or (get-file-buffer file)
(and (or create existing-file)
(find-file-noselect file)))))
(when buf
(set-buffer buf)
(unless (verify-visited-file-modtime (get-file-buffer file))
(cond ((yes-or-no-p
"Hyperbole button data file has changed, read new contents? ")
(revert-buffer t t))))
(or (= (point-max) 1) (eq (char-after 1) ?\^L)
(error "File %s is not a valid Hyperbole button data table" file))
(unless (equal (buffer-name) file)
(rename-buffer file))
(setq buffer-read-only nil)
(unless existing-file
(hbmap:dir-add (file-name-directory file)))
buf)))
(defun hbdata:to-entry-buf (key-src &optional directory create)
"Move point to end of line in but data buffer matching KEY-SRC.
Use hbdata file in KEY-SRC's directory, or optional DIRECTORY or if nil, use
`default-directory'.
With optional CREATE, if no such line exists, insert a new file entry at the
beginning of the hbdata file (which is created if necessary).
Return non-nil if KEY-SRC is found or created, else nil."
(let ((rtn) (ln-dir))
(if (and (get-buffer key-src)
(set-buffer key-src)
(not buffer-file-name))
;; Button buffer has no file attached
(progn (setq buffer-read-only nil)
(unless (hmail:hbdata-to-p)
(insert "\n" hmail:hbdata-sep "\n"))
(backward-char 1)
(setq rtn t))
(setq directory (or (file-name-directory key-src) directory))
(let ((ln-file) (link-p key-src))
(while (setq link-p (file-symlink-p link-p))
(setq ln-file link-p))
(if ln-file
(setq ln-dir (file-name-directory ln-file)
key-src (file-name-nondirectory ln-file))
(setq key-src (file-name-nondirectory key-src))))
(when (or (hbdata:to-hbdata-buffer directory create)
(and ln-dir (hbdata:to-hbdata-buffer ln-dir nil)
(setq create nil
directory ln-dir)))
(goto-char 1)
(cond ((search-forward (concat "\^L\n\"" key-src "\"")
nil t)
(setq rtn t))
(create
(setq rtn t)
(insert "\^L\n\"" key-src "\"\n")
(backward-char 1)))))
rtn))
(defun hbdata:write (&optional orig-lbl-key but-sym)
"Try to write Hyperbole button data from optional ORIG-LBL-KEY and BUT-SYM.
ORIG-LBL-KEY nil means create a new entry, otherwise modify existing one.
BUT-SYM nil means use `hbut:current'. If successful, return
a button instance string to append to button label or t when first instance.
On failure, return nil."
(let ((cons (hbdata:build orig-lbl-key but-sym))
entry lbl-instance)
(unless (or (and buffer-file-name (not (file-writable-p buffer-file-name)))
(null cons))
(setq entry (car cons) lbl-instance (cdr cons))
(prin1 entry (current-buffer))
(terpri (current-buffer))
(or lbl-instance t))))
;;; ************************************************************************
;;; Private variables
;;; ************************************************************************
(provide 'hbdata)
;;; hbdata.el ends here