]> git.mxchange.org Git - core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 14 Nov 2017 21:19:37 +0000 (22:19 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 14 Nov 2017 21:19:37 +0000 (22:19 +0100)
- need to return full SplFileInfo instance instead of file name
- it is a better OOD anyway

Signed-off-by: Roland Häder <roland@mxchange.org>
framework/config/config-local.php-dist
framework/main/classes/file_directories/directory/class_FrameworkDirectoryPointer.php
framework/main/interfaces/io/directory/class_FrameworkDirectory.php

index d6bd7c1d236e099325bb04d30c7e7f0889ae0045..401e2c1d6284f999cf3c1c4aa6f0b56f1efa242d 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+// Import framework stuff
+use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
+
 /**
  * Local configuration file, put this into your application/xyz/ folder and
  * ignore config-local.php in .gitignore (see my apps for examples). This way
@@ -29,7 +32,7 @@
  */
 
 // Get the configuration instance
-$cfg = FrameworkConfiguration::getSelfInstance();
+$cfg = FrameworkBootstrap::getConfigurationInstance();
 
 // CFG: FOO-BAR
 //$cfg->setConfigEntry('foo_bar', 12345);
index eba7d4233626e2be5688b0a235250d7d14be79dd..4c033024fac389928d9ee40f961e22d9e21ca572 100644 (file)
@@ -133,7 +133,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Framework
         * Read lines from the current directory pointer except some parts
         *
         * @param       $except         Some parts of a directory we want to ignore. Valid: directory and file names, other values will be silently ignored
-        * @return      string          Directory and/or file names read from the current directory pointer
+        * @return      SplFileInfo             An instance of a SplFileInfo class
         */
        public function readDirectoryExcept (array $except = array()) {
                // No exceptions given?
@@ -148,7 +148,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Framework
                }
 
                // Init raw line
-               $rawLine = NULL;
+               $fileInfoInstance = NULL;
 
                // Read a raw line...
                $currentEntry = $this->readRawDirectory();
@@ -157,17 +157,17 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Framework
                // Shall we exclude directories?
                if (is_object($currentEntry)) {
                        // Get file name
-                       $rawLine = $currentEntry->getFilename();
-                       //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: rawLine[' . gettype($rawLine) . ']=' . $rawLine . ',isDot=' . intval($this->getDirectoryIteratorInstance()->isDot()));
+                       $fileInfoInstance = $currentEntry;
+                       //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: fileInfoInstance[' . gettype($fileInfoInstance) . ']=' . $fileInfoInstance . ',isDot=' . intval($this->getDirectoryIteratorInstance()->isDot()));
 
                        // Is it a dot-directory or excluded?
-                       if (($this->getDirectoryIteratorInstance()->isDot()) || (in_array($rawLine, $except))) {
+                       if (($this->getDirectoryIteratorInstance()->isDot()) || (in_array($fileInfoInstance, $except))) {
                                // To next entry
                                $this->getDirectoryIteratorInstance()->next();
 
                                // Exclude this part
-                               $rawLine = $this->readDirectoryExcept($except);
-                               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: rawline[' . gettype($rawLine) . ']=' . $rawLine . ' - Recursive call!');
+                               $fileInfoInstance = $this->readDirectoryExcept($except);
+                               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: fileInfoInstance[' . gettype($fileInfoInstance) . ']=' . $fileInfoInstance . ' - Recursive call!');
                        } // END - if
                } // END - if
 
@@ -175,8 +175,8 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Framework
                $this->getDirectoryIteratorInstance()->next();
 
                // Return read line
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: rawLine[' . gettype($rawLine) . ']=' . $rawLine);
-               return $rawLine;
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: fileInfoInstance[' . gettype($fileInfoInstance) . ']=' . $fileInfoInstance);
+               return $fileInfoInstance;
        }
 
        /**
index 6b270bd75515963ed1e8b9b8d31ea9c9dbfdfacf..a87ba801f150df614d9cafd7b7e202985028e976 100644 (file)
@@ -39,7 +39,7 @@ interface FrameworkDirectory extends FrameworkInterface {
         * Read lines from the current directory pointer except some parts
         *
         * @param       $except         Some parts of a directory we want to ignore. Valid: directory and file names, other values will be silently ignored
-        * @return      string          Directory and/or file names read from the current directory pointer
+        * @return      SplFileInfo             An instance of a SplFileInfo class
         */
        function readDirectoryExcept (array $except = array());