mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
Merge #19233: Make SetMiscWarning() accept bilingual_str argument
d49612f98a
Make SetMiscWarning() accept bilingual_str argument (Hennadii Stepanov)d1ae7c0355
Make GetWarnings() return bilingual_str (Hennadii Stepanov)38e33aa481
refactor: Make GetWarnings() bilingual_str aware internally (Hennadii Stepanov) Pull request description: This is one more step for consistent usage of `bilingual_str`. No new translation messages are defined. ACKs for top commit: laanwj: Code review ACKd49612f98a
MarcoFalke: ACKd49612f98a
🌂 Tree-SHA512: 7413cb94a85291209c182845f6873350bb9e9ce940647d416c462a136603832fec8a63d792341bf634f07629767c78bc206d3a318cf10c7e87241c114c2496e9
This commit is contained in:
commit
371a73e940
13 changed files with 57 additions and 45 deletions
|
@ -21,7 +21,7 @@ template<typename... Args>
|
|||
static void FatalError(const char* fmt, const Args&... args)
|
||||
{
|
||||
std::string strMessage = tfm::format(fmt, args...);
|
||||
SetMiscWarning(strMessage);
|
||||
SetMiscWarning(Untranslated(strMessage));
|
||||
LogPrintf("*** %s\n", strMessage);
|
||||
uiInterface.ThreadSafeMessageBox(
|
||||
Untranslated("Error: A fatal internal error occurred, see debug.log for details"),
|
||||
|
|
|
@ -71,7 +71,7 @@ public:
|
|||
std::string getNetwork() override { return Params().NetworkIDString(); }
|
||||
void initLogging() override { InitLogging(); }
|
||||
void initParameterInteraction() override { InitParameterInteraction(); }
|
||||
std::string getWarnings() override { return GetWarnings(true); }
|
||||
bilingual_str getWarnings() override { return GetWarnings(true); }
|
||||
uint32_t getLogCategories() override { return LogInstance().GetCategoryMask(); }
|
||||
bool baseInitialize() override
|
||||
{
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include <net_types.h> // For banmap_t
|
||||
#include <netaddress.h> // For Network
|
||||
#include <support/allocators/secure.h> // For SecureString
|
||||
#include <util/translation.h>
|
||||
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
|
@ -81,7 +82,7 @@ public:
|
|||
virtual void initParameterInteraction() = 0;
|
||||
|
||||
//! Get warnings.
|
||||
virtual std::string getWarnings() = 0;
|
||||
virtual bilingual_str getWarnings() = 0;
|
||||
|
||||
// Get log flags.
|
||||
virtual uint32_t getLogCategories() = 0;
|
||||
|
|
|
@ -155,7 +155,7 @@ BitcoinCore::BitcoinCore(interfaces::Node& node) :
|
|||
void BitcoinCore::handleRunawayException(const std::exception *e)
|
||||
{
|
||||
PrintExceptionContinue(e, "Runaway exception");
|
||||
Q_EMIT runawayException(QString::fromStdString(m_node.getWarnings()));
|
||||
Q_EMIT runawayException(QString::fromStdString(m_node.getWarnings().translated));
|
||||
}
|
||||
|
||||
void BitcoinCore::initialize()
|
||||
|
@ -599,10 +599,10 @@ int GuiMain(int argc, char* argv[])
|
|||
}
|
||||
} catch (const std::exception& e) {
|
||||
PrintExceptionContinue(&e, "Runaway exception");
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings()));
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings().translated));
|
||||
} catch (...) {
|
||||
PrintExceptionContinue(nullptr, "Runaway exception");
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings()));
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings().translated));
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
|
|
@ -166,7 +166,7 @@ enum BlockSource ClientModel::getBlockSource() const
|
|||
|
||||
QString ClientModel::getStatusBarWarnings() const
|
||||
{
|
||||
return QString::fromStdString(m_node.getWarnings());
|
||||
return QString::fromStdString(m_node.getWarnings().translated);
|
||||
}
|
||||
|
||||
OptionsModel *ClientModel::getOptionsModel()
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#include <util/ref.h>
|
||||
#include <util/strencodings.h>
|
||||
#include <util/system.h>
|
||||
#include <util/translation.h>
|
||||
#include <validation.h>
|
||||
#include <validationinterface.h>
|
||||
#include <warnings.h>
|
||||
|
@ -1278,7 +1279,7 @@ UniValue getblockchaininfo(const JSONRPCRequest& request)
|
|||
BIP9SoftForkDescPushBack(softforks, "testdummy", consensusParams, Consensus::DEPLOYMENT_TESTDUMMY);
|
||||
obj.pushKV("softforks", softforks);
|
||||
|
||||
obj.pushKV("warnings", GetWarnings(false));
|
||||
obj.pushKV("warnings", GetWarnings(false).original);
|
||||
return obj;
|
||||
}
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <util/strencodings.h>
|
||||
#include <util/string.h>
|
||||
#include <util/system.h>
|
||||
#include <util/translation.h>
|
||||
#include <validation.h>
|
||||
#include <validationinterface.h>
|
||||
#include <versionbitsinfo.h>
|
||||
|
@ -416,7 +417,7 @@ static UniValue getmininginfo(const JSONRPCRequest& request)
|
|||
obj.pushKV("networkhashps", getnetworkhashps(request));
|
||||
obj.pushKV("pooledtx", (uint64_t)mempool.size());
|
||||
obj.pushKV("chain", Params().NetworkIDString());
|
||||
obj.pushKV("warnings", GetWarnings(false));
|
||||
obj.pushKV("warnings", GetWarnings(false).original);
|
||||
return obj;
|
||||
}
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <util/strencodings.h>
|
||||
#include <util/string.h>
|
||||
#include <util/system.h>
|
||||
#include <util/translation.h>
|
||||
#include <validation.h>
|
||||
#include <version.h>
|
||||
#include <warnings.h>
|
||||
|
@ -548,7 +549,7 @@ static UniValue getnetworkinfo(const JSONRPCRequest& request)
|
|||
}
|
||||
}
|
||||
obj.pushKV("localaddresses", localAddresses);
|
||||
obj.pushKV("warnings", GetWarnings(false));
|
||||
obj.pushKV("warnings", GetWarnings(false).original);
|
||||
return obj;
|
||||
}
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include <test/util/setup_common.h>
|
||||
#include <timedata.h>
|
||||
#include <util/string.h>
|
||||
#include <util/translation.h>
|
||||
#include <warnings.h>
|
||||
|
||||
#include <string>
|
||||
|
@ -66,7 +67,7 @@ BOOST_AUTO_TEST_CASE(addtimedata)
|
|||
MultiAddTimeData(1, DEFAULT_MAX_TIME_ADJUSTMENT + 1); //filter size 5
|
||||
}
|
||||
|
||||
BOOST_CHECK(GetWarnings(true).find("clock is wrong") != std::string::npos);
|
||||
BOOST_CHECK(GetWarnings(true).original.find("clock is wrong") != std::string::npos);
|
||||
|
||||
// nTimeOffset is not changed if the median of offsets exceeds DEFAULT_MAX_TIME_ADJUSTMENT
|
||||
BOOST_CHECK_EQUAL(GetTimeOffset(), 0);
|
||||
|
|
|
@ -95,7 +95,7 @@ void AddTimeData(const CNetAddr& ip, int64_t nOffsetSample)
|
|||
if (!fMatch) {
|
||||
fDone = true;
|
||||
bilingual_str strMessage = strprintf(_("Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly."), PACKAGE_NAME);
|
||||
SetMiscWarning(strMessage.translated);
|
||||
SetMiscWarning(strMessage);
|
||||
uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1666,7 +1666,7 @@ bool UndoReadFromDisk(CBlockUndo& blockundo, const CBlockIndex* pindex)
|
|||
// TODO: AbortNode() should take bilingual_str userMessage parameter.
|
||||
static bool AbortNode(const std::string& strMessage, const std::string& userMessage = "", unsigned int prefix = 0)
|
||||
{
|
||||
SetMiscWarning(strMessage);
|
||||
SetMiscWarning(Untranslated(strMessage));
|
||||
LogPrintf("*** %s\n", strMessage);
|
||||
if (!userMessage.empty()) {
|
||||
uiInterface.ThreadSafeMessageBox(Untranslated(userMessage), "", CClientUIInterface::MSG_ERROR | prefix);
|
||||
|
@ -2429,20 +2429,20 @@ void CChainState::PruneAndFlush() {
|
|||
}
|
||||
}
|
||||
|
||||
static void DoWarning(const std::string& strWarning)
|
||||
static void DoWarning(const bilingual_str& warning)
|
||||
{
|
||||
static bool fWarned = false;
|
||||
SetMiscWarning(strWarning);
|
||||
SetMiscWarning(warning);
|
||||
if (!fWarned) {
|
||||
AlertNotify(strWarning);
|
||||
AlertNotify(warning.original);
|
||||
fWarned = true;
|
||||
}
|
||||
}
|
||||
|
||||
/** Private helper function that concatenates warning messages. */
|
||||
static void AppendWarning(std::string& res, const std::string& warn)
|
||||
static void AppendWarning(bilingual_str& res, const bilingual_str& warn)
|
||||
{
|
||||
if (!res.empty()) res += ", ";
|
||||
if (!res.empty()) res += Untranslated(", ");
|
||||
res += warn;
|
||||
}
|
||||
|
||||
|
@ -2459,7 +2459,7 @@ void static UpdateTip(const CBlockIndex* pindexNew, const CChainParams& chainPar
|
|||
g_best_block_cv.notify_all();
|
||||
}
|
||||
|
||||
std::string warningMessages;
|
||||
bilingual_str warning_messages;
|
||||
if (!::ChainstateActive().IsInitialBlockDownload())
|
||||
{
|
||||
int nUpgraded = 0;
|
||||
|
@ -2468,11 +2468,11 @@ void static UpdateTip(const CBlockIndex* pindexNew, const CChainParams& chainPar
|
|||
WarningBitsConditionChecker checker(bit);
|
||||
ThresholdState state = checker.GetStateFor(pindex, chainParams.GetConsensus(), warningcache[bit]);
|
||||
if (state == ThresholdState::ACTIVE || state == ThresholdState::LOCKED_IN) {
|
||||
const std::string strWarning = strprintf(_("Warning: unknown new rules activated (versionbit %i)").translated, bit);
|
||||
const bilingual_str warning = strprintf(_("Warning: unknown new rules activated (versionbit %i)"), bit);
|
||||
if (state == ThresholdState::ACTIVE) {
|
||||
DoWarning(strWarning);
|
||||
DoWarning(warning);
|
||||
} else {
|
||||
AppendWarning(warningMessages, strWarning);
|
||||
AppendWarning(warning_messages, warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2485,14 +2485,14 @@ void static UpdateTip(const CBlockIndex* pindexNew, const CChainParams& chainPar
|
|||
pindex = pindex->pprev;
|
||||
}
|
||||
if (nUpgraded > 0)
|
||||
AppendWarning(warningMessages, strprintf(_("%d of last 100 blocks have unexpected version").translated, nUpgraded));
|
||||
AppendWarning(warning_messages, strprintf(_("%d of last 100 blocks have unexpected version"), nUpgraded));
|
||||
}
|
||||
LogPrintf("%s: new best=%s height=%d version=0x%08x log2_work=%.8g tx=%lu date='%s' progress=%f cache=%.1fMiB(%utxo)%s\n", __func__,
|
||||
pindexNew->GetBlockHash().ToString(), pindexNew->nHeight, pindexNew->nVersion,
|
||||
log(pindexNew->nChainWork.getdouble())/log(2.0), (unsigned long)pindexNew->nChainTx,
|
||||
FormatISO8601DateTime(pindexNew->GetBlockTime()),
|
||||
GuessVerificationProgress(chainParams.TxData(), pindexNew), ::ChainstateActive().CoinsTip().DynamicMemoryUsage() * (1.0 / (1<<20)), ::ChainstateActive().CoinsTip().GetCacheSize(),
|
||||
!warningMessages.empty() ? strprintf(" warning='%s'", warningMessages) : "");
|
||||
!warning_messages.empty() ? strprintf(" warning='%s'", warning_messages.original) : "");
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -6,18 +6,21 @@
|
|||
#include <warnings.h>
|
||||
|
||||
#include <sync.h>
|
||||
#include <util/string.h>
|
||||
#include <util/system.h>
|
||||
#include <util/translation.h>
|
||||
|
||||
#include <vector>
|
||||
|
||||
static Mutex g_warnings_mutex;
|
||||
static std::string strMiscWarning GUARDED_BY(g_warnings_mutex);
|
||||
static bilingual_str g_misc_warnings GUARDED_BY(g_warnings_mutex);
|
||||
static bool fLargeWorkForkFound GUARDED_BY(g_warnings_mutex) = false;
|
||||
static bool fLargeWorkInvalidChainFound GUARDED_BY(g_warnings_mutex) = false;
|
||||
|
||||
void SetMiscWarning(const std::string& strWarning)
|
||||
void SetMiscWarning(const bilingual_str& warning)
|
||||
{
|
||||
LOCK(g_warnings_mutex);
|
||||
strMiscWarning = strWarning;
|
||||
g_misc_warnings = warning;
|
||||
}
|
||||
|
||||
void SetfLargeWorkForkFound(bool flag)
|
||||
|
@ -38,34 +41,36 @@ void SetfLargeWorkInvalidChainFound(bool flag)
|
|||
fLargeWorkInvalidChainFound = flag;
|
||||
}
|
||||
|
||||
std::string GetWarnings(bool verbose)
|
||||
bilingual_str GetWarnings(bool verbose)
|
||||
{
|
||||
std::string warnings_concise;
|
||||
std::string warnings_verbose;
|
||||
const std::string warning_separator = "<hr />";
|
||||
bilingual_str warnings_concise;
|
||||
std::vector<bilingual_str> warnings_verbose;
|
||||
|
||||
LOCK(g_warnings_mutex);
|
||||
|
||||
// Pre-release build warning
|
||||
if (!CLIENT_VERSION_IS_RELEASE) {
|
||||
warnings_concise = "This is a pre-release test build - use at your own risk - do not use for mining or merchant applications";
|
||||
warnings_verbose = _("This is a pre-release test build - use at your own risk - do not use for mining or merchant applications").translated;
|
||||
warnings_concise = _("This is a pre-release test build - use at your own risk - do not use for mining or merchant applications");
|
||||
warnings_verbose.emplace_back(warnings_concise);
|
||||
}
|
||||
|
||||
// Misc warnings like out of disk space and clock is wrong
|
||||
if (strMiscWarning != "") {
|
||||
warnings_concise = strMiscWarning;
|
||||
warnings_verbose += (warnings_verbose.empty() ? "" : warning_separator) + strMiscWarning;
|
||||
if (!g_misc_warnings.empty()) {
|
||||
warnings_concise = g_misc_warnings;
|
||||
warnings_verbose.emplace_back(warnings_concise);
|
||||
}
|
||||
|
||||
if (fLargeWorkForkFound) {
|
||||
warnings_concise = "Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.";
|
||||
warnings_verbose += (warnings_verbose.empty() ? "" : warning_separator) + _("Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.").translated;
|
||||
warnings_concise = _("Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.");
|
||||
warnings_verbose.emplace_back(warnings_concise);
|
||||
} else if (fLargeWorkInvalidChainFound) {
|
||||
warnings_concise = "Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.";
|
||||
warnings_verbose += (warnings_verbose.empty() ? "" : warning_separator) + _("Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.").translated;
|
||||
warnings_concise = _("Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.");
|
||||
warnings_verbose.emplace_back(warnings_concise);
|
||||
}
|
||||
|
||||
if (verbose) return warnings_verbose;
|
||||
else return warnings_concise;
|
||||
if (verbose) {
|
||||
return Join(warnings_verbose, Untranslated("<hr />"));
|
||||
}
|
||||
|
||||
return warnings_concise;
|
||||
}
|
||||
|
|
|
@ -8,16 +8,18 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
void SetMiscWarning(const std::string& strWarning);
|
||||
struct bilingual_str;
|
||||
|
||||
void SetMiscWarning(const bilingual_str& warning);
|
||||
void SetfLargeWorkForkFound(bool flag);
|
||||
bool GetfLargeWorkForkFound();
|
||||
void SetfLargeWorkInvalidChainFound(bool flag);
|
||||
/** Format a string that describes several potential problems detected by the core.
|
||||
* @param[in] verbose bool
|
||||
* - if true, get all warnings, translated (where possible), separated by <hr />
|
||||
* - if true, get all warnings separated by <hr />
|
||||
* - if false, get the most important warning
|
||||
* @returns the warning string
|
||||
*/
|
||||
std::string GetWarnings(bool verbose);
|
||||
bilingual_str GetWarnings(bool verbose);
|
||||
|
||||
#endif // BITCOIN_WARNINGS_H
|
||||
|
|
Loading…
Add table
Reference in a new issue