Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reject directories as warc files in NewWarcFileReader #66

Merged
merged 1 commit into from
Aug 24, 2023

Conversation

dan-bishopfox
Copy link
Contributor

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!

@johnerikhalse
Copy link
Contributor

Thanks for the PR. I agree that NewWarcFileReader should fail on directories, but I think it is a good thing to check it outside as well.

@johnerikhalse johnerikhalse merged commit ba6f42a into nlnwa:master Aug 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants