unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* scandir patch
@ 2012-06-11 10:26 Andy Wingo
  2012-06-11 11:52 ` Ludovic Courtès
  2012-06-11 12:07 ` Nala Ginrut
  0 siblings, 2 replies; 3+ messages in thread
From: Andy Wingo @ 2012-06-11 10:26 UTC (permalink / raw)
  To: guile-devel; +Cc: ludo

[-- Attachment #1: Type: text/plain, Size: 29 bytes --]

Any thoughts on this patch?


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch to scandir --]
[-- Type: text/x-diff, Size: 2862 bytes --]

From 711ca0a5ed7351d6fde360f9b451600e77403522 Mon Sep 17 00:00:00 2001
From: Andy Wingo <wingo@pobox.com>
Date: Mon, 11 Jun 2012 12:25:24 +0200
Subject: [PATCH] scandir: select? takes basenames, operates on (sub)dirs also

* module/ice-9/ftw.scm (scandir): Run the select? procedure on all
  items, including subdirs and the `.' and `..' entries.  Pass it the
  basename of the file in question instead of the full name.

* test-suite/tests/ftw.test ("scandir"): Adapt expectation for the .test
  selector.  Add test for a selector that rejects everything.
---
 module/ice-9/ftw.scm      |   19 +++++++++++--------
 test-suite/tests/ftw.test |    7 +++++--
 2 files changed, 16 insertions(+), 10 deletions(-)

diff --git a/module/ice-9/ftw.scm b/module/ice-9/ftw.scm
index 96422b5..6c9db27 100644
--- a/module/ice-9/ftw.scm
+++ b/module/ice-9/ftw.scm
@@ -538,26 +538,29 @@ of file names is sorted according to ENTRY<?, which defaults to
   (define (enter? dir stat result)
     (and stat (string=? dir name)))
 
-  (define (leaf name stat result)
-    (if (select? name)
-        (and (pair? result)                      ; must have a "." entry
-             (cons (basename name) result))
+  (define (visit basename result)
+    (if (select? basename)
+        (cons basename result)
         result))
 
+  (define (leaf name stat result)
+    (and result
+         (visit (basename name) result)))
+
   (define (down name stat result)
-    (list "."))
+    (visit "." '()))
 
   (define (up name stat result)
-    (cons ".." result))
+    (visit ".." result))
 
   (define (skip name stat result)
     ;; All the sub-directories are skipped.
-    (cons (basename name) result))
+    (visit (basename name) result))
 
   (define (error name* stat errno result)
     (if (string=? name name*)             ; top-level NAME is unreadable
         result
-        (cons (basename name*) result)))
+        (visit (basename name*) result)))
 
   (and=> (file-system-fold enter? leaf down up skip error #f name stat)
          (lambda (files)
diff --git a/test-suite/tests/ftw.test b/test-suite/tests/ftw.test
index 805c779..33537d0 100644
--- a/test-suite/tests/ftw.test
+++ b/test-suite/tests/ftw.test
@@ -310,14 +310,17 @@
   (pass-if "test-suite"
     (let ((select? (cut string-suffix? ".test" <>)))
       (match (scandir (string-append %test-dir "/tests") select?)
-        (("." ".." "00-initial-env.test" (? select?) ...)
+        (("00-initial-env.test" (? select?) ...)
          #t))))
 
   (pass-if "flat file"
     (not (scandir (string-append %test-dir "/Makefile.am"))))
 
   (pass-if "EACCES"
-    (not (scandir "/.does-not-exist."))))
+    (not (scandir "/.does-not-exist.")))
+
+  (pass-if "no select"
+    (null? (scandir %test-dir (lambda (_) #f)))))
 
 ;;; Local Variables:
 ;;; eval: (put 'with-file-tree 'scheme-indent-function 2)
-- 
1.7.10


[-- Attachment #3: Type: text/plain, Size: 26 bytes --]


-- 
http://wingolog.org/

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: scandir patch
  2012-06-11 10:26 scandir patch Andy Wingo
@ 2012-06-11 11:52 ` Ludovic Courtès
  2012-06-11 12:07 ` Nala Ginrut
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2012-06-11 11:52 UTC (permalink / raw)
  To: guile-devel

[-- Attachment #1: Type: text/plain, Size: 232 bytes --]

Hi!

Andy Wingo <wingo@pobox.com> skribis:

> * module/ice-9/ftw.scm (scandir): Run the select? procedure on all
>   items, including subdirs and the `.' and `..' entries.

Since the goal was to mimic scandir(3), I double-checked:


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-csrc, Size: 299 bytes --]

#include <stdlib.h>
#include <unistd.h>
#include <dirent.h>

int
main ()
{
  int count;
  struct dirent **list;
  count = scandir ("/", &list,
		   ({
		      int filter (const struct dirent *e) { return 0; }
		      filter;
		   }),
		   NULL);
  return count == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}

[-- Attachment #3: Type: text/plain, Size: 306 bytes --]


On GNU/Linux, this test succeeds for me, so this change is correct
(yeah I should have checked POSIX instead ;-)).

> Pass it the basename of the file in question instead of the full name.

Makes sense too, since in C ‘struct dirent’ contains just the base name.

Please apply!  :-)

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: scandir patch
  2012-06-11 10:26 scandir patch Andy Wingo
  2012-06-11 11:52 ` Ludovic Courtès
@ 2012-06-11 12:07 ` Nala Ginrut
  1 sibling, 0 replies; 3+ messages in thread
From: Nala Ginrut @ 2012-06-11 12:07 UTC (permalink / raw)
  To: Andy Wingo; +Cc: ludo, guile-devel

Fine to me. ;-)

On Mon, Jun 11, 2012 at 6:26 PM, Andy Wingo <wingo@pobox.com> wrote:
> Any thoughts on this patch?
>
>
>
> --
> http://wingolog.org/
>



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-06-11 12:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-11 10:26 scandir patch Andy Wingo
2012-06-11 11:52 ` Ludovic Courtès
2012-06-11 12:07 ` Nala Ginrut

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).