Skip to content
Snippets Groups Projects
Forked from Alchemy Viewer / Alchemy Viewer
Source project has a limited visibility.
  • Nat Goodspeed's avatar
    147c66d6
    SL-10297: Simplify implementation of LLSingletonBase::logwarns() etc. · 147c66d6
    Nat Goodspeed authored
    Introduce 'string_params' typedef for std::initialization_list<std::string>,
    and make logwarns(), loginfos(), logdebugs() and logerrs() accept const
    string_params&.
    
    Eliminate the central log() function in llsingleton.cpp that used LL_VLOGS().
    To cache the result of a (moderately expensive) Log::shouldLog() call,
    LL_VLOGS() wants its CallSite object to be static -- but of course the
    shouldLog() result will differ for different ELevel values, so LL_VLOGS()
    instantiates a static array of CallSite instances. It seems silly to funnel
    distinct logwarns(), etc., functions through a common log() function only to
    have LL_VLOGS() tease apart ELevel values again. Instead, make logwarns()
    directly invoke LL_WARNS(), and similarly for the rest.
    
    To reduce boilerplate in these distinct functions, teach std::ostream how to
    stream a string_params instance by looping over its elements. Then each
    logwarns(), etc., function can simply stream its string_params argument to
    LL_WARNS() or whichever.
    
    In particular, eliminate the LLERROR_CRASH macro in logerrs(). The fact that
    it invokes LL_ERRS() ensures that its LL_ENDL macro will crash the viewer.
    147c66d6
    History
    SL-10297: Simplify implementation of LLSingletonBase::logwarns() etc.
    Nat Goodspeed authored
    Introduce 'string_params' typedef for std::initialization_list<std::string>,
    and make logwarns(), loginfos(), logdebugs() and logerrs() accept const
    string_params&.
    
    Eliminate the central log() function in llsingleton.cpp that used LL_VLOGS().
    To cache the result of a (moderately expensive) Log::shouldLog() call,
    LL_VLOGS() wants its CallSite object to be static -- but of course the
    shouldLog() result will differ for different ELevel values, so LL_VLOGS()
    instantiates a static array of CallSite instances. It seems silly to funnel
    distinct logwarns(), etc., functions through a common log() function only to
    have LL_VLOGS() tease apart ELevel values again. Instead, make logwarns()
    directly invoke LL_WARNS(), and similarly for the rest.
    
    To reduce boilerplate in these distinct functions, teach std::ostream how to
    stream a string_params instance by looping over its elements. Then each
    logwarns(), etc., function can simply stream its string_params argument to
    LL_WARNS() or whichever.
    
    In particular, eliminate the LLERROR_CRASH macro in logerrs(). The fact that
    it invokes LL_ERRS() ensures that its LL_ENDL macro will crash the viewer.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.