]> git.mxchange.org Git - core.git/blob - framework/main/classes/index/file/stack/class_FileStackIndex.php
Continued:
[core.git] / framework / main / classes / index / file / stack / class_FileStackIndex.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Index\File\Stack;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Index\File\BaseFileIndex;
7 use Org\Mxchange\CoreFramework\Index\File\Stack\IndexableStack;
8 use Org\Mxchange\CoreFramework\Index\Indexable;
9 use Org\Mxchange\CoreFramework\Registry\Registerable;
10 use Org\Mxchange\CoreFramework\Stack\File\StackableFile;
11
12 // Import SPL stuff
13 use \InvalidArgumentException;
14 use \SplFileInfo;
15 use \UnexpectedValueException;
16
17 /**
18  * A FileStack index class
19  *
20  * @author              Roland Haeder <webmaster@ship-simu.org>
21  * @version             0.0.0
22  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2021 Core Developer Team
23  * @license             GNU GPL 3.0 or any newer version
24  * @link                http://www.ship-simu.org
25  *
26  * This program is free software: you can redistribute it and/or modify
27  * it under the terms of the GNU General Public License as published by
28  * the Free Software Foundation, either version 3 of the License, or
29  * (at your option) any later version.
30  *
31  * This program is distributed in the hope that it will be useful,
32  * but WITHOUT ANY WARRANTY; without even the implied warranty of
33  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
34  * GNU General Public License for more details.
35  *
36  * You should have received a copy of the GNU General Public License
37  * along with this program. If not, see <http://www.gnu.org/licenses/>.
38  */
39 class FileStackIndex extends BaseFileIndex implements IndexableStack, Registerable {
40         /**
41          * Protected constructor
42          *
43          * @return      void
44          */
45         private function __construct () {
46                 // Call parent constructor
47                 parent::__construct(__CLASS__);
48         }
49
50         /**
51          * Creates an instance of this Index class and prepares it for usage
52          *
53          * @param       $fileInfoInstance       An instance of a SplFileInfo class
54          * @return      $indexInstance  An instance of this Index class
55          */
56         public final static function createFileStackIndex (SplFileInfo $fileInfoInstance) {
57                 // Get a new instance
58                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FILE-STACK-INDEX: fileInfoInstance[%s]=%s - CALLED!', get_class($fileInfoInstance), $fileInfoInstance));
59                 $indexInstance = new FileStackIndex();
60
61                 // Initialize index
62                 $indexInstance->initIndex($fileInfoInstance);
63
64                 // Return the prepared instance
65                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FILE-STACK-INDEX: indexInstance=%s - EXIT!', $indexInstance->__toString()));
66                 return $indexInstance;
67         }
68
69         /**
70          * Adds given data's hash to an index file
71          *
72          * @param       $stackName      Name of stack to add hash for
73          * @param       $data           Hash and gap position to be added to the index
74          * @return      void
75          * @throws      InvalidArgumentException        If a parameter is not valid
76          * @throws      UnexpectedValueException        If an invalid gap position is being returned
77          */
78         public function addHashedDataToIndex (string $stackName, array $data) {
79                 // Validate parameter
80                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FILE-STACK-INDEX: stackName=%s,data()=%d - CALLED!', $stackName, count($data)));
81                 if (empty($stackName)) {
82                         // Throw IAE
83                         throw new InvalidArgumentException('Parameter "stackName" is empty');
84                 } elseif (count($data) == 0) {
85                         // Throw it again
86                         throw new InvalidArgumentException('Parameter "data" is an empty array');
87                 } elseif (!isset($data[StackableFile::ARRAY_NAME_HASH])) {
88                         // Important array element missing
89                         throw new InvalidArgumentException(sprintf('data[%s] not found', $data[StackableFile::ARRAY_NAME_HASH]));
90                 } elseif (!isset($data[StackableFile::ARRAY_NAME_GAP_POSITION])) {
91                         // Important array element missing
92                         throw new InvalidArgumentException(sprintf('data[%s] not found', $data[StackableFile::ARRAY_NAME_GAP_POSITION]));
93                 } elseif (!isset($data[StackableFile::ARRAY_NAME_DATA_LENGTH])) {
94                         // Important array element missing
95                         throw new InvalidArgumentException(sprintf('data[%s] not found', $data[StackableFile::ARRAY_NAME_DATA_LENGTH]));
96                 }
97
98                 // Raw data been written to the file
99                 $rawData = sprintf('%s%s%s%s%s%s%s',
100                         $stackName,
101                         Indexable::SEPARATOR_GROUP_HASH,
102                         hex2bin($data[StackableFile::ARRAY_NAME_HASH]),
103                         Indexable::SEPARATOR_HASH_GAP_POSITION,
104                         $data[StackableFile::ARRAY_NAME_GAP_POSITION],
105                         Indexable::SEPARATOR_GAP_LENGTH,
106                         $data[StackableFile::ARRAY_NAME_DATA_LENGTH]
107                 );
108
109                 // Search for next free gap
110                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FILE-STACK-INDEX: stackName=%s,hash=%s,rawData()=%d', $stackName, $data[StackableFile::ARRAY_NAME_HASH], strlen($rawData)));
111                 $gapPosition = $this->getIteratorInstance()->searchNextGap(strlen($rawData));
112
113                 // Gap position cannot be smaller or equal than header length
114                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FILE-STACK-INDEX: stackName=%s,hash=%s,gapPosition=%s', $stackName, $data[StackableFile::ARRAY_NAME_HASH], $gapPosition));
115                 if ($gapPosition <= ($this->getIteratorInstance()->getHeaderSize() + 1)) {
116                         // Not valid gap position returned
117                         throw new UnexpectedValueException(sprintf('gapPosition[%s]=%d is smaller or equal headerSize+1=%d', gettype($gapPosition), $gapPosition, ($this->getIteratorInstance()->getHeaderSize() + 1)));
118                 }
119
120                 // Then write the data at that gap
121                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FILE-STACK-INDEX: Calling this->iteratorInstance->writeData(%d,%s) ...', $gapPosition, $rawData));
122                 $this->getIteratorInstance()->writeData($gapPosition, $rawData);
123
124                 // Trace message
125                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('FILE-STACK-INDEX: stackName=%s,hash=%s,rawData()=%d - EXIT!', $stackName, $data[StackableFile::ARRAY_NAME_HASH], strlen($rawData)));
126         }
127
128 }