Reject directories as warc files in NewWarcFileReader #66
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
NewWarcFileReader accepts directories as inputs, returning a valid-ish WarcFileReader that never gives records. This caused an infinite loop for me in what I assume is a pretty common use-case:
a) Loop through all files in a directory (which in this case contains another directory)
b) Feed files to NewWarcFileReader
c) Loop through all records in the warc, skipping over records with errors
This gives me an infinite spin loop, since the WarcFileReader exists but only ever returns error when you call .Next(). So it sees an error, goes to the "next" record, etc...
It's a bit curious that golang's file.Seek() doesn't error when you give it a directory. But that's just how it works I guess.
Seems like the cleanest solution is to have NewWarcFileReader explicitly reject directory files. Obviously this is something you could check for outside gowarc, but it'd be a cleaner experience here imo.
Thanks!