Satisfied Pointer interface, but it will throw an exception ... ;-)
[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 - 2012 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          * Seek to given offset (default) or other possibilities as fseek() gives.
135          *
136          * @param       $offset         Offset to seek to (or used as "base" for other seeks)
137          * @param       $whence         Added to offset (default: only use offset to seek to)
138          * @return      $status         Status of file seek: 0 = success, -1 = failed
139          */
140         public function seek ($offset, $whence = SEEK_SET) {
141                 // Seek to position
142                 $status = fseek($this->getPointer(), $offset, $whence);
143
144                 // Return status
145                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] status=%d', __METHOD__, __LINE__, $status));
146                 return $status;
147         }
148
149         /**
150          * Size of this file
151          *
152          * @return      $size   Size (in bytes) of file
153          * @todo        Handle seekStatus
154          */
155         public function size () {
156                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] CALLED!', __METHOD__, __LINE__));
157
158                 // Get current seek position
159                 $seekPosition = $this->determineSeekPosition();
160
161                 // Seek to end
162                 $seekStatus = $this->seek(0, SEEK_END);
163                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] seekStatus=%d', __METHOD__, __LINE__, $seekStatus));
164
165                 // Get position again  (which is the end of the file)
166                 $size = $this->determineSeekPosition();
167
168                 // Reset seek position to old
169                 $this->seek($seekPosition);
170
171                 // Return size
172                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] size=%s - EXIT!', __METHOD__, __LINE__, $size));
173                 return $size;
174         }
175 }
176
177 // [EOF]
178 ?>