drewnoakes/metadata-extractor-dotnet

Implement TgaHeaderReader.TryExtract to not use exceptions as information

Open

#297 opened on Jun 7, 2021

View on GitHub
 (0 comments) (0 reactions) (0 assignees)C# (187 forks)github user discovery
help wanted

Repository metrics

Stars
 (1,059 stars)
PR merge metrics
 (Avg merge 11h 24m) (1 merged PR in 30d)

Description

The current implementation of TgaHeaderReader.TryExtract returns false from a catch block. It should, instead, use return values to indicate when extraction failed.

This is more relevant than it may seem at first, as the FileTypeDetector infrastructure uses this code path to detect whether a file is TGA or not (there is no easy way to detect TGA, so we just attempt an extraction). For bulk file processing, this exception can occur regularly. This makes debugging annoying, and can hurt performance.

Contributor guide