This file is indexed.

/usr/share/common-lisp/source/metatilities-base/dev/generic-interface.lisp is in cl-metatilities-base 20170403-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
(in-package #:metatilities)

;;; System variables

(declaim (special *development-mode* *use-native-debugger*))

(defvar *development-mode* t)

(defvar *use-native-debugger* nil)


;;; progress bars

(defvar *dummy-progress-variable*)
(defvar *progress-bar-count* 0)


(defmacro with-progress-bar ((min max &rest args
                                  &key (title "Progress")
                                  (verbose? t)
                                  (desired-interface nil interface-supplied?)
                                  (determinate-p t) &allow-other-keys)
                             &body body)
  (remf args :title)
  (remf args :desired-interface)
  (remf args :verbose?)
  (with-variables (bar window interface)
    `(let ((,interface (if ,interface-supplied?
                         ,desired-interface
                         *default-interface*)))
       (if (and ,verbose? (is-interface-available-p ,interface))
         (macrolet ((progress ()
                      ;; avoid compiler warnings
                      `(progress-bar-value ,',interface ,',bar)))
           (multiple-value-bind (,window ,bar) 
                                (make-progress-bar
                                 ,interface ,min ,max ,title
                                 :determinate-p ,determinate-p 
                                 ,@args)
             (declare (ignorable ,bar))
             (unwind-protect
               (progn (incf *progress-bar-count*)
                      (setf (progress-bar-value ,interface ,bar) ,min)
                      ,@body)
               ;; cleanup
               (close-progress-bar ,interface ,window)
               (decf *progress-bar-count*))))
         ;; just execute body
         (macrolet ((progress ()
                      '*dummy-progress-variable*))
           (let ((*dummy-progress-variable* 0))               
             (progn ,@body)))))))


(defmacro with-process-message ((&rest args &key (title "Please wait...") 
                                       &allow-other-keys)
                                &body body)
  (remf args :title)
  `(with-progress-bar (0 0 :title ,title :determinate-p nil ,@args)
     ,@body))


;;; Error handling

(defmacro handle-errors (standard-message &body body)
  `(catch 'recover
     (if *use-native-debugger*
       (progn . ,body)
       ;; Otherwise set up our nice error handlers...
       (handler-bind ((error #'(lambda (condition)
                                 (gui-error condition "ERROR: " ,standard-message)
                                 (throw 'recover NIL)))
                      #+(or ccl mcl)
                      (warning #'(lambda (condition) 
				   (gui-error condition "WARNING: ")
                                   (muffle-warning condition))))
         ,@body))))


;;; beeping

(defmethod interface-beep* (interface &rest args)
  (declare (ignore interface args)))


(defun interface-beep (&rest args)
  (apply #'interface-beep* *default-interface* args))
         

;;; no interface interface implementations

;;; Progress bars

(defmethod make-progress-bar (interface min max title &key &allow-other-keys)
  (declare (ignore interface min max title))
  (values nil))


(defmethod progress-bar-value (interface bar)
  (declare (ignore interface bar))
  (values 0))


(defmethod (setf progress-bar-value) (value interface bar)
  (declare (ignore interface bar))
  (values value))


(defmethod close-progress-bar (interface bar)
  (declare (ignore interface bar))
  (values))


#+Test
(with-progress-bar (0 20)
  (loop repeat 20 do (incf (progress)) (sleep .1)))

;;; Errors and warnings

#-(or digitool openmcl)
(defmethod report-condition ((condition condition) stream)
  (write-string 
   (cond ((typep condition 'error) "Error")
	 ((typep condition 'warning) "Warning")
	 (t "Unknown Condition"))
   stream)
  (print-object condition stream))

(defmethod gui-error* (interface condition &optional (prefix "") 
		       (standard-message nil)) 
  (gui-warn* 
   interface
   (if *development-mode*
     (with-output-to-string (stream)
       (let ((*print-array* nil)
             (*print-length* 10)
             (*print-level* 4))
         (#+(or digitool openmcl) ccl::report-condition 
	  #-(or digitool openmcl) report-condition condition stream)))
     (format nil "~A~A" prefix 
             (if standard-message 
               standard-message
               condition)))))


(defun gui-error (condition &optional (prefix "") (standard-message nil))
  (gui-error* *default-interface* condition prefix standard-message))


(defmethod gui-warn* (interface string &rest args)
  (declare (ignore interface))
  (apply #'warn string args))


(defun gui-warn (string &rest args)
  (apply #'gui-warn* *default-interface* string args))


;;; Color

(defmethod make-color** (interface red green blue)
  (declare (ignore interface red green blue))
  (values 0))


(defun make-color* (red green blue)
  ;;; Make-color with sensible arguments
  "given red, green, and blue, returns an encoded rgb value"
  (make-color** (default-interface) red green blue))


(defmethod make-gray* (interface level)
  (make-color** interface level level level))


(defun make-gray (level)
  ;;; These use a 0-255 scale for component levels
  (make-gray* (default-interface) level))


(defmethod make-scaled-color* (interface red green blue scale)
  (make-color** interface
                (round (* red scale))
                (round (* green scale))
                (round (* blue scale))))


(defun make-scaled-color (red green blue scale)
  (make-scaled-color* (default-interface) red green blue scale))

  
;;; y-or-n-dialog

(defmethod y-or-n-question* (interface message &rest args)
  (declare (ignore interface args))
  (y-or-n-p message))


(defun y-or-n-question (message &rest args)
  (apply #'y-or-n-question* *default-interface* message args))


;;; choose-file-question

(defmethod choose-file-question* (interface &rest args)
  (declare (ignore interface args))
  (print "I would love to choose a file for you, but I'm not sure how?"))


(defun choose-file-question (&rest args)
  (apply #'choose-file-question* *default-interface* args))


;;; choose-new-file-question

(defmethod choose-new-file-question* (interface &rest args)
  (declare (ignore interface args))
  (print "I would love to choose a new file name for you, but I'm not sure how?"))


(defun choose-new-file-question (&rest args)
  (apply #'choose-new-file-question* *default-interface* args))


;;; choose-directory-question 

(defmethod choose-directory-question* (interface &rest args)
  (declare (ignore interface args))
  (print "I would love to choose a directory name for you, but I'm not sure how?"))


(defun choose-directory-question (&rest args)
  (apply #'choose-directory-question* *default-interface* args))


;;; choose-item-question

(defmethod choose-item-question* (interface list &rest args &key &allow-other-keys)
  (declare (ignore interface list args))
  (print "I would love to choose an item for you, but I'm not sure how?"))


(defun choose-item-question (list &rest args &key &allow-other-keys)
  (apply #'choose-item-question* *default-interface* list args))

;;; choose-item-from-pup

;; defaults to choose-item-question:
(defmethod choose-item-from-pup* (interface the-list &rest args &key &allow-other-keys)
  (apply #'choose-item-question* interface the-list args))


(defun choose-item-from-pup (the-list &rest args &key &allow-other-keys)
  "Present an interface to allow a choice from a list. Can throw :cancel." 
  (apply #'choose-item-from-pup* *default-interface* the-list args))


(defun choose-item-from-pup-no-singletons (the-list-or-atom &rest args 
                                                            &key &allow-other-keys)
  "Like choose-item-from-pup, but just returns the datum if it 
is an atom or a singleton list."
  (cond ((atom the-list-or-atom) (values the-list-or-atom))
        ((= (length the-list-or-atom) 1) (values (first the-list-or-atom)))
        (t (apply #'choose-item-from-pup the-list-or-atom args))))

;;; make-ui-point

(defmethod make-ui-point* (interface x y)
  (declare (ignore interface x y))
  (values))


(defun make-ui-point (x y)
  (make-ui-point* *default-interface* x y))


;;; process-parameters

(defmethod process-parameters* (interface &rest args)
  (declare (ignore interface args))
  (values))


(defun process-parameters (&rest args)
  (apply #'process-parameters* *default-interface* args)
  (values))


;;; put-item-on-clipboard

(defmethod put-item-on-clipboard* (interface thing)
  (declare (ignore interface thing))
  (error "I don't know anything about clipboards."))

(defun put-item-on-clipboard (thing)
  (put-item-on-clipboard* *default-interface* thing)
  thing)

;;; inspect-thing

(defmethod inspect-thing* (interface thing &rest args)
  (declare (ignore interface args))
  (error "I don't know how toinspect ~S" thing))


(defun inspect-thing (thing &rest args)
  (apply #'inspect-thing* *default-interface* thing args)
  (values thing))


(defun inspect-things (&rest things)
  (let ((result nil))
    (mapc (lambda (thing)
            (setf result (inspect-thing thing)))
          things)
    (values result)))


(defmethod sound-note* (interface pitch velocity &rest args)
  (declare (ignore interface pitch velocity args))
  (interface-beep))


(defun sound-note (pitch velocity &rest args)
  (apply #'sound-note* *default-interface* pitch velocity args))


(defmethod stop-notes* (interface)
  (declare (ignore interface))
  (error "I don't know how to stop music."))

(defun stop-notes ()
  (stop-notes* *default-interface*))         


(defmethod select-instrument* (interface instrument &rest args)
  (declare (ignore interface instrument args))
  (error "I don't know how to select instruments."))

(defun select-instrument (instrument &rest args)
  (apply #'select-instrument* *default-interface* instrument args))


;;; query-user-for-string

(defun query-user-for-string (prompt &rest args &key &allow-other-keys)
  (apply #'prompt-for 'string prompt args))


(defun query-user-for-integer (prompt &optional minimum maximum)
  (catch :cancel
    (loop do
          (let ((number (parse-integer (query-user-for-string prompt)
                                       :junk-allowed t)))
            (cond ((null number)
                   )
                  ((and minimum (< number minimum))
                   )
                  ((and maximum (> number maximum))
                   )
                  (t
                   (return-from query-user-for-integer number)))))))

;;; prompt-for

(defmethod prompt-for* (interface type message &rest args)
  (declare (ignore interface message args))
  (warn "I don't know how to prompt for ~A" type))


(defmethod prompt-for* (interface (type (eql 'string)) message &rest args)
  (declare (ignore interface))
  (apply #'format *query-io* message args)
  (finish-output *query-io*)
  (read-line *query-io* nil :eof))


(defmethod prompt-for* (interface (type (eql 'fixnum)) message &rest args)
  (declare (ignore interface))
  (apply #'query-user-for-integer message args))


(defun prompt-for (type message &rest args)
  (apply #'prompt-for* *default-interface* type message args))


;;; ***************************************************************************
;;; *                              End of File                                *
;;; ***************************************************************************