3 namespace Org\Mxchange\CoreFramework\Index;
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
7 use Org\Mxchange\CoreFramework\Filesystem\File\BaseBinaryFile;
8 use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
9 use Org\Mxchange\CoreFramework\Iterator\Filesystem\SeekableWritableFileIterator;
10 use Org\Mxchange\CoreFramework\Object\BaseFrameworkSystem;
13 * A general index class
15 * @author Roland Haeder <webmaster@ship-simu.org>
17 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
18 * @license GNU GPL 3.0 or any newer version
19 * @link http://www.ship-simu.org
21 * This program is free software: you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation, either version 3 of the License, or
24 * (at your option) any later version.
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
31 * You should have received a copy of the GNU General Public License
32 * along with this program. If not, see <http://www.gnu.org/licenses/>.
34 class BaseIndex extends BaseFrameworkSystem {
36 * Magic for this index
38 const INDEX_MAGIC = 'INDEXv0.1';
41 * Separator group->hash
43 const SEPARATOR_GROUP_HASH = 0x01;
46 * Separator hash->gap position
48 const SEPARATOR_HASH_GAP_POSITION = 0x02;
51 * Separator gap position->length
53 const SEPARATOR_GAP_LENGTH = 0x03;
56 * Protected constructor
58 * @param $className Name of the class
61 protected function __construct ($className) {
62 // Call parent constructor
63 parent::__construct($className);
67 * Reads the file header
71 public function readFileHeader () {
72 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] CALLED!', __METHOD__, __LINE__));
74 // First rewind to beginning as the header sits at the beginning ...
75 $this->getIteratorInstance()->rewind();
77 // Then read it (see constructor for calculation)
78 $data = $this->getIteratorInstance()->read($this->getIteratorInstance()->getHeaderSize());
79 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] Read %d bytes (%d wanted).', __METHOD__, __LINE__, strlen($data), $this->getIteratorInstance()->getHeaderSize()));
81 // Have all requested bytes been read?
82 assert(strlen($data) == $this->getIteratorInstance()->getHeaderSize());
83 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] Passed assert().', __METHOD__, __LINE__));
85 // Last character must be the separator
86 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] data(-1)=%s', __METHOD__, __LINE__, dechex(ord(substr($data, -1, 1)))));
87 assert(substr($data, -1, 1) == chr(BaseBinaryFile::SEPARATOR_HEADER_ENTRIES));
88 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] Passed assert().', __METHOD__, __LINE__));
90 // Okay, then remove it
91 $data = substr($data, 0, -1);
93 // And update seek position
94 $this->getIteratorInstance()->updateSeekPosition();
102 $header = explode(chr(BaseBinaryFile::SEPARATOR_HEADER_DATA), $data);
105 $this->getIteratorInstance()->setHeader($header);
107 // Check if the array has only 3 elements
108 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] header(%d)=%s', __METHOD__, __LINE__, count($header), print_r($header, true)));
109 assert(count($header) == 2);
110 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] Passed assert().', __METHOD__, __LINE__));
113 assert($header[0] == self::INDEX_MAGIC);
114 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] Passed assert().', __METHOD__, __LINE__));
116 // Check length of count
117 assert(strlen($header[1]) == BaseBinaryFile::LENGTH_COUNT);
118 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] Passed assert().', __METHOD__, __LINE__));
121 $header[1] = hex2bin($header[1]);
123 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] EXIT!', __METHOD__, __LINE__));
127 * Flushes the file header
131 public function flushFileHeader () {
132 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] CALLED!', __METHOD__, __LINE__));
134 // Put all informations together
135 $header = sprintf('%s%s%s%s',
139 // Separator header data
140 chr(BaseBinaryFile::SEPARATOR_HEADER_DATA),
143 str_pad($this->dec2hex($this->getIteratorInstance()->getCounter()), BaseBinaryFile::LENGTH_COUNT, '0', STR_PAD_LEFT),
145 // Separator header<->entries
146 chr(BaseBinaryFile::SEPARATOR_HEADER_ENTRIES)
149 // Write it to disk (header is always at seek position 0)
150 $this->getIteratorInstance()->writeData(0, $header, false);
152 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] EXIT!', __METHOD__, __LINE__));
156 * Initializes this index
158 * @param $fileName File name of this index
160 * @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.
162 protected function initIndex ($fileName) {
163 // Append index file extension
164 $fileName .= $this->getConfigInstance()->getConfigEntry('index_extension');
166 // Get a file i/o pointer instance for index file
167 $fileInstance = ObjectFactory::createObjectByConfiguredName('index_file_class', array($fileName, $this));
169 // Get iterator instance
170 $iteratorInstance = ObjectFactory::createObjectByConfiguredName('file_iterator_class', array($fileInstance));
172 // Is the instance implementing the right interface?
173 assert($iteratorInstance instanceof SeekableWritableFileIterator);
176 $this->setIteratorInstance($iteratorInstance);
178 // Calculate header size
179 $this->getIteratorInstance()->setHeaderSize(
180 strlen(self::INDEX_MAGIC) +
181 strlen(chr(BaseBinaryFile::SEPARATOR_HEADER_DATA)) +
182 BaseBinaryFile::LENGTH_COUNT +
183 strlen(chr(BaseBinaryFile::SEPARATOR_HEADER_ENTRIES))
186 // Init counters and gaps array
187 $this->getIteratorInstance()->initCountersGapsArray();
189 // Is the file's header initialized?
190 if (!$this->getIteratorInstance()->isFileHeaderInitialized()) {
191 // No, then create it (which may pre-allocate the index)
192 $this->getIteratorInstance()->createFileHeader();
194 // And pre-allocate a bit
195 $this->getIteratorInstance()->preAllocateFile('index');
198 // Load the file header
199 $this->readFileHeader();
201 // Count all entries in file
202 $this->getIteratorInstance()->analyzeFile();
206 * Calculates minimum length for one entry/block
208 * @return $length Minimum length for one entry/block
210 public function calculateMinimumBlockLength () {
212 $length = BaseBinaryFile::LENGTH_TYPE + strlen(chr(BaseBinaryFile::SEPARATOR_TYPE_POSITION)) + BaseBinaryFile::LENGTH_POSITION + strlen(chr(BaseBinaryFile::SEPARATOR_ENTRIES));
219 * Determines whether the EOF has been reached
221 * @return $isEndOfFileReached Whether the EOF has been reached
222 * @throws UnsupportedOperationException If this method is called
224 public function isEndOfFileReached () {
225 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
229 * Initializes counter for valid entries, arrays for damaged entries and
230 * an array for gap seek positions. If you call this method on your own,
231 * please re-analyze the file structure. So you are better to call
232 * analyzeFile() instead of this method.
235 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
237 public function initCountersGapsArray () {
238 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
242 * Getter for header size
244 * @return $totalEntries Size of file header
245 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
247 public final function getHeaderSize () {
248 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
252 * Setter for header size
254 * @param $headerSize Size of file header
256 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
258 public final function setHeaderSize ($headerSize) {
259 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
263 * Getter for header array
265 * @return $totalEntries Size of file header
266 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
268 public final function getHeader () {
269 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
275 * @param $header Array for a file header
277 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
279 public final function setHeader (array $header) {
280 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
284 * Updates seekPosition attribute from file to avoid to much access on file.
287 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
289 public function updateSeekPosition () {
290 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
294 * Getter for total entries
296 * @return $totalEntries Total entries in this file
297 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
299 public final function getCounter () {
300 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
304 * "Getter" for file size
306 * @return $fileSize Size of currently loaded file
308 public function getFileSize () {
309 // Call iterator's method
310 return $this->getIteratorInstance()->getFileSize();
314 * Writes data at given position
316 * @param $seekPosition Seek position
317 * @param $data Data to be written
318 * @param $flushHeader Whether to flush the header (default: flush)
320 * @throws UnsupportedOperationException This method is not (and maybe never will be) supported
322 public function writeData ($seekPosition, $data, $flushHeader = true) {
323 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:%d:] seekPosition=%s,data[]=%s,flushHeader=%d', __METHOD__, __LINE__, $seekPosition, gettype($data), intval($flushHeader)));
324 throw new UnsupportedOperationException(array($this, __FUNCTION__, $this->getIteratorInstance()->getPointerInstance()), self::EXCEPTION_UNSPPORTED_OPERATION);
328 * Writes given value to the file and returns a hash and gap position for it
330 * @param $groupId Group identifier
331 * @param $value Value to be added to the stack
332 * @return $data Hash and gap position
333 * @throws UnsupportedOperationException If this method is called
335 public function writeValueToFile ($groupId, $value) {
336 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] groupId=' . $groupId . ',value[' . gettype($value) . ']=' . print_r($value, true));
337 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
341 * Writes given raw data to the file and returns a gap position and length
343 * @param $groupId Group identifier
344 * @param $hash Hash from encoded value
345 * @param $encoded Encoded value to be written to the file
346 * @return $data Gap position and length of the raw data
348 public function writeDataToFreeGap ($groupId, $hash, $encoded) {
349 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] groupId=' . $groupId . ',hash=' . $hash . ',encoded()=' . strlen($encoded));
350 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);