Tag
Hash :
b0ab5bb5
Author :
Thomas de Grivel
Date :
2022-12-04T18:50:53
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
;; cl-unix-cybernetics
;; Copyright 2013-2022 Thomas de Grivel <thodg@kmx.io>
;;
;; Permission is hereby granted to use this software granted
;; the above copyright notice and this permission paragraph
;; are included in all copies and substantial portions of this
;; software.
;;
;; THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
;; PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
;; AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
;; THIS SOFTWARE.
(in-package :cl-unix-cybernetics)
;; st_mode, see stat(2)
(define-constant +stat-mode-types+
'((fifo #\p #o010000)
(character-special #\c #o020000)
(directory #\d #o040000)
(block-special #\b #o060000)
(file #\- #o100000)
(symbolic-link #\l #o120000)
(socket #\s #o140000))
:test #'equalp)
(defun octal (number)
(format nil "0~O" number))
(defclass mode ()
((fixnum :initarg :fixnum
:initform 0
:type fixnum
:reader mode-fixnum)))
(defgeneric mode-type (mode))
(defgeneric mode-string (mode))
(defgeneric mode-fixnum (mode))
(defgeneric mode-octal (mode))
(defgeneric mode (value))
(defmethod mode-type ((mode fixnum))
(let ((type (logand #o170000 mode)))
(unless (zerop type)
type)))
(defmethod mode-type ((mode mode))
(mode-type (mode-fixnum mode)))
(defmethod mode-permissions ((mode mode))
(logand #o007777 (mode-fixnum mode)))
(defmethod mode-permissions (mode)
(mode-permissions (mode mode)))
(defmethod mode-string ((mode mode))
(let* ((num (mode-fixnum mode))
(type (mode-type num)))
(str (when type
(second (find type +stat-mode-types+ :key #'third)))
(if (logtest #o0400 num) #\r #\-)
(if (logtest #o0200 num) #\w #\-)
(if (logtest #o0100 num)
(if (logtest #o4000 num) #\s #\x)
(if (logtest #o4000 num) #\S #\-))
(if (logtest #o0040 num) #\r #\-)
(if (logtest #o0020 num) #\w #\-)
(if (logtest #o0010 num)
(if (logtest #o2000 num) #\s #\x)
(if (logtest #o2000 num) #\S #\-))
(if (logtest #o0004 num) #\r #\-)
(if (logtest #o0002 num) #\w #\-)
(if (logtest #o0001 num)
(if (logtest #o1000 num) #\s #\x)
(if (logtest #o1000 num) #\S #\-)))))
(defmethod mode-string (mode)
(mode-string (mode mode)))
(defmethod mode-fixnum (mode)
(mode-fixnum (mode mode)))
(defmethod mode-octal (mode)
(octal (mode-fixnum mode)))
(defun parse-mode-string (s)
(let ((type (when (= 10 (length s))
(let ((c (char s 0)))
(setq s (subseq s 1))
(or (find c +stat-mode-types+ :key #'cadr :test #'char=)
(error "Unknown mode type : ~C" c))))))
(make-instance
'mode :fixnum
(logior
(if type (third type) 0)
(ecase (char s 0) (#\- 0) (#\r #o0400))
(ecase (char s 1) (#\- 0) (#\w #o0200))
(ecase (char s 2) (#\- 0) (#\x #o0100) (#\S #o4000) (#\s #o4100))
(ecase (char s 3) (#\- 0) (#\r #o0040))
(ecase (char s 4) (#\- 0) (#\w #o0020))
(ecase (char s 5) (#\- 0) (#\x #o0010) (#\S #o2000) (#\s #o2010))
(ecase (char s 6) (#\- 0) (#\r #o0004))
(ecase (char s 7) (#\- 0) (#\w #o0002))
(ecase (char s 8) (#\- 0) (#\x #o0001) (#\S #o1000) (#\s #o1001))))))
(defmethod mode ((mode mode))
mode)
(defmethod mode ((n fixnum))
(make-instance 'mode :fixnum n))
(defmethod mode ((s string))
(if (char<= #\0 (char s 0) #\9)
(make-instance 'mode :fixnum (parse-integer s :radix 8))
(parse-mode-string s)))
(defmethod mode ((x null))
(make-instance 'mode :fixnum 0))
(defmethod print-object ((mode mode) stream)
(prin1 `(mode ,(if (mode-type mode)
(mode-string mode)
(mode-octal mode)))
stream))
(defun parse-unix-timestamp (x)
(let ((n (typecase x
(string (parse-integer x))
(integer x))))
(local-time:unix-to-timestamp n)))
(defmethod describe-probed-property-value (resource property (mode mode))
(mode-octal mode))
(defmethod compare-property-values ((resource vnode) (property (eql :mode))
value1 value2)
(= (mode-fixnum value1) (mode-fixnum value2)))
(defmethod match-specified-value ((resource vnode) (property (eql :mode))
specified probed os)
(or (eq specified probed)
(and specified
probed
(= (mode-fixnum specified) (mode-fixnum probed)))))