]> git.mxchange.org Git - core.git/commitdiff
Satisfied Pointer interface for this class.
authorRoland Haeder <roland@mxchange.org>
Sat, 24 May 2014 11:29:49 +0000 (13:29 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 24 May 2014 11:29:49 +0000 (13:29 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/file_directories/io/class_FrameworkFileInputOutputPointer.php

index 5d23c7bf25bce648c9904f4bb88e7ef0834a2a03..be8e86f05b3e592279b9d3572c1a08514474db49 100644 (file)
@@ -171,6 +171,18 @@ class FrameworkFileInputOutputPointer extends BaseFileIo implements InputOutputP
                // Then return it
                return $data;
        }
                // Then return it
                return $data;
        }
+
+       /**
+        * Analyzes entries in index file. This will count all found (and valid)
+        * entries, mark invalid as damaged and count gaps ("fragmentation"). If
+        * only gaps are found, the file is considered as "virgin" (no entries).
+        *
+        * @return      void
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       public function analyzeFile () {
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
 }
 
 // [EOF]
 }
 
 // [EOF]