f449f11dfb99deed448c0fb7f0cecf670a0bef23
[core.git] / inc / classes / main / file_directories / class_BaseFileIo.php
1 <?php
2 /**
3  * A general FileIo class
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24 class BaseFileIo extends BaseFrameworkSystem {
25         /**
26          * The current file we are working in
27          */
28         private $fileName = '';
29
30         /**
31          * The file pointer
32          */
33         private $filePointer = NULL;
34
35         /**
36          * Protected constructor
37          *
38          * @param       $className      Name of the class
39          * @return      void
40          */
41         protected function __construct ($className) {
42                 // Call parent constructor
43                 parent::__construct($className);
44         }
45
46         /**
47          * Destructor for cleaning purposes, etc
48          *
49          * @return      void
50          */
51         public final function __destruct() {
52                 // Is there a resource pointer? Then we have to close the file here!
53                 if (is_resource($this->getPointer())) {
54                         // Try to close a file
55                         $this->closeFile();
56                 } // END - if
57
58                 // Call the parent destructor
59                 parent::__destruct();
60         }
61
62         /**
63          * Close a file source and set it's instance to null and the file name
64          * to empty.
65          *
66          * @return      void
67          * @throws      NullPointerException    If the file pointer instance is not set by setPointer()
68          * @throws      InvalidResourceException        If there is being set
69          */
70         public function closeFile () {
71                 if (is_null($this->getPointer())) {
72                         // Pointer not initialized
73                         throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
74                 } elseif (!is_resource($this->getPointer())) {
75                         // Pointer is not a valid resource!
76                         throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE);
77                 }
78
79                 // Close the file pointer and reset the instance variable
80                 @fclose($this->getPointer());
81                 $this->setPointer(NULL);
82                 $this->setFileName('');
83         }
84
85         /**
86          * Setter for the file pointer
87          *
88          * @param       $filePointer    File resource
89          * @return      void
90          */
91         protected final function setPointer ($filePointer) {
92                 $this->filePointer = $filePointer;
93         }
94
95         /**
96          * Getter for the file pointer
97          *
98          * @return      $filePointer    The file pointer which shall be a valid file resource
99          */
100         public final function getPointer () {
101                 return $this->filePointer;
102         }
103
104         /**
105          * Setter for file name
106          *
107          * @param       $fileName       The new file name
108          * @return      void
109          */
110         protected final function setFileName ($fileName) {
111                 $fileName = (string) $fileName;
112                 $this->fileName = $fileName;
113         }
114
115         /**
116          * Getter for file name
117          *
118          * @return      $fileName       The current file name
119          */
120         public final function getFileName () {
121                 return $this->fileName;
122         }
123
124         /**
125          * Determines seek position
126          *
127          * @return      $seekPosition   Current seek position
128          */
129         public final function determineSeekPosition () {
130                 return ftell($this->getPointer());
131         }
132
133         /**
134          * Determines whether the EOF has been reached
135          *
136          * @return      $isEndOfFileReached             Whether the EOF has been reached
137          */
138         public final function isEndOfFileReached () {
139                 return feof($this->getPointer());
140         }
141
142         /**
143          * Seek to given offset (default) or other possibilities as fseek() gives.
144          *
145          * @param       $offset         Offset to seek to (or used as "base" for other seeks)
146          * @param       $whence         Added to offset (default: only use offset to seek to)
147          * @return      $status         Status of file seek: 0 = success, -1 = failed
148          */
149         public function seek ($offset, $whence = SEEK_SET) {
150                 // Seek to position
151                 $status = fseek($this->getPointer(), $offset, $whence);
152
153                 // Return status
154                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] status=%d', __METHOD__, __LINE__, $status));
155                 return $status;
156         }
157
158         /**
159          * Size of this file
160          *
161          * @return      $size   Size (in bytes) of file
162          * @todo        Handle seekStatus
163          */
164         public function size () {
165                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] CALLED!', __METHOD__, __LINE__));
166
167                 // Get current seek position
168                 $seekPosition = $this->determineSeekPosition();
169
170                 // Seek to end
171                 $seekStatus = $this->seek(0, SEEK_END);
172                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] seekStatus=%d', __METHOD__, __LINE__, $seekStatus));
173
174                 // Get position again  (which is the end of the file)
175                 $size = $this->determineSeekPosition();
176
177                 // Reset seek position to old
178                 $this->seek($seekPosition);
179
180                 // Return size
181                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] size=%s - EXIT!', __METHOD__, __LINE__, $size));
182                 return $size;
183         }
184 }
185
186 // [EOF]
187 ?>