Registry rewritten, exception added #2
[core.git] / inc / classes / main / io / class_FrameworkFileInputPointer.php
index 7f4466cea10ccb407f36d84d7e16e272d2469c7c..68ddcf4b1898cb36905649d772ee5fb6efe7d4b9 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -64,8 +64,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
         *
         * @param               $fileName       The file name we shall pass to fopen()
         * @throws      FileIsEmptyException    If the provided file name is empty.
-        * @throws      FilePointerNotOpenedException   If fopen() returns not a
-        *                                                                                      file resource
+        * @throws      FileIoException         If fopen() returns not a file resource
         * @return      void
         */
        public final static function createFrameworkFileInputPointer ($fileName) {
@@ -75,7 +74,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
                        throw new FileIsEmptyException(null, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
                } elseif (!file_exists($fileName)) {
                        // File does not exist!
-                       throw new FileNotFoundException($fileName, self::EXCEPTION_FILE_NOT_FOUND);
+                       throw new FileIoException($fileName, self::EXCEPTION_FILE_NOT_FOUND);
                } elseif (!is_readable($fileName)) {
                        // File does not exist!
                        throw new FileReadProtectedException($fileName, self::EXCEPTION_FILE_CANNOT_BE_READ);
@@ -85,7 +84,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
                $filePointer = @fopen($fileName, 'rb');
                if ((is_null($filePointer)) || ($filePointer === false)) {
                        // Something bad happend
-                       throw new FilePointerNotOpenedException ($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
+                       throw new FileIoException($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
                } // END - if
 
                // Create new instance
@@ -105,7 +104,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
         * @return      mixed   The result of fread()
         * @throws      NullPointerException    If the file pointer instance
         *                                                                      is not set by setPointer()
-        * @throws      InvalidFileResourceException    If there is being set
+        * @throws      InvalidResourceException        If there is being set
         *                                                                      an invalid file resource
         */
        public function readFromFile () {
@@ -114,7 +113,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
                        throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
                } elseif (!is_resource($this->getPointer())) {
                        // Pointer is not a valid resource!
-                       throw new InvalidFileResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER);
+                       throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE);
                }
 
                // Read data from the file pointer and return it
@@ -127,7 +126,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
         * @return      mixed   The result of fread()
         * @throws      NullPointerException    If the file pointer instance
         *                                                                      is not set by setPointer()
-        * @throws      InvalidFileResourceException    If there is being set
+        * @throws      InvalidResourceException        If there is being set
         *                                                                      an invalid file resource
         */
        public function readLinesFromFile () {
@@ -136,7 +135,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
                        throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
                } elseif (!is_resource($this->getPointer())) {
                        // Pointer is not a valid resource!
-                       throw new InvalidFileResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER);
+                       throw new InvalidResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER);
                }
 
                // Read data from the file pointer and return it
@@ -150,7 +149,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
         * @return      void
         * @throws      NullPointerException    If the file pointer instance
         *                                                                      is not set by setPointer()
-        * @throws      InvalidFileResourceException    If there is being set
+        * @throws      InvalidResourceException        If there is being set
         */
        public function closeFile () {
                if (is_null($this->getPointer())) {
@@ -158,7 +157,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
                        throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
                } elseif (!is_resource($this->getPointer())) {
                        // Pointer is not a valid resource!
-                       throw new InvalidFileResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER);
+                       throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE);
                }
 
                // Close the file pointer and reset the instance variable
@@ -180,7 +179,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
                        $this->filePointer = $filePointer;
                } else {
                        // Throw exception
-                       throw new InvalidFileResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER);
+                       throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE);
                }
        }