| 131 | } |
| 132 | |
| 133 | int StorageFileManager::GetNextReadFile() { |
| 134 | auto it = file_list_.find(read_storage_->GetFileName()); |
| 135 | if (it == file_list_.end()) |
| 136 | return NO_FILES; |
| 137 | |
| 138 | ++it; |
| 139 | if (it == file_list_.end()) |
| 140 | return NO_FILES; |
| 141 | |
| 142 | return read_storage_->ReOpen(*it); |
| 143 | } |
| 144 | |
| 145 | int StorageFileManager::GetPreReadFile() { |
| 146 | auto it = file_list_.find(read_storage_->GetFileName()); |
nothing calls this directly
no test coverage detected