Continued:
[core.git] / framework / main / classes / file_directories / input / text / class_FrameworkTextFileInputPointer.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Filesystem\Pointer\Input;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
7 use Org\Mxchange\CoreFramework\FileSystem\BaseFileIo;
8 use Org\Mxchange\CoreFramework\Filesystem\FileNotFoundException;
9 use Org\Mxchange\CoreFramework\FileSystem\FileReadProtectedException;
10 use Org\Mxchange\CoreFramework\Filesystem\Pointer\InputPointer;
11 use Org\Mxchange\CoreFramework\Generic\NullPointerException;
12 use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
13 use Org\Mxchange\CoreFramework\Object\BaseFrameworkSystem;
14
15 // Import SPL stuff
16 use \SplFileInfo;
17
18 /**
19  * A class for reading text files
20  *
21  * @author              Roland Haeder <webmaster@shipsimu.org>
22  * @version             0.0.0
23  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
24  * @license             GNU GPL 3.0 or any newer version
25  * @link                http://www.shipsimu.org
26  *
27  * This program is free software: you can redistribute it and/or modify
28  * it under the terms of the GNU General Public License as published by
29  * the Free Software Foundation, either version 3 of the License, or
30  * (at your option) any later version.
31  *
32  * This program is distributed in the hope that it will be useful,
33  * but WITHOUT ANY WARRANTY; without even the implied warranty of
34  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
35  * GNU General Public License for more details.
36  *
37  * You should have received a copy of the GNU General Public License
38  * along with this program. If not, see <http://www.gnu.org/licenses/>.
39  */
40 class FrameworkTextFileInputPointer extends BaseFileIo implements InputPointer {
41         /**
42          * Protected constructor
43          *
44          * @return      void
45          */
46         protected function __construct () {
47                 // Call parent constructor
48                 parent::__construct(__CLASS__);
49         }
50
51         /**
52          * Create a file pointer based on the given file. The file will also
53          * be verified here.
54          *
55          * @param       $fileName       The file name we shall pass to fopen()
56          * @throws      FileIoException                         If the file is not reachable
57          * @throws      FileReadProtectedException      If the file cannot be read from
58          * @return      void
59          */
60         public static final function createFrameworkTextFileInputPointer (SplFileInfo $infoInstance) {
61                 // Check parameter
62                 if (!FrameworkBootstrap::isReachableFilePath($infoInstance)) {
63                         // File cannot be reached
64                         throw new FileIoException($infoInstance, self::EXCEPTION_FILE_NOT_REACHABLE);
65                 } elseif ((!FrameworkBootstrap::isReadableFile($infoInstance)) && (!$infoInstance->isFile())) {
66                         // File does not exist!
67                         throw new FileNotFoundException($infoInstance, self::EXCEPTION_FILE_CANNOT_BE_READ);
68                 } elseif ((!FrameworkBootstrap::isReadableFile($infoInstance)) && ($infoInstance->isFile())) {
69                         // File cannot be read from (but exists)
70                         throw new FileReadProtectedException($infoInstance, self::EXCEPTION_FILE_CANNOT_BE_READ);
71                 }
72
73                 // Try to open a handler
74                 $fileObject = $infoInstance->openFile('r');
75
76                 // Debug message
77                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('TEXT-FILE-INPUT: fileObject[]=' . gettype($fileObject));
78
79                 // Is it valid?
80                 if ((is_null($fileObject)) || ($fileObject === false)) {
81                         // Something bad happend
82                         throw new FileIoException($infoInstance, self::EXCEPTION_FILE_POINTER_INVALID);
83                 } // END - if
84
85                 // Create new instance
86                 $pointerInstance = new FrameworkTextFileInputPointer();
87
88                 // Set file pointer and file name
89                 $pointerInstance->setFileObject($fileObject);
90
91                 // Return the instance
92                 return $pointerInstance;
93         }
94
95         /**
96          * Read data a file pointer
97          *
98          * @return      $data   Read data from file
99          */
100         public function readFromFile () {
101                 // Read 1024 Byte data from the file pointer and return it
102                 return $this->read(1024);
103         }
104
105         /**
106          * Reads a line, maximum 4096 Bytes from current file pointer
107          *
108          * @return      $data   Read data from file
109          */
110         public function readLine () {
111                 // Read whole line from the file pointer and return it
112                 return $this->read();
113         }
114
115         /**
116          * Reads given amount of bytes from file.
117          *
118          * @param       $bytes  Amount of bytes to read or whole line (only text files)
119          * @return      $data   Data read from file
120          * @throws      NullPointerException    If the file pointer instance is not set by setFileObject()
121          * @throws      InvalidResourceException        If there is no object being set
122          */
123         public function read ($bytes = NULL) {
124                 // Some sanity checks
125                 if (is_null($this->getFileObject())) {
126                         // Pointer not initialized
127                         throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
128                 } elseif (!is_object($this->getFileObject())) {
129                         // Pointer is not a valid resource!
130                         throw new LogicException(sprintf('this->fileObject[]=%s is no object', gettype($this->getFileObject())));
131                 }
132
133                 // Is $bytes set?
134                 if (is_int($bytes)) {
135                         // Try to read given characters
136                         $data = $this->getFileObject()->fread($bytes);
137                 } else {
138                         // Try to read whole line
139                         $data = $this->getFileObject()->fgets();
140                 }
141
142                 // Then return it
143                 return $data;
144         }
145
146         /**
147          * Analyzes entries in index file. This will count all found (and valid)
148          * entries, mark invalid as damaged and count gaps ("fragmentation"). If
149          * only gaps are found, the file is considered as "virgin" (no entries).
150          *
151          * @return      void
152          * @throws      UnsupportedOperationException   If this method is called
153          */
154         public function analyzeFile () {
155                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
156         }
157
158         /**
159          * Advances to next "block" of bytes
160          *
161          * @return      void
162          * @throws      UnsupportedOperationException   If this method is called
163          */
164         public function next () {
165                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
166         }
167
168         /**
169          * Checks wether the current entry is valid (not at the end of the file).
170          * This method will return true if an emptied (nulled) entry has been found.
171          *
172          * @return      $isValid        Whether the next entry is valid
173          * @throws      UnsupportedOperationException   If this method is called
174          */
175         public function valid () {
176                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
177         }
178
179         /**
180          * Gets current seek position ("key").
181          *
182          * @return      $key    Current key in iteration
183          * @throws      UnsupportedOperationException   If this method is called
184          */
185         public function key () {
186                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
187         }
188
189 }