]> git.mxchange.org Git - core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 3 Jan 2018 23:38:35 +0000 (00:38 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 3 Jan 2018 23:38:35 +0000 (00:38 +0100)
- even more rewrites towards SplFilInfo

Signed-off-by: Roland Häder <roland@mxchange.org>
framework/main/classes/index/class_BaseIndex.php
framework/main/classes/index/file_stack/class_FileStackIndex.php

index 47a6f715a6118a7d93cab5a7ffc0459cba7b7f2b..dbc65fe8b79a46c5a40b5eb8705409ed1bf9d2b2 100644 (file)
@@ -9,6 +9,9 @@ use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
 use Org\Mxchange\CoreFramework\Iterator\Filesystem\SeekableWritableFileIterator;
 use Org\Mxchange\CoreFramework\Object\BaseFrameworkSystem;
 
+// Import SPL stuff
+use \SplFileInfo;
+
 /**
  * A general index class
  *
@@ -155,16 +158,13 @@ abstract class BaseIndex extends BaseFrameworkSystem {
        /**
         * Initializes this index
         *
-        * @param       $fileName       File name of this index
+        * @param       $fileInfoInstance       An instance of a SplFileInfo class
         * @return      void
         * @todo        Currently the index file is not cached, please implement a memory-handling class and if enough RAM is found, cache the whole index file.
         */
-       protected function initIndex ($fileName) {
-               // Append index file extension
-               $fileName .= $this->getConfigInstance()->getConfigEntry('index_extension');
-
+       protected function initIndex (SplFileInfo $fileInfoInstance) {
                // Get a file i/o pointer instance for index file
-               $fileInstance = ObjectFactory::createObjectByConfiguredName('index_file_class', array($fileName, $this));
+               $fileInstance = ObjectFactory::createObjectByConfiguredName('index_file_class', array($fileInfoInstance, $this));
 
                // Get iterator instance
                $iteratorInstance = ObjectFactory::createObjectByConfiguredName('file_iterator_class', array($fileInstance));
index 72da66dc79007f4feb9dfbc152301d1361272352..7d3306090e8d3d5a7ea9a171633f7a78e11b8806 100644 (file)
@@ -9,6 +9,9 @@ use Org\Mxchange\CoreFramework\Registry\Registerable;
 use Org\Mxchange\CoreFramework\Stacker\Filesystem\BaseFileStacker;
 use Org\Mxchange\CoreFramework\Stacker\Index\IndexableStack;
 
+// Import SPL stuff
+use \SplFileInfo;
+
 /**
  * A FileStack index class
  *
@@ -45,15 +48,15 @@ class FileStackIndex extends BaseIndex implements IndexableStack, Registerable {
        /**
         * Creates an instance of this Index class and prepares it for usage
         *
-        * @param       $fileName               Name of the file stack to create an index file for
+        * @param       $fileInfoInstance       An instance of a SplFileInfo class
         * @return      $indexInstance  An instance of this Index class
         */
-       public final static function createFileStackIndex ($fileName) {
+       public final static function createFileStackIndex (SplFileInfo $fileInfoInstance) {
                // Get a new instance
                $indexInstance = new FileStackIndex();
 
                // Initialize index
-               $indexInstance->initIndex($fileName);
+               $indexInstance->initIndex($fileInfoInstance);
 
                // Return the prepared instance
                return $indexInstance;