Satisfied Pointer interface for this class.
[core.git] / 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;
        }
+
+       /**
+        * 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]