forked from stumpwm/stumpwm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrappers.lisp
391 lines (355 loc) · 15.6 KB
/
wrappers.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
;; Copyright (C) 2003-2008 Shawn Betts
;;
;; This file is part of stumpwm.
;;
;; stumpwm is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; stumpwm is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this software; see the file COPYING. If not, see
;; <http://www.gnu.org/licenses/>.
;; Commentary:
;;
;; portability wrappers. Any code that must run different code for
;; different lisps should be wrapped up in a function and put here.
;;
;; Code:
(in-package #:stumpwm)
(export '(getenv))
(define-condition not-implemented (stumpwm-error)
() (:documentation "A function has been called that is not implemented yet."))
(defun run-prog (prog &rest opts &key args output (wait t) &allow-other-keys)
"Common interface to shell. Does not return anything useful."
#+(or clisp ccl ecl gcl)
;; Arg. We can't pass in an environment so just set the DISPLAY
;; variable so it's inherited by the child process.
(when (current-screen)
(setf (getenv "DISPLAY") (screen-display-string (current-screen) nil)))
(setq opts (remove-plist opts :args :output :wait))
#+allegro
(apply #'excl:run-shell-command (apply #'vector prog prog args)
:output output :wait wait :environment
(when (current-screen)
(list (cons "DISPLAY" (screen-display-string (current-screen)))))
opts)
#+ccl
(ccl:run-program prog (mapcar (lambda (s)
(if (simple-string-p s)
s
(coerce s 'simple-string)))
args)
:wait wait :output (if output output t) :error t)
#+clisp
(let ((stream (apply #'ext:run-program prog :arguments args :wait wait
:output (if output :stream :terminal) opts)))
(when output
(loop for ch = (read-char stream nil stream)
until (eq ch stream)
do (write-char ch output))))
#+cmu
(let ((env ext:*environment-list*))
(when (current-screen)
(setf env (cons (cons "DISPLAY"
(screen-display-string (current-screen) nil))
env)))
(apply #'ext:run-program prog args :output (if output output t)
:env env :error t :wait wait opts))
#+ecl
(if output
(let ((stream (ext:run-program prog args :input nil)))
(loop for line = (read-line stream nil)
while line
do (format output "~A~%" line)))
(ext:system (format nil "~a~{ '~a'~}~@[ &~]" prog args (not wait))))
#+gcl
(let ((stream (apply #'si:run-process prog args)))
(when wait
(loop for ch = (read-char stream nil stream)
until (eq ch stream)
do (write-char ch output))))
#+liquid
(apply #'lcl:run-program prog :output output :wait wait :arguments args opts)
#+lispworks
(let ((cmdline (format nil "~@[~A ~]~A~{ '~A'~}"
(and (current-screen)
(screen-display-string (current-screen) t))
prog args)))
(sys:call-system-showing-output cmdline
:show-cmd nil :prefix nil :wait wait
:output-stream output))
#+sbcl
(let ((env (sb-ext:posix-environ)))
(when (current-screen)
(setf env (cons (screen-display-string (current-screen) t)
(remove-if (lambda (str)
(string= "DISPLAY=" str
:end2 (min 8 (length str))))
env))))
(apply #'sb-ext:run-program prog args :output (if output output t)
:error t :wait wait :environment env opts))
#-(or allegro ccl clisp cmu ecl gcl liquid lispworks sbcl)
(error 'not-implemented))
(defun run-prog-collect-output (prog &rest args)
"run a command and read its output."
(with-output-to-string (s)
(run-prog prog :args args :output s :wait t)))
(defun getenv (var)
"Return the value of the environment variable."
#+allegro (sys::getenv (string var))
#+clisp (ext:getenv (string var))
#+(or cmu scl)
(cdr (assoc (string var) ext:*environment-list* :test #'equalp
:key #'string))
#+gcl (si:getenv (string var))
#+lispworks (lw:environment-variable (string var))
#+lucid (lcl:environment-variable (string var))
#+mcl (ccl::getenv var)
#+sbcl (sb-posix:getenv (string var))
#+openmcl (ccl:getenv (string var))
#+ecl (ext:getenv (string var))
#-(or allegro clisp cmu gcl lispworks lucid mcl sbcl scl openmcl ecl)
(error 'not-implemented))
(defun (setf getenv) (val var)
"Set the value of the environment variable, @var{var} to @var{val}."
#+allegro (setf (sys::getenv (string var)) (string val))
#+clisp (setf (ext:getenv (string var)) (string val))
#+(or cmu scl)
(let ((cell (assoc (string var) ext:*environment-list* :test #'equalp
:key #'string)))
(if cell
(setf (cdr cell) (string val))
(push (cons (intern (string var) "KEYWORD") (string val))
ext:*environment-list*)))
#+gcl (si:setenv (string var) (string val))
#+lispworks (setf (lw:environment-variable (string var)) (string val))
#+lucid (setf (lcl:environment-variable (string var)) (string val))
#+sbcl (sb-posix:putenv (format nil "~A=~A" (string var) (string val)))
#+openmcl (ccl:setenv (string var) (string val))
#+ecl (ext:setenv (string var) (string val))
#-(or allegro clisp cmu gcl lispworks lucid sbcl scl openmcl ecl)
(error 'not-implemented))
(defun pathname-is-executable-p (pathname)
"Return T if the pathname describes an executable file."
(declare (ignorable pathname))
#+sbcl
(let ((filename (coerce (sb-ext:native-namestring pathname) 'string)))
(and (or (pathname-name pathname)
(pathname-type pathname))
(sb-unix:unix-access filename sb-unix:x_ok)))
;; FIXME: this is not exactly perfect
#+clisp
(logand (posix:convert-mode (posix:file-stat-mode (posix:file-stat pathname)))
(posix:convert-mode '(:xusr :xgrp :xoth)))
#-(or sbcl clisp) t)
(defun probe-path (path)
"Return the truename of a supplied path, or nil if it does not exist."
(handler-case
(truename
(let ((pathname (pathname path)))
;; If there is neither a type nor a name, we have a directory
;; pathname already. Otherwise make a valid one.
(if (and (not (pathname-name pathname))
(not (pathname-type pathname)))
pathname
(make-pathname
:directory (append (or (pathname-directory pathname)
(list :relative))
(list (file-namestring pathname)))
:name nil :type nil :defaults pathname))))
(file-error () nil)))
(defun portable-file-write-date (pathname)
;; clisp errors out if you run file-write-date on a directory.
#+clisp (posix:file-stat-mtime (posix:file-stat pathname))
#-clisp (file-write-date pathname))
(defun print-backtrace (&optional (frames 100))
"print a backtrace of FRAMES number of frames to standard-output"
#+sbcl (sb-debug:backtrace frames *standard-output*)
#+clisp (ext:show-stack 1 frames (sys::the-frame))
#+ccl (ccl:print-call-history :count frames :stream *standard-output* :detailed-p nil)
;; borrowed from 'trivial-backtrace'
#+lispworks (let ((dbg::*debugger-stack*
(dbg::grab-stack nil :how-many frames))
(*debug-io* *standard-output*)
(dbg:*debug-print-level* nil)
(dbg:*debug-print-length* nil))
(dbg:bug-backtrace nil))
#-(or sbcl clisp ccl lispworks) (write-line "Sorry, no backtrace for you."))
(defun bytes-to-string (data)
"Convert a list of bytes into a string."
#+sbcl (handler-bind
((sb-impl::octet-decoding-error #'(lambda (c) (invoke-restart 'use-value "?"))))
(sb-ext:octets-to-string
(make-array (length data) :element-type '(unsigned-byte 8) :initial-contents data)))
#+clisp
(ext:convert-string-from-bytes
(make-array (length data) :element-type '(unsigned-byte 8) :initial-contents data)
custom:*terminal-encoding*)
#+lispworks
(ef:decode-external-string
(make-array (length data) :element-type '(unsigned-byte 8) :initial-contents data)
:ascii)
#-(or sbcl clisp lispworks)
(map 'string #'code-char data))
(defun string-to-bytes (string)
"Convert a string to a vector of octets."
#+sbcl
(sb-ext:string-to-octets string)
#+clisp
(ext:convert-string-to-bytes string custom:*terminal-encoding*)
#+lispworks
(ef:encode-lisp-string string :ascii)
#-(or sbcl clisp lispworks)
(map 'list #'char-code string))
(defun utf8-to-string (octets)
"Convert the list of octets to a string."
(let ((octets (coerce octets '(vector (unsigned-byte 8)))))
#+ccl (ccl:decode-string-from-octets octets :external-format :utf-8)
#+clisp (ext:convert-string-from-bytes octets charset:utf-8)
#+sbcl (handler-bind
((sb-impl::octet-decoding-error #'(lambda (c)
(declare (ignore c))
(invoke-restart 'use-value "?"))))
(sb-ext:octets-to-string octets :external-format :utf-8))
#+lispworks
(ef:decode-external-string
(make-array (length octets) :element-type '(unsigned-byte 8) :initial-contents octets)
:utf-8)
#-(or ccl clisp sbcl lispworks)
(map 'string #'code-char octets)))
(defun string-to-utf8 (string)
"Convert the string to a vector of octets."
#+ccl (ccl:encode-string-to-octets string :external-format :utf-8)
#+clisp (ext:convert-string-to-bytes string charset:utf-8)
#+sbcl (sb-ext:string-to-octets
string
:external-format :utf-8)
#+lispworks
(ef:encode-lisp-string string :utf-8)
#-(or ccl clisp sbcl lispworks)
(map 'list #'char-code string))
(defun make-xlib-window (xobject)
"For some reason the clx xid cache screws up returns pixmaps when
they should be windows. So use this function to make a window out of them."
#+clisp (make-instance 'xlib:window :id (slot-value xobject 'xlib::id) :display *display*)
#+(or sbcl ecl openmcl lispworks) (xlib::make-window :id (slot-value xobject 'xlib::id) :display *display*)
#-(or sbcl clisp ecl openmcl lispworks)
(error 'not-implemented))
;; Right now clisp and sbcl both work the same way
(defun lookup-error-recoverable-p ()
#+(or clisp sbcl) (find :one (compute-restarts) :key 'restart-name)
#-(or clisp sbcl) nil)
(defun recover-from-lookup-error ()
#+(or clisp sbcl) (invoke-restart :one)
#-(or clisp sbcl) (error 'not-implemented))
(defun directory-no-deref (pathspec)
"Call directory without dereferencing symlinks in the results"
#+(or cmu scl) (directory pathspec :truenamep nil)
#+clisp (mapcar #'car (directory pathspec :full t))
#+lispworks (directory pathspec :link-transparency nil)
#+openmcl (directory pathspec :follow-links nil)
;; FIXME: seems like there ought to be a less cumbersome way to run
;; different code based on the version.
#+sbcl (macrolet ((dir (p)
(if (>= (parse-integer (third (split-seq (lisp-implementation-version) '(#\.))) :junk-allowed t)
24)
`(directory ,p :resolve-symlinks nil)
`(directory ,p))))
(dir pathspec))
#-(or clisp cmu lispworks openmcl sbcl scl) (directory pathspec)
)
;;; CLISP does not include features to distinguish different Unix
;;; flavours (at least until version 2.46). Until this is fixed, use a
;;; hack to determine them.
#+ (and clisp (not (or linux freebsd)))
(eval-when (eval load compile)
(let ((osname (posix:uname-sysname (posix:uname))))
(cond
((string= osname "Linux") (pushnew :linux *features*))
((string= osname "FreeBSD") (pushnew :freebsd *features*))
(t (warn "Your operating system is not recognized.")))))
;;; On GNU/Linux some contribs use sysfs to figure out useful info for
;;; the user. SBCL upto at least 1.0.16 (but probably much later) has
;;; a problem handling files in sysfs caused by SBCL's slightly
;;; unusual handling of files in general and Linux' sysfs violating
;;; POSIX. When this situation is resolved, this function may be removed.
#+ linux
(export '(read-line-from-sysfs))
#+ linux
(defun read-line-from-sysfs (stream &optional (blocksize 80))
"READ-LINE, but with a workaround for a known SBCL/Linux bug
regarding files in sysfs. Data is read in chunks of BLOCKSIZE bytes."
#- sbcl
(declare (ignore blocksize))
#- sbcl
(read-line stream)
#+ sbcl
(let ((buf (make-array blocksize
:element-type '(unsigned-byte 8)
:initial-element 0))
(fd (sb-sys:fd-stream-fd stream))
(string-filled 0)
(string (make-string blocksize))
bytes-read
pos
(stringlen blocksize))
(loop
;; Read in the raw bytes
(setf bytes-read
(sb-unix:unix-read fd (sb-sys:vector-sap buf) blocksize))
;; Why does SBCL return NIL when an error occurs?
(when (or (null bytes-read)
(< bytes-read 0))
(error "UNIX-READ failed."))
;; This is # bytes both read and in the correct line.
(setf pos (or (position (char-code #\Newline) buf) bytes-read))
;; Resize the string if necessary.
(when (> (+ pos string-filled) stringlen)
(setf stringlen (max (+ pos string-filled)
(* 2 stringlen)))
(let ((new (make-string stringlen)))
(replace new string)
(setq string new)))
;; Translate read bytes to string
(setf (subseq string string-filled)
(sb-ext:octets-to-string (subseq buf 0 pos)))
(incf string-filled pos)
(if (< pos blocksize)
(return (subseq string 0 string-filled))))))
(defun argv ()
#+sbcl (copy-list sb-ext:*posix-argv*)
#+clisp (coerce (ext:argv) 'list)
#+lispworks (copy-list sys:*line-arguments-list*)
#-(or sbcl clisp lispworks)
(error "unimplemented"))
(defun execv (program &rest arguments)
(declare (ignorable program arguments))
;; FIXME: seems like there should be a way to do this in sbcl the way it's done in clisp. -sabetts
#+sbcl
(sb-alien:with-alien ((prg sb-alien:c-string program)
(argv (array sb-alien:c-string 256)))
(loop
for i in arguments
for j below 255
do (setf (sb-alien:deref argv j) i))
(setf (sb-alien:deref argv (length arguments)) nil)
(sb-alien:alien-funcall (sb-alien:extern-alien "execv" (function sb-alien:int sb-alien:c-string (* sb-alien:c-string)))
prg (sb-alien:cast argv (* sb-alien:c-string))))
#+clisp
(funcall (ffi::find-foreign-function "execv"
(ffi:parse-c-type '(ffi:c-function
(:arguments
(prg ffi:c-string)
(args (ffi:c-array-ptr ffi:c-string))
)
(:return-type ffi:int)))
nil nil nil)
program
(coerce arguments 'array))
#-(or sbcl clisp)
(error "Unimplemented"))
;;; EOF