Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> writes: > So you might expect it to accept an --allow-unknown-type, but it > doesn't. I could add support for that, but I think it would be stupid. > > Why should you need to restart a "cat-file --batch" just because you > encounter a bad object? Just .. print it, we can do that safely. I > really don't see the point of having --allow-unknown-type at all. Ditto > for the --batch-check mode. > > I mean, having read all the code I think I know why it's there. I think > It's because there was no way to ferry the information up from > object-file.c before my yet-to-be-submitted patches, so the solution was > to pass down a flag saying "please don't die()". > > But is it something that anyone thinks is a good idea in the abstract? I > don't see why I shouldn't just document something like: > > Older versions of "cat-file" used to require an --allow-unknown-type > flag to emit information about objects of unknown types. This is no > longer required or the default. If you'd like to die on anything > except known types (e.g. to die instead of bothering with parsing a > "bad" type that possibly has spaces in it in the --batch output) > supply --no-allow-unknown-type. > > What do you think? Thanks for thinking things through. My knee-jerk reaction is - As long as "cat-file -t $thing" exits with non-zero status for an invalid thing, which was crafted using hash-object --literally, reporting the typename it read from the object header to its standard output would be fine without "--allow-unknown-type". But scripts would be upset if it suddenly started to return with zero status when asked to check what type of object the $thing is. - For "cat-file --batch[-check]", I am on the fence. A script may break because it is not prepared to see anything but four existing types (so it might even say "do X if it is a blob, do Y if it is a tree, do Z if it is a tag, and do W for everything else" and expect/assume that W will see only commits), so failing without --allow may still be a prudent thing to do. We could declare that such a script is already broken, even though it would not change the fact that the user has been successfully using it reliably. With your new "we can now bubble necessary information up from the object-file.c layer without dying" change, it might make it easier to arrange so that object-file.c layer would never die and I do not think I have any objection against such a plan. The implementation of "--[no-]allow-unknown-type" would have to be migrated to the caller at the higher level to decide what to do when it learns that the object it asked the object_info() about is of an invalid type. And the choice of the default would become easier to change later with such a change to the lower layer. But I am not sure if that warrants switching of the default.