Rewritten:
[core.git] / framework / main / interfaces / block / class_Block.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Filesystem;
4
5 // Import framework stuff
6 use CoreFramework\Generic\FrameworkInterface;
7
8 /**
9  * A block interface
10  *
11  * @author              Roland Haeder <webmaster@ship-simu.org>
12  * @version             0.0.0
13  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
14  * @license             GNU GPL 3.0 or any newer version
15  * @link                http://www.ship-simu.org
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program. If not, see <http://www.gnu.org/licenses/>.
29  */
30 interface Block extends FrameworkInterface {
31         /**
32          * Reads the file header
33          *
34          * @return      void
35          */
36         function readFileHeader ();
37
38         /**
39          * Flushes the file header
40          *
41          * @return      void
42          */
43         function flushFileHeader ();
44
45         /**
46          * Determines whether the EOF has been reached
47          *
48          * @return      $isEndOfFileReached             Whether the EOF has been reached
49          */
50         function isEndOfFileReached ();
51
52         /**
53          * Initializes counter for valid entries, arrays for damaged entries and
54          * an array for gap seek positions. If you call this method on your own,
55          * please re-analyze the file structure. So you are better to call
56          * analyzeFile() instead of this method.
57          *
58          * @return      void
59          */
60         function initCountersGapsArray ();
61
62         /**
63          * Getter for header size
64          *
65          * @return      $totalEntries   Size of file header
66          */
67         function getHeaderSize ();
68
69         /**
70          * Setter for header size
71          *
72          * @param       $headerSize             Size of file header
73          * @return      void
74          */
75         function setHeaderSize ($headerSize);
76
77         /**
78          * Getter for header array
79          *
80          * @return      $totalEntries   Size of file header
81          */
82         function getHeader ();
83
84         /**
85          * Setter for header
86          *
87          * @param       $header         Array for a file header
88          * @return      void
89          */
90         function setHeader (array $header);
91
92         /**
93          * Updates seekPosition attribute from file to avoid to much access on file.
94          *
95          * @return      void
96          */
97         function updateSeekPosition ();
98
99         /**
100          * Getter for total entries
101          *
102          * @return      $totalEntries   Total entries in this file
103          */
104         function getCounter ();
105
106         /**
107          * "Getter" for file size
108          *
109          * @return      $fileSize       Size of currently loaded file
110          */
111         function getFileSize ();
112
113         /**
114          * Writes given value to the file and returns a hash and gap position for it
115          *
116          * @param       $groupId        Group identifier
117          * @param       $value          Value to be added to the stack
118          * @return      $data           Hash and gap position
119          */
120         function writeValueToFile ($groupId, $rawData);
121
122         /**
123          * Writes given raw data to the file and returns a gap position and length
124          *
125          * @param       $groupId        Group identifier
126          * @param       $hash           Hash from encoded value
127          * @param       $encoded        Encoded value to be written to the file
128          * @return      $data           Gap position and length of the raw data
129          */
130         function writeDataToFreeGap ($groupId, $hash, $encoded);
131
132         /**
133          * Writes data at given position
134          *
135          * @param       $seekPosition   Seek position
136          * @param       $data                   Data to be written
137          * @param       $flushHeader    Whether to flush the header (default: flush)
138          * @return      void
139          */
140         function writeData ($seekPosition, $data, $flushHeader = true);
141
142         /**
143          * Searches for next suitable gap the given length of data can fit in
144          * including padding bytes.
145          *
146          * @param       $length                 Length of raw data
147          * @return      $seekPosition   Found next gap's seek position
148          */
149         function searchNextGap ($length);
150
151 }