]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/file_directories/input/class_FrameworkFileInputPointer.php
Also satisfied it here.
[core.git] / inc / classes / main / file_directories / input / class_FrameworkFileInputPointer.php
index 94bb8dccb3ed8a3b9ae5981a0923f9b251d6b2a6..4f5b49b971c1b48ff958b2602db9d63804c78f60 100644 (file)
@@ -109,6 +109,18 @@ class FrameworkFileInputPointer extends BaseFileIo implements InputPointer {
                // 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]