This file is indexed.

/usr/share/common-lisp/source/metabang-bind/dev/binding-forms.lisp is in cl-metabang-bind 20170124-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
(in-package #:metabang.bind)

(defgeneric bind-generate-bindings (kind variable-form value-form)
  (:documentation "Handle the expansion for a particular binding-form.

`kind` specifies the binding form. It can be a type (e.g., symbol or array)
or a keyword (e.g., :flet or :plist). `variable-form` and `value-form` are
taken from the binding-form given to `bind`. E.g., if you have a bind like

    (bind (((:values a b c) (foo))
           (x 2))
       (declare (optimize (speed 3)) (type simple-array a))
       ...)

then `kind` will be :values, `variable-form` will be the list `(a b c)` and
`value-form` will be the expression `(foo)`. `bind-generate-bindings`
uses these variables as data to construct the generated code."))

(defbinding-form (array
		  :use-values-p t)
  (let* ((dimensions (array-dimensions variables))
	 (array-size (array-total-size variables))
	 (accessor (if (cdr dimensions) 'row-major-aref 'aref)))
    `(let* (,@(loop for i below array-size
		 for var = (row-major-aref variables i)
		 unless (var-ignorable-p var) collect
		 `(,var (,accessor ,values ,i)))))))

(defbinding-form (symbol
		  :use-values-p nil)
  (if (keywordp kind)
      (error "Don't have a binding form for ~s" kind)
      `(let* (,@(if values
		   `((,variables ,values))
		   `(,variables))))))

(defbinding-form (:flet
		     :docstring "Local functions are defined using

    \(:flet <name> \(<lambda list>\) <function definition>\)

When the function definition occurs in a progn. For example:

    \(bind \(\(\(:flet double-list \(x\)\) \(setf x \(* 2 x\)\) \(list x x\)\)\)
        \(double-list 45\)\)
    ==> (90 90)

"
		     :use-values-p nil
		     :accept-multiple-forms-p t)
  (destructuring-bind (name args) variables
    (let* (declaration body docstring)
      (when (typep (first values) 'string)
	(setf docstring (first values)
	      values (rest values)))
      (when (and (listp (first values)) (eq (caar values) 'declare))
	(setf declaration (first values)
	      values (rest values)))
      (setf body values)
      `(flet ((,name ,args
		,@(when docstring `(,docstring))
		,@(when declaration `(,declaration))
		(progn ,@body)))))))


(defbinding-form ((:dynamic-flet :dflet)
		     :docstring "Local functions are defined using

    \(:dynamic-flet <name> \(<lambda list>\) <function definition>\)

Where the function definition occurs in a progn. For example:

    \(bind \(\(\(:flet double-list \(x\)\) \(setf x \(* 2 x\)\) \(list x x\)\)\)
        \(double-list 45\)\)
    ==> (90 90)

The functions are automatically declared dynamic-extent
"
		     :use-values-p nil
		     :accept-multiple-forms-p t)
  (destructuring-bind (name args) variables
    (let* (declaration body docstring)
      (when (typep (first values) 'string)
	(setf docstring (first values)
	      values (rest values)))
      (when (and (listp (first values)) (eq (caar values) 'declare))
	(setf declaration (first values)
	      values (rest values)))
      (setf body values)
      `(flet ((,name ,args
		,@(when docstring `(,docstring))
		,@(when declaration `(,declaration))
		(progn ,@body)))
	 (declare (dynamic-extent (function ,name)))))))


(defbinding-form (:labels
		     :docstring "Local functions are defined using

    \(:labels <name> \(<lambda list>\) <function definition>\)

When the function definition occurs in a progn. For example:

    \(bind \(\(\(:flet double-list \(x\)\) \(setf x \(* 2 x\)\) \(list x x\)\)\)
        \(double-list 45\)\)
    ==> (90 90)

"
		     :use-values-p nil
		     :accept-multiple-forms-p t)
  (destructuring-bind (name args) variables
    (let* (declaration body docstring)
      (when (typep (first values) 'string)
	(setf docstring (first values)
	      values (rest values)))
      (when (and (listp (first values)) (eq (caar values) 'declare))
	(setf declaration (first values)
	      values (rest values)))
      (setf body values)
      `(labels ((,name ,args
		  ,@(when docstring `(,docstring))
		  ,@(when declaration `(,declaration))
		  (progn ,@body)))))))


(defbinding-form ((:dynamic-labels :flabels)
		     :docstring "Local functions are defined using

    \(:dynamic-labels <name> \(<lambda list>\) <function definition>\)

When the function definition occurs in a progn. For example:

    \(bind \(\(\(:flet double-list \(x\)\) \(setf x \(* 2 x\)\) \(list x x\)\)\)
        \(double-list 45\)\)
    ==> (90 90)

The functions are automatically declared dynamic-extent

"
		     :use-values-p nil
		     :accept-multiple-forms-p t)
  (destructuring-bind (name args) variables
    (let* (declaration body docstring)
      (when (typep (first values) 'string)
	(setf docstring (first values)
	      values (rest values)))
      (when (and (listp (first values)) (eq (caar values) 'declare))
	(setf declaration (first values)
	      values (rest values)))
      (setf body values)
      `(labels ((,name ,args
		  ,@(when docstring `(,docstring))
		  ,@(when declaration `(,declaration))
		  (progn ,@body)))
	 (declare (dynamic-extent (function ,name)))))))


(defbinding-form (cons
		  :use-values-p nil)
  (multiple-value-bind (vars ignores)
      (bind-fix-nils-destructured variables)
    `(destructuring-bind ,vars ,values
	,@(when ignores `((declare (ignore ,@ignores)))))))

(defbinding-form ((:values :mv-bind :multiple-value-bind)
		  :docstring "Expands into a multiple-value-bind"
		  :use-values-p nil)
  (multiple-value-bind (vars ignores)
      (bind-fix-nils variables)
    `(multiple-value-bind ,vars ,values
	,@(when ignores `((declare (ignore ,@ignores)))))))

(defbinding-form ((:struct :structure)
		  :docstring
		  "Structure fields are accessed using a concatenation
of the structure's `conc-name` and the name of the field. Bind
therefore needs to know two things: the conc-name and the
field-names. The binding-form looks like

    (:structure <conc-name> structure-spec*)

where each `structure-spec` is an atom or list with two elements:

* an atom specifies both the name of the variable to which the
  structure field is bound and the field-name in the structure.

* a list has the variable name as its first item and the structure
  field name as its second.
")
  (let ((conc-name (first variables))
	(vars (rest variables)))
    (assert conc-name)
    (assert vars)
    `(let* ,(loop for var in vars collect
		 (let ((var-var (or (and (consp var) (first var))
				    var))
		       (var-conc (or (and (consp var) (second var))
				     var)))
		   `(,var-var (,(intern
				 (format nil "~a~a"
					 conc-name var-conc)
                                 (symbol-package conc-name))
                               ,values)))))))

(defbinding-form ((:structure/rw)
		  :docstring
		  "Structure fields are accessed using a concatenation
of the structure's `conc-name` and the name of the field. Bind
therefore needs to know two things: the conc-name and the
field-names. The binding-form looks like

    (:structure <conc-name> structure-spec*)

where each `structure-spec` is an atom or list with two elements:

* an atom specifies both the name of the variable to which the
  structure field is bound and the field-name in the structure.

* a list has the variable name as its first item and the structure
  field name as its second.

The expansion uses symbol-macrolet to convert variables references to
structure references. Declarations are handled using `the`.
")
  (let ((conc-name (first variables))
	(vars (rest variables)))
    (assert conc-name)
    (assert vars)
    `(symbol-macrolet
	 ,(loop for var in vars collect
	       (let* ((var-var (or (and (consp var) (first var))
				  var))
		     (var-conc (or (and (consp var) (second var))
				   var))
		     (var-name (intern (format nil "~a~a" conc-name var-conc)
                                       (symbol-package conc-name)))
		     (type-declaration (find-type-declaration var-var *all-declarations*)))
		 `(,var-var ,(if type-declaration
				 `(the ,type-declaration (,var-name ,values))
				 `(,var-name ,values))))))))

(defun find-type-declaration (var declarations)
  ;; declarations looks like ((declare (type fixnum a) (optimize ...) ...)
  ;;   or ((type fixnum a) ...?)
  (let* ((declarations (if (eq (first (first declarations)) 'declare)
			   (rest (first declarations))
			   declarations))
	 (result (find-if (lambda (declaration)
			    (and (eq (first declaration) 'type)
				 (member var (cddr declaration))))
			  declarations)))
    (when result
      (second result))))

#|
(defbinding-form (:function
		  :docstring ""
		  :use-values-p nil)
  (destructuring-bind (name args) variables
      `(labels ((,name ,args (progn ,values))))))

(bind (((:function foo (x a)) (list a x))
       ((:function bar (a)) (foo a a)))
  (bar 3))

(bind (((:function fib (x))
	(cond ((< x 2) 1)
	      (t (+ (fib (- x 1)) (fib (- x 2)))))))
  (fib 5))

1 1 2 3 5

;;; fails, need to combine like forms...
(bind (((:function ep (x))
	;;; failure, need to use rest instead of second in bind-macro-helper
	(progn
	  (print (list :e x))
	  (if (= x 0) t (not (op (1- x))))))
       ((:function op (x))
	(progn
	  (print (list :o x))
	  (if (= x 1) t (not (ep (1- x)))))))
  (ep 5))

	(cond ((< x 2) 1)
	      (t (+ (fib (- x 1)) (fib (- x 2)))))))
  (fib 5))

|#

(defbinding-form ((:alist :assoc)
		  :docstring
"The binding form for association-list is as follows:

    (:alist assoc-spec*)

where each assoc-spec is an atom or a list of up to three elements:

* atoms bind a variable with that name to an item with the same name.

* lists with a single element are treated like atoms.

* lists with two elements specify the variable in the first and the
name of the accessor in the second.

* Lists with three elements use the third element to specify a default
value (if the second element is #\_, then the accessor name is taken
to be the same as the variable name).

Note that the variables are bound to the `cdr` of the item in the list
rather than the `(item . value)` pair.")
  `(let* ,(loop for spec in variables collect
	       (let* ((spec (if (consp spec) spec (list spec)))
		      (var-name (first spec))
		      var-key var-default)
		 (case (length spec)
		   (1 (setf var-key (first spec)))
		   (2 (setf var-key (second spec)))
		   (3 (setf var-key (second spec)
			    var-default (third spec)))
		   (t
		    (error "bad properly list variable specification: ~s"
			   spec)))
		 (when (string= (symbol-name var-key) "_")
		   (setf var-key var-name))
		 `(,var-name (or (cdr (assoc ',var-key ,values))
				 ,@(when var-default `(,var-default))))))))

;;;;

(defbinding-form ((:read-only-slots :slots-read-only :slots-r/o)
		  :docstring
		  "The `:read-only-slots` binding form is short hand for the `with-slots` macro except that it provides only read access to the class.

The syntax is (:read-only-slots slot-spec*)

Where `slot-spec` can be an atom or a list with two elements.

* an atom tells bind to use it as the name of the new variable _and_
  to treat this name as the name of the slot.

* If the specification is a list, then bind will use the first item for
  the variable's name and the second item for the slot-name.

See [slots][slots-binding-spec] for a
variant that provides only read-write access to the class."
)
  `(let* (,@(loop for var in variables collect
		 (let ((var-var (or (and (consp var) (first var))
				    var))
		       (var-slot (or (and (consp var) (second var))
				     var)))
		   `(,var-var (slot-value ,values ',var-slot)))))))

(defbinding-form (:slots
		  :docstring
		  "The `:slots` binding form is short hand for the `with-slots` macro.

The syntax is (:slots slot-spec*)

Where `slot-spec` can be an atom or a list with two elements.

* an atom tells bind to use it as the name of the new variable _and_
  to treat this name as the name of the slot.

* If the specification is a list, then bind will use the first item for
  the variable's name and the second item for the slot-name.

See [read-only-slots][read-only-slots-binding-spec] for a
variant that provides only read-write access to the class."
)
  `(with-slots
	 (,@(loop for var in variables collect
		 (let ((var-var (or (and (consp var) (first var))
				    var))
		       (var-accessor (or (and (consp var) (second var))
					 var)))
		   `(,var-var ,var-accessor))))
       ,values))

;;;;

(defbinding-form ((:read-only-accessors
		   :accessors-read-only
		   :accessors-r/o)
		  :docstring "The `:read-only-accessors` binding form is short hand for `with-accessors` macro that provides only read access to the class.

The syntax is (:read-only-accessors accessor-spec*)

Where `accessor-spec` can be an atom or a list with two elements.

* an atom tells bind to use it as the name of the new variable _and_
  to treat this name as the name of the accessor.

* If the specification is a list, then bind will use the first item for
  the variable's name and the second item for the accessor name.

See [accessors][accessors-binding-spec] for a
variant that provides only read-write access to the class."
)
  `(let* ,(loop for var in variables collect
	       (let ((var-var (or (and (consp var) (first var))
				  var))
		     (var-accessor (or (and (consp var) (second var))
				       var)))
		 `(,var-var (,var-accessor ,values))))))

(defbinding-form ((:accessors :writable-accessors)
		  :docstring "The `:accessors` binding form is short hand for the `with-accessors` macro.

The syntax is (:accessors accessor-spec*)

Where `accessor-spec` can be an atom or a list with two elements.

* an atom tells bind to use it as the name of the new variable _and_
  to treat this name as the name of the accessor.

* If the specification is a list, then bind will use the first item for
  the variable's name and the second item for the accessor name.

See [read-only-accessors][read-only-accessors-binding-spec] for a
variant that provides only read-only access to the class."
)
  `(with-accessors
	 (,@(loop for var in variables collect
		 (let ((var-var (or (and (consp var) (first var))
				    var))
		       (var-accessor (or (and (consp var) (second var))
					 var)))
		   `(,var-var ,var-accessor))))
       ,values))

(defbinding-form ((:plist :property-list :properties)
		  :docstring
		  "The binding form for property-lists is as follows:

    (:plist property-spec*)

where each property-spec is an atom or a list of up to three elements:

* atoms bind a variable with that name to
a property with the same name (converting the name to a keyword in order to do the lookup).

* lists with a single element are treated like atoms.

* lists with two elements
specify the variable in the first and the name of the
property in the second.

* Lists with three elements use
the third element to specify a default value (if the
second element is #\_, then the property name is taken
to be the same as the variable name).

Putting this altogether we can code the above let statement as:

    (setf plist
      '(:start 368421722 :end 368494926 :flavor :lemon
        :content :ragged))

    (bind (((:plist (start _ 0) end (fuzz fuzziness 'no)) plist))
      (list start end fuzz))
    ==> (368421722 368494926 no)

(which takes some getting used to but has the advantage of brevity).
")
  (handle-plist variables values t))

(defbinding-form (:plist-
		  :docstring "The `:plist-` binding-form is exactly like that of [plist][binding-form-plist] except that the name is not converted to a keyword.

This allows for the case when your property list uses symbols other than
keywords as keys. For example:

    \(bind \(\(\(:plist- a b \(c _ 34\)\) '\(a 5 b 2\)\)\)
      \(list a b c\)\)
    ==> \(5 2 34\)

"
)
  (handle-plist variables values nil))

(defun handle-plist (variables values form-keywords?)
  `(let* ,(loop for spec in variables collect
	       (let* ((spec (if (consp spec) spec (list spec)))
		      (var-name (first spec))
		      var-key var-default)
		 (case (length spec)
		   (1 (setf var-key (first spec)))
		   (2 (setf var-key (second spec)))
		   (3 (setf var-key (second spec)
			    var-default (third spec)))
		   (t
		    (error "bad properly list variable specification: ~s"
			   spec)))
		 (when (string= (symbol-name var-key) "_")
		   (setf var-key var-name))
		 (when form-keywords?
		   (setf var-key (intern (symbol-name var-key) :keyword)))
		 `(,var-name (getf ,values
				   ,(if form-keywords?
					var-key `',var-key)
				   ,@(when var-default
					   `(,var-default))))))))

#+(or)
(bind (((:plist a (b _) (c _ 2) (dd d)) '(:b "B" :a "A" :d "D")))
  (list a b c dd))

#+(or)
(bind (((:plist- a (b _) (c _ 2) (dd d)) '(b "B" a "A" d "D")))
  (list a b c dd))

(defbinding-form (:file :use-values-p nil
			:accept-multiple-forms-p t)
  "The binding form for a file is as follows:

    ((:file stream-var) file-name | (file-name arguments*))

E.g.,

    (bind (((:file s) (\"/tmp/foo.tmp\" :direction :output :if-does-not-exist :create)))
      ...)

"
  ;; thanks to https://github.com/hyotang666 for the idea and initial code!
  `(with-open-file ,(append variables (if (null (cdr values)) values (car values)))))