Formatting, tweaking indentation
… my Emacs previously used tabs+spaces for Scheme, which is genuinely horrific. >o<
This commit is contained in:
parent
1b5e9d5b1f
commit
adaa561e59
280
xattr.scm
280
xattr.scm
|
@ -16,180 +16,178 @@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
(module xattr
|
(module xattr
|
||||||
(get-xattr set-xattr remove-xattr list-xattrs)
|
(get-xattr set-xattr remove-xattr list-xattrs)
|
||||||
|
|
||||||
(import scheme
|
(import scheme
|
||||||
(chicken base) (chicken foreign) (chicken memory)
|
(chicken base) (chicken foreign) (chicken memory)
|
||||||
srfi-1 srfi-12)
|
srfi-1 srfi-12)
|
||||||
|
|
||||||
|
|
||||||
(foreign-declare "#include \"xattr_ext.c\"")
|
(foreign-declare "#include \"xattr_ext.c\"")
|
||||||
|
|
||||||
|
|
||||||
;; The direct foreign binding for `get_xattr`
|
;; The direct foreign binding for `get_xattr`
|
||||||
(define get-xattr-foreign
|
(define get-xattr-foreign
|
||||||
(foreign-lambda c-string* "get_xattr" c-string c-string (c-pointer int)))
|
(foreign-lambda c-string* "get_xattr" c-string c-string (c-pointer int)))
|
||||||
|
|
||||||
|
|
||||||
;; Wrapper around get-xattr-foreign, which throws exceptions and such.
|
;; Wrapper around get-xattr-foreign, which throws exceptions and such.
|
||||||
(define (get-xattr path attr)
|
(define (get-xattr path attr)
|
||||||
(let-location ([error-code int])
|
(let-location ([error-code int])
|
||||||
(let ([attr-value (get-xattr-foreign path attr (location error-code))]
|
(let ([attr-value (get-xattr-foreign path attr (location error-code))]
|
||||||
[exception (or (getxattr-exception error-code)
|
[exception (or (getxattr-exception error-code)
|
||||||
(stat-exception error-code))])
|
(stat-exception error-code))])
|
||||||
(if exception
|
(if exception
|
||||||
(signal exception)
|
(signal exception)
|
||||||
attr-value))))
|
attr-value))))
|
||||||
|
|
||||||
|
|
||||||
;; The direct foreign binding for `list_xattr`
|
;; The direct foreign binding for `list_xattr`
|
||||||
(define list-xattrs-foreign
|
(define list-xattrs-foreign
|
||||||
(foreign-lambda (c-pointer char) "list_xattr" c-string (c-pointer ssize_t) (c-pointer int)))
|
(foreign-lambda (c-pointer char) "list_xattr" c-string (c-pointer ssize_t) (c-pointer int)))
|
||||||
|
|
||||||
|
|
||||||
;; Wrapper around list-xattrs-foreign, which throws exceptions and such.
|
;; Wrapper around list-xattrs-foreign, which throws exceptions and such.
|
||||||
(define (list-xattrs path)
|
(define (list-xattrs path)
|
||||||
(let-location ([error-code int]
|
(let-location ([error-code int]
|
||||||
[length ssize_t])
|
[length ssize_t])
|
||||||
(let ([list-pointer (list-xattrs-foreign path (location length) (location error-code))]
|
(let ([list-pointer (list-xattrs-foreign path (location length) (location error-code))]
|
||||||
[exception (or (getxattr-exception error-code)
|
[exception (or (getxattr-exception error-code)
|
||||||
(stat-exception error-code))])
|
(stat-exception error-code))])
|
||||||
(if exception
|
(if exception
|
||||||
(signal exception)
|
(signal exception)
|
||||||
;; listxattr offers a const char* \0-delimited list of strings
|
;; listxattr offers a const char* \0-delimited list of strings
|
||||||
(pointer->delimited-string-list list-pointer length 0)))))
|
(pointer->delimited-string-list list-pointer length 0)))))
|
||||||
|
|
||||||
|
|
||||||
;; The direct foreign binding for `set_xattr`
|
;; The direct foreign binding for `set_xattr`
|
||||||
(define set-xattr-foreign
|
(define set-xattr-foreign
|
||||||
(foreign-lambda int "set_xattr" c-string c-string c-string (c-pointer int)))
|
(foreign-lambda int "set_xattr" c-string c-string c-string (c-pointer int)))
|
||||||
|
|
||||||
|
|
||||||
;; Wrapper around set-xattr-foreign, throwing exceptions and all that jazz
|
;; Wrapper around set-xattr-foreign, throwing exceptions and all that jazz
|
||||||
(define (set-xattr path attr value)
|
(define (set-xattr path attr value)
|
||||||
(let-location ([error-code int])
|
(let-location ([error-code int])
|
||||||
(let ([return-code (set-xattr-foreign path attr value (location error-code))]
|
(let ([return-code (set-xattr-foreign path attr value (location error-code))]
|
||||||
[exception (or (setxattr-exception error-code)
|
[exception (or (setxattr-exception error-code)
|
||||||
(getxattr-exception error-code)
|
(getxattr-exception error-code)
|
||||||
(stat-exception error-code))])
|
(stat-exception error-code))])
|
||||||
(if exception
|
(if exception
|
||||||
(signal exception)
|
(signal exception)
|
||||||
value))))
|
value))))
|
||||||
|
|
||||||
|
|
||||||
;; The direct foreign binding for `remove_xattr`
|
;; The direct foreign binding for `remove_xattr`
|
||||||
(define remove-xattr-foreign
|
(define remove-xattr-foreign
|
||||||
(foreign-lambda int "remove_xattr" c-string c-string))
|
(foreign-lambda int "remove_xattr" c-string c-string))
|
||||||
|
|
||||||
|
|
||||||
;; Wrapper around remove-xattr-foreign, blah blah
|
;; Wrapper around remove-xattr-foreign, blah blah
|
||||||
(define (remove-xattr path attr)
|
(define (remove-xattr path attr)
|
||||||
(let* ([value (get-xattr path attr)]
|
(let* ([value (get-xattr path attr)]
|
||||||
[error-code (remove-xattr-foreign path attr)]
|
[error-code (remove-xattr-foreign path attr)]
|
||||||
[exception (or (getxattr-exception error-code)
|
[exception (or (getxattr-exception error-code)
|
||||||
(stat-exception error-code))])
|
(stat-exception error-code))])
|
||||||
(if exception
|
(if exception
|
||||||
(signal exception)
|
(signal exception)
|
||||||
value)))
|
value)))
|
||||||
|
|
||||||
|
|
||||||
;; TODO: These exception functions should be constructed with a macro and a simple
|
;; TODO: These exception functions should be constructed with a macro and a simple
|
||||||
;; list, like `((c-constant symbol error-message) ("E2BIG" 'e2big "The attribute value was too big."))
|
;; list, like `((c-constant symbol error-message) ("E2BIG" 'e2big "The attribute value was too big."))
|
||||||
;; Unfortunately, it looks like chicken's macros work a good bit differently from CLs?
|
;; Unfortunately, it looks like chicken's macros work a good bit differently from CLs?
|
||||||
;; orr I'm losing my mind
|
;; orr I'm losing my mind
|
||||||
|
|
||||||
|
|
||||||
;; Return the exception associated with an error-code as per getxattr(2), if it exists
|
;; Return the exception associated with an error-code as per getxattr(2), if it exists
|
||||||
(define (getxattr-exception error-code)
|
(define (getxattr-exception error-code)
|
||||||
(cond
|
(cond
|
||||||
[(eq? error-code (foreign-value "E2BIG" int))
|
[(eq? error-code (foreign-value "E2BIG" int))
|
||||||
(build-exception 'e2big "The attribute value was too big.")]
|
(build-exception 'e2big "The attribute value was too big.")]
|
||||||
[(eq? error-code (foreign-value "ENOTSUP" int))
|
[(eq? error-code (foreign-value "ENOTSUP" int))
|
||||||
(build-exception 'enotsup "Extended attributes are disabled or unavailable on this filesystem.")]
|
(build-exception 'enotsup "Extended attributes are disabled or unavailable on this filesystem.")]
|
||||||
[(eq? error-code (foreign-value "ERANGE" int))
|
[(eq? error-code (foreign-value "ERANGE" int))
|
||||||
(build-exception 'erange "The xattr module's buffer was too small for the attribute value. Whoops <w<\"")]
|
(build-exception 'erange "The xattr module's buffer was too small for the attribute value. Whoops <w<\"")]
|
||||||
[#t
|
[#t
|
||||||
#f]))
|
#f]))
|
||||||
|
|
||||||
|
|
||||||
;; Return the exception associated with a setxattr(2) error-code, if it exists.
|
;; Return the exception associated with a setxattr(2) error-code, if it exists.
|
||||||
(define (setxattr-exception error-code)
|
(define (setxattr-exception error-code)
|
||||||
(cond
|
(cond
|
||||||
[(eq? error-code (foreign-value "EDQUOT" int))
|
[(eq? error-code (foreign-value "EDQUOT" int))
|
||||||
(build-exception 'edquot "Setting this attribute would violate disk quota.")]
|
(build-exception 'edquot "Setting this attribute would violate disk quota.")]
|
||||||
[(eq? error-code (foreign-value "ENOSPC" int))
|
[(eq? error-code (foreign-value "ENOSPC" int))
|
||||||
(build-exception 'enospc "There is insufficient space to store the extended attribute.")]
|
(build-exception 'enospc "There is insufficient space to store the extended attribute.")]
|
||||||
[(eq? error-code (foreign-value "EPERM" int))
|
[(eq? error-code (foreign-value "EPERM" int))
|
||||||
(build-exception 'eperm "The file is immutable or append-only.")]
|
(build-exception 'eperm "The file is immutable or append-only.")]
|
||||||
[(eq? error-code (foreign-value "ERANGE" int))
|
[(eq? error-code (foreign-value "ERANGE" int))
|
||||||
(build-exception 'erange "Either the attribute name or value exceeds the filesystem's limit.")]
|
(build-exception 'erange "Either the attribute name or value exceeds the filesystem's limit.")]
|
||||||
[#t
|
[#t
|
||||||
#f]))
|
#f]))
|
||||||
|
|
||||||
|
|
||||||
;; Return the exception associated with an error-code as per stat(2), if applicable
|
;; Return the exception associated with an error-code as per stat(2), if applicable
|
||||||
(define (stat-exception error-code)
|
(define (stat-exception error-code)
|
||||||
(cond
|
(cond
|
||||||
[(eq? error-code (foreign-value "EACCES" int))
|
[(eq? error-code (foreign-value "EACCES" int))
|
||||||
(build-exception 'file "Search permission denied for a parent directory.")]
|
(build-exception 'file "Search permission denied for a parent directory.")]
|
||||||
[(eq? error-code (foreign-value "EBADF" int))
|
[(eq? error-code (foreign-value "EBADF" int))
|
||||||
(build-exception 'file "The file-descriptor is bad. Wait, wha…?")]
|
(build-exception 'file "The file-descriptor is bad. Wait, wha…?")]
|
||||||
[(eq? error-code (foreign-value "EFAULT" int))
|
[(eq? error-code (foreign-value "EFAULT" int))
|
||||||
(build-exception 'file "The address is bad. OK.")]
|
(build-exception 'file "The address is bad. OK.")]
|
||||||
[(eq? error-code (foreign-value "EINVAL" int))
|
[(eq? error-code (foreign-value "EINVAL" int))
|
||||||
(build-exception 'file "Invalid fstatat flag.")]
|
(build-exception 'file "Invalid fstatat flag.")]
|
||||||
[(eq? error-code (foreign-value "ELOOP" int))
|
[(eq? error-code (foreign-value "ELOOP" int))
|
||||||
(build-exception 'file "Too many symbolic links in recursion.")]
|
(build-exception 'file "Too many symbolic links in recursion.")]
|
||||||
[(eq? error-code (foreign-value "ENAMETOOLONG" int))
|
[(eq? error-code (foreign-value "ENAMETOOLONG" int))
|
||||||
(build-exception 'file "The given pathname is too long.")]
|
(build-exception 'file "The given pathname is too long.")]
|
||||||
[(eq? error-code (foreign-value "ENOENT" int))
|
[(eq? error-code (foreign-value "ENOENT" int))
|
||||||
(build-exception 'file "This file doesn't exist, or there is a dangling symlink.")]
|
(build-exception 'file "This file doesn't exist, or there is a dangling symlink.")]
|
||||||
[(eq? error-code (foreign-value "ENOMEM" int))
|
[(eq? error-code (foreign-value "ENOMEM" int))
|
||||||
(build-exception 'file "Out of memory.")]
|
(build-exception 'file "Out of memory.")]
|
||||||
[(eq? error-code (foreign-value "ENOTDIR" int))
|
[(eq? error-code (foreign-value "ENOTDIR" int))
|
||||||
(build-exception 'file "Component of path isn't a proper directory.")]
|
(build-exception 'file "Component of path isn't a proper directory.")]
|
||||||
[(eq? error-code (foreign-value "EOVERFLOW" int))
|
[(eq? error-code (foreign-value "EOVERFLOW" int))
|
||||||
(build-exception 'file "An overflow has occured.")]
|
(build-exception 'file "An overflow has occured.")]
|
||||||
[#t
|
[#t
|
||||||
#f]))
|
#f]))
|
||||||
|
|
||||||
|
|
||||||
;; Creates a generic exception with given symbol and message
|
;; Creates a generic exception with given symbol and message
|
||||||
(define (build-exception symbol message)
|
(define (build-exception symbol message)
|
||||||
(signal (make-property-condition 'exn 'location symbol 'message message)))
|
(signal (make-property-condition 'exn 'location symbol 'message message)))
|
||||||
|
|
||||||
|
|
||||||
;; Some C functions offer up a string-list that isn't a two-dimensional array, but a
|
;; Some C functions offer up a string-list that isn't a two-dimensional array, but a
|
||||||
;; one-dimensional array with given length and strings separated by a given delimeter.
|
;; one-dimensional array with given length and strings separated by a given delimeter.
|
||||||
;; This takes that sort of pointer and gives you a nice list of strings.
|
;; This takes that sort of pointer and gives you a nice list of strings.
|
||||||
(define (pointer->delimited-string-list pointer length delimiter)
|
(define (pointer->delimited-string-list pointer length delimiter)
|
||||||
(let* ([is-zero (lambda (num) (eq? num 0))]
|
(let* ([is-zero (lambda (num) (eq? num 0))]
|
||||||
[map-to-char (lambda (a) (map integer->char a))]
|
[map-to-char (lambda (a) (map integer->char a))]
|
||||||
[byte-list (drop-right (pointer->integers pointer length) 1)])
|
[byte-list (drop-right (pointer->integers pointer length) 1)])
|
||||||
(map list->string
|
(map list->string
|
||||||
(map map-to-char
|
(map map-to-char
|
||||||
(split-list is-zero byte-list)))))
|
(split-list is-zero byte-list)))))
|
||||||
|
|
||||||
|
|
||||||
;; Takes a pointer and returns a list of bytes of a given length
|
;; Takes a pointer and returns a list of bytes of a given length
|
||||||
(define (pointer->integers pointer length)
|
(define (pointer->integers pointer length)
|
||||||
(let ([byte (pointer-s8-ref pointer)])
|
(let ([byte (pointer-s8-ref pointer)])
|
||||||
(if (eq? length 0)
|
(if (eq? length 0)
|
||||||
byte
|
byte
|
||||||
(append (list byte)
|
(append (list byte)
|
||||||
(pointer->integers (pointer+ pointer 1) (- length 1))))))
|
(pointer->integers (pointer+ pointer 1) (- length 1))))))
|
||||||
|
|
||||||
|
|
||||||
;; Split a list into sublists, with items passing `test` being the delimiters
|
;; Split a list into sublists, with items passing `test` being the delimiters
|
||||||
(define (split-list test list)
|
(define (split-list test list)
|
||||||
(let ([before (take-while (compose not test) list)]
|
(let ([before (take-while (compose not test) list)]
|
||||||
[after (drop-while (compose not test) list)])
|
[after (drop-while (compose not test) list)])
|
||||||
(cond
|
(cond
|
||||||
[(or (null-list? after) (null-list? (cdr after)))
|
[(or (null-list? after) (null-list? (cdr after)))
|
||||||
`(,before)]
|
`(,before)]
|
||||||
[(null-list? before)
|
[(null-list? before)
|
||||||
(split-list test (cdr after))]
|
(split-list test (cdr after))]
|
||||||
[#t
|
[#t
|
||||||
(append `(,before) (split-list test (cdr after)))])))
|
(append `(,before) (split-list test (cdr after)))]))))
|
||||||
|
|
||||||
)
|
|
||||||
|
|
Ŝarĝante…
Reference in New Issue