]> git.mxchange.org Git - core.git/blob - framework/main/classes/file_directories/output/raw/class_FrameworkRawFileOutputPointer.php
Continued:
[core.git] / framework / main / classes / file_directories / output / raw / class_FrameworkRawFileOutputPointer.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Filesystem\Pointer\Output;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Filesystem\BaseFileIo;
7 use Org\Mxchange\CoreFramework\Filesystem\FileIoException;
8 use Org\Mxchange\CoreFramework\Filesystem\Pointer\OutputPointer;
9 use Org\Mxchange\CoreFramework\Generic\NullPointerException;
10
11 // Import SPL stuff
12 use \InvalidArgumentException;
13 use \SplFileInfo;
14 use \SplFileObject;
15
16 /**
17  * A class for writing files
18  *
19  * @author              Roland Haeder <webmaster@shipsimu.org>
20  * @version             0.0.0
21  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2022 Core Developer Team
22  * @license             GNU GPL 3.0 or any newer version
23  * @link                http://www.shipsimu.org
24  *
25  * This program is free software: you can redistribute it and/or modify
26  * it under the terms of the GNU General Public License as published by
27  * the Free Software Foundation, either version 3 of the License, or
28  * (at your option) any later version.
29  *
30  * This program is distributed in the hope that it will be useful,
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33  * GNU General Public License for more details.
34  *
35  * You should have received a copy of the GNU General Public License
36  * along with this program. If not, see <http://www.gnu.org/licenses/>.
37  */
38 class FrameworkRawFileOutputPointer extends BaseFileIo implements OutputPointer {
39         /**
40          * Protected constructor
41          *
42          * @return      void
43          */
44         private function __construct () {
45                 // Call parent constructor
46                 parent::__construct(__CLASS__);
47         }
48
49         /**
50          * Create a file pointer based on the given file. The file will also
51          * be verified here.
52          *
53          * @param       $fileInstance   An instance of a SplFileInfo class
54          * @param       $mode           The output mode ('w', 'a' are valid)
55          * @return      void
56          * @throws      InvalidArgumentException        If parameter mode is empty
57          * @throws      FileIoException                 If fopen() returns not a file resource
58          */
59         public static final function createFrameworkRawFileOutputPointer (SplFileInfo $fileInstance, string $mode) {
60                 // Is the parameter valid?
61                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('RAW-FILE-OUTPUT-POINTER: fileInstance=%s,mode=%s - CALLED!', $fileInstance->__toString(), $mode));
62                 if (empty($mode)) {
63                         // No fileInstance given
64                         throw new InvalidArgumentException('Parameter "mode" is empty');
65                 }
66
67                 // Try to open a handler
68                 $fileObject = $fileInstance->openFile($mode);
69
70                 // Is it valid?
71                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('RAW-FILE-OUTPUT-POINTER: fileObject[]=%s', gettype($fileObject)));
72                 if (!($fileObject instanceof SplFileObject)) {
73                         // Something bad happend
74                         throw new FileIoException($fileInstance, self::EXCEPTION_FILE_POINTER_INVALID);
75                 }
76
77                 // Create new instance
78                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('RAW-FILE-OUTPUT-POINTER: Creating pointer instance ...');
79                 $pointerInstance = new FrameworkRawFileOutputPointer();
80
81                 // Set file pointer and file name
82                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('RAW-FILE-OUTPUT-POINTER: pointerInstance=%s,fileObject=%s', $pointerInstance->__toString(), get_class($fileObject)));
83                 $pointerInstance->setFileObject($fileObject);
84
85                 // Return the instance
86                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('RAW-FILE-OUTPUT-POINTER: pointerInstance=%s - EXIT!', $pointerInstance->__toString()));
87                 return $pointerInstance;
88         }
89
90         /**
91          * Write data to a file pointer
92          *
93          * @param       $dataStream             The data stream we shall write to the file
94          * @return      mixed                   Number of writes bytes or false on error
95          * @throws      InvalidArgumentException        If a parameter is invalid
96          * @throws      NullPointerException    If the file pointer instance is not set by setFileObject()
97          * @throws      LogicException  If there is no object being set
98          */
99         public function writeToFile (string $dataStream) {
100                 // Validate parameter and class own attributes
101                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('RAW-FILE-OUTPUT-POINTER: dataStream(%d)=%s (trimmed) - CALLED!', strlen($dataStream), trim($dataStream)));
102                 if (empty($dataStream)) {
103                         // Empty data stream
104                         throw new InvalidArgumentException('Parameter "dataStream" is empty');
105                 } elseif (is_null($this->getFileObject())) {
106                         // Pointer not initialized
107                         throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
108                 } elseif (!is_object($this->getFileObject())) {
109                         // Pointer is not a valid resource!
110                         throw new LogicException(sprintf('this->fileObject[]=%s is no object', gettype($this->getFileObject())));
111                 }
112
113                 // Write data to the file pointer and return written bytes
114                 return $this->getFileObject()->fwrite($dataStream);
115         }
116
117         /**
118          * Analyzes entries in index file. This will count all found (and valid)
119          * entries, mark invalid as damaged and count gaps ("fragmentation"). If
120          * only gaps are found, the file is considered as "virgin" (no entries).
121          *
122          * @return      void
123          * @throws      UnsupportedOperationException   If this method is called
124          */
125         public function analyzeFileStructure () {
126                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
127         }
128
129         /**
130          * Writes at given position by seeking to it.
131          *
132          * @param       $seekPosition   Seek position in file
133          * @param       $data                   Data to be written
134          * @return      mixed                   Number of writes bytes or false on error
135          * @throws      UnsupportedOperationException   If this method is called
136          */
137         public function writeAtPosition (int $seedPosition, string $data) {
138                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
139         }
140
141         /**
142          * Advances to next "block" of bytes
143          *
144          * @return      void
145          * @throws      UnsupportedOperationException   If this method is called
146          */
147         public function next () {
148                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
149         }
150
151         /**
152          * Checks wether the current entry is valid (not at the end of the file).
153          * This method will return true if an emptied (nulled) entry has been found.
154          *
155          * @return      $isValid        Whether the next entry is valid
156          * @throws      UnsupportedOperationException   If this method is called
157          */
158         public function valid () {
159                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
160         }
161
162         /**
163          * Gets current seek position ("key").
164          *
165          * @return      $key    Current key in iteration
166          * @throws      UnsupportedOperationException   If this method is called
167          */
168         public function key () {
169                 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
170         }
171
172 }