-
Notifications
You must be signed in to change notification settings - Fork 588
Description
Currently an invalid formatting string gives Item::Error
in the iterator, and it invokes std::fmt::Error
on the actual formatting. I initially assumed that, while this does not immediately fail, a vast majority of .format()
call will be followed by .to_string()
or formatting macros, and they will fail loudly so the user can be easily notified during the initial test.
Actually, my assumption turned out to be wrong: std::fmt::Error
is rarely used (std
has no use of it AFAIK) and the failure mode for it is not well-tested nor well-explored. For the striking example, ToString::to_string
will abruptly stop at the first such error and happily return the string built up to that point. This is very surprising, and I'm yet to find the rationale for this (rust-lang/rfcs#380 and rust-lang/rfcs#504 should be relevant but they are almost silent on this). The root commit causing this traces back to 2014 and I doubt this is a consistent decision.
Given this "relevation", I plan to change the error handling of DelayedFormat
. On the initial construction, it will run a copy of the item iterator and panic on Item::Error
(actually, StrftimeItems
may have a method for checking this). DelayedFormat
already requires the iterator to be Clone
able so this won't cause a direct API change, but this will cause a rescanning of the format string. I guess that is not a big deal, but if it is a big deal we may have a unsafe
DelayedFormat
constructor. The plan is to make this change to 0.3.