forked from kennytilton/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fm-utilities.lisp
executable file
·726 lines (614 loc) · 23.2 KB
/
fm-utilities.lisp
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
;; -*- mode: Lisp; Syntax: Common-Lisp; Package: cells; -*-
#|
Cells -- Automatic Dataflow Managememnt
(See defpackage.lisp for license and copyright notigification)
|#
(in-package :cells)
(eval-when (:compile-toplevel :load-toplevel :execute)
(export
'(;; Family member creation
make-part
mk-part
mk-part-spec
upper
u^
kontainer
container-typed
;; Family member finding
fm-descendant-typed
fm-ascendant-typed
fm-kid-named
fm-descendant-named
fm-ascendant-named
fm-ascendant-some
fm-ascendant-if
fm-descendant-if
fm-descendant-common
fm-collect-if
fm-collect-some
fm-value-dictionary
fm-max
fm-traverse
fm-traverse-bf
fm-ordered-p
sub-nodes
fm-ps-parent
with-like-fm-parts
do-like-fm-parts
true-that
fm-do-up
fm-gather
fm-find-all
fm-find-next
fm-find-next-within
fm-find-prior
fm-find-prior-within
fm-find-last-if
fm-prior-sib
fm-next-sib-if
fm-next-sib
^fm-next-sib
fm-find-if
;; Family ordering
fm-kid-add
fm-kid-insert-last
fm-kid-insert-first
fm-kid-insert
fm-kid-remove
fm-quiesce-all
fm-kid-replace
;; Family high-order ops
fm-min-kid
fm-max-kid
fm-other
fmv
fm-otherx
fm-other-v
fm-otherv?
fm-other?
fm-other!
fm^ fm^v
fm?
fm!
fm!v
fm-other?!
fm-collect
fm-map
fm-mapc
fm-pos
fm-count-named
fm-top
fm-first-above
fm-nearest-if
fm-includes
fm-ancestor-p
fm-kid-containing
fm-ascendant-p
fm-find-one
fm-find-kid
fm-kid-typed
;; Other family stuff
make-name
name-root
name-subscript
kid-no
n^
;; Debug flags
*fmdbg*
)))
(defparameter *fmdbg* nil)
(defun make-part (partname part-class &rest initargs)
;;(trc "make-part > name class" partname partclass)
(when part-class ;;a little programmer friendliness
(apply #'make-instance part-class (append initargs (list :md-name partname)))))
(defmacro mk-part (md-name (md-class) &rest initargs)
`(make-part ',md-name ',md-class ,@initargs
:fm-parent (progn (assert self () "mk-part null self for parent") self)))
(defmethod make-part-spec ((part-class symbol))
(make-part part-class part-class))
(defmethod make-part-spec ((part model))
part)
(defmacro upper (self &optional (type t))
`(container-typed ,self ',type))
(defmacro u^ (type)
`(upper self ,type))
(defmacro n^ (type)
`(nearest self ,type))
(defmethod kontainer (self) (fm-parent self))
(defmethod container-typed ((self model-object) type)
(let ((parent (kontainer self))) ;; fm- or ps-parent
(cond
((null parent) nil)
((typep parent type) parent)
(t (container-typed parent type)))))
(defun fm-descendant-typed (self type)
(when self
(or (find-if (lambda (k) (typep k type)) (kids self))
(some (lambda (k)
(fm-descendant-typed k type)) (kids self)))))
(defun fm-kid-named (self name)
(find name (^kids) :key 'md-name))
(defun fm-descendant-named (parent name &key (must-find t))
(fm-find-one parent name :must-find must-find :global-search nil))
(defun fm-ascendant-named (parent name)
(when parent
(or (when (eql (md-name parent) name)
parent)
(fm-ascendant-named (fm-parent parent) name))))
(defun fm-ascendant-typed (parent name)
(when parent
(or (when (typep parent name)
parent)
(fm-ascendant-typed (fm-parent parent) name))))
(defun fm-ascendant-some (parent some-function)
(when (and parent some-function)
(or (funcall some-function parent)
(fm-ascendant-some (fm-parent parent) some-function))))
(defun fm-ascendant-if (self test)
(when (and self test)
(or (when (funcall test self)
self)
(fm-ascendant-if .parent test))))
(defun fm-descendant-if (self test)
(when (and self test)
(or (when (funcall test self)
self)
(loop for k in (^kids)
thereis (fm-descendant-if k test)))))
(defun fm-ascendant-common (d1 d2)
(fm-ascendant-some d1 (lambda (node)
(when (fm-includes node d2)
node))))
(defun fm-collect-if (tree test &optional skip-top dependently)
(let (collection)
(fm-traverse tree (lambda (node)
(unless (and skip-top (eq node tree))
(when (funcall test node)
(push node collection))))
:with-dependency dependently)
(nreverse collection)))
(defun fm-collect-some (tree test &optional skip-top dependently)
(let (collection)
(fm-traverse tree (lambda (node)
(unless (and skip-top (eq node tree))
(bwhen (s (funcall test node))
(push s collection))))
:with-dependency dependently)
(nreverse collection)))
(defun fm-value-dictionary (tree value-fn &optional include-top)
(let (collection)
(fm-traverse tree
(lambda (node)
(when (or include-top (not (eq node tree)))
(bwhen (v (funcall value-fn node))
(push (cons (md-name node) v) collection)))))
(nreverse collection)))
(defun fm-max (tree key)
(let (max)
(fm-traverse tree (lambda (node)
(if max
(setf max (max max (funcall key node)))
(setf max (funcall key node)))))
max))
(defun fm-traverse (family applied-fn &key skip-node skip-tree global-search opaque with-dependency)
;;(when *fmdbg* (trc "fm-traverse" family skipTree skipNode global-search))
(when family
(labels ((tv-family (fm)
(etypecase fm
(cons (loop for md in fm do (tv-family md)))
(model-object
(unless (eql fm skip-tree)
(let ((outcome (and (not (eql skip-node fm)) ;; skipnode new 990310 kt
(funcall applied-fn fm))))
(unless (and outcome opaque)
(dolist (kid (kids fm))
(tv-family kid))
;(tv-family (mdValue fm))
)))))))
(flet ((tv ()
(tv-family family)
(when global-search
(fm-traverse (fm-parent family) applied-fn
:global-search t
:skip-tree family
:skip-node skip-node
:with-dependency t)))) ;; t actually just defaults to outermost call
(if with-dependency
(tv)
(without-c-dependency (tv))))))
(values))
(defun fm-traverse-bf (family applied-fn &optional (cq (make-fifo-queue)))
(when family
(flet ((process-node (fm)
(funcall applied-fn fm)
(when (kids fm)
(fifo-add cq (kids fm)))))
(process-node family)
(loop for x = (fifo-pop cq)
while x
do (mapcar #'process-node x)))))
#+test-bf
(progn
(defmd bftree (family)
(depth 0 :cell nil)
(id (c? (klin self)))
:kids (c? (when (< (depth self) 4)
(loop repeat (1+ (depth self))
collecting (make-kid 'bftree :depth (1+ (depth self)))))))
(defun klin (self)
(when self
(if .parent
(cons (kid-no self) (klin .parent))
(list 0))))
(defun test-bf ()
(let ((self (make-instance 'bftree)))
(fm-traverse-bf self
(lambda (node)
(print (id node)))))))
(defun fm-ordered-p (n1 n2 &aux (top (fm-ascendant-common n1 n2)))
(assert top)
(fm-traverse top (lambda (n)
(cond
((eq n n1)(return-from fm-ordered-p t))
((eq n n2)(return-from fm-ordered-p nil))))))
(defmethod sub-nodes (other)
(declare (ignore other)))
(defmethod sub-nodes ((self family))
(kids self))
(defmethod fm-ps-parent ((self model-object))
(fm-parent self))
(defmacro with-like-fm-parts ((parts-var (self like-class)) &body body)
`(let (,parts-var)
(fm-traverse ,self (lambda (node)
;;(trc "with like sees node" node (type-of node) ',likeclass)
(when (typep node ',like-class)
(push node ,parts-var)))
:skip-node ,self
:opaque t)
(setf ,parts-var (nreverse ,parts-var))
(progn ,@body)))
(defmacro do-like-fm-parts ((part-var (self like-class) &optional return-var) &body body)
`(progn
(fm-traverse ,self (lambda (,part-var)
(when (typep ,part-var ',like-class)
,@body))
:skip-node ,self
:opaque t)
,return-var)
)
;;
;; family member finding
;;
#|
(defun fm-member-named (kidname kids)
(member kidname kids :key #'md-name))
|#
(defun true-that (that) (declare (ignore that)) t)
;;
;; eventually fm-find-all needs a better name (as does fm-collect) and they
;; should be modified to go through 'gather', which should be the real fm-find-all
;;
(export! fm-heritage)
(defun fm-heritage (self)
(loop for p = self then (fm-parent p)
while p
collect p))
(defun fm-do-up (self &optional (fn 'identity))
(when self
(funcall fn self)
(if .parent (fm-do-up .parent fn) self))
(values))
(defun fm-gather (family &key (test #'true-that))
(packed-flat!
(cons (when (funcall test family) family)
(mapcar (lambda (fm)
(fm-gather fm :test test))
(kids family)))))
(defun fm-find-all (family md-name &key (must-find t) (global-search t))
(let ((matches (catch 'fm-find-all
(with-dynamic-fn
(traveller (family)
(with-dynamic-fn
(filter (kid) (eql md-name (md-name kid)))
(let ((matches (remove-if-not filter (kids family))))
(when matches
(throw 'fm-find-all matches)))))
(fm-traverse family traveller :global-search global-search)))))
(when (and must-find (null matches))
(c-stop :fm-find-all-must-find-failed)
(fm-traverse family (lambda (node)
(trc "known node" (md-name node))) :global-search global-search)
(break "fm-find-all > *stop*ping...did not find ~a ~a ~a" family md-name global-search)
;; (error 'fm-not-found (list md-name family global-search))
)
matches))
(defun fm-find-next (fm test-fn)
(fm-find-next-within fm test-fn))
(defun fm-find-next-within (fm test-fn &optional upperbound &aux (fm-parent (unless (eql upperbound fm)
(fm-parent fm))))
(let ((sibs (and fm-parent (rest (member fm (kids fm-parent))))))
(or (dolist (s sibs)
(let ((winner (fm-find-if s test-fn)))
(when winner (return winner))))
(if fm-parent
(fm-find-next-within fm-parent test-fn upperbound)
(fm-find-if fm test-fn)))))
(defun fm-find-prior (fm test-fn)
(fm-find-prior-within fm test-fn))
(defun fm-find-prior-within (fm test-fn &optional upperbound &aux (fm-parent (unless (eql upperbound fm)
(fm-parent fm))))
(let ((sibs (and fm-parent (kids fm-parent))))
(or (loop with next-ok
for s on sibs
for last-ok = nil then (or next-ok last-ok)
when (eql fm (first s)) do (loop-finish)
finally (return last-ok)
do (setf next-ok (fm-find-last-if (car s) test-fn)))
(if fm-parent
(fm-find-prior-within fm-parent test-fn upperbound)
(fm-find-last-if fm test-fn)))))
(defun fm-find-last-if (family test-fn)
(let ((last))
(or (and (kids family)
(dolist (k (kids family) last)
(setf last (or (fm-find-last-if k test-fn) last))))
(when (funcall test-fn family)
family))))
(defun fm-prior-sib (self &optional (test-fn #'true-that))
"Find nearest preceding sibling passing TEST-FN"
(chk self 'psib)
(let ((kids (kids (fm-parent self))))
(find-if test-fn kids :end (position self kids) :from-end t)))
(defun fm-next-sib-if (self test-fn)
(some test-fn (cdr (member self (kids (fm-parent self))))))
(defun fm-next-sib (self)
(car (cdr (member self (kids (fm-parent self))))))
(defmacro ^fm-next-sib (&optional (self 'self))
(let ((s (gensym)))
`(let ((,s ,self))
(car (cdr (member ,s (kids (fm-parent ,s))))))))
(defun find-prior (self sibs &key (test #'true-that))
(c-assert (member self sibs) () "find-prior of ~a does not find it in sibs arg ~a" self sibs)
(unless (eql self (car sibs))
(labels
((fpsib (rsibs &aux (psib (car rsibs)))
(c-assert rsibs () "find-prior > fpsib > self ~s not found to prior off" self)
(if (eql self (cadr rsibs))
(when (funcall test psib) psib)
(or (fpsib (cdr rsibs))
(when (funcall test psib) psib)))))
(fpsib sibs))))
(defun fm-find-if (family test-fn &key skip-top-p) ;; 99-03 kt why is thsi depth-first?
(c-assert test-fn)
(when family
(or (dolist (b (sub-nodes family))
(let ((match (fm-find-if b test-fn)))
(when match (return match))))
(when (and (not skip-top-p)
(funcall test-fn family))
family))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; family ordering
;;;;
(defun fm-kid-add (fm-parent kid &optional before)
(c-assert (or (null (fm-parent kid)) (eql fm-parent (fm-parent kid))))
(c-assert (typep fm-parent 'family))
(setf (fm-parent kid) fm-parent)
(fm-kid-insert kid before))
(defun fm-kid-insert-last (goal &aux (fm-parent (fm-parent goal)))
(setf (kids fm-parent) (nconc (kids fm-parent) (list goal))))
(defun fm-kid-insert-first (goal &aux (fm-parent (fm-parent goal)))
(setf (kids fm-parent) (cons goal (kids fm-parent))))
(defun fm-kid-insert (kid &optional before &aux (da-kids (kids (fm-parent kid))))
(c-assert (or (null before) (eql (fm-parent kid) (fm-parent before))))
(setf (kids (fm-parent kid))
(if before
(if (eql before (car da-kids))
(cons kid da-kids)
(let ((cell (member before da-kids)))
(rplaca cell kid)
(rplacd cell (cons before (cdr cell)))
(cons (car da-kids) (rest da-kids))))
(if da-kids
(progn
(rplacd (last da-kids) (cons kid nil))
(cons (car da-kids) (rest da-kids)))
(cons kid da-kids)))))
(defun fm-kid-remove (kid &key (quiesce t) &aux (parent (fm-parent kid)))
(when quiesce
(fm-quiesce-all kid))
(when parent
(setf (kids parent) (remove kid (kids parent)))
;; (setf (fm-parent kid) nil) gratuitous housekeeping caused ensuing focus output
;; image-invalidate to fail since no access to containing window via fm-parent chain
))
(defun fm-quiesce-all (md)
(md-quiesce md)
(dolist (kid (kids md))
(fm-quiesce-all kid)))
(defun fm-kid-replace (old-kid new-kid &aux (fm-parent (fm-parent old-kid)))
(c-assert (member old-kid (kids fm-parent)) ()
"~&oldkid ~s not amongst kids of its fm-parent ~s"
old-kid fm-parent)
(when fm-parent ;; silly test given above assert--which is right?
(c-assert (typep fm-parent 'family))
(setf (fm-parent new-kid) fm-parent)
(setf (kids fm-parent) (substitute new-kid old-kid (kids fm-parent)))
;;(rplaca (member oldkid (kids fm-parent)) newkid)
new-kid))
;----------------------------------------------------------
;;
;; h i g h - o r d e r f a m i l y o p s
;;
;; currently not in use...someday?
;;
(defun fm-min-kid (self slot-name)
(or (loop for k in (^kids)
minimizing (funcall slot-name k))
0))
(defun fm-max-kid (self slot-name)
(or (loop for k in (^kids)
maximizing (funcall slot-name k))
0))
(defmacro fm-other (md-name &key (starting 'self) skip-tree (test '#'true-that))
`(fm-find-one ,starting ,(if (consp md-name)
`(list ',(car md-name) ,(cadr md-name))
`',md-name)
:must-find t
:skip-tree ,skip-tree
:global-search t
:test ,test))
(defmacro fmv (name)
`(value (fm-other ,name)))
(defmacro fm-otherx (md-name &key (starting 'self) skip-tree)
(if (eql starting 'self)
`(or (fm-find-one ,starting ,(if (consp md-name)
`(list ',(car md-name) ,(cadr md-name))
`',md-name)
:must-find t
:skip-tree ,skip-tree
:global-search t))
`(fm-find-one ,starting ,(if (consp md-name)
`(list ',(car md-name) ,(cadr md-name))
`',md-name)
:must-find t
:skip-tree ,skip-tree
:global-search t)))
(defun fm-other-v (md-name starting &optional (global-search t))
(fm-find-one starting md-name
:must-find nil
:global-search global-search))
(defmacro fm-otherv? (md-name &optional (starting 'self) (global-search t))
`(fm-other-v ,md-name ,starting ,global-search))
(defmacro fm-other? (md-name &optional (starting 'self) (global-search t))
`(fm-find-one ,starting ,(if (consp md-name)
`(list ',(car md-name) ,(cadr md-name))
`',md-name)
:must-find nil
:global-search ,global-search))
(defun fm-other! (starting md-name &optional (global-search t))
(fm-find-one starting md-name
:must-find t
:global-search global-search))
(defmacro fm^ (md-name &key (skip-tree 'self) (must-find t))
`(without-c-dependency
(fm-find-one (fm-parent self) ,md-name
:skip-tree ,skip-tree
:must-find ,must-find
:global-search t)))
(defmacro fm^v (id)
`(value (fm^ ,id)))
(defmacro fm? (md-name &optional (starting 'self) (global-search t))
`(fm-find-one ,starting ,(if (consp md-name)
`(list ',(car md-name) ,(cadr md-name))
`',md-name)
:must-find nil
:global-search ,global-search))
(defmacro fm! (md-name &optional (starting 'self))
`(without-c-dependency
(fm-find-one ,starting ,(if (consp md-name)
`(list ',(car md-name) ,(cadr md-name))
`',md-name)
:must-find t
:global-search nil)))
(defmacro fm!v (id)
`(value (fm! ,id)))
(defmacro fm-other?! (md-name &optional (starting 'self))
`(fm-find-one ,starting ,(if (consp md-name)
`(list ',(car md-name) ,(cadr md-name))
`',md-name)
:must-find nil
:global-search nil))
(defmacro fm-collect (md-name &key (must-find t))
`(fm-find-all self ',md-name :must-find ,must-find)) ;deliberate capture
(defmacro fm-map (fn md-name)
`(mapcar ,fn (fm-find-all self ',md-name))) ;deliberate capture
(defmacro fm-mapc (fn md-name)
`(mapc ,fn (fm-find-all self ',md-name))) ;deliberate capture
(defun fm-pos (goal &aux (fm-parent (fm-parent goal)))
(when fm-parent
(or (position goal (kids fm-parent))
(length (kids fm-parent))))) ;; ?!!
(defmacro fm-count-named (family md-name &key (global-search t))
`(length (fm-find-all ,family ,md-name
:must-find nil
:global-search ,global-search)))
;---------------------------------------------------------------
(defun fm-top (fm &optional (test #'true-that) &aux (fm-parent (fm-parent fm)))
(cond ((null fm-parent) fm)
((not (funcall test fm-parent)) fm)
(t (fm-top fm-parent test))))
(defun fm-first-above (fm &key (test #'true-that) &aux (fm-parent (fm-parent fm)))
(cond ((null fm-parent) nil)
((funcall test fm-parent) fm-parent)
(t (fm-first-above fm-parent :test test))))
(defun fm-nearest-if (test fm)
(when fm
(if (funcall test fm)
fm
(fm-nearest-if test (fm-parent fm)))))
(defun fm-includes (fm sought)
(fm-ancestor-p fm sought))
(defun fm-ancestor-p (fm sought)
(c-assert fm)
(when sought
(or (eql fm sought)
(fm-includes fm (fm-parent sought)))))
(defun fm-kid-containing (fm-parent descendant)
(with-dynamic-fn (finder (node) (not (eql fm-parent node)))
(fm-top descendant finder)))
;;; above looks confused, let's try again
(defun fm-ascendant-p (older younger)
(cond
((null (fm-parent younger)) nil)
((eq older (fm-parent younger)) t)
(t (fm-ascendant-p older (fm-parent younger)))))
(defun make-name (root &optional subscript)
(if subscript (list root subscript) root))
(defun name-root (md-name)
(if (atom md-name) md-name (car md-name)))
(defun name-subscript (md-name)
(when (consp md-name) (cadr md-name)))
(defun fm-find-one (family md-name &key (must-find t)
(global-search t) skip-tree (test #'true-that)
&aux diag)
(count-it :fm-find-one)
(flet ((matcher (fm)
(when diag
(trc nil
"fm-find-one matcher sees name" (md-name fm) :ofthing (type-of fm) :seeking md-name global-search))
(when (and (eql (name-root md-name)(md-name fm))
(or (null (name-subscript md-name))
(eql (name-subscript md-name) (fm-pos fm)))
(progn
(when diag
(trc "fm-find-one testing" fm))
(funcall test fm)))
(throw 'fm-find-one fm))))
(trc nil "fm-find-one> entry " md-name family)
(let ((match (catch 'fm-find-one
(fm-traverse family #'matcher
:skip-tree skip-tree
:global-search global-search))))
(when (and must-find (null match))
(trc "fm-find-one > erroring fm-not-found, in family: " family :seeking md-name :global? global-search)
(setq diag t must-find nil)
(fm-traverse family #'matcher
:skip-tree skip-tree
:global-search global-search)
(c-break "fm-find-one > *stop*ping...did not find ~a ~a ~a" family md-name global-search)
)
match)))
(defun fm-find-kid (self name)
(find name (kids self) :key #'md-name))
(defun fm-kid-typed (self type)
(c-assert self)
(find type (kids self) :key #'type-of))
(defun kid-no (self)
(unless (typep self 'model-object)
(break "not a model object ~a" self))
(when (and self (fm-parent self))
(c-assert (member self (kids (fm-parent self))))
(position self (kids (fm-parent self)))))