util: Check bilingual_str format strings at compile time #31074

pull ryanofsky wants to merge 7 commits into bitcoin:master from ryanofsky:pr/bicheck changing 38 files +313 −278
  1. ryanofsky commented at 7:26 pm on October 11, 2024: contributor

    Check translated strprintf calls at compile time to prevent tinyformat::format_error exceptions when the original string does not contain format specifiers matching the number of formatted arguments. Exceptions are still thrown if the translated strings do not contain the right number of format specifiers.

    Most of the commits in this PR are code cleanup needed to make the compile time checks apply, but the relevant commits implementing the checks are simple:


    This PR is alternative to #31061, that has messier syntax than #31061, but a cleaner implementation and a less confusing API. Unlike #31061, the _ and Untranslated functions continue to return bilingual_str structs with original and translated members instead of returning different structs with lit and translate() members. This approach is less confusing because it means there’s a single type for representing bilingual values, and means that unlike #31061, code that is not doing string formatting does not need to change. Only code actually using tinyformat changes in this PR.

    A drawback to this change compared to #31061 is that syntax for translated format strings is messier:

    0-    return strprintf(_("%s is set very high!"), optname);
    1+    return strprintf(_<"%s is set very high!">(), optname);
    

    But that’s also a good way of showing that the string is used at compile time, and without this, there’s no way to get the _ function to return a type that is compatible with bilingual_str.

    Marking this as a draft because I need to think about differences of the two approaches. But I am inclined to think this approach is better because it is not fighting with compiler to be able evaluate function arguments at compile time, when this is supposed to be what template arguments are for https://old.reddit.com/r/cpp/comments/lxmv2z/allowing_parameters_of_consteval_function_to_be/gpp40lf/

  2. refactor: Check wallet format strings at compile time
    Previously, the std::string overload of tfm::format was selected, which
    does no checks. Now, the ConstevalFormatString overload is picked.
    d1d3464678
  3. refactor: Check wallet format strings at compile time
    Previously, the std::string overload of tfm::format was selected, which
    does no checks. Now, the ConstevalFormatString overload is picked.
    
    Also get rid of similar format string concatenations in init.cpp.
    
    Co-Authored-By: Ryan Ofsky <ryan@ofsky.org>
    4cb3530438
  4. refactor: Pick translated string after format
    This passes the return value of _() directly to strprintf so the format
    string can be checked at compile time in a future commit.
    44fdb02a39
  5. move-only: Detail_CheckNumFormatSpecifiers and G_TRANSLATION_FUN
    This is required for a future commit. Can be reviewed via the git
    options --color-moved=dimmed-zebra --color-moved-ws=ignore-all-space
    
    Also move util::detail::Hex to a proper namespace instead of an inline
    namespace so it doesn't conflict with the new util::detail namespace, and
    won't create other problems for callers trying to use the inline namespaces.
    
    Also fix a misleading comment in util_string_tests.cpp.
    
    Co-Authored-By: Ryan Ofsky <ryan@ofsky.org>
    033f7e569d
  6. util: Add bilingual_lit type
    bilingual_lit is a subclass of the bilingual_str type and can be used in the
    same way, but has additional information about the literal string embedded in
    the type of the struct so it can be used for compile time checking.
    c49aaff652
  7. scripted-diff: Replace _() with _<>() for compile time format checking
    -BEGIN VERIFY SCRIPT-
    quote='"(?:[^"\\]|\\.)*"'
    quotes="(?:$quote|\\s|[A-Z_]|\\\\\\n)*"
    git grep -l '_('            | xargs perl -0777 -i -pe "s/strprintf\((\\W*)_\(($quotes)\)/strprintf(\1_<\2>()/gs"
    git grep -l 'Untranslated(' | xargs perl -0777 -i -pe "s/strprintf\((\\W*)Untranslated\(($quotes)\)/strprintf(\1Untranslated<\2>()/gs"
    -END VERIFY SCRIPT-
    2b4668ec68
  8. util: Check bilingual_str format strings at compile time
    Replace tinyformat::format overload that used to accept bilingual_str with
    tinyformat::format overload that only accepts bilingual_lit.
    649b9b62ec
  9. DrahtBot commented at 7:26 pm on October 11, 2024: contributor

    The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.

    Code Coverage

    For detailed information about the code coverage, see the test coverage report.

    Reviews

    See the guideline for information on the review process. A summary of reviews will appear here.

    Conflicts

    Reviewers, this pull request conflicts with the following ones:

    • #bitcoin-core/gui/762 (Update about logo icon (colour) to denote the chain type of the QT instance in About/ Help Message Window/ Dialog by pablomartin4btc)
    • #31072 (scripted-diff: Replace strprintf(Untranslated(…)) with Untranslated(strprintf(…)) by ryanofsky)
    • #31061 (refactor: Check translatable format strings at compile-time by maflcko)
    • #31042 (build: Rename PACKAGE_* variables to CLIENT_* by hebasto)
    • #30988 (Split CConnman by vasild)
    • #30928 (tinyformat: refactor: increase compile-time checks and don’t throw for tfm::format_error by stickies-v)
    • #30221 (wallet: Ensure best block matches wallet scan state by achow101)
    • #29770 (index: Check all necessary block data is available before starting to sync by fjahr)
    • #29641 (scripted-diff: Use LogInfo over LogPrintf [WIP, NOMERGE, DRAFT] by maflcko)
    • #29492 (refactor: Remove redundant definitions by Empact)
    • #29278 (Wallet: Add maxfeerate wallet startup option by ismaelsadeeq)
    • #28792 (Embed default ASMap as binary dump header file by fjahr)
    • #28710 (Remove the legacy wallet and BDB dependency by achow101)
    • #28574 (wallet: optimize migration process, batch db transactions by furszy)
    • #27865 (wallet: Track no-longer-spendable TXOs separately by achow101)
    • #27286 (wallet: Keep track of the wallet’s own transaction outputs in memory by achow101)

    If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.

  10. DrahtBot added the label Utils/log/libs on Oct 11, 2024
  11. ryanofsky commented at 1:45 am on October 12, 2024: contributor

    Will close this. There may be some useful ideas here but I don’t think this is a clear win over #31061.

    The specific thing that convinced me to close this PR was learning about constexpr parameter proposal P1045. Currently in c++, it is possible to pass arguments known at compile-time to functions either as <> or () arguments, but there are significant benefits to using <> instead of () because:

    1. With () parameters, you can’t use the parameter in any type expression or consteval expression, so you can only ever create values out of, it not types, and they can’t be constexpr values.
    2. With () parameters, if the parameter is a template type like StringLiteral in this PR, the template arguments have have to be specified explicitly and can’t reliably be deduced because function template argument deduction is less powerful than class template argument deduction.
    3. It may be better style to pass arguments that are only used at compile time as template rather than function parameters.

    However if function arguments could be marked constexpr like the proposal allows, the first limitation would go away and the other two don’t apply to this situation, so this PR would be complicating the syntax now because of a language limitation that might not exist in the future.

  12. ryanofsky closed this on Oct 12, 2024


github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-11-21 09:12 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me