summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-30 10:10:48 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-30 10:10:48 -0700
commite4ef51fb143fbd971d94b2f2f92683627dbabc60 (patch)
treec8302b4abf5610a3cd273ebae3233165647f2f67 /share
parent8dbbc8c2f56e84e9cff97188dc5ad832660d3cc8 (diff)
downloadtxr-e4ef51fb143fbd971d94b2f2f92683627dbabc60.tar.gz
txr-e4ef51fb143fbd971d94b2f2f92683627dbabc60.tar.bz2
txr-e4ef51fb143fbd971d94b2f2f92683627dbabc60.zip
Move stat functions to use a struct.
* lib.c (init): Move hash_init and struct init before sysif_init. * share/txr/stdlib/path-test.tl (sys:path-test-mode, path-mine-p, path-my-group-p, sys:path-access, path-newer, path-examine): Convert to struct return of stat functions. * stream.c (dev_k, ino_k, mode_k, nlink_k, uid_k, gid_k, rdev_k, size_k, blksize_k, blocks_k, atime_k, mtime_k, ctime_k): Global variable definitions removed from here. (stream_init): Initializations of moved global variables removed from here. * stream.h (dev_k, ino_k, mode_k, nlink_k, uid_k, gid_k, rdev_k, size_k, blksize_k, blocks_k, atime_k, mtime_k, ctime_k): Declarations removed from here. * sysif.c (stat_s, dev_s, ino_s, mode_s, nlink_s, uid_s, gid_s, rdev_s, size_s, blksize_s, blocks_s, atime_s, mtime_s, ctime_s): New global variables. (dev_k, ino_k, mode_k, nlink_k, uid_k, gid_k, rdev_k, size_k, blksize_k, blocks_k, atime_k, mtime_k, ctime_k): Existing variables moved here. (stat_to_struct): New static function. (stat_impl): Use stat_to_struct, except under 113 compatibility. (sysif_init): Initialize new symbol variables. Make stat struct type. * sysif.h (stat_s, dev_s, ino_s, mode_s, nlink_s, uid_s, gid_s, rdev_s, size_s, blksize_s, blocks_s, atime_s, mtime_s, ctime_s): Declared.
Diffstat (limited to 'share')
-rw-r--r--share/txr/stdlib/path-test.tl24
1 files changed, 9 insertions, 15 deletions
diff --git a/share/txr/stdlib/path-test.tl b/share/txr/stdlib/path-test.tl
index 1ca8d940..c7e825ed 100644
--- a/share/txr/stdlib/path-test.tl
+++ b/share/txr/stdlib/path-test.tl
@@ -7,8 +7,7 @@
(defun sys:path-test-mode (statfun path mask)
(sys:path-test (s statfun path)
- (let ((m (prop s :mode)))
- (if (plusp (logand m mask)) t))))
+ (plusp (logand s.mode mask))))
(defun path-exists-p (path)
(sys:path-test (s stat path) t))
@@ -45,24 +44,23 @@
(defun path-mine-p (path)
(sys:path-test (s stat path)
- (let ((u (prop s :uid)))
- (= u (geteuid)))))
+ (= s.uid (geteuid))))
(defun path-my-group-p (path)
(sys:path-test (s stat path)
- (let ((g (prop s :gid)))
+ (let ((g s.gid))
(or (= g (getegid))
(find g (getgroups))))))
(defun sys:path-access (path umask gmask omask)
(sys:path-test (s stat path)
- (let ((m (prop s :mode))
+ (let ((m s.mode)
(euid (geteuid)))
(cond
((zerop euid) (or (zerop (logior umask s-ixusr))
(plusp (logand m (logior umask gmask omask)))))
- ((= euid (prop s :uid)) (plusp (logand m umask)))
- ((let ((g (prop s :gid)))
+ ((= euid s.uid) (plusp (logand m umask)))
+ ((let ((g s.gid))
(or (= g (getegid))
(find g (getgroups))))
(plusp (logand m gmask)))
@@ -81,9 +79,7 @@
(defun path-newer (path-0 path-1)
(sys:path-examine (s0 stat path-0)
(sys:path-examine (s1 stat path-1)
- (and s0 (or (not s1)
- (> (prop s0 :mtime)
- (prop s1 :mtime)))))))
+ (and s0 (or (not s1) (> s0.mtime s1.mtime))))))
(defun path-older (path-0 path-1)
(path-newer path-1 path-0))
@@ -92,7 +88,5 @@
(sys:path-examine (s0 stat path-0)
(sys:path-examine (s1 stat path-1)
(and s0 s1
- (eql (prop s0 :dev)
- (prop s1 :dev))
- (eql (prop s0 :ino)
- (prop s1 :ino))))))
+ (eql s0.dev s1.dev)
+ (eql s0.ino s1.ino)))))