| 14 | } |
| 15 | |
| 16 | size_t WithFileSize::getFileSize() |
| 17 | { |
| 18 | if (auto maybe_size = tryGetFileSize()) |
| 19 | return *maybe_size; |
| 20 | |
| 21 | throw Exception(ErrorCodes::UNKNOWN_FILE_SIZE, "Cannot find out file size"); |
| 22 | } |
| 23 | |
| 24 | template <typename T> |
| 25 | static std::optional<size_t> tryGetFileSize(T & in) |
no test coverage detected