3fa46515e300fb679cb38f0a52c819d1d44e7730
[core.git] / framework / main / classes / file_directories / binary / index / class_IndexFile.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Filesystem\Index;
4
5 // Import framework stuff
6 use CoreFramework\Filesystem\Block;
7 use CoreFramework\Filesystem\File\BaseBinaryFile;
8
9 /**
10  * An index file class
11  *
12  * @author              Roland Haeder <webmaster@ship-simu.org>
13  * @version             0.0.0
14  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
15  * @license             GNU GPL 3.0 or any newer version
16  * @link                http://www.ship-simu.org
17  *
18  * This program is free software: you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation, either version 3 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program. If not, see <http://www.gnu.org/licenses/>.
30  */
31 class IndexFile extends BaseBinaryFile implements Block {
32         /**
33          * Protected constructor
34          *
35          * @return      void
36          */
37         protected function __construct () {
38                 // Call parent constructor
39                 parent::__construct(__CLASS__);
40         }
41
42         /**
43          * Creates an instance of this File class and prepares it for usage
44          *
45          * @param       $fileName               Name of the index file
46          * @param       $blockInstance  An instance of a Block class
47          * @return      $fileInstance   An instance of this File class
48          */
49         public final static function createIndexFile ($fileName, Block $blockInstance) {
50                 // Get a new instance
51                 $fileInstance = new IndexFile();
52
53                 // Set block instance here for callbacks
54                 $fileInstance->setBlockInstance($blockInstance);
55
56                 // Init this abstract file
57                 $fileInstance->initFile($fileName);
58
59                 // Return the prepared instance
60                 return $fileInstance;
61         }
62
63         /**
64          * Writes given value to the file and returns a hash and gap position for it
65          *
66          * @param       $groupId        Group identifier
67          * @param       $value          Value to be added to the stack
68          * @return      $data           Hash and gap position
69          * @throws      UnsupportedOperationException   If this method is called
70          */
71         public function writeValueToFile ($groupId, $value) {
72                 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] groupId=' . $groupId . ',value[' . gettype($value) . ']=' . print_r($value, true));
73                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
74         }
75
76         /**
77          * Writes given raw data to the file and returns a gap position and length
78          *
79          * @param       $groupId        Group identifier
80          * @param       $hash           Hash from encoded value
81          * @param       $encoded        Encoded value to be written to the file
82          * @return      $data           Gap position and length of the raw data
83          * @throws      UnsupportedOperationException   If this method is called
84          */
85         public function writeDataToFreeGap ($groupId, $hash, $encoded) {
86                 self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] groupId=' . $groupId . ',encoded()=' . strlen($encoded));
87                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
88         }
89
90 }