use Org\Mxchange\CoreFramework\Iterator\Filesystem\SeekableWritableFileIterator;
use Org\Mxchange\CoreFramework\Object\BaseFrameworkSystem;
+// Import SPL stuff
+use \SplFileInfo;
+
/**
* A general index class
*
/**
* 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));
use Org\Mxchange\CoreFramework\Stacker\Filesystem\BaseFileStacker;
use Org\Mxchange\CoreFramework\Stacker\Index\IndexableStack;
+// Import SPL stuff
+use \SplFileInfo;
+
/**
* A FileStack index class
*
/**
* 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;