]> granicus.if.org Git - php/commitdiff
Implemented FR #53407 (make scandir()'s directory sorting optional).
authorAdam Harvey <aharvey@php.net>
Fri, 26 Nov 2010 09:52:28 +0000 (09:52 +0000)
committerAdam Harvey <aharvey@php.net>
Fri, 26 Nov 2010 09:52:28 +0000 (09:52 +0000)
NEWS
UPGRADING
ext/standard/dir.c
ext/standard/php_dir.h
ext/standard/tests/dir/scandir_basic.phpt
ext/standard/tests/dir/scandir_variation10.phpt [new file with mode: 0644]
ext/standard/tests/dir/scandir_variation3.phpt

diff --git a/NEWS b/NEWS
index 2c3d7504dfe4b9934b4b5eab142bbdc40b3b2ccb..ca5e34810f69302371849fb90dbe49af484dd348 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -128,6 +128,10 @@ PHP                                                                        NEWS
   . PDO_mysql: Removed support for linking with MySQL client libraries older
     than 4.1. (Johannes)
 
+- Improved filesystem functions:
+  . scandir() now accepts SCANDIR_SORT_NONE as a possible sorting_order value.
+    FR #53407. (Adam)
+
 - Improved HASH extension:
   . Added Jenkins's one-at-a-time hash support. (Martin Jansen)
   . Added FNV-1 hash support. (Michael Maclean)
index 7218e65d29af832dc5b8b3c865b833c6c4ac18f7..d1c3357eb3707c50067781ca35337f19523c4046 100755 (executable)
--- a/UPGRADING
+++ b/UPGRADING
@@ -136,6 +136,10 @@ UPGRADE NOTES - PHP X.Y
 - The third parameter ($matches) to preg_match_all() is now optional. If
   omitted, the function will simply return the number of times the pattern was
   matched in the subject and will have no other side effects.
+- The second argument of scandir() now accepts SCANDIR_SORT_NONE (2) as a
+  possible value. This value results in scandir() performing no sorting: on
+  local filesystems, this allows files to be returned in native filesystem
+  order.
  
 
 ===================================
@@ -298,6 +302,9 @@ UPGRADE NOTES - PHP X.Y
        - ENT_XML1
        - ENT_XHTML
        - ENT_HTML5
+       - SCANDIR_SORT_ASCENDING
+       - SCANDIR_SORT_DESCENDING
+       - SCANDIR_SORT_NONE
 
      g. New classes
 
index a788706a34e42b59a229bedaea31c0d973f99eda..f572e2ff32dd60250815a21b01c94176e7a270de 100644 (file)
@@ -148,6 +148,10 @@ PHP_MINIT_FUNCTION(dir)
        pathsep_str[1] = '\0';
        REGISTER_STRING_CONSTANT("PATH_SEPARATOR", pathsep_str, CONST_CS|CONST_PERSISTENT);
 
+       REGISTER_LONG_CONSTANT("SCANDIR_SORT_ASCENDING",  PHP_SCANDIR_SORT_ASCENDING,  CONST_CS | CONST_PERSISTENT);
+       REGISTER_LONG_CONSTANT("SCANDIR_SORT_DESCENDING", PHP_SCANDIR_SORT_DESCENDING, CONST_CS | CONST_PERSISTENT);
+       REGISTER_LONG_CONSTANT("SCANDIR_SORT_NONE",       PHP_SCANDIR_SORT_NONE,       CONST_CS | CONST_PERSISTENT);
+
 #ifdef HAVE_GLOB
 
 #ifdef GLOB_BRACE
@@ -563,8 +567,10 @@ PHP_FUNCTION(scandir)
                context = php_stream_context_from_zval(zcontext, 0);
        }
 
-       if (!flags) {
+       if (flags == PHP_SCANDIR_SORT_ASCENDING) {
                n = php_stream_scandir(dirn, &namelist, context, (void *) php_stream_dirent_alphasort);
+       } else if (flags == PHP_SCANDIR_SORT_NONE) {
+               n = php_stream_scandir(dirn, &namelist, context, NULL);
        } else {
                n = php_stream_scandir(dirn, &namelist, context, (void *) php_stream_dirent_alphasortr);
        }
index 157480d3288c616154714b843023aba18f38b981..63b7a9b860a2a503583586a085450fbb97b5520b 100644 (file)
@@ -37,4 +37,8 @@ PHP_FUNCTION(getdir);
 PHP_FUNCTION(glob);
 PHP_FUNCTION(scandir);
 
+#define PHP_SCANDIR_SORT_ASCENDING 0
+#define PHP_SCANDIR_SORT_DESCENDING 1
+#define PHP_SCANDIR_SORT_NONE 2
+
 #endif /* PHP_DIR_H */
index 25700a7a4f5558edab74ef1fcac981b8ed5d539c..7a044da529199e69ac9909bfef99e6da647de8f9 100644 (file)
@@ -25,7 +25,7 @@ echo "\n-- scandir() with mandatory arguments --\n";
 var_dump(scandir($directory));
 
 echo "\n-- scandir() with all arguments --\n";
-$sorting_order = 1;
+$sorting_order = SCANDIR_SORT_DESCENDING;
 $context = stream_context_create();
 var_dump(scandir($directory, $sorting_order, $context));
 
diff --git a/ext/standard/tests/dir/scandir_variation10.phpt b/ext/standard/tests/dir/scandir_variation10.phpt
new file mode 100644 (file)
index 0000000..412836b
--- /dev/null
@@ -0,0 +1,79 @@
+--TEST--
+Test scandir() function : usage variations - different sorting constants
+--FILE--
+<?php
+/* Prototype  : array scandir(string $dir [, int $sorting_order [, resource $context]])
+ * Description: List files & directories inside the specified path 
+ * Source code: ext/standard/dir.c
+ */
+
+printf("SCANDIR_SORT_ASCENDING: %d\n", SCANDIR_SORT_ASCENDING);
+printf("SCANDIR_SORT_DESCENDING: %d\n", SCANDIR_SORT_DESCENDING);
+printf("SCANDIR_SORT_NONE: %d\n", SCANDIR_SORT_NONE);
+
+/*
+ * Pass different integers as $sorting_order argument to test how scandir()
+ * re-orders the array
+ */
+
+echo "*** Testing scandir() : usage variations ***\n";
+
+// include for create_files/delete_files functions
+include(dirname(__FILE__) . '/../file/file.inc');
+
+// create directory and files
+$dir = dirname(__FILE__) . '/scandir_variation10';
+mkdir($dir);
+@create_files($dir, 2);
+
+// Deterministic tests.
+var_dump(scandir($dir, SCANDIR_SORT_ASCENDING));
+var_dump(scandir($dir, SCANDIR_SORT_DESCENDING));
+
+// Non-deterministic tests.
+$files = scandir($dir, SCANDIR_SORT_NONE);
+var_dump(count($files));
+var_dump(in_array('.', $files));
+var_dump(in_array('..', $files));
+var_dump(in_array('file1.tmp', $files));
+var_dump(in_array('file2.tmp', $files));
+
+delete_files($dir, 2);
+?>
+===DONE===
+--CLEAN--
+<?php
+$dir = dirname(__FILE__) . '/scandir_variation10';
+rmdir($dir);
+?>
+--EXPECTF--
+SCANDIR_SORT_ASCENDING: 0
+SCANDIR_SORT_DESCENDING: 1
+SCANDIR_SORT_NONE: 2
+*** Testing scandir() : usage variations ***
+array(4) {
+  [0]=>
+  string(1) "."
+  [1]=>
+  string(2) ".."
+  [2]=>
+  string(9) "file1.tmp"
+  [3]=>
+  string(9) "file2.tmp"
+}
+array(4) {
+  [0]=>
+  string(9) "file2.tmp"
+  [1]=>
+  string(9) "file1.tmp"
+  [2]=>
+  string(2) ".."
+  [3]=>
+  string(1) "."
+}
+int(4)
+bool(true)
+bool(true)
+bool(true)
+bool(true)
+===DONE===
index 8e23faf2d4089913756f75fa016ba0c2e9d65e63..58da5e2c53685389c69ccf1a5156f666e348198a 100644 (file)
@@ -16,7 +16,7 @@ echo "*** Testing scandir() : usage variations ***\n";
 // Initialise function arguments not being substituted
 $dir = dirname(__FILE__) . '/scandir_variation3';
 mkdir($dir);
-$sorting_order = 0;
+$sorting_order = SCANDIR_SORT_ASCENDING;
 
 //get an unset variable
 $unset_var = 10;